:root {
  /* =============================================================
     SQUARESPACE DESIGN SYSTEM — structural tokens (FIXED, never theme)
     Source: ~/Projects/design-systems/squarespace-system (ink/tokens.css)
     ============================================================= */
  --bp-sm: 600px;
  --bp-md: 900px;
  --bp-lg: 1200px;
  --bp-xl: 1800px;

  --z-background: 0;
  --z-content: 10;
  --z-navbar: 100;
  --z-menu: 200;
  --z-modal: 300;
  --z-tooltip: 400;

  --transition-fast: 200ms;
  --transition-standard: 300ms;
  --transition-base: 400ms;
  --transition-slow: 600ms;
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-decelerate: cubic-bezier(0, 0, 0.2, 1);
  --ease-accelerate: cubic-bezier(0.4, 0, 1, 1);

  --container-narrow: 800px;
  --container-standard: 1200px;
  --container-wide: 1600px;

  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2vw, 1.5rem);
  --space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --space-xl: clamp(2rem, 4vw, 4rem);
  --space-2xl: clamp(3rem, 6vw, 6rem);
  --space-3xl: clamp(4rem, 8vw, 8rem);
  --section-pad-y: clamp(80px, 9vw, 160px);
  --section-pad-x: clamp(18px, 5vw, 76px);

  --radius-sm: 2px;
  --radius-lg: 4px;
  --radius-pill: 9999px;

  /* =============================================================
     BRAND LAYER — The Kai Michelle Brand (teal accent, LIGHT default)
     Semantic names per the system; legacy aliases kept below so the
     existing ruleset inherits the system without a full rewrite.
     ============================================================= */
  --color-background: #f4f3ef;   /* warm off-white */
  --color-surface: #ffffff;
  --color-text: #14191b;
  --color-text-muted: #5f6a6c;
  --color-heading: #14191b;
  --color-accent: #11968f;       /* deep teal — text-safe on light */
  --color-accent-bright: #34cfc6;/* logo teal — for dark backgrounds */
  --color-accent-hover: #0c7d77;
  --color-ink: #0a1112;          /* brand black (teal undertone) */
  --bg-alpha-97: rgba(244, 243, 239, 0.97);
  --accent-alpha-10: rgba(17, 150, 143, 0.10);
  --accent-alpha-20: rgba(17, 150, 143, 0.20);
  --accent-alpha-30: rgba(17, 150, 143, 0.30);

  --shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 30px 60px -28px rgba(10, 17, 18, 0.45);

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-script: "Sacramento", "Brush Script MT", cursive;
  --font-body: Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* ---- Legacy aliases → map old names onto the system tokens ---- */
  --ink: var(--color-text);
  --paper: var(--color-background);
  --surface: var(--color-surface);
  --muted: var(--color-text-muted);
  --line: var(--accent-alpha-20);
  --plum: var(--color-accent);
  --berry: var(--color-accent-bright);
  --blush: var(--accent-alpha-10);
  --green: var(--color-accent);
  --dark: var(--color-ink);
  --dark-soft: #11191a;
  --serif: var(--font-display);
  --script: var(--font-script);
  --sans: var(--font-body);
}

/* ============================================================
   SOURCE MAGIC PATTERNS PASS
   Live artifact references:
   - CommerceDemo: announcement bar, centered brand nav, image-first 4:5
     PLP, wide product gutters, full-bleed lookbook/editorial panel.
   - EditorialDemo: centered article hero, 70vh image, drop cap body,
     oversized blockquote, sparse related reading.
   ============================================================ */

.sqsp-source-pass {
  --sqsp-announcement-h: 38px;
}

.sqsp-announcement {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 130;
  min-height: var(--sqsp-announcement-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  background: var(--plum);
  color: var(--surface);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.sqsp-announcement a {
  background-image: none !important;
}

.sqsp-source-pass .site-header {
  top: var(--sqsp-announcement-h);
}

.sqsp-source-pass .mobile-menu {
  top: var(--sqsp-announcement-h);
}

@media (min-width: 961px) {
  .sqsp-source-pass .site-header {
    grid-template-columns: 1fr auto 1fr;
  }

  .sqsp-source-pass .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .sqsp-source-pass .nav {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    max-width: min(44vw, 680px);
    flex-wrap: wrap;
    gap: 14px 24px;
  }

  .sqsp-source-pass .header-tools {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
}

.sqsp-source-pass .hero {
  padding-top: clamp(150px, 14vw, 210px);
}

.sqsp-source-pass .hero-media {
  aspect-ratio: 4 / 5;
  height: auto;
  max-height: 760px;
}

.sqsp-source-pass .shop-section {
  background: var(--surface);
}

.sqsp-source-pass .shop-section .section-head {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.sqsp-source-pass .shop-section .link-toolbar {
  margin-bottom: clamp(36px, 5vw, 72px);
}

.sqsp-source-pass .shop-section .link-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(52px, 7vw, 112px) clamp(30px, 5vw, 76px);
  border: 0;
  background: transparent;
}

.sqsp-source-pass .shop-section .link-card {
  min-height: 0;
  gap: 14px;
  padding: 0;
  border: 0;
  background: transparent;
}

.sqsp-source-pass .shop-section .link-card::before {
  content: "";
  display: block;
  aspect-ratio: 4 / 5;
  margin-bottom: 8px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--blush) 58%, var(--surface)), transparent 62%),
    var(--paper);
  border: 1px solid var(--line);
  transition: transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sqsp-source-pass .shop-section .link-card:nth-child(1)::before {
  background:
    linear-gradient(rgba(10, 17, 18, 0.12), rgba(10, 17, 18, 0.12)),
    url("./assets/photos/kai-teal-active.jpg") center top / cover;
}

.sqsp-source-pass .shop-section .link-card:nth-child(2)::before {
  background:
    linear-gradient(rgba(10, 17, 18, 0.1), rgba(10, 17, 18, 0.1)),
    url("./assets/photos/kai-blue-dress.jpg") center top / cover;
}

.sqsp-source-pass .shop-section .link-card:nth-child(3)::before {
  background:
    linear-gradient(rgba(10, 17, 18, 0.12), rgba(10, 17, 18, 0.12)),
    url("./assets/photos/kai-red-active.jpg") center top / cover;
}

.sqsp-source-pass .shop-section .link-card:nth-child(4)::before {
  background:
    linear-gradient(rgba(10, 17, 18, 0.1), rgba(10, 17, 18, 0.1)),
    url("./assets/generated/links-portrait.png") center top / cover;
}

.sqsp-source-pass .shop-section .link-card:hover,
.sqsp-source-pass .shop-section .link-card:focus-visible {
  background: transparent;
}

.sqsp-source-pass .shop-section .link-card:hover::before,
.sqsp-source-pass .shop-section .link-card:focus-visible::before {
  transform: scale(1.025);
}

.sqsp-source-pass .shop-section .link-card strong {
  max-width: none;
  font-size: clamp(28px, 2.6vw, 42px);
  font-weight: 300;
}

.sqsp-source-pass .shop-section .link-card small {
  max-width: 42ch;
  font-size: 14px;
}

.sqsp-source-pass .shop-section .link-card em {
  margin-top: 12px;
}

.sqsp-source-pass .tea-lifestyle {
  min-height: 90vh;
}

.sqsp-source-pass .tea-preview-grid {
  gap: clamp(40px, 5vw, 76px);
  padding: clamp(42px, 5vw, 76px);
  background: var(--surface);
}

.sqsp-source-pass .tea-preview-card {
  background: transparent;
}

.sqsp-source-pass .tea-preview-card img {
  border: 1px solid var(--line);
}

.sqsp-source-pass .tea-preview-card div {
  padding-left: 0;
  padding-right: 0;
}

.sqsp-source-pass .tea-preview-card h3 {
  font-weight: 300;
}

.sqsp-article-section {
  background: var(--paper);
}

.sqsp-source-pass .content-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 54px);
  border: 0;
  background: transparent;
}

.sqsp-source-pass .content-grid article {
  min-height: 260px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sqsp-editorial-article {
  max-width: 760px !important;
  margin-top: clamp(70px, 9vw, 150px);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 300;
  line-height: 1.45;
}

.sqsp-editorial-article > p:first-child::first-letter {
  float: left;
  margin: 10px 14px 0 0;
  color: var(--plum);
  font-family: var(--serif);
  font-size: clamp(86px, 10vw, 132px);
  line-height: 0.78;
}

.sqsp-editorial-article blockquote {
  margin: clamp(44px, 7vw, 88px) 0 0;
  padding-left: clamp(22px, 4vw, 42px);
  border-left: 1px solid var(--line);
}

.sqsp-editorial-article blockquote p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.12;
}

