:root {
  --forest: #123d32; --forest-deep: #092a22; --tea: #6b4027; --ivory: #f7f2e8;
  --gold: #c89b4a; --leaf: #6d8f63; --charcoal: #202623; --white: #fffdf8;
  --muted: #6f756f; --line: rgba(18,61,50,.16); --line-light: rgba(255,255,255,.18);
  --font-display: "DM Serif Display", Georgia, serif; --font-body: "Manrope", Arial, sans-serif;
  --container: 1240px; --space-section: clamp(5.5rem, 11vw, 10rem);
  --radius-sm: .35rem; --radius-md: .8rem; --radius-lg: 1.6rem;
  --shadow: 0 26px 70px rgba(18,40,32,.14); --fast: 180ms; --normal: 380ms; --slow: 850ms;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body { margin: 0; background: var(--ivory); color: var(--charcoal); font-family: var(--font-body); font-size: 16px; line-height: 1.65; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.section { padding-block: var(--space-section); }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 999; padding: .8rem 1rem; background: var(--white); color: var(--forest); transition: top var(--fast); }
.skip-link:focus { top: 1rem; }
.announcement { position: relative; z-index: 101; height: 34px; background: var(--forest-deep); color: rgba(255,255,255,.78); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.announcement__inner { height: 100%; display: flex; align-items: center; gap: .65rem; }
.announcement__inner p { margin: 0; transition: opacity var(--normal), transform var(--normal); }
.announcement__inner p.is-changing { opacity: 0; transform: translateY(-5px); }
.announcement__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(200,155,74,.15); }
.region { margin-left: auto; padding-left: 1rem; border-left: 1px solid var(--line-light); }
.site-header { position: fixed; z-index: 100; top: 34px; left: 0; right: 0; color: var(--white); transition: background var(--normal), box-shadow var(--normal), transform var(--normal); }
.site-header.is-scrolled { top: 0; color: var(--forest); background: rgba(247,242,232,.92); backdrop-filter: blur(18px); box-shadow: 0 10px 40px rgba(18,61,50,.09); }
.nav-shell { min-height: 78px; display: flex; align-items: center; gap: 2rem; }
.brand { width: clamp(190px, 18vw, 246px); color: currentColor; flex: none; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: none; margin-left: auto; gap: 1.55rem; font-size: .76rem; font-weight: 600; }
.desktop-nav a { position: relative; white-space: nowrap; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.5rem; height: 1px; background: var(--gold); transition: right var(--normal); }
.desktop-nav a:hover::after { right: 0; }
.nav-actions { display: none; align-items: center; gap: 1rem; margin-left: auto; }
.text-link { font-size: .75rem; font-weight: 700; }
.unavailable-link { color: currentColor; opacity: .72; cursor: default; white-space: nowrap; }
.menu-toggle { margin-left: auto; width: 46px; height: 46px; border: 1px solid currentColor; border-radius: 50%; background: transparent; display: grid; place-content: center; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 18px; height: 1px; background: currentColor; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .9rem; min-height: 54px; padding: .8rem 1.4rem; border: 1px solid transparent; border-radius: 999px; font-size: .78rem; font-weight: 700; letter-spacing: .02em; cursor: pointer; transition: transform var(--fast), background var(--fast), color var(--fast), border-color var(--fast); }
.button--small { min-height: 42px; padding-inline: 1.15rem; }
.button--gold { color: #18291f; background: var(--gold); }
.button--gold:hover { background: #dcaf5a; }
.button--glass { color: var(--white); border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.04); backdrop-filter: blur(5px); }
.button--glass:hover { background: rgba(255,255,255,.13); }
.button--dark { color: var(--white); background: var(--forest); }
.button:disabled { opacity: .55; cursor: wait; }
.menu-backdrop { position: fixed; inset: 0; z-index: 119; background: rgba(4,22,18,.58); opacity: 0; transition: opacity var(--normal); }
.menu-backdrop.is-open { opacity: 1; }
.mobile-menu { position: fixed; z-index: 120; top: 0; right: 0; width: min(92vw, 430px); height: 100dvh; padding: 6rem 2.2rem 2rem; display: flex; flex-direction: column; gap: .65rem; background: var(--ivory); color: var(--forest); transform: translateX(105%); visibility: hidden; transition: transform var(--normal), visibility var(--normal); }
.mobile-menu.is-open { transform: none; visibility: visible; }
.mobile-menu > a:not(.button) { padding: .55rem 0; font-family: var(--font-display); font-size: clamp(1.6rem, 7vw, 2.4rem); border-bottom: 1px solid var(--line); }
.mobile-menu .button { margin-top: 1rem; }
.menu-close { position: absolute; right: 1.5rem; top: 1.5rem; width: 45px; height: 45px; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 1.8rem; cursor: pointer; }
.menu-location { margin-top: auto; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.hero { position: relative; min-height: max(760px, 100svh); display: flex; align-items: center; overflow: hidden; color: var(--white); background: var(--forest); }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(5,29,23,.94) 0%, rgba(7,37,29,.7) 48%, rgba(5,24,19,.25) 100%), linear-gradient(0deg, rgba(4,23,18,.7), transparent 45%); }
.hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: heroZoom 18s ease-out both; }
.hero__mist { position: absolute; z-index: 2; inset: 0; background: radial-gradient(ellipse at 72% 55%, transparent, rgba(8,32,25,.26) 48%, transparent 70%); animation: mistMove 12s ease-in-out infinite alternate; }
.hero__content { position: relative; z-index: 3; display: grid; gap: 3rem; align-items: center; padding-top: 9rem; padding-bottom: 9.5rem; }
.hero__copy { max-width: 800px; }
.eyebrow, .kicker { margin: 0 0 1.2rem; color: var(--leaf); font-size: .68rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow { display: flex; flex-wrap: wrap; align-items: center; gap: .65rem; color: #d6decf; }
.eyebrow i { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--font-display); font-weight: 400; line-height: .99; letter-spacing: -.025em; text-wrap: balance; }
h1 { max-width: 850px; margin-bottom: 1.5rem; font-size: clamp(3.25rem, 8.3vw, 7.8rem); }
h2 { margin-bottom: 1.6rem; color: var(--forest); font-size: clamp(2.7rem, 5.7vw, 5.4rem); }
h3 { line-height: 1.25; }
.hero__lead { max-width: 670px; color: rgba(255,255,255,.77); font-size: clamp(1rem, 1.4vw, 1.18rem); }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.route-card { position: relative; width: min(100%, 460px); padding: 1rem; justify-self: end; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-md); background: rgba(6,34,26,.37); box-shadow: var(--shadow); backdrop-filter: blur(8px); transition: transform var(--normal); }
.route-card__top, .route-card__bottom { display: flex; justify-content: space-between; gap: 1rem; color: rgba(255,255,255,.6); font-size: .55rem; letter-spacing: .09em; text-transform: uppercase; }
.route-card__top strong { color: var(--gold); }
.route-map { width: 100%; margin-block: .5rem; }
.route-map .land { fill: rgba(255,255,255,.04); stroke: rgba(255,255,255,.16); stroke-width: 1; }
.route { fill: none; stroke: var(--gold); stroke-width: 1.2; stroke-dasharray: 6 8; animation: routeFlow 5s linear infinite; }
.route--delay { animation-delay: -1.5s; }.route--delay2 { animation-delay: -3s; }
.point { fill: #fff; }.point--origin { fill: var(--gold); }
.origin-ring { fill: none; stroke: var(--gold); opacity: .8; animation: pulse 2.6s ease-out infinite; }
.trust-strip { position: absolute; z-index: 4; left: 50%; bottom: 1.3rem; transform: translateX(-50%); display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.22); }
.trust-strip span { padding: .75rem; color: rgba(255,255,255,.42); font-size: .58rem; }
.trust-strip strong { display: block; color: rgba(255,255,255,.82); font-size: .67rem; font-weight: 600; }
.scroll-cue { display: none; }
.split { display: grid; gap: 4rem; align-items: center; }
.intro__visual { position: relative; min-height: 570px; }
.image-main { width: 83%; height: 510px; margin: 0; overflow: hidden; border-radius: 48% 48% 1rem 1rem; background: var(--leaf); }
.image-main img, .image-inset img { width: 100%; height: 100%; object-fit: cover; }
.image-inset { position: absolute; right: 0; bottom: 0; width: 42%; height: 240px; margin: 0; overflow: hidden; border: 10px solid var(--ivory); border-radius: 50% 50% .5rem .5rem; background: var(--tea); }
.location-stamp { position: absolute; top: 8%; right: 0; padding: 1rem; border-radius: 50%; background: var(--gold); color: var(--forest); font-size: .62rem; line-height: 1.4; letter-spacing: .08em; text-align: center; text-transform: uppercase; transform: rotate(7deg); }
.location-stamp span { font-size: .55rem; }
.intro__copy > p:not(.kicker) { color: #59615c; }
.arrow-link { display: inline-flex; align-items: center; gap: 1.5rem; margin-top: 1rem; padding-bottom: .4rem; border-bottom: 1px solid var(--forest); color: var(--forest); font-size: .8rem; font-weight: 700; }
.arrow-link span { transition: transform var(--fast); }.arrow-link:hover span { transform: translateX(5px); }
.products { background: #eee8dc; }
.section-heading { display: grid; gap: 1rem; align-items: end; margin-bottom: 3rem; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 440px; margin-bottom: .4rem; color: var(--muted); }
.filter-bar { display: flex; gap: .6rem; margin-bottom: 2.2rem; padding-bottom: .5rem; overflow-x: auto; scrollbar-width: none; }
.filter { flex: none; padding: .65rem 1rem; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: #56615a; font-size: .69rem; font-weight: 700; cursor: pointer; transition: all var(--fast); }
.filter:hover, .filter.is-active { border-color: var(--forest); background: var(--forest); color: var(--white); }
.product-grid { display: grid; gap: 1.2rem; transition: opacity var(--fast), transform var(--fast); }
.product-grid.is-filtering { opacity: 0; transform: translateY(8px); }
.product-card { min-width: 0; overflow: hidden; border-radius: var(--radius-md); background: var(--white); box-shadow: 0 8px 30px rgba(18,61,50,.05); transition: transform var(--normal), box-shadow var(--normal); animation: cardIn .45s both; animation-delay: calc(var(--i) * 50ms); }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.product-card__image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: linear-gradient(135deg, var(--forest), var(--leaf)); }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--slow); }
.product-card:hover img { transform: scale(1.055); }
.product-card__number { position: absolute; left: 1rem; top: 1rem; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: rgba(247,242,232,.9); color: var(--forest); font-size: .62rem; font-weight: 700; backdrop-filter: blur(5px); }
.product-card__body { padding: 1.25rem; }
.product-card__origin { margin-bottom: .55rem; color: var(--leaf); font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.product-card h3 { margin-bottom: .7rem; color: var(--forest); font-family: var(--font-display); font-size: 1.65rem; font-weight: 400; }
.product-card__body > p:not(.product-card__origin) { min-height: 6.2em; color: var(--muted); font-size: .78rem; }
.product-card__footer { display: flex; align-items: end; justify-content: space-between; gap: .8rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.product-card__footer div { display: flex; flex-wrap: wrap; gap: .3rem; }
.product-card__footer span { padding: .25rem .45rem; border: 1px solid var(--line); border-radius: 999px; font-size: .51rem; text-transform: uppercase; }
.product-card__footer a { flex: none; color: var(--forest); font-size: .64rem; font-weight: 700; }
.tea-story { display: grid; background: var(--forest); color: rgba(255,255,255,.75); }
.tea-story__image { position: relative; min-height: 520px; overflow: hidden; }
.tea-story__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, var(--forest)); }
.tea-story__image img { width: 100%; height: 100%; object-fit: cover; }
.vertical-label { position: absolute; z-index: 2; left: 1.5rem; bottom: 2rem; color: var(--white); font-size: .59rem; letter-spacing: .17em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }
.tea-story__copy { position: relative; padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 7vw, 7rem); overflow: hidden; }
.tea-story h2, .private-label h2, .trade-cta h2, .quality h2 { color: var(--white); }
.tea-story h2 { font-size: clamp(3rem, 5.4vw, 5.5rem); }
.kicker--light { color: #d5c49b; }
.origin-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 2rem 0; padding: 1.3rem 0; border-block: 1px solid var(--line-light); }
.origin-meta small, .contact-note small { display: block; margin-bottom: .2rem; color: rgba(255,255,255,.45); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; }
.origin-meta strong { color: var(--white); font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; }
.tag-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag-row span { padding: .45rem .75rem; border: 1px solid var(--line-light); border-radius: 999px; color: rgba(255,255,255,.72); font-size: .6rem; }
.tea-cup { position: absolute; right: -80px; bottom: -110px; width: 250px; height: 190px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.tea-cup i { position: absolute; bottom: 85%; width: 1px; height: 85px; background: linear-gradient(transparent, rgba(255,255,255,.25)); animation: steam 4s ease-in-out infinite; }
.tea-cup i:nth-child(1) { left: 35%; }.tea-cup i:nth-child(2) { left: 50%; animation-delay: -1.3s; }.tea-cup i:nth-child(3) { left: 65%; animation-delay: -2.4s; }
.pillar-grid { display: grid; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.pillar { position: relative; min-height: 300px; padding: 1.5rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background var(--normal), color var(--normal); }
.pillar > span { color: var(--leaf); font-size: .6rem; }
.line-icon { display: block; margin: 2.2rem 0; color: var(--gold); font-family: var(--font-display); font-size: 2.2rem; font-style: normal; }
.pillar h3 { color: var(--forest); font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; }
.pillar p { color: var(--muted); font-size: .79rem; }
.pillar:hover { background: var(--forest); }.pillar:hover h3, .pillar:hover p { color: var(--white); }
.process { background: var(--white); }
.process-list { position: relative; margin: 0; padding: 0; list-style: none; }
.process-list::before { content: ""; position: absolute; top: 0; bottom: 0; left: 23px; width: 1px; background: var(--line); }
.process-list li { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 1.1rem; padding-bottom: 2.5rem; }
.process-list li > span { z-index: 1; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--white); color: var(--forest); font-size: .62rem; font-weight: 700; transition: background var(--normal), color var(--normal); }
.process-list li:hover > span { background: var(--gold); }
.process-list h3 { margin: .1rem 0 .5rem; color: var(--forest); font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; }
.process-list p { color: var(--muted); font-size: .84rem; }
.fine-print { padding: 1rem; border-left: 2px solid var(--gold); background: #f3eee4; color: var(--muted); font-size: .72rem; }
.private-label { position: relative; overflow: hidden; padding-block: var(--space-section); background: var(--forest-deep); color: rgba(255,255,255,.72); }
.private-label::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 35%, rgba(109,143,99,.22), transparent 32%); }
.private-label__grid { position: relative; display: grid; gap: 5rem; align-items: center; }
.packaging-scene { position: relative; min-height: 420px; perspective: 1000px; }
.box, .pouch, .tin { position: absolute; display: flex; align-items: center; justify-content: center; color: var(--forest); box-shadow: 0 40px 65px rgba(0,0,0,.3); }
.box { left: 28%; bottom: 0; width: 190px; height: 310px; flex-direction: column; background: #e7d6b7; transform: rotateY(-8deg) rotateX(2deg); }
.box::before { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(18,61,50,.28); }
.box span { font-family: var(--font-display); font-size: 2.2rem; line-height: .9; text-align: center; }
.box small { margin-top: 1rem; letter-spacing: .18em; }
.pouch { left: 7%; bottom: 10px; width: 170px; height: 240px; border-radius: 7px 7px 20px 20px; background: #8da080; transform: rotate(-8deg); }
.pouch::before { content: ""; position: absolute; top: 12px; left: 10px; right: 10px; border-top: 1px solid rgba(18,61,50,.4); }
.pouch span { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-align: center; }
.tin { right: 5%; bottom: 0; width: 150px; height: 230px; border-radius: 75px 75px 15px 15px; background: var(--gold); }
.tin span { display: grid; place-items: center; width: 65px; height: 65px; border: 1px solid var(--forest); border-radius: 50%; font-family: var(--font-display); font-size: 2rem; }
.markets__grid { display: grid; gap: 4rem; align-items: center; }
.buyer-list { display: flex; flex-wrap: wrap; gap: .55rem; }
.buyer-list span { padding: .65rem .9rem; border: 1px solid var(--line); border-radius: 999px; color: var(--forest); font-size: .7rem; }
.globe-graphic { position: relative; min-height: 420px; display: grid; place-items: end center; overflow: hidden; border-radius: 50% 50% 1rem 1rem; background: var(--forest); color: var(--white); }
.globe-lines { position: absolute; top: 35px; width: 350px; height: 350px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: repeating-radial-gradient(ellipse at center, transparent 0 38px, rgba(255,255,255,.075) 39px 40px), repeating-linear-gradient(90deg, transparent 0 55px, rgba(255,255,255,.07) 56px 57px); }
.globe-lines::before, .globe-lines::after { content: ""; position: absolute; inset: 10% 35%; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.globe-lines::after { inset: 35% 5%; }
.globe-origin { position: absolute; z-index: 2; top: 43%; left: 59%; font-size: .6rem; text-transform: uppercase; }
.globe-origin i { position: absolute; left: -15px; top: 4px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 8px rgba(200,155,74,.18); animation: pulse 2.5s infinite; }
.globe-graphic p { z-index: 2; margin-bottom: 1.4rem; color: rgba(255,255,255,.55); font-family: var(--font-display); font-size: 1rem; text-align: center; }
.quality { padding-top: 0; }
.quality-card { display: grid; gap: 2rem; padding: clamp(2rem, 5vw, 5rem); border-radius: var(--radius-lg); background: var(--forest); color: rgba(255,255,255,.72); box-shadow: var(--shadow); }
.quality-card ul { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.quality-card li { position: relative; padding: .75rem 0 .75rem 1.3rem; border-bottom: 1px solid var(--line-light); font-size: .78rem; }
.quality-card li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); }
.disclaimer { grid-column: 1 / -1; margin: 0; padding: 1rem; border: 1px solid rgba(200,155,74,.4); border-radius: var(--radius-sm); color: #e6ddca; font-size: .7rem; }
.expectations { padding-top: 0; }
.expectation-grid { display: grid; gap: 1rem; }
.expectation-grid article { min-height: 230px; padding: 1.5rem; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); background: rgba(255,255,255,.28); }
.expectation-grid span { color: var(--gold); font-size: .7rem; }
.expectation-grid h3 { max-width: 280px; margin: 0; color: var(--forest); font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; }
.trade-cta { position: relative; overflow: hidden; padding-block: clamp(5rem, 10vw, 9rem); background: linear-gradient(110deg, rgba(7,34,27,.96), rgba(18,61,50,.78)), url("assets/brahmaputra-landscape.jpg") center/cover; color: rgba(255,255,255,.78); text-align: center; }
.trade-cta__inner { max-width: 900px; }
.trade-cta .button-row { justify-content: center; }
.contact__grid { display: grid; gap: 4rem; align-items: start; }
.contact__intro { position: sticky; top: 9rem; }
.contact__intro > p:not(.kicker) { color: var(--muted); }
.contact-note { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.contact-note small { margin-top: 1rem; color: var(--leaf); }
.contact-note strong { color: var(--forest); font-size: .85rem; }
.enquiry-form { padding: clamp(1.3rem, 4vw, 3rem); border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 20px 55px rgba(18,61,50,.06); }
.form-grid { display: grid; gap: 1.1rem; }
.field label { display: block; margin-bottom: .35rem; color: #445047; font-size: .67rem; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; padding: .8rem 0; border: 0; border-bottom: 1px solid rgba(18,61,50,.28); border-radius: 0; background: transparent; color: var(--charcoal); outline: 0; transition: border-color var(--fast); }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--gold); box-shadow: 0 1px var(--gold); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-bottom-color: #a43c34; }
.field textarea { resize: vertical; }
.error { display: block; min-height: 1.1em; margin-top: .2rem; color: #9e332e; font-size: .61rem; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.consent { display: flex; align-items: flex-start; gap: .7rem; margin-top: 1.3rem; color: #59615c; font-size: .68rem; cursor: pointer; }
.consent input { flex: none; width: 17px; height: 17px; margin-top: 2px; accent-color: var(--forest); }
.form-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }
.form-status { min-height: 1.4em; margin: 1rem 0 0; color: var(--forest); font-size: .72rem; font-weight: 600; }
.enquiry-summary { margin-top: 1.5rem; padding: 1.2rem; background: #f1ecdf; border-radius: var(--radius-sm); }
.enquiry-summary dl { margin: 0; }
.enquiry-summary dl div { display: grid; grid-template-columns: 95px 1fr; gap: 1rem; padding: .35rem 0; border-bottom: 1px solid var(--line); font-size: .7rem; }
.enquiry-summary dt { color: var(--muted); }.enquiry-summary dd { margin: 0; color: var(--forest); font-weight: 700; }
.faq { background: #eee8dc; }
.faq__grid { display: grid; gap: 3rem; }
.faq__grid > div:first-child > p:last-child { color: var(--muted); }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 0; color: var(--forest); font-size: .84rem; font-weight: 700; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { flex: none; width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: transform var(--normal); }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { margin-right: 3rem; color: var(--muted); font-size: .78rem; }
.footer { padding: 5rem 0 1rem; background: var(--forest-deep); color: rgba(255,255,255,.6); }
.footer__top { display: grid; gap: 2.5rem; }
.footer__brand img { margin-bottom: 1.5rem; color: var(--white); filter: brightness(0) invert(1); }
.footer__brand p { max-width: 420px; }
.footer h3 { color: var(--gold); font-size: .63rem; letter-spacing: .13em; text-transform: uppercase; }
.footer a, .footer p { display: block; margin-bottom: .55rem; font-size: .72rem; }
.footer a:hover { color: var(--white); }
.footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1rem; border-top: 1px solid var(--line-light); }
.footer__bottom div { display: flex; flex-wrap: wrap; gap: 1rem; }.footer__bottom p, .footer__bottom a, .footer__bottom span { margin: 0; font-size: .58rem; }
.footer__legal { color: rgba(255,255,255,.42); }
.back-to-top { position: fixed; z-index: 50; right: 1rem; bottom: 1rem; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--gold); color: var(--forest); box-shadow: var(--shadow); opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity var(--normal), transform var(--normal); cursor: pointer; }
.back-to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--slow), transform var(--slow); }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1.015); } }
@keyframes mistMove { to { transform: translateX(3%); opacity: .7; } }
@keyframes routeFlow { to { stroke-dashoffset: -56; } }
@keyframes pulse { 0% { transform: scale(.6); opacity: 1; transform-origin: center; } 100% { transform: scale(1.8); opacity: 0; transform-origin: center; } }
@keyframes steam { 0%,100% { transform: translateY(10px) scaleX(1); opacity: 0; } 45% { opacity: .7; } 80% { transform: translateY(-25px) scaleX(2.5); opacity: 0; } }
@keyframes cardIn { from { opacity: 0; transform: translateY(10px); } }
@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field--full { grid-column: 1 / -1; }
  .expectation-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 2fr 1fr 1fr; }.footer__top > div:last-child { grid-column: 2 / -1; }
}
@media (min-width: 820px) {
  .hero__content { grid-template-columns: minmax(0, 1.5fr) minmax(330px, .7fr); }
  .hero__copy { align-self: end; }.route-card { align-self: center; }
  .trust-strip { grid-template-columns: repeat(4, 1fr); }
  .trust-strip span + span { border-left: 1px solid rgba(255,255,255,.15); }
  .split { grid-template-columns: 1.05fr .9fr; gap: 8%; }
  .section-heading { grid-template-columns: 1.5fr .7fr; }
  .tea-story { grid-template-columns: 1.05fr .95fr; }.tea-story__image { min-height: 760px; }
  .pillar-grid { grid-template-columns: repeat(3, 1fr); }
  .process-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
  .process-list::before { top: 24px; bottom: auto; left: 24px; right: 0; width: auto; height: 1px; }
  .process-list li { grid-template-columns: 1fr; gap: 1rem; padding-bottom: 0; }
  .private-label__grid, .markets__grid { grid-template-columns: 1fr 1fr; }
  .quality-card { grid-template-columns: 1.1fr 1fr; }
  .contact__grid { grid-template-columns: .72fr 1.28fr; }
  .faq__grid { grid-template-columns: .75fr 1.25fr; }
  .footer__top { grid-template-columns: 2fr repeat(3, 1fr); }.footer__top > div:last-child { grid-column: auto; }
}
@media (min-width: 1080px) {
  .desktop-nav { display: flex; }
  .nav-actions { display: flex; margin-left: 0; }
  .menu-toggle { display: none; }
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .pillar-grid { grid-template-columns: repeat(5, 1fr); }
  .pillar { min-height: 355px; }
  .scroll-cue { position: absolute; z-index: 5; right: 2rem; bottom: 2rem; display: flex; flex-direction: column; align-items: center; gap: .7rem; color: rgba(255,255,255,.5); font-size: .52rem; letter-spacing: .15em; text-transform: uppercase; writing-mode: vertical-rl; }
  .scroll-cue span { width: 1px; height: 55px; background: linear-gradient(var(--gold), transparent); }
}
@media (min-width: 1450px) { :root { --container: 1380px; }.desktop-nav { gap: 2rem; } }
@media (max-width: 500px) {
  .announcement { height: 40px; }.site-header { top: 40px; }
  .announcement__inner p { max-width: 78%; font-size: .56rem; line-height: 1.3; }.region { font-size: .55rem; }
  .hero__content { padding-top: 9rem; }.hero h1 { font-size: clamp(3.1rem, 15vw, 4.7rem); }
  .hero__lead { font-size: .9rem; }.button-row .button { width: 100%; }
  .trust-strip { bottom: .5rem; }.trust-strip span { padding: .45rem; }.trust-strip strong { font-size: .57rem; }
  .intro__visual { min-height: 460px; }.image-main { height: 410px; }.image-inset { height: 175px; }
  .packaging-scene { transform: scale(.86); transform-origin: left center; width: 115%; }
  .globe-lines { width: 300px; height: 300px; }
  .contact__intro { position: static; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
@media print {
  .announcement, .site-header, .mobile-menu, .hero__mist, .route-card, .button, .filter-bar, .back-to-top { display: none !important; }
  body { background: #fff; color: #000; } .hero { min-height: auto; padding: 3rem 0; color: #000; background: #fff; }.hero::before, .hero__image { display: none; }
  .section { padding-block: 2rem; } .reveal { opacity: 1; transform: none; } h1, h2 { color: #000 !important; }
}
