:root {
        --ink: #1c7547;
        --forest: #1c7547;
        --forest-deep: #1c7547;
        --mint: #d7df12;
        --mint-soft: #eff51f;
        --sun-gradient: radial-gradient(
          circle at 50% 52%,
          #fff875 0%,
          #f9e51a 45%,
          #edcf0d 100%
        );
        --sun-gradient-soft: linear-gradient(
          135deg,
          #d7df12 0%,
          #eff51f 58%,
          #fff77a 100%
        );
        --paper: #fdfeff;
        --white: #fdfeff;
        --line: rgba(28, 117, 71, 0.2);
        --line-light: rgba(253, 254, 255, 0.4);
        --muted: rgba(28, 117, 71, 0.72);
        --radius-lg: 28px;
        --radius-md: 20px;
        --radius-sm: 999px;
        --container: 1440px;
        --ease: 260ms cubic-bezier(0.2, 0.7, 0.3, 1);
      }

      *,
      *::before,
      *::after {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
        scroll-padding-top: 124px;
      }

      body {
        margin: 0;
        overflow-x: hidden;
        color: var(--ink);
        background: var(--paper);
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 16px;
        line-height: 1.18;
        -webkit-font-smoothing: antialiased;
      }

      body.nav-open {
        overflow: hidden;
      }

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

      [hidden] {
        display: none !important;
      }

      /* A quiet frame keeps light copy legible at image edges. */
      .hero-card,
      .segment-card,
      .solution-card,
      .private-label-head--banner,
      .quality-card,
      .story-image-card,
      .cta-card {
        border: 2px solid rgba(253, 254, 255, 0.72);
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
      }

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

      button,
      input,
      select,
      textarea {
        font: inherit;
      }

      button,
      a {
        -webkit-tap-highlight-color: transparent;
      }

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

      h1,
      h2,
      h3,
      h4 {
        margin-bottom: 0;
        font-weight: 400;
        letter-spacing: -0.055em;
        line-height: 0.94;
      }

      p {
        margin-bottom: 0;
      }

      :focus-visible {
        outline: 2px solid var(--mint);
        outline-offset: 4px;
      }

      .container {
        width: min(var(--container), calc(100% - 48px));
        margin-inline: auto;
      }

      .section {
        padding: clamp(36px, 3.8vw, 58px) 0;
      }

      .section-tag {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 25px;
        padding: 2px 13px;
        border: 1px solid currentColor;
        border-radius: var(--radius-sm);
        font-size: 0.72rem;
        letter-spacing: -0.015em;
        line-height: 1;
      }

      .section-title {
        max-width: 1030px;
        margin: 20px auto 0;
        font-size: clamp(3.2rem, 6.3vw, 7rem);
        text-align: center;
        text-wrap: balance;
      }

      .section-copy {
        max-width: 700px;
        margin: 24px auto 0;
        color: var(--muted);
        font-size: clamp(1rem, 1.4vw, 1.45rem);
        text-align: center;
        text-wrap: balance;
      }

      .button {
        display: inline-flex;
        min-height: 42px;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 0 20px;
        border: 1px solid transparent;
        border-radius: var(--radius-sm);
        cursor: pointer;
        font-size: 0.78rem;
        font-weight: 500;
        transition:
          transform var(--ease),
          color var(--ease),
          background var(--ease),
          border-color var(--ease);
      }

      .button:hover {
        transform: translateY(-2px);
      }

      .button--dark {
        color: var(--white);
        background: var(--ink);
        border-color: var(--ink);
      }

      .button--dark:hover {
        color: var(--ink);
        background: var(--sun-gradient-soft);
        border-color: var(--mint);
      }

      .button--light {
        color: var(--ink);
        background: var(--paper);
        border-color: var(--paper);
      }

      .button--outline-light {
        color: var(--white);
        background: transparent;
        border-color: rgba(253, 254, 255, 0.72);
      }

      .button--outline-light:hover {
        color: var(--ink);
        background: var(--white);
      }

      .button--outline-dark {
        color: var(--ink);
        background: transparent;
        border-color: rgba(28, 117, 71, 0.48);
      }

      /* Header */
      .site-header {
        position: fixed;
        z-index: 100;
        top: 0;
        right: 0;
        left: 0;
        padding: 15px 0;
        transition:
          background var(--ease),
          box-shadow var(--ease),
          padding var(--ease);
      }

      .site-header.is-scrolled {
        padding: 0;
        background: rgba(253, 254, 255, 0.96);
        box-shadow: 0 14px 38px rgba(28, 117, 71, 0.08);
        backdrop-filter: blur(18px);
      }

      .site-header.is-scrolled .nav-shell {
        width: 100%;
        max-width: none;
        min-height: 76px;
        padding-inline: max(24px, calc((100vw - 1380px) / 2));
        border-right: 0;
        border-left: 0;
        border-radius: 0;
        background: transparent;
      }

      .nav-shell {
        display: grid;
        min-height: 84px;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 26px;
        padding: 10px 24px;
        border: 1px solid rgba(28, 117, 71, 0.14);
        border-radius: var(--radius-sm);
        background: rgba(253, 254, 255, 0.82);
        backdrop-filter: blur(18px);
      }

      .brand {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .brand img {
        width: 164px;
        height: 62px;
        object-fit: contain;
      }

      .desktop-nav,
      .nav-actions {
        display: flex;
        align-items: center;
        gap: 26px;
      }

      .nav-actions {
        justify-content: flex-end;
      }
      .nav-dropdown { position: relative; display: flex; align-items: center; }
      .nav-dropdown > button { display: inline-flex; min-height: 48px; align-items: center; gap: 5px; padding: 8px 0; border: 0; color: inherit; background: none; font: inherit; line-height: 1; cursor: pointer; }
      .nav-dropdown > button span { display: inline-flex; align-items: center; line-height: 1; transform: translateY(-1px); }
      .nav-dropdown-menu { position: absolute; top: calc(100% + 18px); right: 0; width: 190px; padding: 10px; border: 1px solid rgba(28,117,71,.18); border-radius: 16px; background: rgba(253,254,255,.97); box-shadow: 0 18px 50px rgba(16,83,50,.13); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: 180ms ease; }
      .nav-dropdown-menu a { display: block; padding: 10px 12px; border-radius: 10px; }
      .nav-dropdown-menu a:hover { background: rgba(28,117,71,.08); }
      .nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: none; }

      .desktop-nav a,
      .nav-actions > a:not(.button) {
        position: relative;
        padding: 8px 0;
        font-size: 0.88rem;
      }

      .nav-actions .button {
        min-height: 48px;
        padding-inline: 24px;
        font-size: 0.84rem;
      }

      .desktop-nav a::after,
      .nav-actions > a:not(.button)::after {
        position: absolute;
        right: 100%;
        bottom: 2px;
        left: 0;
        height: 1px;
        background: currentColor;
        content: "";
        transition: right var(--ease);
      }

      .desktop-nav a:hover::after,
      .nav-actions > a:not(.button):hover::after {
        right: 0;
      }

      .menu-button {
        display: none;
        width: 42px;
        height: 42px;
        padding: 0;
        border: 1px solid rgba(28, 117, 71, 0.16);
        border-radius: 50%;
        color: var(--forest);
        background: var(--white);
        box-shadow: 0 5px 16px rgba(9, 44, 28, 0.08);
        cursor: pointer;
      }

      .menu-button span,
      .menu-button::before,
      .menu-button::after {
        display: block;
        width: 24px;
        height: 1px;
        margin-inline: auto;
        background: currentColor;
        content: "";
        transition:
          transform var(--ease),
          opacity var(--ease);
      }

      .menu-button span {
        margin-block: 6px;
      }

      .menu-button.is-open::before {
        transform: translateY(7px) rotate(45deg);
      }

      .menu-button.is-open span {
        opacity: 0;
      }

      .menu-button.is-open::after {
        transform: translateY(-7px) rotate(-45deg);
      }

      .mobile-menu {
        position: fixed;
        z-index: 90;
        inset: 0;
        display: grid;
        align-content: center;
        padding: 120px 28px 40px;
        color: var(--white);
        background: var(--forest-deep);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition:
          opacity var(--ease),
          transform var(--ease);
      }

      .mobile-menu.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .mobile-menu nav {
        display: flex;
        flex-direction: column;
        gap: 14px;
      }

      .mobile-menu a {
        font-size: clamp(2.8rem, 11vw, 5.5rem);
        letter-spacing: -0.06em;
        line-height: 0.95;
      }

      /* Hero */
      .hero {
        position: relative;
        min-height: 100svh;
        padding: 0;
        overflow: hidden;
        background: var(--forest);
      }

      .hero > .container {
        width: 100%;
        max-width: none;
      }

      .hero-card {
        position: relative;
        min-height: 100svh;
        overflow: hidden;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        color: var(--white);
        background: var(--forest);
        isolation: isolate;
      }

      .hero-card img,
      .hero-card video {
        position: absolute;
        z-index: -2;
        inset: 0;
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
        object-position: center center;
        animation: slowZoom 10s ease-out both;
        will-change: transform;
      }

      .hero-card::before {
        position: absolute;
        z-index: -1;
        inset: 0;
        background:
          linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.12) 70%),
          linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42));
        content: "";
      }

      .hero-inner {
        display: flex;
        min-height: inherit;
        flex-direction: column;
        justify-content: space-between;
        padding: clamp(132px, 11vw, 170px) clamp(28px, 6vw, 90px)
          clamp(42px, 6vw, 90px);
      }

      .hero-top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 30px;
      }

      .hero-top-copy {
        max-width: 880px;
      }

      .hero h1 {
        max-width: 1000px;
        margin-top: 18px;
        font-size: clamp(4.2rem, 8vw, 9rem);
        text-wrap: balance;
      }

      .hero-lead {
        max-width: 590px;
        margin-top: 26px;
        color: rgba(253, 254, 255, 0.8);
        font-size: clamp(1.04rem, 1.35vw, 1.38rem);
        line-height: 1.2;
      }

      .hero-stat {
        min-width: 210px;
        padding-top: 8px;
        text-align: right;
      }

      .hero-stat strong {
        display: block;
        font-size: clamp(2.5rem, 4.4vw, 5.2rem);
        font-weight: 400;
        letter-spacing: -0.07em;
        line-height: 0.92;
      }

      .hero-stat span {
        display: block;
        max-width: 190px;
        margin: 10px 0 0 auto;
        color: rgba(253, 254, 255, 0.66);
        font-size: 0.78rem;
      }

      .hero-bottom {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 30px;
      }

      .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }

      .hero-note {
        max-width: 360px;
        color: rgba(253, 254, 255, 0.72);
        font-size: 0.8rem;
        text-align: right;
      }

      @keyframes slowZoom {
        from {
          transform: scale(1.06);
        }
        to {
          transform: scale(1);
        }
      }

      /* Customer-facing homepage sections */
      .home-section-head {
        display: grid;
        grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
        align-items: end;
        gap: clamp(36px, 7vw, 110px);
        margin-bottom: 42px;
      }

      .home-section-head h2 {
        max-width: 900px;
        margin-top: 20px;
        font-size: clamp(3.2rem, 6.2vw, 7rem);
      }

      .home-section-head > p {
        max-width: 560px;
        color: var(--muted);
        font-size: clamp(1rem, 1.25vw, 1.2rem);
        line-height: 1.35;
      }

      .signature-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
        isolation: isolate;
      }

      .signature-card {
        position: relative;
        display: block;
        padding-bottom: 24px;
        border-bottom: 1px solid var(--line);
      }

      .signature-card img {
        width: 112%;
        max-width: none;
        height: clamp(280px, 28vw, 430px);
        margin-inline: -6%;
        margin-bottom: 22px;
        object-fit: contain;
        object-position: center bottom;
        transition: transform var(--ease);
      }

      .signature-card:hover {
        z-index: 2;
      }

      .signature-card:hover img {
        transform: translateY(-5px);
      }

      .signature-card > span {
        color: var(--muted);
        font-size: 0.68rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      .signature-card h3 {
        margin-top: 12px;
        font-size: clamp(2rem, 3.4vw, 4rem);
      }

      .signature-card p {
        margin-top: 16px;
        color: var(--muted);
        font-size: 0.86rem;
      }

      .home-story-mini {
        background: rgba(28, 117, 71, 0.055);
      }

      .home-story-mini-grid {
        display: grid;
        min-height: 620px;
        grid-template-columns: 1.05fr 0.95fr;
        overflow: hidden;
        border-radius: var(--radius-lg);
        background: var(--paper);
      }

      .home-story-mini-grid > img {
        height: 100%;
        object-fit: contain;
        object-position: center;
        background: var(--paper);
      }

      .home-story-mini-grid > div {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: clamp(36px, 6vw, 88px);
      }

      .home-story-mini h2 {
        margin-top: 22px;
        font-size: clamp(3.2rem, 5.6vw, 6.5rem);
      }

      .home-story-mini p {
        max-width: 580px;
        margin: 26px 0 30px;
        color: var(--muted);
        font-size: clamp(1rem, 1.2vw, 1.18rem);
        line-height: 1.42;
      }

      .partner-proof {
        color: var(--white);
        background: var(--forest-deep);
      }

      .partner-proof .home-section-head > p {
        color: rgba(253, 254, 255, 0.68);
      }

      .partner-proof-grid,
      .brew-step-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        border-top: 1px solid currentColor;
        border-left: 1px solid currentColor;
      }

      .partner-proof-grid {
        color: rgba(253, 254, 255, 0.28);
      }

      .partner-proof-grid article,
      .brew-step-grid article {
        min-height: 300px;
        padding: clamp(25px, 3.5vw, 48px);
        border-right: 1px solid currentColor;
        border-bottom: 1px solid currentColor;
      }

      .partner-proof-grid article > *,
      .brew-step-grid article > * {
        color: var(--ink);
      }

      .partner-proof-grid article > * {
        color: var(--white);
      }

      .partner-proof-grid article > span,
      .brew-step-grid article > span {
        font-size: 0.72rem;
        opacity: 0.62;
      }

      .partner-proof-grid h3,
      .brew-step-grid h3 {
        margin-top: 76px;
        font-size: clamp(2rem, 3.2vw, 3.7rem);
      }

      .partner-proof-grid p,
      .brew-step-grid p {
        margin-top: 18px;
        font-size: 0.9rem;
        line-height: 1.4;
        opacity: 0.7;
      }

      .brew-guide {
        background: #f8ffc9;
      }

      .brew-step-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        color: rgba(28, 117, 71, 0.22);
      }

      .brew-step-grid article {
        min-height: 330px;
      }

      .brew-step-grid h3 {
        margin-top: 66px;
        font-size: clamp(1.75rem, 2.35vw, 2.9rem);
      }

      /* B2B segments */
      .segments {
        padding-top: 48px;
      }

      .segments-grid {
        display: grid;
        grid-template-columns: minmax(280px, 0.92fr) minmax(0, 2.08fr);
        align-items: start;
        gap: clamp(40px, 7vw, 110px);
      }

      .segments-intro {
        position: sticky;
        top: 118px;
      }

      .segments-intro h2 {
        max-width: 500px;
        margin-top: 22px;
        font-size: clamp(3.2rem, 5.4vw, 6rem);
      }

      .segments-intro p {
        max-width: 480px;
        margin-top: 24px;
        color: var(--muted);
        font-size: clamp(1rem, 1.3vw, 1.25rem);
        line-height: 1.18;
      }

      .segment-stage {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(2, 240px);
        gap: 20px;
      }

      .segment-card {
        position: relative;
        min-height: 0;
        overflow: hidden;
        border-radius: var(--radius-md);
        background: var(--sun-gradient-soft);
        isolation: isolate;
        will-change: transform, opacity;
      }

      .segment-stage.is-animating {
        pointer-events: none;
      }

      .segment-card img {
        position: absolute;
        z-index: -2;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 420ms cubic-bezier(0.2, 0.7, 0.3, 1);
      }

      .segment-card::before {
        position: absolute;
        z-index: -1;
        inset: 0;
        background: linear-gradient(
          180deg,
          rgba(0, 0, 0, 0.08),
          rgba(0, 0, 0, 0.62)
        );
        content: "";
      }

      .segment-card:hover img {
        transform: scale(1.045);
      }

      .segment-content {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 25px;
        color: var(--white);
      }

      .segment-card h3 {
        max-width: 320px;
        font-size: clamp(1.55rem, 2.2vw, 2.55rem);
        line-height: 0.96;
      }

      .segment-card p {
        max-width: 340px;
        color: rgba(253, 254, 255, 0.78);
        font-size: 0.88rem;
        line-height: 1.15;
      }

      .segment-arrows {
        display: flex;
        justify-content: flex-end;
        gap: 12px;
        margin-top: 26px;
      }

      .circle-button {
        display: grid;
        width: 56px;
        height: 56px;
        place-items: center;
        border: 1px solid rgba(28, 117, 71, 0.7);
        border-radius: 50%;
        color: var(--ink);
        background: var(--sun-gradient-soft);
        cursor: pointer;
        font-size: 1.6rem;
        transition:
          color var(--ease),
          background var(--ease),
          transform var(--ease);
      }

      .circle-button:hover {
        color: var(--forest);
        background: var(--sun-gradient);
        transform: scale(1.04);
      }

      /* Product solutions */
      .solutions {
        padding-top: 48px;
      }

      .solution-grid {
        display: grid;
        grid-template-columns: 1.65fr 0.84fr 0.84fr;
        gap: 18px;
        margin-top: 42px;
        transition: grid-template-columns 380ms cubic-bezier(0.2, 0.75, 0.25, 1);
      }

      .solution-card {
        position: relative;
        min-height: 610px;
        overflow: hidden;
        border-radius: var(--radius-md);
        color: var(--white);
        background: var(--forest);
        isolation: isolate;
        transition:
          transform 380ms cubic-bezier(0.2, 0.75, 0.25, 1),
          box-shadow 380ms cubic-bezier(0.2, 0.75, 0.25, 1);
      }

      @media (min-width: 1181px) {
        .solution-grid:has(.solution-card:nth-child(1):hover) {
          grid-template-columns: 1.65fr 0.84fr 0.84fr;
        }

        .solution-grid:has(.solution-card:nth-child(2):hover) {
          grid-template-columns: 0.84fr 1.65fr 0.84fr;
        }

        .solution-grid:has(.solution-card:nth-child(3):hover) {
          grid-template-columns: 0.84fr 0.84fr 1.65fr;
        }

        .solution-card:hover {
          z-index: 1;
          transform: translateY(-8px);
          box-shadow: 0 24px 54px rgba(28, 117, 71, 0.2);
        }
      }

      .solution-card--split {
        display: grid;
        grid-template-columns: 1fr 1.05fr;
      }

      .solution-card img {
        position: absolute;
        z-index: -2;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 440ms cubic-bezier(0.2, 0.7, 0.3, 1);
      }

      .solution-card:hover img {
        transform: scale(1.04);
      }

      .solution-card::before {
        position: absolute;
        z-index: -1;
        inset: 0;
        background: linear-gradient(
          180deg,
          rgba(0, 0, 0, 0.06),
          rgba(0, 0, 0, 0.68)
        );
        content: "";
      }

      .solution-card--split::before {
        display: none;
      }

      .solution-card--split .solution-image {
        position: relative;
        min-height: inherit;
        overflow: hidden;
      }

      .solution-card--split .solution-image img {
        position: absolute;
      }

      .solution-panel {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 28px;
        color: var(--white);
        background: var(--forest-deep);
      }

      .solution-panel h3,
      .solution-overlay h3 {
        font-size: clamp(2rem, 3vw, 3.6rem);
      }

      .solution-panel > p,
      .solution-overlay > p {
        margin-top: 12px;
        color: rgba(253, 254, 255, 0.72);
        font-size: 0.95rem;
        line-height: 1.15;
      }

      .solution-list {
        display: grid;
        gap: 14px;
        margin-top: 40px;
        color: rgba(253, 254, 255, 0.85);
        font-size: 0.88rem;
        line-height: 1.17;
      }

      .solution-list strong {
        display: block;
        margin-bottom: 2px;
        font-weight: 500;
      }

      .solution-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 26px;
      }

      .solution-overlay h3,
      .solution-overlay > p {
        text-align: center;
      }

      .solution-card--feature::before {
        background: linear-gradient(
          115deg,
          rgba(0, 0, 0, 0.72) 0%,
          rgba(0, 0, 0, 0.38) 45%,
          rgba(0, 0, 0, 0.58) 100%
        );
      }

      .solution-overlay--feature {
        padding: 34px;
      }

      .solution-overlay--feature h3,
      .solution-overlay--feature > p,
      .solution-overlay--feature .solution-list {
        text-align: left;
      }

      .solution-overlay--feature .solution-list {
        max-width: 520px;
      }

      .solution-caption {
        color: rgba(253, 254, 255, 0.86);
        font-size: 0.86rem;
        line-height: 1.16;
        text-align: center;
      }

      .solutions-action {
        display: flex;
        justify-content: center;
        margin-top: 36px;
      }

      /* Story-led tea collection */
      .product-showcase {
        padding: clamp(36px, 3.8vw, 58px) 0;
        overflow: hidden;
        background: var(--paper);
      }

      .product-showcase-header {
        display: grid;
        grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
        align-items: end;
        gap: clamp(40px, 9vw, 150px);
        margin-bottom: clamp(34px, 4vw, 56px);
      }

      .product-showcase-header h2 {
        max-width: 920px;
        margin-top: 20px;
        font-size: clamp(3.8rem, 7vw, 8.2rem);
        text-wrap: balance;
      }

      .product-showcase-header p {
        max-width: 480px;
        color: var(--muted);
        font-size: clamp(1rem, 1.35vw, 1.3rem);
        line-height: 1.3;
      }

      .tea-chapter {
        display: grid;
        min-height: 760px;
        grid-template-columns: minmax(230px, 0.48fr) minmax(0, 1.52fr);
        gap: clamp(36px, 7vw, 110px);
        align-items: center;
        padding: clamp(34px, 3.8vw, 56px) 0;
        border-top: 1px solid var(--line);
      }

      .tea-chapter:nth-child(even) {
        grid-template-columns: minmax(0, 1.52fr) minmax(230px, 0.48fr);
      }

      .tea-chapter:nth-child(even) .tea-chapter-copy {
        grid-column: 2;
        grid-row: 1;
      }

      .tea-chapter:nth-child(even) .tea-composition {
        grid-column: 1;
        grid-row: 1;
      }

      .tea-chapter-copy {
        position: sticky;
        top: 130px;
        padding-top: 10px;
      }

      .chapter-number {
        display: block;
        margin-bottom: 28px;
        color: var(--muted);
        font-size: 0.72rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
      }

      .tea-chapter-copy h3 {
        max-width: 460px;
        font-size: clamp(2.7rem, 4.5vw, 5.5rem);
        text-wrap: balance;
      }

      .tea-chapter-copy p {
        max-width: 450px;
        margin-top: 24px;
        color: var(--muted);
        font-size: clamp(0.98rem, 1.2vw, 1.15rem);
        line-height: 1.45;
      }

      .chapter-detail {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 28px;
      }

      .chapter-detail span {
        padding: 7px 12px;
        border: 1px solid rgba(28, 117, 71, 0.28);
        border-radius: var(--radius-sm);
        font-size: 0.7rem;
      }

      .tea-composition {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 14px;
        align-items: center;
        isolation: isolate;
      }

      .tea-portrait {
        position: relative;
        grid-column: span 7;
        min-height: 0;
        margin: 0;
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        outline: 0;
      }

      .tea-portrait--small {
        grid-column: span 5;
        min-height: 0;
        margin-top: 54px;
      }

      .tea-portrait img {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 0;
        margin-inline: 0;
        display: block;
        object-fit: contain;
        object-position: center;
        transition: transform 440ms cubic-bezier(0.2, 0.7, 0.3, 1);
      }

      .tea-portrait:hover {
        z-index: 2;
      }

      .tea-portrait:hover img {
        transform: translateY(-5px);
      }

      .tea-caption {
        position: absolute;
        right: 18px;
        bottom: 18px;
        left: auto;
        width: max-content;
        max-width: calc(100% - 36px);
        padding: 10px 14px;
        border: 1px solid rgba(253, 254, 255, 0.28);
        border-radius: 999px;
        color: var(--white);
        background: rgba(9, 44, 28, 0.82);
        backdrop-filter: blur(8px);
      }

      .tea-caption strong {
        display: block;
        font-size: clamp(0.76rem, 1vw, 0.94rem);
        font-weight: 500;
        letter-spacing: -0.01em;
        line-height: 1.15;
      }

      .collection-epilogue {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 30px;
        padding-top: clamp(40px, 5vw, 68px);
        border-top: 1px solid var(--line);
      }

      .collection-epilogue p {
        max-width: 760px;
        font-size: clamp(1.6rem, 3vw, 3.4rem);
        letter-spacing: -0.045em;
        line-height: 1.02;
      }

      /* Collection */
      .collection {
        color: var(--white);
        background: var(--forest-deep);
      }

      .collection .section-tag,
      .collection .section-title,
      .collection .section-copy {
        color: var(--white);
      }

      .collection .section-copy {
        color: rgba(253, 254, 255, 0.65);
      }

      .collection-toolbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        margin-top: 58px;
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(253, 254, 255, 0.2);
      }

      .filter-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }

      .filter-button {
        min-height: 35px;
        padding: 0 15px;
        border: 1px solid rgba(253, 254, 255, 0.38);
        border-radius: var(--radius-sm);
        color: rgba(253, 254, 255, 0.68);
        background: transparent;
        cursor: pointer;
        font-size: 0.75rem;
        transition:
          color var(--ease),
          background var(--ease),
          border-color var(--ease);
      }

      .filter-button:hover,
      .filter-button.is-active {
        color: var(--ink);
        background: var(--sun-gradient-soft);
        border-color: var(--mint);
      }

      .collection-count {
        color: rgba(253, 254, 255, 0.58);
        font-size: 0.78rem;
      }

      .product-carousel {
        position: relative;
        margin-top: 32px;
      }

      .product-grid {
        display: flex;
        gap: 18px;
        overflow-x: auto;
        padding: 2px 2px 18px;
        scroll-snap-type: x proximity;
        scrollbar-width: thin;
        scrollbar-color: var(--mint) transparent;
      }

      .product-card {
        --scroll-opacity: 1;
        --scroll-scale: 1;
        --scroll-lift: 0px;
        flex: 0 0 calc((100% - 54px) / 4);
        min-width: 260px;
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
        opacity: var(--scroll-opacity);
        scroll-snap-align: start;
        transform: translateY(var(--scroll-lift)) scale(var(--scroll-scale));
        transform-origin: center center;
        transition:
          opacity 220ms linear,
          transform 420ms cubic-bezier(0.2, 0.7, 0.3, 1);
      }

      .product-card.is-hidden {
        display: none;
      }

      .product-visual {
        position: relative;
        display: grid;
        min-height: 380px;
        place-items: center;
        overflow: hidden;
        border: 0;
        border-radius: var(--radius-md);
        background: transparent;
      }

      .product-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 360ms cubic-bezier(0.2, 0.7, 0.3, 1);
      }

      .product-card:hover .product-visual img {
        transform: translateY(-8px) scale(1.025);
      }

      .product-badge {
        position: absolute;
        top: 16px;
        left: 16px;
        padding: 6px 10px;
        border: 1px solid rgba(28, 117, 71, 0.4);
        border-radius: var(--radius-sm);
        color: var(--ink);
        font-size: 0.65rem;
      }

      .product-info {
        padding: 21px;
      }

      .product-type {
        display: block;
        margin-bottom: 11px;
        color: transparent;
        background: var(--sun-gradient-soft);
        background-clip: text;
        -webkit-background-clip: text;
        font-size: 0.72rem;
      }

      .product-name-row {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 16px;
      }

      .product-name-row h3 {
        font-size: 1.65rem;
        letter-spacing: -0.04em;
        line-height: 1;
      }

      .product-price {
        flex-shrink: 0;
        color: rgba(253, 254, 255, 0.62);
        font-size: 0.78rem;
      }

      .product-info p {
        margin-top: 12px;
        color: rgba(253, 254, 255, 0.58);
        font-size: 0.84rem;
        line-height: 1.2;
      }

      .carousel-controls {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        margin-top: 20px;
      }

      .collection .circle-button {
        color: var(--white);
        border-color: rgba(253, 254, 255, 0.58);
      }

      .collection .circle-button:hover {
        color: var(--ink);
        background: var(--sun-gradient-soft);
      }

      /* Private label */
      .private-label {
        min-height: 860px;
      }

      .private-label-head {
        max-width: 980px;
        margin-inline: auto;
        text-align: center;
      }

      .private-label-head h2 {
        margin-top: 20px;
        font-size: clamp(3.5rem, 6.2vw, 7rem);
        text-wrap: balance;
      }

      .private-label-head p {
        max-width: 640px;
        margin: 22px auto 0;
        color: var(--muted);
        font-size: clamp(1rem, 1.35vw, 1.35rem);
      }

      .private-label-head--banner {
        position: relative;
        max-width: none;
        padding: clamp(72px, 9vw, 130px) clamp(28px, 6vw, 90px);
        overflow: hidden;
        border-radius: var(--radius-md);
        color: var(--white);
        isolation: isolate;
      }

      .private-label-head--banner::before {
        position: absolute;
        z-index: -2;
        inset: 0;
        background: url("../images/our_field.jpeg") center / cover no-repeat;
        content: "";
      }

      .private-label-head--banner::after {
        position: absolute;
        z-index: -1;
        inset: 0;
        background: linear-gradient(
          180deg,
          rgba(0, 0, 0, 0.4),
          rgba(0, 0, 0, 0.56)
        );
        content: "";
      }

      .private-label-head--banner p {
        color: rgba(253, 254, 255, 0.82);
      }

      .process-carousel {
        max-width: 1180px;
        margin: 48px auto 0;
      }

      .process-scroller {
        display: flex;
        gap: 18px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        padding: 8px 2px 22px;
        scroll-behavior: smooth;
        scroll-padding-inline: 2px;
        scroll-snap-type: x proximity;
        scrollbar-width: thin;
        scrollbar-color: var(--mint) transparent;
        -webkit-overflow-scrolling: touch;
      }

      .process-scroller::-webkit-scrollbar {
        height: 7px;
      }

      .process-scroller::-webkit-scrollbar-track {
        background: transparent;
      }

      .process-scroller::-webkit-scrollbar-thumb {
        border-radius: 999px;
        background: var(--sun-gradient-soft);
      }

      /* Let the final two steps reach the leading/active position on desktop. */
      @media (min-width: 901px) {
        .process-scroller::after {
          flex: 0 0 calc((200% - 18px) / 3);
          content: "";
        }
      }

      .process-step-card {
        --scroll-opacity: 1;
        --scroll-scale: 1;
        --scroll-lift: 0px;
        position: relative;
        flex: 0 0 calc((100% - 36px) / 3);
        min-width: 310px;
        min-height: 330px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 28px;
        overflow: hidden;
        border-radius: var(--radius-md);
        color: var(--ink);
        background: var(--sun-gradient);
        opacity: var(--scroll-opacity);
        scroll-snap-align: start;
        transform: translateY(var(--scroll-lift)) scale(var(--scroll-scale));
        transform-origin: center center;
        transition:
          color var(--ease),
          background var(--ease),
          opacity 220ms linear,
          transform 420ms cubic-bezier(0.2, 0.7, 0.3, 1);
      }

      .process-step-card::after {
        position: absolute;
        right: 28px;
        bottom: 31px;
        left: 28px;
        height: 1px;
        background: rgba(28, 117, 71, 0.16);
        content: "";
      }

      .process-step-card.is-active {
        color: var(--white);
        background: var(--ink);
      }

      .process-step-card.is-active::after {
        background: rgba(253, 254, 255, 0.2);
      }

      .process-step-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
      }

      .process-index {
        display: grid;
        width: 42px;
        height: 42px;
        place-items: center;
        border: 1px solid currentColor;
        border-radius: 50%;
        font-size: 0.92rem;
      }

      .process-step-label {
        color: rgba(28, 117, 71, 0.46);
        font-size: 0.72rem;
      }

      .process-step-card.is-active .process-step-label {
        color: rgba(253, 254, 255, 0.58);
      }

      .process-step-content {
        position: relative;
        z-index: 1;
        padding-bottom: 38px;
      }

      .process-step-content h3 {
        font-size: clamp(2.35rem, 3.4vw, 4.1rem);
        letter-spacing: -0.06em;
      }

      .process-step-content p {
        max-width: 290px;
        margin-top: 18px;
        color: rgba(28, 117, 71, 0.62);
        font-size: 0.92rem;
        line-height: 1.16;
      }

      .process-step-card.is-active .process-step-content p {
        color: rgba(253, 254, 255, 0.68);
      }

      .process-progress {
        position: absolute;
        z-index: 2;
        right: 28px;
        bottom: 31px;
        left: 28px;
        height: 2px;
        overflow: hidden;
      }

      .process-progress span {
        display: block;
        width: var(--step-progress, 20%);
        height: 100%;
        background: currentColor;
      }

      .process-controls {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        margin-top: 20px;
      }

      .process-hint {
        color: var(--muted);
        font-size: 0.78rem;
      }

      .process-arrows {
        display: flex;
        gap: 10px;
      }

      .private-label-action {
        display: flex;
        justify-content: center;
        margin-top: 28px;
      }

      /* Quality */
      .quality {
        padding-top: 0;
      }

      .quality-card {
        position: relative;
        min-height: 720px;
        overflow: hidden;
        border-radius: var(--radius-lg);
        color: var(--white);
        background: var(--forest);
        isolation: isolate;
      }

      .quality-card img {
        position: absolute;
        z-index: -2;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .quality-card::before {
        position: absolute;
        z-index: -1;
        inset: 0;
        background: linear-gradient(
          90deg,
          rgba(0, 0, 0, 0.72),
          rgba(0, 0, 0, 0.08) 68%
        );
        content: "";
      }

      .quality-inner {
        display: flex;
        min-height: inherit;
        flex-direction: column;
        justify-content: space-between;
        padding: clamp(32px, 4.5vw, 64px);
      }

      .quality-copy {
        max-width: 800px;
      }

      .quality-copy h2 {
        margin-top: 18px;
        font-size: clamp(4rem, 7vw, 8.2rem);
        text-wrap: balance;
      }

      .quality-copy p {
        max-width: 640px;
        margin-top: 25px;
        color: rgba(253, 254, 255, 0.83);
        font-size: clamp(1rem, 1.3vw, 1.3rem);
        line-height: 1.15;
      }

      .quality-points {
        display: grid;
        max-width: 920px;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }

      .quality-point {
        padding-left: 18px;
        border-left: 1px solid rgba(253, 254, 255, 0.8);
      }

      .quality-point h3 {
        font-size: 1.1rem;
        letter-spacing: -0.035em;
        line-height: 1.05;
      }

      .quality-point p {
        margin-top: 10px;
        color: rgba(253, 254, 255, 0.72);
        font-size: 0.78rem;
        line-height: 1.18;
      }

      /* Certification partners */
      .certification-strip {
        padding-top: clamp(28px, 4vw, 56px);
      }

      .certification-heading {
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 32px;
        margin-bottom: 34px;
      }

      .certification-heading h2 {
        max-width: 820px;
        margin-top: 18px;
        font-size: clamp(3rem, 5.4vw, 6.4rem);
      }

      .certification-logos {
        display: grid;
        grid-template-columns: repeat(7, minmax(0, 1fr));
        align-items: center;
        gap: clamp(16px, 2.5vw, 36px);
        width: 100%;
      }

      .certification-logos img {
        width: 100%;
        height: 112px;
        object-fit: contain;
      }

      /* Story strip */
      .story-grid {
        display: grid;
        grid-template-columns: 1.08fr 0.92fr;
        gap: 18px;
      }

      .story-copy-card,
      .story-image-card {
        min-height: 640px;
        overflow: hidden;
        border-radius: var(--radius-lg);
      }

      .story-copy-card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: clamp(34px, 5vw, 72px);
        background: var(--sun-gradient);
      }

      .story-copy-card h2 {
        max-width: 730px;
        margin-top: 20px;
        font-size: clamp(3.4rem, 5.8vw, 7rem);
        text-wrap: balance;
      }

      .story-copy-card p {
        max-width: 620px;
        color: rgba(28, 117, 71, 0.7);
        font-size: clamp(1rem, 1.3vw, 1.25rem);
        line-height: 1.18;
      }

      .story-image-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      /* CTA */
      .cta-section {
        padding-top: 0;
      }

      .cta-card {
        position: relative;
        min-height: 760px;
        overflow: hidden;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        color: var(--white);
        background: var(--forest);
        isolation: isolate;
      }

      .cta-card > img {
        position: absolute;
        z-index: -2;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .cta-card::before {
        position: absolute;
        z-index: -1;
        inset: 0;
        background: linear-gradient(
          90deg,
          rgba(0, 0, 0, 0.7),
          rgba(0, 0, 0, 0.08)
        );
        content: "";
      }

      .cta-inner {
        display: grid;
        min-height: inherit;
        grid-template-columns: 1.05fr 0.95fr;
        align-items: end;
        gap: 80px;
        padding: clamp(38px, 5vw, 72px);
      }

      .cta-copy {
        align-self: start;
      }

      .cta-copy h2 {
        max-width: 840px;
        margin-top: 18px;
        font-size: clamp(4rem, 7.5vw, 8.6rem);
        text-wrap: balance;
      }

      .cta-copy p {
        max-width: 650px;
        margin-top: 25px;
        color: rgba(253, 254, 255, 0.8);
        font-size: clamp(1rem, 1.35vw, 1.35rem);
        line-height: 1.18;
      }

      .cta-form {
        display: grid;
        gap: 28px;
        padding: 34px;
        border: 1px solid rgba(253, 254, 255, 0.3);
        border-radius: var(--radius-md);
        background: rgba(28, 117, 71, 0.24);
        backdrop-filter: blur(10px);
      }

      .cta-form h3 {
        font-size: 2.2rem;
        letter-spacing: -0.05em;
      }

      .field-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }

      .field {
        display: grid;
        gap: 8px;
      }

      .field label {
        color: rgba(253, 254, 255, 0.65);
        font-size: 0.72rem;
      }

      .field input,
      .field select,
      .field textarea {
        width: 100%;
        min-height: 48px;
        padding: 0 0 8px;
        border: 0;
        border-bottom: 1px solid rgba(253, 254, 255, 0.68);
        border-radius: 0;
        outline: 0;
        color: var(--white);
        background: transparent;
      }

      .field textarea {
        min-height: 90px;
        padding-top: 8px;
        resize: vertical;
      }

      .field input::placeholder,
      .field textarea::placeholder {
        color: rgba(253, 254, 255, 0.68);
      }

      .field select {
        appearance: none;
      }

      .field select option {
        color: var(--ink);
      }

      .form-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }

      /* Footer */
      .site-footer {
        padding: 36px 0;
        background: var(--paper);
      }

      .footer-card {
        display: grid;
        grid-template-columns: 1.45fr 0.7fr 0.7fr;
        gap: 70px;
        padding: clamp(36px, 5vw, 72px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(28, 117, 71, 0.16);
        background: var(--sun-gradient);
        box-shadow: 0 20px 55px rgba(164, 132, 0, 0.14);
      }

      .footer-lead h2 {
        max-width: 720px;
        font-size: clamp(3.6rem, 6vw, 7.1rem);
        text-wrap: balance;
      }

      .footer-column h3 {
        margin-bottom: 18px;
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: -0.03em;
      }

      .footer-column p,
      .footer-column a {
        display: block;
        width: fit-content;
        margin-bottom: 8px;
        color: rgba(28, 117, 71, 0.72);
        font-size: 0.86rem;
        line-height: 1.18;
      }

      .footer-column:nth-child(3) > a { font-size: 0.98rem; }

      .social-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
      }

      .social-pills a {
        margin: 0;
        padding: 9px 14px;
        border: 1px solid rgba(28, 117, 71, 0.45);
        border-radius: 8px;
        transition:
          color var(--ease),
          background var(--ease);
      }

      .social-pills a:hover {
        color: var(--white);
        background: var(--ink);
      }

      .footer-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding-top: 24px;
        color: rgba(28, 117, 71, 0.55);
        font-size: 0.75rem;
      }

      /* Reveal animation */
      .js [data-reveal] {
        opacity: 0;
        transform: translateY(24px);
        transition:
          opacity 420ms cubic-bezier(0.2, 0.7, 0.3, 1),
          transform 420ms cubic-bezier(0.2, 0.7, 0.3, 1);
      }

      .js [data-reveal].is-visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* Responsive */
      @media (max-width: 1180px) {
        .desktop-nav,
        .nav-actions > a:not(.button) {
          display: none;
        }
        .nav-dropdown { display: none; }

        .menu-button {
          display: block;
          justify-self: start;
        }

        .segments-grid {
          grid-template-columns: 1fr;
        }

        .segments-intro {
          position: static;
        }

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

        .solution-grid {
          grid-template-columns: 1.35fr 0.82fr;
        }

        .solution-card:last-child {
          grid-column: 1 / 3;
          min-height: 460px;
        }

        .product-card {
          flex-basis: calc((100% - 36px) / 3);
        }

        .product-showcase-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 900px) {
        .home-section-head,
        .home-story-mini-grid {
          grid-template-columns: 1fr;
        }

        .signature-grid,
        .partner-proof-grid {
          grid-template-columns: 1fr;
        }

        .home-story-mini-grid > img {
          height: 460px;
        }

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

        .product-showcase-header,
        .tea-chapter,
        .tea-chapter:nth-child(even) {
          grid-template-columns: 1fr;
        }

        .tea-chapter-copy,
        .tea-chapter:nth-child(even) .tea-chapter-copy {
          position: static;
          grid-column: 1;
          grid-row: auto;
        }

        .tea-chapter:nth-child(even) .tea-composition {
          grid-column: 1;
          grid-row: auto;
        }

        .hero-top,
        .hero-bottom {
          align-items: flex-start;
          flex-direction: column;
        }

        .hero-stat,
        .hero-note {
          text-align: left;
        }

        .hero-stat span {
          margin-left: 0;
        }

        .segment-stage {
          grid-template-columns: 1fr 1fr;
        }

        .solution-grid,
        .story-grid,
        .cta-inner,
        .footer-card {
          grid-template-columns: 1fr;
        }

        .solution-card:last-child {
          grid-column: auto;
        }

        .product-card {
          flex-basis: calc((100% - 18px) / 2);
        }

        .process-step-card {
          flex-basis: calc((100% - 18px) / 2);
        }

        .quality-points {
          grid-template-columns: 1fr;
        }

        .cta-inner {
          align-items: start;
        }

        .footer-card {
          gap: 44px;
        }

        .product-showcase-grid {
          grid-template-columns: 1fr;
          max-width: 480px;
          margin-inline: auto;
        }
      }

      @media (min-width: 681px) and (max-width: 900px) {
        .tea-chapter,
        .tea-chapter:nth-child(even) {
          grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
          align-items: start;
          gap: 32px;
        }

        .tea-chapter-copy,
        .tea-chapter:nth-child(even) .tea-chapter-copy {
          grid-column: 1;
          grid-row: 1;
        }

        .tea-composition,
        .tea-chapter:nth-child(even) .tea-composition {
          display: grid;
          grid-column: 2;
          grid-row: 1;
          grid-template-columns: repeat(12, minmax(0, 1fr));
          gap: 10px;
          overflow: visible;
        }

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

        .tea-portrait--small {
          min-height: 300px;
          margin-top: 72px;
        }
      }

      @media (max-width: 680px) {
        .site-header {
          padding: 8px 0;
        }

        .site-header .nav-shell,
        .site-header.is-scrolled .nav-shell {
          width: min(var(--container), calc(100% - 24px));
          min-height: 64px;
          padding: 6px 12px;
          border: 1px solid rgba(28, 117, 71, 0.14);
          border-radius: var(--radius-sm);
        }

        .menu-button {
          position: relative;
          z-index: 1;
          width: 44px;
          height: 44px;
        }

        .mobile-menu {
          inset: 72px 0 0;
          align-content: start;
          overflow-y: auto;
          padding: 12px 20px 28px;
          overscroll-behavior: contain;
        }

        .mobile-menu nav {
          gap: 0;
        }

        .mobile-menu a {
          display: block;
          padding: 9px 2px;
          border-bottom: 1px solid rgba(253, 254, 255, 0.16);
          font-size: clamp(1.05rem, 5.2vw, 1.35rem);
          font-weight: 400;
          letter-spacing: -0.025em;
          line-height: 1.15;
        }

        .home-section-head {
          gap: 20px;
          margin-bottom: 28px;
        }

        .signature-grid {
          display: flex;
          gap: 14px;
          overflow-x: auto;
          padding-bottom: 16px;
          scroll-snap-type: x mandatory;
        }

        .signature-card {
          flex: 0 0 84%;
          scroll-snap-align: start;
        }

        .signature-card img {
          width: 100%;
          max-width: 100%;
          height: 340px;
          margin-inline: 0;
        }

        .home-story-mini-grid > img {
          height: 340px;
        }

        .home-story-mini-grid > div {
          padding: 30px 24px;
        }

        .brew-step-grid {
          grid-template-columns: 1fr;
        }

        .partner-proof-grid article,
        .brew-step-grid article {
          min-height: 250px;
        }

        .product-showcase-header {
          margin-bottom: 40px;
        }

        .tea-chapter {
          min-height: 0;
          gap: 42px;
          padding: 34px 0;
        }

        .tea-composition {
          display: flex;
          gap: 12px;
          overflow-x: auto;
          padding-bottom: 14px;
          scroll-snap-type: x mandatory;
        }

        .tea-portrait,
        .tea-portrait--small {
          flex: 0 0 84%;
          min-height: 0;
          margin-top: 0;
          scroll-snap-align: start;
        }

        .tea-portrait img {
          width: 100%;
          max-width: 100%;
          margin-inline: 0;
        }

        .collection-epilogue {
          grid-template-columns: 1fr;
          justify-items: start;
        }

        .container {
          width: min(var(--container), calc(100% - 24px));
        }

        .section {
          padding: 32px 0;
        }

        .nav-shell {
          grid-template-columns: 1fr auto 1fr;
          min-height: 60px;
        }

        .brand img {
          width: 102px;
          height: 40px;
        }

        .nav-actions .button {
          display: none;
        }
        .certification-heading { align-items: flex-start; flex-direction: column; }
        .certification-heading h2 { font-size: clamp(2.8rem, 13vw, 4.6rem); }
        .certification-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
        .certification-logos img { height: 120px; }

        .hero {
          min-height: 100svh;
          padding-top: 0;
        }

        .hero-card {
          min-height: 100svh;
        }

        .hero-inner {
          padding: 112px 24px 30px;
        }

        .hero h1 {
          font-size: clamp(2.9rem, 13vw, 5.6rem);
          line-height: 1;
        }

        .hero-lead {
          font-size: 1rem;
        }

        .hero-actions {
          width: 100%;
        }

        .hero-actions .button {
          flex: 1 1 100%;
        }

        .segment-stage,
        .solution-grid {
          grid-template-columns: 1fr;
        }

        .segment-stage {
          display: flex;
          gap: 14px;
          margin-right: -12px;
          padding-right: 12px;
          padding-bottom: 12px;
          overflow-x: auto;
          overscroll-behavior-inline: contain;
          scroll-behavior: smooth;
          scroll-snap-type: x mandatory;
          scrollbar-width: none;
          -webkit-overflow-scrolling: touch;
        }

        .segment-stage::-webkit-scrollbar {
          display: none;
        }

        .segment-card,
        .segment-card:first-child {
          flex: 0 0 88%;
          min-height: 430px;
          grid-column: auto;
          scroll-snap-align: start;
          scroll-snap-stop: always;
        }

        .segment-arrows {
          justify-content: flex-start;
        }

        .solution-card,
        .solution-card:last-child {
          min-height: 480px;
          grid-column: auto;
        }

        .solution-overlay,
        .solution-overlay--feature {
          justify-content: flex-end;
          padding: 26px 22px;
        }

        .solution-overlay > div:first-child {
          margin-bottom: 18px;
        }

        .solution-overlay--feature .solution-list {
          max-width: none;
          margin-top: 18px;
        }

        .collection-toolbar {
          align-items: flex-start;
          flex-direction: column;
        }

        .product-card {
          flex-basis: 82%;
        }

        .process-carousel {
          margin-top: 46px;
        }

        .process-step-card {
          flex-basis: 86%;
          min-width: 280px;
          min-height: 315px;
        }

        .process-controls {
          align-items: flex-start;
        }

        .process-hint {
          max-width: 180px;
        }

        .quality-card,
        .story-copy-card,
        .story-image-card,
        .cta-card {
          min-height: 590px;
        }

        .quality-inner,
        .cta-inner {
          padding: 28px 22px;
        }

        .quality-copy h2,
        .cta-copy h2 {
          font-size: clamp(2.8rem, 12vw, 5.7rem);
          line-height: 1.02;
        }

        .private-label-head h2,
        .private-label-head--banner h2 {
          font-size: clamp(2.6rem, 11vw, 5rem);
        }

        .private-label-head--banner {
          padding: 56px 22px;
        }

        .segments-intro h2,
        .story-copy-card h2 {
          font-size: clamp(2.7rem, 11vw, 5.4rem);
        }

        .field-row {
          grid-template-columns: 1fr;
        }

        .cta-form {
          padding: 24px 20px;
        }

        .footer-card {
          padding: 34px 24px;
        }

        .footer-bottom {
          align-items: flex-start;
          flex-direction: column;
        }

        .product-showcase-grid {
          max-width: 100%;
        }
      }

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

        *,
        *::before,
        *::after {
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.01ms !important;
        }
      }