@media (max-width: 960px) {
  .sqsp-source-pass {
    --sqsp-announcement-h: 48px;
  }

  .sqsp-announcement {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .sqsp-source-pass .site-header {
    top: 0;
  }

  .sqsp-source-pass .hero {
    padding-top: calc(36px + var(--sqsp-announcement-h));
  }

  .sqsp-source-pass .shop-section .link-grid,
  .sqsp-source-pass .content-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .sqsp-source-pass .shop-section .link-card::before {
    aspect-ratio: 4 / 3;
  }

  .sqsp-source-pass .tea-lifestyle {
    min-height: 430px;
  }

  .sqsp-editorial-article {
    font-size: 22px;
  }
}

/* DARK MODE — system [data-mode="dark"] override (theme switcher toggles this) */
[data-mode="dark"] {
  --color-background: #0e1314;
  --color-surface: #161d1e;
  --color-text: #e9efef;
  --color-text-muted: #9aa7a8;
  --color-heading: #f3f7f7;
  --color-accent: #34cfc6;
  --color-accent-bright: #5fe0d8;
  --color-accent-hover: #6fe6de;
  --bg-alpha-97: rgba(14, 19, 20, 0.97);
  --accent-alpha-10: rgba(52, 207, 198, 0.12);
  --accent-alpha-20: rgba(52, 207, 198, 0.22);
  --accent-alpha-30: rgba(52, 207, 198, 0.32);
  --line: rgba(233, 239, 239, 0.14);
}

/* ============================================================
   PRODUCTION PAGES + COMMERCE PASS
   ============================================================ */

select,
textarea {
  width: 100%;
  border: 1px solid rgba(26, 26, 24, 0.18);
  border-radius: 2px;
  padding: 14px 16px;
  background: var(--surface);
  color: var(--ink);
  font: 16px/1.5 var(--sans);
}

select {
  min-height: 54px;
}

textarea {
  resize: vertical;
}

.interest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.interest-grid legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.interest-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 76%, transparent);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.interest-grid input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--plum);
}

.bundle-section {
  background: var(--surface);
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.bundle-grid article {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 300px;
  padding: clamp(22px, 3.4vw, 38px);
  background: var(--paper);
}

.bundle-grid span,
.package-grid span {
  color: var(--plum);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bundle-grid p,
.package-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.bundle-grid strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.bundle-grid .btn {
  align-self: end;
  width: fit-content;
}

.cart-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font: 700 12px var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--plum);
  color: var(--surface);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  width: min(420px, 100vw);
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  background: var(--surface);
  color: var(--ink);
  border-left: 1px solid var(--line);
  box-shadow: -28px 0 70px rgba(0, 0, 0, 0.18);
  transform: translateX(105%);
  transition: transform 320ms ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer-head,
.cart-summary,
.cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cart-drawer-head strong,
.cart-summary strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.cart-close,
.cart-remove {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: 700 12px var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.cart-items {
  display: grid;
  gap: 12px;
  overflow: auto;
}

.cart-row {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-row span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.cart-empty,
.cart-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.cart-summary {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cart-checkout {
  width: 100%;
}

.links-page {
  min-height: 100vh;
  background: var(--dark);
}

.links-shell {
  min-height: 100vh;
  padding: clamp(16px, 3vw, 34px);
}

.links-hero {
  min-height: calc(100vh - clamp(32px, 6vw, 68px));
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.links-portrait {
  min-height: 720px;
  overflow: hidden;
  background: var(--dark-soft);
}

.links-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.links-panel {
  display: grid;
  align-content: center;
  gap: clamp(18px, 3vw, 30px);
  padding: clamp(28px, 5vw, 72px);
  background: var(--surface);
}

.links-brand {
  width: fit-content;
}

.links-panel h1 {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(50px, 7vw, 108px);
}

.links-panel p {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.links-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.links-list a {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: var(--paper);
}

.links-list span,
.media-kit-metrics span {
  color: var(--plum);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.links-list strong {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  line-height: 1;
}

.media-hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(132px, 14vw, 190px) clamp(18px, 5vw, 76px) clamp(64px, 7vw, 104px);
  background: var(--paper);
}

.media-hero-copy {
  max-width: 760px;
}

.media-hero-image {
  width: 100%;
  min-height: 520px;
  height: min(66vh, 720px);
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.media-kit-page-section,
.inquiry-section {
  background: var(--surface);
}

.packages-section {
  background: var(--paper);
}

.media-kit-metrics,
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.package-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.media-kit-metrics article,
.package-grid article {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 240px;
  padding: clamp(22px, 3.4vw, 38px);
  background: var(--paper);
}

.media-kit-metrics strong {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 500;
  line-height: 1.08;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 980px;
}

.inquiry-form label span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.inquiry-form .full {
  grid-column: 1 / -1;
}

@media (max-width: 960px) {
  .bundle-grid,
  .media-kit-metrics,
  .package-grid,
  .links-hero,
  .media-hero {
    grid-template-columns: 1fr;
  }

  .links-portrait {
    min-height: 520px;
  }

  .media-hero-image {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .interest-grid,
  .links-list,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .links-shell {
    padding: 0;
  }

  .links-hero {
    min-height: 100vh;
    border: 0;
  }

  .links-portrait {
    min-height: 420px;
  }

  .links-panel {
    padding: 30px 20px 104px;
  }

  .media-hero {
    padding-top: 112px;
  }

  .cart-fab {
    right: 14px;
    bottom: 92px;
  }
}

/* Warm mood (cocoa) — keeps the editorial option, teal stays the accent */
/* MONO variant (3rd dot) — near-monochrome luxe, teal kept only for pops */
html[data-theme="mono"] {
  --color-background: #f1f2f2;
  --color-surface: #ffffff;
  --color-text: #14171a;
  --color-text-muted: #686d70;
  --color-heading: #0c0c0c;
  --color-accent: #0c0c0c;
  --color-accent-bright: #34cfc6;
  --color-accent-hover: #000000;
  --color-ink: #0c0c0c;
  --bg-alpha-97: rgba(241, 242, 242, 0.97);
  --accent-alpha-10: rgba(12, 12, 12, 0.06);
  --accent-alpha-20: rgba(12, 12, 12, 0.12);
  --accent-alpha-30: rgba(12, 12, 12, 0.2);
  --line: rgba(20, 23, 26, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 200;
  padding: 10px 18px;
  border-radius: 2px;
  background: var(--ink);
  color: var(--surface);
  font-size: 14px;
  font-weight: 600;
  transition: top 200ms ease-out;
}

.skip-link:focus {
  top: 16px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

a:not(.btn):not(.link-card):not(.brand) {
  background-image: linear-gradient(to right, currentColor, currentColor);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: color 400ms cubic-bezier(0.4, 0, 0.2, 1), background-size 400ms ease-out;
}

a:not(.btn):not(.link-card):not(.brand):hover {
  background-size: 100% 1px;
}

:focus-visible {
  outline: 2px solid var(--plum);
  outline-offset: 3px;
}

[id] {
  scroll-margin-top: 86px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 18px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  transition:
    background-color 400ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 400ms cubic-bezier(0.4, 0, 0.2, 1),
    backdrop-filter 400ms cubic-bezier(0.4, 0, 0.2, 1),
    min-height 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.nav-solid {
  min-height: 66px;
  background: var(--bg-alpha-97);
  border-bottom-color: rgba(26, 26, 24, 0.08);
  backdrop-filter: blur(12px);
}

/* At the top, the header sits over the dark hero — use light text so it's
   visible before scrolling. Once scrolled (nav-solid), revert to dark. */
.site-header.nav-transparent {
  color: #ffffff;
}

.site-header.nav-transparent .nav a,
.site-header.nav-transparent .brand-the,
.site-header.nav-transparent .brand-tag {
  color: #ffffff;
}

.site-header.nav-transparent .brand-name {
  color: var(--berry);
}

.site-header.nav-transparent .nav a:hover {
  color: var(--berry);
}

.site-header.nav-transparent .theme-switcher {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  line-height: 1;
}

.brand-the,
.brand-tag {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
}

.brand-name {
  font-family: var(--script);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--plum);
  line-height: 0.7;
  transform: translateY(2px);
}

.nav {
  display: flex;
  gap: 26px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav a:hover,
.header-cta:hover {
  color: var(--plum);
}

.nav a {
  white-space: nowrap;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--plum);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background-color 300ms ease, color 300ms ease, border-color 300ms ease;
}

.header-cta:hover {
  background: var(--plum);
  border-color: var(--plum);
  color: #fff;
}

.site-header.nav-transparent .header-cta {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.site-header.nav-transparent .header-cta:hover {
  background: var(--berry);
  border-color: var(--berry);
  color: var(--dark);
}

.header-tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.theme-switcher {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 76%, transparent);
  backdrop-filter: blur(10px);
}

.theme-dot {
  width: 16px;
  height: 16px;
  border: 1px solid var(--accent-alpha-30);
  border-radius: 50%;
  background: #34cfc6;   /* light/teal */
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.theme-dot:hover,
.theme-dot.active {
  transform: scale(1.14);
  border-color: var(--color-heading);
  box-shadow: 0 0 0 3px var(--color-surface), 0 0 0 4px var(--color-heading);
}

.theme-dot-cocoa {
  background: #0e1314;   /* dark mode */
}

.theme-dot-sage {
  background: #0c0c0c;   /* mono */
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(112px, 12vw, 172px) clamp(18px, 5vw, 76px) clamp(64px, 7vw, 104px);
  background: var(--dark);
  color: var(--surface);
  overflow: hidden;
}

.hero h1 {
  color: var(--surface);
}

.hero .lede {
  color: rgba(255, 255, 255, 0.74);
}

.hero .btn {
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn::before {
  background: var(--berry);
}

.hero .btn:hover {
  color: var(--dark);
  border-color: var(--berry);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-bottom: clamp(18px, 4vw, 72px);
}

.script {
  margin: 0 0 14px;
  color: var(--berry);
  font-family: var(--script);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 136px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.015em;
}

h2 {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
}

h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.lede,
.section-head p,
.run-copy p,
.work-grid p,
.style-panel p,
.run-card p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.btn {
  position: relative;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 28px;
  border: 1px solid currentColor;
  border-radius: 2px;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  transition: color 400ms ease-out, border-color 400ms ease-out;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--ink);
  transform: translateX(-101%);
  transition: transform 400ms ease-out;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn:hover {
  color: var(--surface);
}

.btn > *,
.btn {
  isolation: isolate;
}

.btn-primary,
.btn-secondary {
  background: transparent;
}

.hero-media {
  position: relative;
  z-index: 1;
  height: min(78vh, 780px);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: var(--dark-soft);
  box-shadow: var(--shadow-lg);
  transform: translateY(42px);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.marquee {
  overflow: hidden;
  padding: 16px 0;
  background: var(--dark);
  color: var(--surface);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  padding-left: 34px;
  width: max-content;
  animation: marquee-scroll 34s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee span {
  display: inline-flex;
  align-items: center;
}

.marquee span::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 34px;
  border-radius: 50%;
  background: var(--berry);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

.section {
  padding: clamp(80px, 9vw, 160px) clamp(18px, 5vw, 76px);
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 72px);
}

.section-head.narrow {
  max-width: 620px;
}

.shop-section {
  background: var(--surface);
}

.about-section {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.about-grid article {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3.5vw, 42px);
  background: var(--surface);
}

.about-grid span,
.content-grid span {
  color: var(--plum);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-grid p,
.content-grid p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hub-section {
  background: var(--surface);
}

.hub-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.hub-feature {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 5vw, 58px);
  background: var(--blush);
}

.hub-feature span,
.hub-stack span,
.media-kit-strip span {
  color: var(--plum);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hub-feature p,
.hub-stack small {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hub-feature .btn {
  width: fit-content;
  margin-top: 22px;
}

.hub-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.hub-stack a {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 3.5vw, 40px);
  background: var(--surface);
  transition: background-color 360ms ease-out;
}

.hub-stack a:hover {
  background: var(--paper);
}

.hub-stack strong {
  display: block;
  max-width: 11ch;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}

.link-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.filter-btn {
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: transparent;
  color: var(--muted);
  font: 600 13px var(--sans);
  cursor: pointer;
  transition: background 400ms ease-out, color 400ms ease-out, border-color 400ms ease-out;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--plum);
  background: var(--plum);
  color: var(--surface);
}

.filter-status {
  margin: 0 0 16px;
  min-height: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: transparent;
}

.link-card {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 400ms ease-out;
}

.link-card:hover,
.link-card:focus-visible {
  background: var(--paper);
}

.link-card span {
  color: var(--plum);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.link-card strong {
  max-width: 12ch;
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}

.link-card small {
  max-width: 28ch;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.link-card em {
  width: fit-content;
  color: var(--ink);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tea-preview-section {
  background: var(--paper);
}

.tea-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.tea-preview-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--surface);
}

.tea-preview-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.tea-preview-card div {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(22px, 3.2vw, 36px);
}

.tea-preview-card span,
.media-proof span {
  color: var(--plum);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tea-preview-card h3 {
  margin: 0;
}

.tea-preview-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.tea-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(24px, 4vw, 42px);
}

.tea-lifestyle {
  margin: 0 0 clamp(24px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--dark-soft);
}

.tea-lifestyle img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
}

.style-section {
  background: var(--paper);
}

.style-board {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  grid-auto-rows: minmax(210px, auto);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.style-panel {
  min-height: 260px;
  padding: clamp(24px, 4vw, 44px);
  background: var(--surface);
}

.style-panel span {
  display: block;
  margin-bottom: 64px;
  color: var(--plum);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.style-panel.tall {
  grid-row: span 2;
}

.style-panel.plum {
  background: var(--plum);
  color: var(--surface);
}

.style-panel.plum p,
.style-panel.plum span {
  color: rgba(255, 253, 249, 0.76);
}

.photo-strip {
  grid-column: 1 / -1;
  grid-row: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  height: min(56vw, 620px);
  min-height: 420px;
  padding: 0;
  overflow: hidden;
  background: var(--surface);
}

.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 500ms ease;
  filter: saturate(1.02) contrast(1.02);
}

.photo-strip img:hover {
  transform: scale(1.06);
  filter: saturate(1.1) contrast(1.05);
}

.run-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: clamp(32px, 6vw, 96px);
  background: var(--paper);
}

.run-copy {
  max-width: 680px;
}

.run-points {
  display: grid;
  gap: 10px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.run-points li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.run-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--plum);
}

.run-card {
  min-height: 420px;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(26, 26, 24, 0.12);
  border-radius: 4px;
  background: #d7dfbd;
  color: var(--ink);
  box-shadow: var(--shadow);
  transform: translateY(-52px);
}

.run-card img {
  width: 100%;
  height: clamp(190px, 20vw, 280px);
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(26, 26, 24, 0.16);
}

.run-card span {
  font-family: var(--serif);
  font-size: clamp(54px, 8vw, 104px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.run-number {
  color: var(--plum);
}

.work-section {
  background: var(--dark);
  color: var(--surface);
}

.work-section .script {
  color: var(--blush);
}

.work-section h2 {
  max-width: 920px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(30px, 5vw, 56px) 0;
  background: rgba(255, 253, 249, 0.18);
}

.work-grid article {
  min-height: 220px;
  padding: clamp(24px, 3.5vw, 42px);
  background: var(--dark);
}

.work-grid article img {
  width: 100%;
  height: clamp(230px, 25vw, 340px);
  object-fit: cover;
  object-position: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 253, 249, 0.22);
  filter: saturate(0.96) contrast(1.04);
}

.work-grid p {
  color: rgba(255, 253, 249, 0.72);
}

.media-kit-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 clamp(28px, 5vw, 48px);
}

.media-kit-strip span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 253, 249, 0.22);
  color: rgba(255, 253, 249, 0.76);
}

.media-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 clamp(28px, 5vw, 48px);
  border: 1px solid rgba(255, 253, 249, 0.16);
  background: rgba(255, 253, 249, 0.16);
}

.media-proof article {
  display: grid;
  gap: 18px;
  min-height: 180px;
  padding: clamp(22px, 3.4vw, 34px);
  background: var(--dark);
}

.media-proof strong {
  max-width: 26ch;
  color: var(--surface);
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.work-section .btn-secondary {
  border-color: var(--surface);
  color: var(--surface);
}

.work-section .btn-secondary::before {
  background: var(--surface);
}

.work-section .btn-secondary:hover {
  color: var(--dark);
}

.content-section {
  background: var(--surface);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.content-grid article {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 34px);
  background: var(--paper);
}

.content-grid article img {
  width: 100%;
  height: clamp(190px, 19vw, 260px);
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
}

.content-grid a {
  align-self: end;
  width: fit-content;
  color: var(--plum);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.list-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: clamp(28px, 6vw, 72px);
  background: var(--blush);
}

.signup {
  display: grid;
  gap: 14px;
}

.signup label span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(26, 26, 24, 0.18);
  border-radius: 2px;
  padding: 0 16px;
  background: var(--surface);
  color: var(--ink);
  font: 17px var(--sans);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--plum);
  font-size: 14px;
  font-weight: 600;
}

.form-note.is-error {
  color: #b3261e;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  justify-content: space-between;
  padding: 28px clamp(18px, 5vw, 76px);
  background: var(--dark);
  color: rgba(255, 253, 249, 0.76);
  font-size: 13px;
}

.affiliate-note {
  flex-basis: 100%;
  max-width: 760px;
  color: rgba(255, 253, 249, 0.58);
  font-size: 12px;
  line-height: 1.5;
}

.footer strong {
  color: var(--surface);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.footer a {
  color: rgba(255, 253, 249, 0.82);
}

/* ---------- Sweaty & Steady tea shop page ---------- */
.shop-hero {
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  padding: clamp(120px, 14vw, 200px) clamp(18px, 5vw, 76px) clamp(48px, 6vw, 88px);
  background: var(--dark);
  color: var(--surface);
}

.shop-hero h1 {
  color: var(--surface);
}

.shop-hero .lede {
  color: rgba(255, 255, 255, 0.74);
}

.shop-hero .btn {
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.4);
}

.shop-hero .btn::before {
  background: var(--berry);
}

.shop-hero .btn:hover {
  color: var(--dark);
  border-color: var(--berry);
}

.shop-hero-copy {
  max-width: 760px;
}

.shop-collection {
  background: var(--surface);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  transition: background-color 360ms ease-out;
}

.product-card:hover {
  background: var(--paper);
}

.product-card[hidden] {
  display: none;
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: color-mix(in srgb, var(--blush) 40%, var(--surface));
  border-bottom: 1px solid var(--line);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Placeholder state: when a product image is missing, hide the broken img
   and let the striped media background show as a labeled placeholder. */
.product-media img.img-missing {
  visibility: hidden;
}

.product-media::after {
  content: "Image coming soon";
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--plum) 70%, var(--ink));
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
}

.product-media:has(img.img-missing)::after {
  opacity: 0.85;
}

.product-flag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 5px 10px;
  border-radius: 2px;
  background: var(--plum);
  color: var(--surface);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: clamp(18px, 2.4vw, 26px);
}

.product-kind {
  color: var(--plum);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.product-blurb {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.product-benefits {
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.product-benefits li {
  position: relative;
  padding-left: 16px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.5;
}

.product-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--plum);
}

.product-foot {
  margin-top: auto;
  padding-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-price {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.product-add {
  min-height: 42px;
  padding: 0 22px;
  font-size: 14px;
}

.product-add.is-added {
  color: var(--surface);
}

.product-add.is-added::before {
  transform: translateX(0);
}

.how-to-section {
  background: var(--paper);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.how-grid article {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 3.2vw, 40px);
  background: var(--surface);
}

.how-grid span {
  color: var(--plum);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.wellness-disclaimer {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 40px) clamp(18px, 5vw, 76px) clamp(36px, 5vw, 64px);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 960px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .how-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}
/* ---------- end tea shop page ---------- */

@media (prefers-reduced-motion: no-preference) {
  .scroll-fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease-out, transform 700ms ease-out;
  }

  .scroll-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .hero-media img {
    animation: ken-burns 8s ease-out infinite alternate;
  }

  .link-card:hover,
  .style-panel:hover,
  .content-grid article:hover {
    background-color: rgba(242, 222, 216, 0.28);
  }

  @keyframes ken-burns {
    from {
      transform: scale(1);
    }
    to {
      transform: scale(1.06);
    }
  }
}

@media (max-width: 960px) {
  .site-header,
  .hero,
  .run-section,
  .list-section,
  .hub-layout {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: sticky;
    background: var(--bg-alpha-97);
    border-bottom: 1px solid rgba(26, 26, 24, 0.08);
    backdrop-filter: blur(12px);
  }

  .header-tools {
    justify-self: start;
  }

  .nav {
    order: 3;
    grid-column: 1 / -1;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 0;
    padding-top: 42px;
  }

  .hero-media {
    height: 520px;
    min-height: 420px;
    transform: none;
  }

  .link-grid,
  .work-grid,
  .about-grid,
  .content-grid,
  .tea-preview-grid,
  .media-proof,
  .hub-stack {
    grid-template-columns: 1fr 1fr;
  }

  .style-board {
    grid-template-columns: 1fr 1fr;
  }

  .photo-strip {
    grid-column: span 2;
    min-height: 380px;
    height: min(60vw, 480px);
  }

  .run-card {
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 14px;
    min-height: auto;
    padding: 16px 18px;
  }

  .brand {
    font-size: 21px;
  }

  .header-cta {
    font-size: 10px;
  }

  .header-tools {
    gap: 12px;
  }

  .theme-switcher {
    padding: 4px;
    gap: 5px;
  }

  .theme-dot {
    width: 13px;
    height: 13px;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 16px;
    font-size: 10px;
    letter-spacing: 0.12em;
    overflow: visible;
  }

  h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .hero-media {
    height: 360px;
    min-height: 320px;
  }

  .link-grid,
  .work-grid,
  .about-grid,
  .content-grid,
  .tea-preview-grid,
  .media-proof,
  .hub-stack,
  .style-board {
    grid-template-columns: 1fr;
  }

  .photo-strip {
    grid-column: auto;
    grid-template-columns: 1fr 1fr 1fr;
    height: 240px;
    min-height: 240px;
  }

  .link-card,
  .style-panel,
  .work-grid article {
    min-height: 150px;
  }
}

/* ============================================================
   PREMIUM ENHANCEMENTS (loader, mobile nav, stats, press,
   testimonials, photo hovers, signoff, mobile CTA)
   ============================================================ */

/* 19. Loading splash */
.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  pointer-events: none;
  transition: opacity 360ms ease, visibility 360ms ease;
}
.loader.is-done {
  opacity: 0;
  visibility: hidden;
}
.loader-mark {
  width: clamp(180px, 40vw, 320px);
  height: auto;
  opacity: 0;
  animation: loader-in 520ms ease forwards;
}
@keyframes loader-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 8 + 10. Mobile menu toggle (hamburger) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 300ms ease, opacity 200ms ease;
}
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 8. Full-screen mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 360ms ease, transform 360ms ease, visibility 360ms ease;
}
body.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.mobile-menu-nav a {
  font-family: var(--serif);
  font-size: clamp(30px, 9vw, 46px);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
}
.mobile-menu-nav a:hover { color: var(--berry); }
.mobile-menu-cta {
  margin-top: 10px;
  padding: 12px 28px;
  border: 1px solid var(--berry);
  border-radius: 999px;
  font-family: var(--sans) !important;
  font-size: 13px !important;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--berry) !important;
}

/* 9. Mobile sticky bottom CTA bar */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: none;
  gap: 10px;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: var(--bg-alpha-97);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.mobile-bar-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mobile-bar-btn.solid { background: var(--plum); color: #fff; }
.mobile-bar-btn.ghost { border: 1px solid var(--ink); color: var(--ink); }

/* 16. Press / credibility strip */
.press-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 52px);
  padding: clamp(30px, 5vw, 54px) clamp(18px, 5vw, 76px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.press-eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.press-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.5vw, 44px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.press-logos li {
  font-family: var(--serif);
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  opacity: 0.78;
}

/* 5. Stats with count-up */
.stats-section {
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 76px);
  background: var(--paper);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(26px, 4vw, 46px) clamp(20px, 3vw, 36px);
  background: var(--surface);
  text-align: center;
}
.stat-number {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 500;
  line-height: 1;
  color: var(--plum);
  letter-spacing: -0.02em;
}
.stat-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* 4. Photo strip hover reveals */
.photo-cell {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.photo-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 500ms ease;
  filter: saturate(1.02) contrast(1.02);
}
.photo-cell figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 18px;
  color: #fff;
  background: var(--dark);
  transform: translateY(101%);
  transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.photo-cell:hover img { transform: scale(1.06); }
.photo-cell:hover figcaption,
.photo-cell:focus-within figcaption { transform: translateY(0); }
.photo-cap-kind {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--berry);
}
.photo-cap-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

/* 17. Testimonials */
.testimonials-section { background: var(--surface); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.testimonial {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: clamp(28px, 4vw, 46px);
  background: var(--paper);
}
.testimonial img {
  width: 100%;
  height: clamp(170px, 18vw, 240px);
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
}
.testimonial blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -0.01em;
}
.testimonial blockquote::before { content: "\201C"; color: var(--plum); }
.testimonial blockquote::after { content: "\201D"; color: var(--plum); }
.testimonial figcaption {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* 15. Signature sign-off */
.signoff {
  padding: clamp(72px, 10vw, 140px) clamp(18px, 5vw, 76px);
  background: var(--dark);
  color: #fff;
  text-align: center;
}
.signoff-script {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0.04em;
}
.signoff-name {
  margin: 0;
  font-family: var(--script);
  font-size: clamp(56px, 11vw, 130px);
  line-height: 0.9;
  color: var(--berry);
}

/* 14. Footer brand lockup */
.footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
}
.footer-brand .brand-the,
.footer-brand .brand-tag {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.footer-brand .brand-name {
  font-family: var(--script);
  font-size: 30px;
  color: var(--berry);
  line-height: 0.7;
}

/* 20. Detail polish */
:focus-visible {
  outline: 2px solid var(--plum);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Count-up: hide pre-animation jump for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .photo-cell figcaption { transition: none; }
}

/* ---- Responsive: tablet ---- */
@media (max-width: 960px) {
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ---- Responsive: mobile ---- */
@media (max-width: 760px) {
  /* 8. swap desktop nav for hamburger */
  .site-header .nav { display: none; }
  .site-header .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header { grid-template-columns: 1fr auto; gap: 12px; }
  .header-tools { gap: 10px; }
  .site-header,
  .site-header.nav-transparent {
    color: var(--ink);
  }
  .site-header.nav-transparent .brand-the,
  .site-header.nav-transparent .brand-tag {
    color: var(--ink);
  }
  .site-header.nav-transparent .theme-switcher {
    border-color: var(--line);
    background: color-mix(in srgb, var(--surface) 76%, transparent);
  }
  [id] {
    scroll-margin-top: 132px;
  }

  .brand { flex-wrap: nowrap; white-space: nowrap; }
  .brand-name { font-size: 24px; }
  .brand-the, .brand-tag { font-size: 9px; letter-spacing: 0.2em; }

  /* 9. show sticky bottom bar; keep content clear of it */
  .mobile-bar { display: flex; }
  main { padding-bottom: 74px; }

  /* 11. swipeable photo carousel */
  .photo-strip {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    height: auto !important;
    min-height: 0 !important;
    gap: 8px;
  }
  .photo-cell {
    flex: 0 0 78%;
    scroll-snap-align: center;
    aspect-ratio: 3 / 4;
  }
  .photo-cell figcaption { transform: translateY(0); background: rgba(10,17,18,0.78); }

  /* 7/10. more breathing room + larger touch targets */
  .section { padding: clamp(56px, 12vw, 90px) 20px; }
  .btn { min-height: 52px; }
  .tea-preview-actions,
  .actions {
    display: grid;
  }
  .tea-preview-actions .btn,
  .actions .btn {
    width: 100%;
  }
}

/* ============================================================
   MAGIC PATTERNS / SQUARESPACE PREMIUM PASS
   References: Commerce (Sage & Stone) + Editorial (Ink & Paper).
   Keep structural tokens fixed: 80px/40px rhythm, 2px/4px radius,
   border-grid sections, transparent-to-solid nav, large editorial type.
   ============================================================ */

:root {
  --sqsp-container-wide: 1600px;
  --sqsp-container-standard: 1200px;
  --sqsp-section-y: 80px;
  --sqsp-section-x: 40px;
  --sqsp-radius-sm: 2px;
  --sqsp-radius-lg: 4px;
  --sqsp-rule: rgba(20, 25, 27, 0.14);
}

body {
  background:
    linear-gradient(90deg, transparent calc(100% - 1px), rgba(20, 25, 27, 0.035) 0) 0 0 / min(25vw, 360px) 100%,
    var(--paper);
  text-rendering: geometricPrecision;
}

.section {
  padding: clamp(var(--sqsp-section-y), 9vw, 148px) clamp(20px, 4vw, var(--sqsp-section-x));
}

.section > .section-head,
.section > .about-grid,
.section > .hub-layout,
.section > .link-toolbar,
.section > .filter-status,
.section > .link-grid,
.section > .style-board,
.section > .work-grid,
.section > .media-kit-strip,
.section > .media-proof,
.section > .content-grid,
.section > .testimonial-grid,
.section > .signup,
.section > .scroll-fade-up {
  max-width: var(--sqsp-container-wide);
  margin-left: auto;
  margin-right: auto;
}

h1,
h2,
h3 {
  font-weight: 400;
}

h1 {
  font-size: clamp(64px, 9.2vw, 152px);
  letter-spacing: -0.018em;
}

h2 {
  font-size: clamp(48px, 5.6vw, 92px);
}

.site-header {
  min-height: 88px;
  padding-left: clamp(20px, 4vw, 60px);
  padding-right: clamp(20px, 4vw, 60px);
}

.site-header.nav-solid {
  min-height: 72px;
}

.brand-name {
  font-size: 38px;
}

.nav {
  gap: clamp(18px, 2.3vw, 34px);
}

.hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: clamp(36px, 5.5vw, 92px);
  padding-top: clamp(132px, 13vw, 196px);
  padding-bottom: clamp(68px, 7vw, 112px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto clamp(18px, 5vw, 76px) 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-copy {
  max-width: 740px;
}

.hero .script {
  margin-bottom: 24px;
  color: var(--berry);
}

.hero-media {
  min-height: 620px;
  border-radius: 0;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
  transform: translateY(58px);
}

.hero-media::after,
.links-portrait::after,
.media-hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.hero-media,
.links-portrait {
  position: relative;
}

.press-strip {
  justify-content: space-between;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.stats-section {
  padding-top: clamp(34px, 4vw, 58px);
  padding-bottom: clamp(34px, 4vw, 58px);
}

.stat {
  min-height: 126px;
  justify-content: center;
}

.stat-number {
  font-size: clamp(34px, 4vw, 54px);
}

.about-section .section-head,
.hub-section .section-head,
.shop-section .section-head,
.style-section .section-head,
.content-section .section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(420px, 0.45fr);
  gap: clamp(26px, 5vw, 86px);
  align-items: end;
  max-width: var(--sqsp-container-wide);
}

.about-section .section-head .script,
.hub-section .section-head .script,
.shop-section .section-head .script,
.style-section .section-head .script,
.content-section .section-head .script {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.about-section .section-head h2,
.hub-section .section-head h2,
.shop-section .section-head h2,
.style-section .section-head h2,
.content-section .section-head h2 {
  margin-bottom: 0;
}

.about-section .section-head p,
.hub-section .section-head p,
.shop-section .section-head p,
.style-section .section-head p,
.content-section .section-head p {
  margin-bottom: 8px;
}

.about-grid article,
.hub-feature,
.hub-stack a,
.link-card,
.style-panel,
.content-grid article,
.testimonial,
.bundle-grid article,
.media-kit-metrics article,
.package-grid article {
  border-radius: 0;
}

.about-grid,
.hub-layout,
.link-grid,
.style-board,
.content-grid,
.testimonial-grid,
.media-proof,
.bundle-grid,
.media-kit-metrics,
.package-grid {
  border-color: var(--sqsp-rule);
  background: var(--sqsp-rule);
}

.hub-feature {
  min-height: 620px;
  justify-content: space-between;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--blush) 84%, white), var(--blush));
}

.hub-feature h3 {
  max-width: 10ch;
  font-size: clamp(44px, 5vw, 78px);
}

.hub-stack strong,
.link-card strong {
  max-width: 11ch;
}

.link-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.link-card:first-child {
  grid-column: span 2;
  min-height: 320px;
  background: var(--blush);
}

.link-card:first-child strong {
  max-width: 9ch;
  font-size: clamp(42px, 4.5vw, 74px);
}

.link-card:hover,
.link-card:focus-visible,
.hub-stack a:hover {
  background: color-mix(in srgb, var(--blush) 55%, var(--surface));
}

.sqsp-commerce-section.tea-preview-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.72fr);
  grid-template-areas:
    "copy media"
    "products media"
    "actions media";
  gap: 1px;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.tea-preview-section .section-head {
  grid-area: copy;
  display: grid;
  align-content: end;
  min-height: 520px;
  max-width: none;
  margin: 0;
  padding: clamp(64px, 8vw, 132px) clamp(20px, 5vw, 76px);
  background: var(--paper);
}

.tea-preview-section .section-head h2 {
  max-width: 780px;
}

.tea-lifestyle {
  grid-area: media;
  position: relative;
  height: 100%;
  min-height: 820px;
  margin: 0;
  border: 0;
}

.tea-lifestyle img {
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.tea-lifestyle::after {
  content: "Sweaty & Steady";
  position: absolute;
  left: clamp(22px, 4vw, 56px);
  right: clamp(22px, 4vw, 56px);
  bottom: clamp(22px, 4vw, 56px);
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.48);
  color: #fff;
  font-family: var(--script);
  font-size: clamp(40px, 5vw, 86px);
  line-height: 0.9;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.32);
}

.tea-preview-grid {
  grid-area: products;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 0;
}

.tea-preview-card {
  min-height: 360px;
}

.tea-preview-card img {
  aspect-ratio: 4 / 3;
}

.tea-preview-actions {
  grid-area: actions;
  margin: 0;
  padding: clamp(24px, 4vw, 48px) clamp(20px, 5vw, 76px);
  background: var(--surface);
}

.style-board {
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1.45fr);
}

.style-panel {
  min-height: 300px;
}

.style-panel.tall h3 {
  max-width: 9ch;
  font-size: clamp(42px, 4.6vw, 74px);
}

.photo-strip {
  min-height: 560px;
}

.run-section {
  padding-top: clamp(90px, 10vw, 168px);
  padding-bottom: clamp(90px, 10vw, 168px);
}

.run-card {
  border-radius: 0;
  box-shadow: none;
}

.work-section {
  position: relative;
}

.work-section::before {
  content: "";
  position: absolute;
  inset: clamp(80px, 9vw, 150px) clamp(20px, 5vw, 76px) auto auto;
  width: min(24vw, 320px);
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.links-page {
  background: var(--dark);
}

.links-shell {
  padding: clamp(24px, 3vw, 44px);
}

.links-hero {
  max-width: 1680px;
  margin: 0 auto;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  min-height: calc(100vh - clamp(48px, 6vw, 88px));
}

.links-portrait {
  min-height: 820px;
}

.links-panel {
  padding: clamp(42px, 6vw, 96px);
}

.links-panel h1 {
  max-width: 760px;
  font-size: clamp(64px, 7.8vw, 132px);
}

.links-list a {
  min-height: 116px;
  background: var(--surface);
  transition: background 300ms ease;
}

.links-list a:first-child {
  grid-column: 1 / -1;
  min-height: 152px;
  background: var(--blush);
}

.links-list a:hover {
  background: var(--paper);
}

.media-hero {
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1fr);
  gap: 1px;
  padding: 0;
  background: var(--line);
}

.media-hero-copy {
  display: grid;
  align-content: end;
  min-height: 86vh;
  max-width: none;
  padding: clamp(132px, 14vw, 190px) clamp(22px, 6vw, 88px) clamp(70px, 8vw, 120px);
  background: var(--paper);
}

.media-hero-image {
  min-height: 86vh;
  height: 100%;
  border: 0;
  box-shadow: none;
}

.media-kit-page-section,
.packages-section,
.inquiry-section {
  padding-top: clamp(72px, 8vw, 128px);
  padding-bottom: clamp(72px, 8vw, 128px);
}

@media (max-width: 1100px) {
  .about-section .section-head,
  .hub-section .section-head,
  .shop-section .section-head,
  .style-section .section-head,
  .content-section .section-head,
  .sqsp-commerce-section.tea-preview-section,
  .media-hero {
    grid-template-columns: 1fr;
  }

  .sqsp-commerce-section.tea-preview-section {
    grid-template-areas:
      "copy"
      "media"
      "products"
      "actions";
  }

  .tea-lifestyle {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  body {
    background: var(--paper);
  }

  .site-header {
    min-height: 70px;
  }

  .brand-name {
    font-size: 26px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 36px;
    gap: 28px;
    overflow: hidden;
  }

  .hero-media {
    width: 100%;
    min-width: 0;
    min-height: 360px;
    height: 390px;
    transform: none;
  }

  .marquee {
    display: none;
  }

  .style-board,
  .photo-strip {
    max-width: 100%;
    overflow: hidden;
    contain: layout paint;
  }

  .style-board {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .photo-strip {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 4px;
    height: 260px !important;
  }

  .photo-cell {
    flex: initial;
    min-width: 0;
    aspect-ratio: auto;
  }

  .link-card em {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .press-strip {
    justify-content: center;
  }

  .about-section .section-head,
  .hub-section .section-head,
  .shop-section .section-head,
  .style-section .section-head,
  .content-section .section-head {
    display: block;
  }

  .link-card:first-child {
    grid-column: auto;
    min-height: 190px;
  }

  .link-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .link-card:first-child strong {
    font-size: clamp(28px, 10vw, 42px);
  }

  .tea-preview-section .section-head {
    min-height: 0;
    padding: 72px 20px 50px;
  }

  .tea-lifestyle {
    min-height: 430px;
  }

  .tea-preview-grid {
    grid-template-columns: 1fr;
  }

  .links-shell {
    padding: 0;
  }

  .links-hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: 100vh;
  }

  .links-portrait {
    min-height: 48vh;
  }

  .links-panel h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .media-hero-copy,
  .media-hero-image {
    min-height: auto;
  }

  .media-hero-copy {
    padding: 118px 20px 56px;
  }

  .media-hero-image {
    height: 430px;
  }

  .mobile-bar {
    box-sizing: border-box;
    gap: 8px;
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
  }

  .mobile-bar-btn {
    min-width: 0;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 12px;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
}

/* ============================================================
   PREMIUM EFFECTS — sticky reveal + slide-up text + hovers
   (system motion tokens; all reduced-motion safe via the no-preference guard)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  /* Sticky scroll-reveal section heads */
  [data-sticky-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity var(--transition-slow) var(--ease-decelerate),
      transform var(--transition-slow) var(--ease-decelerate);
  }
  [data-sticky-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* Make the narrow section heads sticky so they hold while content scrolls */
  @media (min-width: 900px) {
    .section-head.narrow[data-sticky-reveal] {
      position: sticky;
      top: 110px;
    }
  }

  /* Slide-up text reveal on nav + content links */
  .nav a,
  .content-grid a {
    position: relative;
    overflow: hidden;
  }
  .nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base) var(--ease-standard);
  }
  .nav a:hover::after {
    transform: scaleX(1);
  }
}

/* Refined editorial button hover — uses system tokens */
.btn {
  border-radius: var(--radius-sm);
  transition:
    color var(--transition-base) var(--ease-standard),
    border-color var(--transition-base) var(--ease-standard);
}
.btn::before {
  transition: transform var(--transition-base) var(--ease-standard);
}

/* Card hover lift (system shadow + motion) */
.link-card,
.product-card,
.hub-stack a {
  transition:
    transform var(--transition-standard) var(--ease-standard),
    box-shadow var(--transition-standard) var(--ease-standard),
    background-color var(--transition-base) var(--ease-standard);
}
@media (prefers-reduced-motion: no-preference) and (hover: hover) {
  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    z-index: 1;
  }
}

/* Source-pattern completion overrides. Kept last so the legacy mobile/shop rules
   cannot flatten the Magic Patterns commerce and editorial structure. */
.sqsp-source-pass .site-header,
.sqsp-source-pass .site-header.nav-transparent,
.sqsp-source-pass .site-header.nav-solid {
  top: var(--sqsp-announcement-h);
}

.sqsp-source-pass .mobile-menu {
  top: var(--sqsp-announcement-h);
  min-height: calc(100vh - var(--sqsp-announcement-h));
}

.sqsp-source-pass .shop-hero {
  min-height: min(860px, 92vh);
  padding-top: calc(var(--sqsp-announcement-h) + 110px);
}

.sqsp-source-pass .shop-collection .section-head {
  max-width: none;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.sqsp-source-pass .shop-collection .section-head h2 {
  max-width: 10ch;
  font-weight: 300;
  letter-spacing: -0.03em;
}

.sqsp-source-pass .shop-collection .section-head p:not(.script) {
  max-width: 46ch;
  align-self: end;
}

.sqsp-source-pass .product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(56px, 7vw, 116px) clamp(30px, 5vw, 76px);
  border: 0;
  background: transparent;
}

.sqsp-source-pass .product-card,
.sqsp-source-pass .product-card:hover {
  min-height: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.sqsp-source-pass .product-media {
  aspect-ratio: 4 / 5;
  min-height: 0;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--blush) 40%, transparent), transparent 58%),
    var(--paper);
}

.sqsp-source-pass .product-media img {
  width: 100%;
  height: 100%;
  padding: clamp(18px, 3vw, 42px);
  object-fit: contain;
}

.sqsp-source-pass .product-info {
  padding: 20px 0 0;
}

.sqsp-source-pass .product-card h3 {
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 300;
}

.sqsp-source-pass .product-blurb,
.sqsp-source-pass .product-benefits {
  max-width: 48ch;
}

.sqsp-source-pass .product-foot {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

@media (min-width: 961px) {
  .sqsp-source-pass .shop-collection .section-head {
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.6fr);
  }
}

@media (max-width: 960px) {
  .sqsp-source-pass {
    --sqsp-announcement-h: 48px;
  }

  .sqsp-source-pass .site-header,
  .sqsp-source-pass .site-header.nav-transparent,
  .sqsp-source-pass .site-header.nav-solid {
    top: var(--sqsp-announcement-h);
  }

  .sqsp-source-pass .shop-hero {
    min-height: 86vh;
    padding-top: calc(var(--sqsp-announcement-h) + 92px);
  }

  .sqsp-source-pass .product-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 56px;
  }

  .sqsp-source-pass .product-media {
    aspect-ratio: 4 / 5;
  }
}

/* ============================================================
   VISUAL UX/UI PASS — brand logos, depth, micro-interactions
   ============================================================ */

/* 1. Brand logos in link cards */
.link-logo {
  width: 30px;
  height: 30px;
  color: var(--color-accent);
  transition: color var(--transition-base) var(--ease-standard),
    transform var(--transition-standard) var(--ease-standard);
}
.link-card:hover .link-logo {
  transform: translateY(-2px) scale(1.06);
}

/* 2. Per-brand accent on hover — logo tints to the real brand color */
.link-card { position: relative; }
.link-card[data-track="shop_mavely"]:hover .link-logo  { color: #ff5a3c; }
.link-card[data-track="shop_ltk"]:hover .link-logo     { color: #111111; }
.link-card[data-track="shop_shopmy"]:hover .link-logo  { color: #111111; }
.link-card[data-track="shop_amazon"]:hover .link-logo  { color: #ff9900; }
.link-card[data-track="content_youtube"]:hover .link-logo { color: #ff0000; }
.link-card[data-track="contact_instagram"]:hover .link-logo { color: #e1306c; }
.link-card[data-track="run_runna"]:hover .link-logo    { color: var(--color-accent); }
.link-card[data-track="run_raceplace"]:hover .link-logo { color: var(--color-accent); }

/* 3. Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 300;
  background: var(--color-accent);
  transition: width 80ms linear;
}

/* 4. Back-to-top button */
.to-top {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--bg-alpha-97);
  color: var(--color-heading);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity var(--transition-base) var(--ease-standard),
    transform var(--transition-base) var(--ease-standard),
    background-color var(--transition-base);
  cursor: pointer;
}
.to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }

/* 5. Eyebrow/kicker treatment — small accent rule before label */
.section-head .script::before,
.run-copy .script::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  margin: 0 12px 5px 0;
  vertical-align: middle;
  background: var(--color-accent);
}

/* 6. Card numbering refinement (style panels / content) */
.style-panel span,
.content-grid span,
.how-grid span {
  font-feature-settings: "tnum";
}

/* 7. Link-card 'em' becomes a button-like affordance with arrow */
.link-card em {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-accent);
}
.link-card em::after {
  content: "\2192";
  transition: transform var(--transition-standard) var(--ease-standard);
}
.link-card:hover em::after { transform: translateX(4px); }

/* 8. Section dividers — hairline accent between major sections */
.marquee + .press-strip { border-top: 1px solid var(--accent-alpha-20); }

/* 9. Selection color on-brand */
::selection { background: var(--accent-alpha-30); color: var(--color-heading); }

/* 10. Smooth image loading — subtle fade-in */
img { background: var(--accent-alpha-10); }

/* 11. Product card price gets accent + 'per bag' note styling already; add tag chips */
.product-flag {
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  letter-spacing: 0.1em;
}

/* 12. Refine theme switcher into a segmented pill */
.theme-switcher { gap: 6px; }

/* 13. Footer brand spacing + social row hover */
.footer a:hover { color: var(--color-accent-bright); }

/* 14. Nav active state underline persists for current section */
.nav a[aria-current="page"]::after { transform: scaleX(1); }

/* 15. Buttons get a tiny lift on press */
.btn:active { transform: translateY(1px); }

/* 16. Hub stack cards: arrow affordance */
.hub-stack a { position: relative; }
.hub-stack a strong::after {
  content: "\2197";
  margin-left: 8px;
  color: var(--color-accent);
  opacity: 0;
  transition: opacity var(--transition-standard), transform var(--transition-standard);
}
.hub-stack a:hover strong::after { opacity: 1; }

/* 17. Stat numbers underline accent on the label */
.stat-label { position: relative; padding-top: 8px; }
.stat-label::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 24px; height: 2px;
  transform: translateX(-50%);
  background: var(--color-accent);
}

/* 18. Testimonial accent bar */
.testimonial { border-top: 2px solid transparent; transition: border-color var(--transition-base); }
.testimonial:hover { border-top-color: var(--color-accent); }

/* 19. Press logos hover */
.press-logos li { transition: opacity var(--transition-base), color var(--transition-base); }
.press-logos li:hover { opacity: 1; color: var(--color-accent); }

/* 20. Focus-visible polish across interactive brand elements */
.link-card:focus-visible,
.product-card:focus-visible { outline-offset: -2px; }

/* ============================================================
   FULL UI/UX BUG + POLISH PASS
   ============================================================ */

.image-fallback {
  position: relative;
  min-height: 220px;
  background:
    linear-gradient(135deg, rgba(17, 150, 143, 0.12), transparent 58%),
    var(--paper);
  border: 1px solid var(--line);
}

.image-fallback::after {
  content: attr(data-fallback);
  position: absolute;
  inset: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  color: var(--color-accent);
  font: 700 11px/1.4 var(--sans);
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

img {
  opacity: 1;
}

img.img-missing {
  visibility: hidden;
}

.sqsp-source-pass .link-toolbar {
  position: sticky;
  top: calc(var(--sqsp-announcement-h, 0px) + 88px);
  z-index: 20;
  width: fit-content;
  max-width: 100%;
  padding: 10px;
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.product-quick-view {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  background: rgba(10, 17, 18, 0.86);
  color: #fff;
  transform: translateY(calc(100% + 22px));
  transition: transform var(--transition-standard) var(--ease-decelerate);
}

.product-quick-view strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
}

.product-quick-view span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card:hover .product-quick-view,
.product-card:focus-within .product-quick-view {
  transform: translateY(0);
}

.sqsp-source-pass .product-kind::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-right: 8px;
  vertical-align: middle;
  background: currentColor;
}

.cart-qty {
  display: inline-grid;
  grid-template-columns: 28px minmax(20px, auto) 28px;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid var(--line);
}

.cart-step {
  width: 28px;
  height: 28px;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  font: 700 16px/1 var(--sans);
  cursor: pointer;
}

.cart-qty span {
  color: var(--ink);
  font: 700 12px/1 var(--sans);
  text-align: center;
}

.cart-row {
  align-items: flex-start;
}

.cart-row > div:first-child {
  min-width: 0;
}

.cart-row strong {
  display: block;
  line-height: 1.2;
}

.footer-premium {
  align-items: center;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.78);
  border-top: 0;
}

.footer-premium .brand-name {
  color: var(--color-accent-bright);
}

.footer-premium a {
  color: #fff;
}

.links-page {
  background: var(--surface);
}

.links-page .site-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.links-shell {
  padding-top: 118px;
  color: var(--ink);
}

.links-premium-hero {
  min-height: calc(100vh - 118px);
  background: var(--dark);
}

.links-premium-hero .links-panel {
  background: var(--surface);
}

.links-featured {
  display: grid;
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
  border: 1px solid var(--line);
}

.links-featured a {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--surface);
}

.links-featured span {
  color: var(--color-accent);
  font: 700 12px/1 var(--sans);
  letter-spacing: 0.12em;
}

.links-featured strong {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  line-height: 1;
}

.links-section {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 132px) 40px;
}

.links-section + .links-section {
  border-top: 1px solid var(--line);
}

.links-list-premium {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.links-list-premium a:first-child {
  grid-column: auto;
  min-height: 220px;
  background: var(--surface);
}

.links-list-premium a {
  min-height: 220px;
  align-content: start;
  gap: 18px;
  padding: 24px;
  background: var(--surface);
  transition:
    background-color var(--transition-base) var(--ease-standard),
    transform var(--transition-base) var(--ease-standard);
}

.links-list-premium a > img {
  width: 100%;
  height: clamp(150px, 13vw, 190px);
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(34, 207, 197, 0.12), transparent 62%),
    #ffffff;
}

.links-list-premium a:first-child > img {
  object-fit: contain;
  padding: 10px;
}

.links-list-premium a:hover,
.links-list-premium a:focus-visible {
  background: var(--paper);
  transform: translateY(-2px);
}

.brand-chip {
  display: inline-flex !important;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid currentColor;
  color: var(--color-accent) !important;
  font: 800 11px/1 var(--sans) !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
}

.chip-amazon { color: #ff9900 !important; }
.chip-youtube { color: #ff0000 !important; }
.chip-ltk,
.chip-shopmy { color: #111 !important; }
.chip-mavely { color: #ff5a3c !important; }
.chip-run,
.chip-media,
.chip-tea { color: var(--color-accent) !important; }

.links-split,
.links-join {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
}

.links-split h2,
.links-join h2,
.media-case-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.mini-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.mini-link-grid a {
  min-height: 120px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 18px;
  background: var(--surface);
  color: var(--ink);
  font: 700 12px/1.4 var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mini-link-grid img {
  width: 100%;
  height: clamp(132px, 12vw, 170px);
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
}

.mini-link-grid a:nth-child(3) img {
  object-fit: contain;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(34, 207, 197, 0.12), transparent 62%),
    #ffffff;
}

.links-join {
  background: var(--paper);
}

.media-page {
  background: var(--surface);
}

.media-hero-premium {
  min-height: 92vh;
  padding-top: 118px;
}

.media-hero-image-wrap {
  margin: 0;
  min-height: 620px;
  display: grid;
  align-content: start;
  background: var(--paper);
}

.media-hero-image-wrap .media-hero-image {
  width: 100%;
  height: 100%;
  min-height: calc(92vh - 118px);
  object-fit: cover;
}

.media-hero-image-wrap figcaption {
  padding: 14px 20px;
  color: var(--muted);
  font: 700 11px/1.5 var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-case-section {
  background: var(--paper);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.case-grid article {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 44px);
  background: var(--surface);
}

.case-grid article img,
.package-grid article img {
  width: 100%;
  height: clamp(210px, 22vw, 320px);
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
}

.package-grid article img {
  height: clamp(180px, 18vw, 260px);
}

.links-list-premium a:nth-child(2) > img,
.work-grid article:first-child img,
.content-grid article:first-child img {
  object-position: center 28%;
}

.package-grid article:nth-child(3) img {
  object-fit: contain;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(34, 207, 197, 0.12), transparent 62%),
    #ffffff;
}

.case-grid span {
  color: var(--color-accent);
  font: 700 11px/1 var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-grid h3 {
  margin: auto 0 14px;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  line-height: 0.98;
}

.case-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus,
.signup input:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

@media (max-width: 960px) {
  .sqsp-source-pass .link-toolbar {
    top: calc(var(--sqsp-announcement-h, 0px) + 77px);
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .product-quick-view {
    position: static;
    transform: none;
    margin: 12px;
    background: var(--dark);
  }

  .links-shell {
    padding-top: 24px;
  }

  .links-premium-hero,
  .links-split,
  .links-join,
  .media-hero-premium {
    grid-template-columns: minmax(0, 1fr);
  }

  .links-list-premium,
  .case-grid,
  .mini-link-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .links-section {
    padding: 56px 20px;
  }

  .media-hero-image-wrap,
  .media-hero-image-wrap .media-hero-image {
    min-height: 420px;
  }

  .media-hero-premium {
    padding-top: 0;
  }

  .media-hero-premium .media-hero-copy {
    min-height: auto;
    padding: 64px 20px 56px;
  }
}

@media (max-width: 560px) {
  .cart-row {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .cart-remove {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

/* ============================================================
   COLOR + MISSING IMAGE SURFACE FIX
   ============================================================ */

:root {
  --color-background: #ffffff;
  --color-surface: #ffffff;
  --color-accent: #0b8f88;
  --color-accent-bright: #22cfc5;
  --color-accent-hover: #056b66;
  --blush: #eef8f7;
  --line: #cfe3e1;
}

.btn-primary,
.product-add,
.bundle-add,
.cart-checkout,
.mobile-bar-btn.solid {
  border-color: var(--color-accent) !important;
  background: var(--color-accent) !important;
  color: #ffffff !important;
}

.btn-primary::before,
.product-add::before,
.bundle-add::before,
.cart-checkout::before,
.mobile-bar-btn.solid::before {
  display: none !important;
}

.btn-primary:hover,
.product-add:hover,
.bundle-add:hover,
.cart-checkout:hover,
.mobile-bar-btn.solid:hover {
  border-color: var(--dark) !important;
  background: var(--dark) !important;
  color: #ffffff !important;
}

.btn-secondary,
.mobile-bar-btn.ghost {
  border-color: var(--dark) !important;
  background: transparent !important;
  color: var(--dark) !important;
}

.btn-secondary:hover,
.mobile-bar-btn.ghost:hover {
  border-color: var(--color-accent) !important;
  background: var(--color-accent) !important;
  color: #ffffff !important;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--color-accent) !important;
  background: var(--color-accent) !important;
  color: #ffffff !important;
}

.cart-count {
  background: var(--color-accent);
  color: #ffffff;
}

.shop-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.92fr);
  align-items: end;
  gap: clamp(30px, 6vw, 90px);
}

.shop-hero-media {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  gap: 14px;
  margin: 0;
  padding: clamp(10px, 1.4vw, 18px);
  background: #ffffff;
  border: 1px solid rgba(34, 207, 197, 0.42);
  overflow: hidden;
}

.shop-hero-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 43vw, 620px);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 58% center;
  padding: 0;
  background: var(--blush);
  border: 1px solid var(--line);
}

.how-grid article img,
.bundle-images img {
  transform: scale(1.28);
}

.shop-hero-media figcaption {
  color: var(--muted);
  font: 700 11px/1.45 var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sqsp-source-pass .product-media,
.product-media,
.bundle-images,
.how-grid article img,
.tea-preview-card img {
  background:
    linear-gradient(135deg, rgba(34, 207, 197, 0.12), transparent 62%),
    #ffffff !important;
}

.product-quick-view {
  background: rgba(10, 17, 18, 0.92);
}

.hub-feature-image {
  margin: 0 0 24px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--blush);
}

.hub-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.how-grid article {
  overflow: hidden;
}

.how-grid article img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--line);
}

.bundle-grid article {
  overflow: hidden;
}

.bundle-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 22px;
  padding: 12px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.bundle-images img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
}

.links-list-premium a,
.case-grid article,
.media-kit-metrics article,
.package-grid article,
.content-grid article,
.hub-stack a {
  background: #ffffff !important;
}

.links-list-premium a:hover,
.case-grid article:hover,
.hub-stack a:hover {
  background: var(--blush) !important;
}

.sqsp-source-pass .link-toolbar {
  background: rgba(255, 255, 255, 0.96);
}

@media (max-width: 960px) {
  .cart-fab {
    top: calc(var(--sqsp-announcement-h) + 92px);
    right: 14px;
    bottom: auto;
  }

  .shop-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .sqsp-source-pass .shop-hero {
    min-height: auto;
    padding-top: calc(var(--sqsp-announcement-h) + 78px);
    padding-bottom: 30px;
  }

  .shop-hero-media {
    padding: 10px;
    max-width: 100%;
  }

  .shop-hero-media img {
    min-height: 280px;
    object-position: 62% center;
  }

  .shop-hero-media figcaption {
    font-size: 10px;
  }
}
