/* ════════════════════════════════════════════════════════════
   TAMBAPANNI — Single Estate Teas
   Premium stylesheet. Tokens are driven by CSS variables so the
   Tweaks panel can recolour / retexture the whole site live.
   ════════════════════════════════════════════════════════════ */

:root {
  /* Palette (overwritten live by Tweaks presets) */
  --ivory:     #F6F0E4;
  --ivory-dk:  #EDE5D4;
  --paper:     #FBF7EE;
  --gold:      #B0851F;
  --gold-lt:   #D8B254;
  --gold-pale: #E9D69A;
  --forest:    #16301F;
  --forest-md: #234A30;
  --forest-dk: #0C1D13;
  --bark:      #2A1A0C;
  --mist:      #897F6B;
  --ink:       #11100A;
  --line:      rgba(176,133,31,0.20);
  --line-soft: rgba(176,133,31,0.12);

  /* Texture */
  --grain: 0.05;

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Jost', system-ui, -apple-system, sans-serif;
  --ease:  cubic-bezier(0.22, 0.61, 0.36, 1);
  --foil:  linear-gradient(100deg, var(--gold) 0%, var(--gold-lt) 28%, var(--gold-pale) 46%, var(--gold-lt) 64%, var(--gold) 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Paper grain — strength tweakable via --grain */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9000;
  opacity: var(--grain);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
html[data-texture="linen"] body::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Crect width='40' height='40' fill='none'/%3E%3Cpath d='M0 0H40M0 8H40M0 16H40M0 24H40M0 32H40' stroke='%23000' stroke-width='0.5'/%3E%3Cpath d='M0 0V40M8 0V40M16 0V40M24 0V40M32 0V40' stroke='%23000' stroke-width='0.5'/%3E%3C/svg%3E");
  opacity: calc(var(--grain) * 1.4);
}
html[data-texture="none"] body::after { display: none; }

/* ── Ornamental viewport frame — quiet-luxury "boxed gift" cue ── */
.deco-frame {
  position: fixed; inset: 13px;
  pointer-events: none; z-index: 7000;
  border: 1px solid rgba(176,133,31,0.30);
}
.deco-frame::before {
  content: ''; position: absolute; inset: 4px;
  border: 1px solid rgba(176,133,31,0.14);
}
.deco-corner {
  position: absolute; width: 13px; height: 13px;
  border: 1px solid var(--gold); transform: rotate(45deg);
  background: var(--ivory);
}
.deco-corner.tl { top: -7px;  left: -7px;  }
.deco-corner.tr { top: -7px;  right: -7px; }
.deco-corner.bl { bottom: -7px; left: -7px; }
.deco-corner.br { bottom: -7px; right: -7px; }
html[data-frame="off"] .deco-frame { display: none; }

/* Foil text */
.foil {
  background: var(--foil);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: foilShift 7s ease-in-out infinite;
}
@keyframes foilShift { 0%,100% { background-position: 0% center; } 50% { background-position: 120% center; } }
@media (prefers-reduced-motion: reduce) { .foil { animation: none; } }

/* ════════════ NAV — masthead strip ════════════ */
nav {
  position: sticky; top: 0; z-index: 800;
  display: flex; align-items: center; gap: 46px;
  padding: 15px 56px;
  background: var(--forest-dk);
  border-bottom: 1px solid rgba(217,178,84,.42);
  transition: padding .4s var(--ease), box-shadow .4s var(--ease);
}
nav.stuck {
  padding: 11px 56px;
  box-shadow: 0 16px 40px -22px rgba(0,0,0,.55);
}
.nav-brand { display: flex; align-items: center; gap: 15px; text-decoration: none; }
.nav-emblem { width: auto; height: 44px; transition: all .4s; flex-shrink: 0; display: block; }
nav.stuck .nav-emblem { height: 38px; }
.nav-wordmark {
  font-family: var(--serif); font-size: 17px; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase; color: var(--ivory);
  line-height: 1.1; transition: font-size .4s;
}
nav.stuck .nav-wordmark { font-size: 15px; }
.nav-wordmark small {
  display: block; font-family: var(--sans);
  font-size: 7.5px; font-weight: 400; letter-spacing: .38em;
  color: var(--gold-lt); text-transform: uppercase; margin-top: 4px;
  -webkit-text-fill-color: var(--gold-lt);
}
/* brand sub-lockup (two evenly-spaced lines) */
.wm-sub { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; }
.nav-wordmark small.wm-sub { margin-top: 5px; line-height: 1.5; }
.nav-wordmark small.wm-sub span { display: block; }
.nav-links { display: flex; gap: 30px; list-style: none; align-items: center; }
.nav-links a {
  font-family: var(--sans); font-size: 10px; font-weight: 400;
  letter-spacing: .24em; text-transform: uppercase; color: var(--ivory);
  text-decoration: none; opacity: .68; transition: opacity .3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 100%;
  height: 1px; background: var(--gold-lt); transition: right .4s var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { right: 0; }
.nav-shop {
  margin-left: auto;
  font-family: var(--sans); font-size: 9.5px; font-weight: 400;
  letter-spacing: .24em; text-transform: uppercase; color: var(--forest-dk);
  background: var(--gold); border: 1px solid var(--gold);
  padding: 13px 26px; cursor: pointer; text-decoration: none;
  transition: background .35s, color .35s, border-color .35s;
}
.nav-shop:hover { background: transparent; color: var(--gold-lt); border-color: var(--gold-lt); }
section[id] { scroll-margin-top: 76px; }


/* ════════════ HERO — full-bleed ════════════ */
#hero {
  position: relative; min-height: 90vh; overflow: hidden;
  display: flex; align-items: center; background: var(--forest-dk);
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; z-index: 1; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(95deg, rgba(8,18,11,.93) 0%, rgba(8,18,11,.72) 34%, rgba(8,18,11,.28) 62%, rgba(8,18,11,.05) 100%);
}
.hero-inner-border { position: absolute; inset: 26px; z-index: 3; border: 1px solid rgba(217,178,84,.34); pointer-events: none; }
.hero-inner-border::after { content: ''; position: absolute; inset: 5px; border: 1px solid rgba(217,178,84,.14); }
.hero-content { position: relative; z-index: 4; padding: 0 78px; max-width: 780px; }

.hero-pretitle {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--sans); font-size: 9.5px; font-weight: 400;
  letter-spacing: .36em; text-transform: uppercase; color: var(--gold-lt);
  margin-bottom: 30px;
}
.hero-pretitle::before { content: ''; width: 38px; height: 1px; background: var(--gold-lt); flex-shrink: 0; }
.hero-h1 {
  font-family: var(--serif); font-size: clamp(54px, 5.4vw, 86px);
  font-weight: 300; line-height: .92; color: var(--ivory);
  letter-spacing: -.018em; margin-bottom: 30px; text-shadow: 0 2px 30px rgba(0,0,0,.4);
}
.hero-h1 em { font-style: italic; display: block; padding-left: .02em; }
.hero-h1 em.foil { display: block; font-size: .58em; line-height: 1.04; margin-top: .22em; letter-spacing: 0; white-space: nowrap; }
.hero-tagline {
  font-family: var(--serif); font-size: 20px; font-weight: 300; font-style: italic;
  color: rgba(246,240,228,.7); line-height: 1.62; max-width: 430px; margin-bottom: 46px;
}
.hero-ctas { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; }
.cta-fill {
  display: inline-block; font-family: var(--sans); font-size: 10px; font-weight: 400;
  letter-spacing: .24em; text-transform: uppercase; color: var(--forest-dk);
  background: var(--gold); padding: 19px 38px; text-decoration: none;
  border: 1px solid var(--gold); transition: background .35s, color .35s, border-color .35s;
}
.cta-fill:hover { background: transparent; color: var(--gold-lt); border-color: var(--gold-lt); }
.cta-line {
  display: inline-flex; align-items: center; gap: 12px; font-family: var(--sans);
  font-size: 10px; font-weight: 400; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-lt); text-decoration: none; border-bottom: 1px solid rgba(217,178,84,.55);
  padding-bottom: 4px; transition: color .3s, gap .4s;
}
.cta-line:hover { color: var(--ivory); gap: 20px; }

.hero-badge {
  position: absolute; bottom: 56px; right: 58px; z-index: 5; text-align: right;
  border-right: 1px solid rgba(217,178,84,.45); padding-right: 20px;
}
.hero-badge p {
  font-family: var(--sans); font-size: 9px; font-weight: 300; letter-spacing: .26em;
  text-transform: uppercase; color: rgba(246,240,228,.55); margin-bottom: 6px;
}
.hero-badge strong {
  display: block; font-family: var(--serif); font-size: 17px; font-weight: 300;
  font-style: italic; color: rgba(246,240,228,.9);
}
.hero-scroll { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero-scroll span {
  font-family: var(--sans); font-size: 8px; font-weight: 300; letter-spacing: .3em;
  text-transform: uppercase; color: rgba(246,240,228,.45); writing-mode: vertical-rl;
}
.scroll-bar { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(217,178,84,.7), transparent); animation: scrollDrop 2.2s ease-in-out infinite; }
@keyframes scrollDrop { 0% { transform: scaleY(0); transform-origin: top; opacity: 0; } 50% { transform: scaleY(1); opacity: 1; } 100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; } }

/* Wax / guarantee seal */
.seal { position: absolute; top: 48px; right: 58px; z-index: 5; width: 112px; height: 112px; }
.seal svg { width: 100%; height: 100%; }
.seal .seal-rot { transform-origin: center; animation: spin 38s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .seal .seal-rot { animation: none; } }

/* ════════════ MARQUEE ════════════ */
.marquee { background: var(--forest); padding: 17px 0; overflow: hidden; white-space: nowrap; border-block: 1px solid rgba(217,178,84,.16); }
.marquee-track { display: inline-flex; animation: roll 36s linear infinite; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }
.marquee-track span {
  font-family: var(--serif); font-style: italic; font-size: 16px; font-weight: 300;
  color: rgba(246,240,228,.4); letter-spacing: .05em; padding: 0 32px;
}
.marquee-track span.gem { font-style: normal; color: var(--gold-lt); font-size: 9px; padding: 0 8px; letter-spacing: 0; align-self: center; }
@keyframes roll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ════════════ SECTION UTILITIES ════════════ */
section, .band { position: relative; }
.eyebrow {
  font-family: var(--sans); font-size: 9.5px; font-weight: 400; letter-spacing: .36em;
  text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 16px; margin-bottom: 22px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.eyebrow.center { justify-content: center; }
.heading-xl { font-family: var(--serif); font-size: clamp(40px, 4.4vw, 64px); font-weight: 300; line-height: 1.02; color: var(--forest); letter-spacing: -.01em; }
.heading-xl em { font-style: italic; color: var(--gold); }
/* Dark sections: first line reads white, accent line in lighter gold */
#elevation .heading-xl em,
.story-text .heading-xl em,
.order-shell .heading-xl em,
#brew .heading-xl em { color: var(--gold-lt); }

/* ════════════ ELEVATION DIAGRAM ════════════ */
#elevation { background: var(--forest-dk); padding: 0; overflow: hidden; text-align: center; }
.endmap-img { display: block; width: 100%; max-width: none; height: auto; margin: 0; }
#elevation .eyebrow { color: var(--gold-lt); }
#elevation .eyebrow::before { background: var(--gold-lt); }
/* display-style layout: left (text + chart + emblem) · right (large map) */
.elev-grid { max-width: 1340px; margin: 0 auto; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 44px; align-items: center; }
.elev-left { display: flex; flex-direction: column; padding-left: 54px; }
.elev-left .heading-xl { color: var(--ivory); margin-top: 4px; }
.elev-intro { font-family: var(--serif); font-size: 16.5px; font-style: italic; color: rgba(246,240,228,.5); line-height: 1.7; margin: 20px 0 6px; max-width: 360px; }
.elev-left .elev-chart { margin-top: 34px; }
.elev-emblem { display: flex; align-items: center; gap: 14px; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(217,178,84,.16); }
.elev-emblem img { height: 44px; width: auto; }
.ee-name { font-family: var(--serif); font-size: 19px; letter-spacing: .22em; text-transform: uppercase; color: var(--ivory); line-height: 1; }
.ee-sub { font-family: var(--sans); font-size: 8px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-lt); margin-top: 6px; }
.elev-chart {
  position: relative; width: 100%; height: 460px;
  border-left: 1px solid rgba(217,178,84,.3); border-bottom: 1px solid rgba(217,178,84,.3);
}
.elev-tick { position: absolute; left: 0; right: 0; height: 1px; background: rgba(246,240,228,.07); }
.elev-tick .lab { position: absolute; left: -54px; top: 50%; transform: translateY(-50%); font-family: var(--sans); font-size: 9px; letter-spacing: .14em; color: rgba(246,240,228,.42); width: 46px; text-align: right; }
/* ridge silhouettes */
.elev-ridge { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 70%; opacity: .5; }
.elev-marker {
  position: absolute; bottom: 0; transform: translateX(-50%); cursor: pointer; z-index: 3;
  display: flex; flex-direction: column; align-items: center;
}
.elev-stem { width: 1px; flex: 1; background: rgba(217,178,84,.4); transition: background .3s; }
.elev-dot {
  width: 14px; height: 14px; border-radius: 50%; border: 1px solid var(--gold-lt);
  background: var(--forest-dk); position: relative; transition: all .35s var(--ease); flex-shrink: 0;
}
.elev-dot::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; background: var(--gold-lt); opacity: 0; transition: opacity .35s; }
.elev-marker:hover .elev-dot, .elev-marker.on .elev-dot { transform: scale(1.25); box-shadow: 0 0 0 6px rgba(217,178,84,.12); }
.elev-marker:hover .elev-dot::after, .elev-marker.on .elev-dot::after { opacity: 1; }
.elev-marker:hover .elev-stem, .elev-marker.on .elev-stem { background: rgba(217,178,84,.7); }
.elev-flag { position: absolute; bottom: calc(100% + 14px); width: 150px; text-align: center; transition: transform .35s var(--ease); }
.elev-marker:hover .elev-flag { transform: translateY(-4px); }
.elev-flag .ef-alt { font-family: var(--serif); font-size: 22px; color: var(--gold-lt); }
.elev-flag .ef-alt sup { font-size: .5em; }
.elev-flag .ef-name { font-family: var(--serif); font-size: 16px; font-style: italic; color: var(--ivory); margin-top: 2px; }
.elev-flag .ef-note { font-family: var(--sans); font-size: 8.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(246,240,228,.4); margin-top: 7px; opacity: 0; transition: opacity .35s; }
.elev-marker:hover .elev-flag .ef-note, .elev-marker.on .elev-flag .ef-note { opacity: 1; }
.elev-base { display: flex; justify-content: center; margin-top: 36px; }
.elev-base span { font-family: var(--sans); font-size: 9px; letter-spacing: .28em; text-transform: uppercase; color: rgba(246,240,228,.36); }

/* ── Large antique map (Map2) with flavour callouts ── */
.elev-map-col { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; }
.map2-title { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 26px; color: var(--gold-lt); letter-spacing: .02em; text-align: center; }
.map2-title::after { content: ''; display: block; width: 54px; height: 1px; background: rgba(217,178,84,.5); margin: 12px auto 0; }
.map2-wrap { position: relative; display: inline-block; line-height: 0; box-shadow: 0 50px 90px -38px rgba(0,0,0,.82); }
.elev-map2 { display: block; width: 100%; max-width: 680px; height: auto; }
.mpatch { position: absolute; transform: translate(-50%,-50%); border-radius: 50%; filter: blur(3.5px); pointer-events: none; z-index: 2; }
.mp-dam { left: 47%; top: 36.4%; width: 18%; height: 5.6%; background: radial-gradient(ellipse, #c89f5c 56%, rgba(200,159,92,0) 100%); }
.mp-nuw { left: 52%; top: 46.2%; width: 22%; height: 6.2%; background: radial-gradient(ellipse, #a4ad66 54%, rgba(164,173,102,0) 100%); }
.mp-uva { left: 66%; top: 48%; width: 15%; height: 5.6%; background: radial-gradient(ellipse, #b7b366 54%, rgba(183,179,102,0) 100%); }
.mp-den { left: 43%; top: 57%; width: 19%; height: 6.2%; background: radial-gradient(ellipse, #c69860 54%, rgba(198,152,96,0) 100%); }
.ecallout { position: absolute; width: 182px; padding: 13px 15px; z-index: 4; background: rgba(8,18,11,.58); backdrop-filter: blur(7px); border: 1px solid rgba(217,178,84,.3); }
.ecallout .ec-ft { font-family: var(--sans); font-size: 8.5px; letter-spacing: .22em; color: var(--gold-lt); }
.ecallout h4 { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 21px; color: var(--ivory); line-height: 1.04; margin: 3px 0 7px; }
.ecallout .ec-char { display: block; font-family: var(--sans); font-size: 7.5px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.ecallout p { font-family: var(--serif); font-size: 13px; color: rgba(246,240,228,.62); line-height: 1.4; }
.ec-tl { top: 16px; left: 16px; }
.ec-tr { top: 16px; right: 16px; text-align: right; }
.ec-bl { bottom: 16px; left: 16px; }
.ec-br { bottom: 16px; right: 16px; text-align: right; }

/* ── Cartographic map panel (aged parchment, antique colonial chart) ── */
.elev-map-col { display: flex; flex-direction: column; }
.map-frame {
  position: relative; flex: 1; display: flex; padding: 11px;
  background: linear-gradient(160deg, #18331f 0%, #0c1d13 100%);
  border: 1px solid rgba(217,178,84,.4);
  box-shadow: 0 34px 70px -34px rgba(0,0,0,.7), inset 0 0 0 1px rgba(217,178,84,.10);
}
.map-paper {
  flex: 1; display: flex; flex-direction: column; position: relative;
  padding: 22px 20px 14px;
  background: radial-gradient(125% 100% at 50% 0%, #f1e6cb 0%, #e8d8b3 52%, #ddca9d 100%);
  box-shadow: inset 0 0 64px rgba(120,86,40,.30), inset 0 0 0 1px rgba(120,86,40,.22);
}
.map-paper::before { /* aged stains + vignette */
  content: ''; position: absolute; inset: 0; pointer-events: none; mix-blend-mode: multiply;
  background:
    radial-gradient(38% 28% at 16% 20%, rgba(120,86,40,.12), transparent 62%),
    radial-gradient(32% 26% at 84% 82%, rgba(120,86,40,.14), transparent 62%),
    radial-gradient(50% 40% at 50% 50%, transparent 58%, rgba(90,62,28,.16) 100%);
}
.map-paper::after { /* paper grain */
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .42; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
}
.map-titlebar { text-align: center; padding-bottom: 12px; margin-bottom: 4px; border-bottom: 1px solid rgba(120,86,40,.32); position: relative; z-index: 2; }
.map-titlebar .mt-k { font-family: var(--sans); font-size: 7.5px; letter-spacing: .34em; text-transform: uppercase; color: #9a7836; }
.map-titlebar .mt-h { font-family: var(--serif); font-size: 19px; font-style: italic; color: #38260f; margin-top: 6px; letter-spacing: .01em; }
.map-svg-wrap { flex: 1; display: flex; align-items: center; justify-content: center; padding: 8px 0; position: relative; z-index: 1; }
.map-svg { width: 100%; height: auto; max-height: 500px; display: block; }
.map-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 11px; border-top: 1px solid rgba(120,86,40,.3); position: relative; z-index: 2; }
.map-foot span { font-family: var(--sans); font-size: 7.5px; letter-spacing: .24em; text-transform: uppercase; color: rgba(60,42,20,.6); }

/* map interactive bits */
.map-region { cursor: pointer; }
.map-dot-core { transition: r .3s var(--ease); }
.map-ring { transform-box: fill-box; transform-origin: center; transition: opacity .35s var(--ease), transform .35s var(--ease); opacity: 0; }
.map-label-name, .map-label-alt, .map-leader { transition: opacity .3s, fill .3s, stroke .3s; }
.map-region:hover .map-ring, .map-region.on .map-ring { opacity: 1; transform: scale(1.18); }
.map-region:hover .map-dot-core, .map-region.on .map-dot-core { r: 4.6; }
.map-region:hover .map-label-name, .map-region.on .map-label-name { fill: #8a3a1e; }
.map-region:hover .map-label-uline, .map-region.on .map-label-uline { opacity: 1; }
.map-region:hover .map-leader, .map-region.on .map-leader { stroke: #8a3a1e; opacity: .85; }

/* ════════════ COLLECTION ════════════ */
#collection { padding: 130px 56px; background: var(--ivory); }
.col-header { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 74px; }
.col-intro { font-family: var(--serif); font-size: 19px; font-weight: 300; font-style: italic; color: var(--mist); line-height: 1.7; max-width: 470px; }
.tea-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.tea-card { position: relative; cursor: pointer; display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line-soft); transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.tea-card:hover { transform: translateY(-6px); box-shadow: 0 42px 70px -46px rgba(17,16,10,.5); }
.tc-img-wrap { overflow: hidden; aspect-ratio: 4/5; position: relative; }
.tc-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .9s var(--ease); }
.tea-card:hover .tc-img { transform: scale(1.05); }
.tc-rank { position: absolute; top: 14px; left: 16px; z-index: 3; font-family: var(--serif); font-size: 14px; font-style: italic; color: rgba(246,240,228,.9); letter-spacing: .1em; text-shadow: 0 1px 6px rgba(0,0,0,.5); }

/* stats strip over image */
.tc-stats { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; padding: 32px 10px 14px; background: linear-gradient(to top, rgba(8,18,11,.93) 0%, rgba(8,18,11,.55) 62%, transparent 100%); }
.tc-stat { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 5px; }
.tc-stat svg { width: 19px; height: 19px; color: var(--gold-lt); }
.tc-stat b { font-family: var(--serif); font-size: 12.5px; font-weight: 500; color: var(--ivory); line-height: 1; }
.tc-stat span { font-family: var(--sans); font-size: 6.5px; font-weight: 400; letter-spacing: .15em; text-transform: uppercase; color: rgba(217,178,84,.85); line-height: 1.25; }

/* hover veil with centered order button */
.tc-veil { position: absolute; inset: 0; z-index: 4; background: rgba(12,29,19,.45); opacity: 0; transition: opacity .45s; display: flex; align-items: center; justify-content: center; }
.tea-card:hover .tc-veil { opacity: 1; }
.tc-veil-btn { font-family: var(--sans); font-size: 9px; font-weight: 400; letter-spacing: .24em; text-transform: uppercase; color: var(--ivory); border: 1px solid rgba(246,240,228,.6); padding: 14px 26px; text-decoration: none; transition: background .3s; background: rgba(12,29,19,.3); }
.tc-veil-btn:hover { background: rgba(246,240,228,.16); }

.tc-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.tc-type { font-family: var(--sans); font-size: 8px; font-weight: 400; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 9px; }
.tc-name { font-family: var(--serif); font-size: 25px; font-weight: 400; color: var(--forest); margin-bottom: 12px; line-height: 1.06; }
.tc-note { font-family: var(--serif); font-size: 14.5px; font-weight: 300; font-style: italic; color: var(--mist); line-height: 1.62; }
.tc-divider { display: flex; align-items: center; justify-content: center; gap: 12px; margin: auto 0 13px; padding-top: 20px; }
.tc-divider::before, .tc-divider::after { content: ''; height: 1px; width: 40px; background: rgba(176,133,31,.45); }
.tc-divider svg { width: 13px; height: 16px; color: var(--gold); }
.tc-sig { text-align: center; font-family: var(--sans); font-size: 9px; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }

/* collection footline */
.col-footline { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 64px; }
.col-footline::before, .col-footline::after { content: ''; height: 1px; width: 64px; background: rgba(176,133,31,.4); }
.col-footline span { font-family: var(--sans); font-size: 10px; font-weight: 400; letter-spacing: .24em; text-transform: uppercase; color: var(--forest); }

/* ════════════ THE JOURNEY ════════════ */
#order { padding: 112px 56px 122px; background: var(--forest-dk); position: relative; overflow: hidden; border-top: 1px solid rgba(217,178,84,.16); }
#order::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 78% 56% at 50% 26%, color-mix(in srgb, var(--gold) 8%, transparent), transparent 68%); }
.order-shell { background: transparent; padding: 0; position: relative; z-index: 1; overflow: visible; }
.order-shell::before { display: none; }
.order-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; position: relative; z-index: 1; }
.order-shell .eyebrow { color: var(--gold-lt); } .order-shell .eyebrow::before { background: var(--gold-lt); }
.order-shell .heading-xl { color: var(--ivory); margin-bottom: 18px; }
.order-lead { font-family: var(--serif); font-size: 17px; font-style: italic; color: rgba(246,240,228,.55); line-height: 1.65; margin-bottom: 40px; max-width: 420px; }
.order-head { text-align: center; max-width: 660px; margin: 0 auto 30px; position: relative; z-index: 1; }
.order-head .heading-xl { color: var(--ivory); margin-bottom: 16px; }
.order-head .heading-xl em { color: var(--gold-lt); font-style: italic; }
.order-lead.center { margin: 0 auto; text-align: center; max-width: 580px; }
/* recommender */
.jrec { position: relative; z-index: 1; max-width: 800px; margin: 4px auto 50px; display: flex; flex-direction: column; gap: 18px; padding: 30px 34px; border: 1px solid rgba(217,178,84,.2); background: rgba(246,240,228,.03); }
.jrec-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; }
.jrec-q { font-family: var(--serif); font-style: italic; font-size: 16px; color: rgba(246,240,228,.62); width: 150px; text-align: right; }
.jrec-opts { display: flex; gap: 8px; flex-wrap: nowrap; }
.jrec-opts button { white-space: nowrap; font-family: var(--sans); font-size: 9px; font-weight: 400; letter-spacing: .16em; text-transform: uppercase; color: rgba(246,240,228,.72); background: transparent; border: 1px solid rgba(217,178,84,.3); padding: 10px 18px; cursor: pointer; transition: background .3s, border-color .3s, color .3s; }
.jrec-opts button:hover { border-color: var(--gold-lt); color: var(--ivory); }
.jrec-opts button.on { background: var(--gold); border-color: var(--gold); color: var(--forest-dk); }
.jrec-out { text-align: center; font-family: var(--serif); font-style: italic; font-size: 15.5px; color: var(--gold-lt); margin-top: 2px; min-height: 1.1em; transition: opacity .3s; }
.obs-fine { text-align: center; font-family: var(--sans); font-size: 8px; font-weight: 300; letter-spacing: .2em; text-transform: uppercase; color: var(--mist); margin-top: 16px; }
.ob-tea.locked { pointer-events: none; }
.ob-format .ob-fmt-price.is-enq { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; }
.ob-label { font-family: var(--sans); font-size: 8.5px; font-weight: 400; letter-spacing: .3em; text-transform: uppercase; color: rgba(246,240,228,.5); margin-bottom: 16px; }
.ob-block { margin-bottom: 34px; }
.ob-teas { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.ob-tea {
  display: flex; align-items: center; gap: 12px; padding: 13px 15px; cursor: pointer;
  border: 1px solid rgba(217,178,84,.22); background: rgba(246,240,228,.03);
  transition: border-color .3s, background .3s; text-align: left;
}
.ob-tea:hover { border-color: rgba(217,178,84,.5); }
.ob-tea.on { border-color: var(--gold-lt); background: rgba(217,178,84,.1); }
.ob-tea .sw { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; border: 1px solid rgba(246,240,228,.3); }
.ob-tea .nm { font-family: var(--serif); font-size: 15px; color: var(--ivory); line-height: 1.1; }
.ob-tea .nm small { display: block; font-family: var(--sans); font-size: 7.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-lt); margin-top: 3px; }
.ob-tea[aria-disabled="true"] { opacity: .35; pointer-events: none; }

.ob-formats { display: flex; flex-direction: column; gap: 10px; }
.ob-format {
  display: grid; grid-template-columns: 20px 1fr auto; gap: 16px; align-items: center;
  padding: 16px 20px; cursor: pointer; border: 1px solid rgba(217,178,84,.22);
  background: rgba(246,240,228,.03); transition: border-color .3s, background .3s; text-align: left;
}
.ob-format > span:nth-child(2) { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.ob-format:hover { border-color: rgba(217,178,84,.5); }
.ob-format.on { border-color: var(--gold-lt); background: rgba(217,178,84,.1); }
.ob-radio { width: 18px; height: 18px; border-radius: 50%; border: 1px solid var(--gold-lt); position: relative; }
.ob-format.on .ob-radio::after { content: ''; position: absolute; inset: 4px; border-radius: 50%; background: var(--gold-lt); }
.ob-fmt-name { font-family: var(--serif); font-size: 19px; color: var(--ivory); line-height: 1.1; }
.ob-fmt-desc { font-family: var(--sans); font-size: 10px; letter-spacing: .04em; color: rgba(246,240,228,.45); }
.ob-fmt-price { font-family: var(--serif); font-size: 21px; color: var(--gold-lt); text-align: right; }

/* Summary card */
.ob-summary { background: var(--paper); padding: 0; position: relative; }
.obs-top { padding: 40px 44px 30px; text-align: center; border-bottom: 1px solid var(--line-soft); position: relative; }
.obs-kicker { font-family: var(--sans); font-size: 8.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.obs-visual { height: 220px; display: flex; align-items: center; justify-content: center; position: relative; margin-bottom: 26px; }
.obs-pack { width: 124px; height: 178px; border: 1px solid var(--line); position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: linear-gradient(160deg, var(--ivory), var(--ivory-dk)); box-shadow: 0 24px 50px -24px rgba(17,16,10,.4); transition: all .4s var(--ease); }
.obs-pack + .obs-pack { margin-left: -54px; }
.obs-pack .pk-leaf { width: 30px; height: 38px; }
.obs-pack .pk-nm { font-family: var(--serif); font-size: 11px; font-style: italic; color: var(--forest); text-align: center; padding: 0 8px; line-height: 1.2; }
.obs-pack .pk-wt { font-family: var(--sans); font-size: 7px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.obs-name { font-family: var(--serif); font-size: 27px; color: var(--forest); line-height: 1.1; }
.obs-sub { font-family: var(--sans); font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--mist); margin-top: 8px; }
.obs-foot { padding: 28px 44px 40px; }
.obs-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 10px; }
.obs-row .k { font-family: var(--sans); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--mist); white-space: nowrap; }
.obs-row .v { font-family: var(--serif); font-size: 15px; color: var(--forest); text-align: right; white-space: nowrap; }
.obs-total { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding-top: 18px; margin-top: 14px; border-top: 1px solid var(--line); }
.obs-total .k { font-family: var(--serif); font-size: 17px; color: var(--forest); }
.obs-total .v { font-family: var(--serif); font-size: 32px; white-space: nowrap; }
.obs-add {
  width: 100%; margin-top: 26px; font-family: var(--sans); font-size: 10px; font-weight: 400;
  letter-spacing: .26em; text-transform: uppercase; color: var(--ivory); background: var(--forest);
  border: 1px solid var(--forest); padding: 19px; cursor: pointer; transition: background .35s, color .35s, border-color .35s;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.ob-summary { box-shadow: 0 40px 80px -50px rgba(17,16,10,.6); }
.obs-add:hover { background: var(--gold); border-color: var(--gold); }
.obs-add.done { background: var(--gold); border-color: var(--gold); }

/* ════════════ LANDSCAPES (ink sketches) ════════════ */
#landscapes { background: var(--paper); padding: 130px 56px; }
.land-head { max-width: 640px; margin: 0 auto 64px; text-align: center; }
.land-head .heading-xl { margin-top: 4px; }
.land-head p { font-family: var(--serif); font-size: 18px; font-style: italic; color: var(--mist); line-height: 1.7; margin-top: 22px; }
.land-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1120px; margin: 0 auto; }
.land-card { position: relative; }
.land-frame {
  position: relative; width: 100%; aspect-ratio: 4 / 3; overflow: hidden;
  border: 1px solid var(--line); background: linear-gradient(168deg, var(--ivory) 0%, var(--paper) 100%);
}
.land-frame::after { /* inner hairline like a mounted print */
  content: ''; position: absolute; inset: 12px; border: 1px solid var(--line-soft); pointer-events: none;
}
.land-sketch { display: block; width: 100%; height: 100%; color: var(--forest); }
.land-cap { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.land-name { font-family: var(--serif); font-size: 23px; color: var(--forest); }
.land-name small { display: block; font-family: var(--sans); font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-top: 6px; }
.land-note { font-family: var(--serif); font-size: 15px; font-style: italic; color: var(--mist); text-align: right; max-width: 230px; }
/* a calm caption strip for any drop-in sketch frame */
.sketch-tag { position: absolute; left: 22px; bottom: 18px; z-index: 4; font-family: 'Jost', sans-serif; font-size: 8px; letter-spacing: .26em; text-transform: uppercase; color: rgba(246,240,228,.5); }

/* ════════════ STORY / HERITAGE — full-bleed banner + text ════════════ */
#story { display: grid; grid-template-columns: 1fr 1fr; background: var(--forest-dk); align-items: stretch; }
.story-photo { position: relative; overflow: hidden; min-height: 640px; }
.story-photo::after { content: ''; position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(8,18,11,.18) 0%, transparent 34%, rgba(8,18,11,.5) 100%); pointer-events: none; }
.story-photo .story-frame { position: absolute; inset: 24px; border: 1px solid rgba(217,178,84,.35); z-index: 3; pointer-events: none; }
.story-float { position: absolute; bottom: 40px; left: 48px; z-index: 3; max-width: 300px; line-height: normal; background: rgba(8,18,11,.6); backdrop-filter: blur(10px); border-left: 1px solid var(--gold); padding: 18px 24px 20px; }
.story-float blockquote { font-family: var(--serif); font-size: 17px; font-style: italic; font-weight: 300; color: rgba(246,240,228,.94); line-height: 1.4; margin: 0 0 12px; }
.story-float cite { display: block; font-family: var(--sans); font-size: 8px; font-weight: 400; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-lt); font-style: normal; }
.story-text { padding: 92px 72px; display: flex; flex-direction: column; justify-content: center; }
.story-text .eyebrow { color: var(--gold-lt); } .story-text .eyebrow::before { background: var(--gold-lt); }
.story-text .heading-xl { color: var(--ivory); margin: 4px 0 0; }
.story-text .heading-xl em { color: var(--gold-lt); font-style: italic; }
.story-body { font-family: var(--serif); font-size: 16.5px; font-weight: 300; color: rgba(246,240,228,.6); line-height: 1.8; margin: 22px 0; }
.story-body:first-of-type { margin-top: 26px; }
.story-body .dropcap { float: left; font-size: 64px; line-height: .74; padding: 7px 14px 0 0; color: var(--gold-lt); font-weight: 400; font-family: var(--serif); }
.story-pull { font-family: var(--serif); font-size: 21px; font-weight: 300; font-style: italic; color: var(--gold-lt); line-height: 1.5; border-left: 2px solid var(--gold); padding-left: 26px; margin: 34px 0 30px; }
.story-coda { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--gold-pale); margin-top: 20px; line-height: 1.65; }
.story-link { display: inline-flex; align-items: center; gap: 16px; font-family: var(--sans); font-size: 10px; font-weight: 400; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-lt); text-decoration: none; transition: gap .4s; margin-top: 30px; }
.story-link:hover { gap: 26px; }
.story-photo .story-home { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; z-index: 1; }

/* ── Heritage cinematic film: crossfading real estate photos (Ken Burns + drifting mist) ── */
.hfilm { position: absolute; inset: 0; overflow: hidden; background: #0a1810; }
.hf-slide { position: absolute; inset: 0; background-size: cover; background-position: center 36%; opacity: 0; will-change: opacity, transform; animation: hfCycle 24s infinite; }
.hf-slide:nth-child(1) { animation-delay: 0s; }
.hf-slide:nth-child(2) { animation-delay: 8s; }
.hf-slide:nth-child(3) { animation-delay: 16s; }
@keyframes hfCycle {
  0%   { opacity: 0; transform: scale(1.04); }
  5%   { opacity: 1; }
  28%  { opacity: 1; }
  35%  { opacity: 0; transform: scale(1.14); }
  100% { opacity: 0; transform: scale(1.14); }
}
.hf-mist { position: absolute; inset: -16%; pointer-events: none;
  background: radial-gradient(46% 30% at 24% 64%, rgba(246,240,228,.18), transparent 60%),
              radial-gradient(52% 36% at 82% 36%, rgba(246,240,228,.13), transparent 62%);
  animation: hfMist 32s ease-in-out infinite alternate; }
@keyframes hfMist { 0% { transform: translate3d(-3%,2%,0); } 100% { transform: translate3d(5%,-3%,0); } }
.hf-vignette { position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(125% 92% at 50% 42%, transparent 50%, rgba(8,18,11,.62) 100%),
              linear-gradient(180deg, rgba(8,18,11,.34) 0%, transparent 22%, rgba(8,18,11,.55) 100%); }
.hf-grain { position: absolute; inset: 0; pointer-events: none; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E"); }
@media (prefers-reduced-motion: reduce) { .hf-slide { animation: none; } .hf-slide:first-child { opacity: 1; } .hf-mist { animation: none; } }

/* ── Dynamic Ceylon hill-country scene (original, animated) ── */
.tea-scene { position: absolute; inset: 0; overflow: hidden; background: linear-gradient(180deg,#0a1d13 0%,#102a1b 34%,#1d3a24 56%,#3a4a26 74%,#7d6a2e 90%,#caa24a 100%); }
.ts-sun { position: absolute; left: 50%; bottom: 40%; width: 300px; height: 300px; transform: translateX(-50%); border-radius: 50%;
  background: radial-gradient(circle, rgba(255,240,196,.95) 0%, rgba(248,212,128,.62) 24%, rgba(224,176,86,.28) 46%, rgba(224,176,86,.08) 64%, transparent 76%);
  animation: tsSun 9s ease-in-out infinite; }
@keyframes tsSun { 0%,100%{ transform:translateX(-50%) scale(1); opacity:.92; } 50%{ transform:translateX(-50%) scale(1.07); opacity:1; } }
.ts-ridge { position: absolute; left: -6%; width: 112%; bottom: 0; display: block; }
.ts-ridge path { transition: none; }
.ts-r5 { height: 62%; opacity: .35; animation: tsDriftA 38s ease-in-out infinite; }
.ts-r4 { height: 54%; opacity: .55; animation: tsDriftB 32s ease-in-out infinite; }
.ts-r3 { height: 44%; opacity: .75; animation: tsDriftA 26s ease-in-out infinite; }
.ts-r2 { height: 34%; opacity: .9;  animation: tsDriftB 21s ease-in-out infinite; }
.ts-r1 { height: 24%; opacity: 1;   animation: tsDriftA 17s ease-in-out infinite; }
@keyframes tsDriftA { 0%,100%{ transform:translateX(-1.4%);} 50%{ transform:translateX(1.4%);} }
@keyframes tsDriftB { 0%,100%{ transform:translateX(1.6%);} 50%{ transform:translateX(-1.6%);} }
.ts-mist { position: absolute; left: -20%; width: 140%; height: 90px; pointer-events: none; filter: blur(7px);
  background: radial-gradient(60% 100% at 50% 50%, rgba(246,240,228,.5), rgba(246,240,228,0) 72%); opacity: 0; }
.ts-m1 { bottom: 30%; animation: tsMist 26s linear infinite; }
.ts-m2 { bottom: 44%; height: 70px; animation: tsMist 34s linear infinite 6s; }
.ts-m3 { bottom: 18%; height: 110px; animation: tsMist 30s linear infinite 12s; }
@keyframes tsMist { 0%{ transform:translateX(-26%); opacity:0;} 18%{opacity:.85;} 70%{opacity:.7;} 100%{ transform:translateX(26%); opacity:0;} }
.ts-leaf { position: absolute; top: -8%; width: 18px; height: 24px; opacity: 0;
  background: linear-gradient(150deg, var(--gold-lt), var(--gold)); clip-path: path('M9,0 C3,7 0,15 3,21 C5,24 9,24 9,24 C9,24 13,24 15,21 C18,15 15,7 9,0 Z');
  -webkit-mask: none; animation: tsLeaf linear infinite; }
.ts-leaf::after { content:''; position:absolute; inset:0; background: rgba(12,29,19,.18); clip-path: inset(0 0 0 49%); }
.ts-l1 { left: 16%; animation-duration: 15s; animation-delay: 0s;   transform: scale(.8); }
.ts-l2 { left: 34%; animation-duration: 19s; animation-delay: 4s;   transform: scale(1.05); }
.ts-l3 { left: 58%; animation-duration: 17s; animation-delay: 8s;   transform: scale(.7); }
.ts-l4 { left: 74%; animation-duration: 22s; animation-delay: 2s;   transform: scale(.95); }
.ts-l5 { left: 46%; animation-duration: 20s; animation-delay: 11s;  transform: scale(.6); }
@keyframes tsLeaf {
  0%   { opacity:0; transform: translate(0,0) rotate(0deg); }
  8%   { opacity:.9; }
  92%  { opacity:.9; }
  100% { opacity:0; transform: translate(-46px, 560px) rotate(280deg); }
}
.ts-vignette { position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(130% 86% at 50% 40%, transparent 56%, rgba(8,18,11,.5) 100%),
              linear-gradient(180deg, rgba(8,18,11,.28) 0%, transparent 22%); }
@media (prefers-reduced-motion: reduce){
  .ts-sun,.ts-ridge,.ts-mist,.ts-leaf { animation: none; }
  .ts-m1,.ts-m2,.ts-m3 { opacity:.55; transform:none; }
  .ts-leaf { opacity:.85; }
}

/* ════════════ PROVENANCE ════════════ */
#provenance { background: var(--ivory-dk); display: grid; grid-template-columns: repeat(4,1fr); }
.prov-item { padding: 72px 46px; border-right: 1px solid var(--line-soft); position: relative; }
.prov-item:last-child { border-right: none; }
.prov-item::before { content: ''; position: absolute; top: 0; left: 46px; right: 46px; height: 1px; background: var(--gold); opacity: .3; }
.prov-num { font-family: var(--serif); font-size: clamp(44px, 4vw, 62px); font-weight: 300; line-height: 1; margin-bottom: 14px; }
.prov-num sup { font-size: .36em; vertical-align: super; }
.prov-label { font-family: var(--sans); font-size: 9px; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; color: var(--mist); line-height: 1.7; }

/* ════════════ BREW ════════════ */
#brew { background: var(--forest); padding: 138px 56px; position: relative; overflow: hidden; }
#brew::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 50%, color-mix(in srgb,var(--gold) 6%, transparent) 0%, transparent 70%); }
.brew-inner { display: grid; grid-template-columns: 380px 1fr; gap: 96px; align-items: start; position: relative; z-index: 1; }
.brew-left .eyebrow { color: var(--gold-lt); } .brew-left .eyebrow::before { background: var(--gold-lt); }
.brew-left .heading-xl { color: var(--ivory); margin-bottom: 26px; }
.brew-sub { font-family: var(--serif); font-size: 17px; font-style: italic; font-weight: 300; color: rgba(246,240,228,.42); line-height: 1.7; }
.brew-circle-wrap { margin-top: 54px; display: flex; align-items: center; justify-content: center; }
.brew-circle { width: 204px; height: 204px; border-radius: 50%; border: 1px solid rgba(217,178,84,.22); display: flex; align-items: center; justify-content: center; position: relative; }
.brew-circle::before { content: ''; position: absolute; inset: 14px; border-radius: 50%; border: 1px solid rgba(217,178,84,.1); }
.brew-circle-text { font-family: var(--serif); font-size: 15px; font-style: italic; font-weight: 300; color: rgba(246,240,228,.45); text-align: center; line-height: 1.7; max-width: 140px; }
.brew-steps { padding-top: 6px; display: flex; flex-direction: column; }
.brew-step { display: grid; grid-template-columns: 56px 1fr; gap: 28px; padding: 36px 0; border-bottom: 1px solid rgba(217,178,84,.1); align-items: start; }
.brew-step:first-child { padding-top: 0; } .brew-step:last-child { border-bottom: none; }
.bs-num { font-family: var(--serif); font-size: 46px; font-weight: 300; color: var(--gold-lt); opacity: .3; line-height: 1; }
.bs-title { font-family: var(--serif); font-size: 23px; font-weight: 400; color: var(--ivory); margin-bottom: 10px; }
.bs-body { font-family: var(--sans); font-size: 13px; font-weight: 300; color: rgba(246,240,228,.45); line-height: 1.75; }
.bs-detail { display: inline-block; margin-top: 11px; font-family: var(--sans); font-size: 8px; font-weight: 400; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-lt); opacity: .8; }

/* ════════════ GIFTING ════════════ */
#gifting { padding: 138px 56px; background: var(--ivory); text-align: center; }
.gifting-intro { max-width: 580px; margin: 0 auto 76px; }
.gifting-intro .heading-xl { margin-top: 18px; }
.gifting-body { font-family: var(--serif); font-size: 18px; font-style: italic; font-weight: 300; color: var(--mist); line-height: 1.7; margin-top: 22px; }
.gift-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; text-align: left; }
.gift-card { background: var(--paper); padding: 50px 42px; border: 1px solid var(--line-soft); border-top: 2px solid var(--gold); transition: transform .4s var(--ease), box-shadow .4s var(--ease); position: relative; }
.gift-card:hover { transform: translateY(-6px); box-shadow: 0 40px 70px -46px rgba(17,16,10,.5); }
.gift-num { font-family: var(--serif); font-size: 54px; font-weight: 300; color: var(--forest); opacity: .1; line-height: 1; margin-bottom: 18px; }
.gift-kicker { font-family: var(--sans); font-size: 8.5px; font-weight: 400; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.gift-title { font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--forest); margin-bottom: 14px; }
.gift-desc { font-family: var(--sans); font-size: 13px; font-weight: 300; color: var(--mist); line-height: 1.8; margin-bottom: 26px; }
.gift-price { font-family: var(--serif); font-size: 19px; font-weight: 400; }
.gift-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; font-family: var(--sans); font-size: 9px; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; color: var(--forest); text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 2px; transition: color .3s; }
.gift-link:hover { color: var(--gold); }

/* ════════════ CONTACT ════════════ */
#contact { background: var(--ivory-dk); display: grid; grid-template-columns: 1fr 1fr; }
.contact-left { padding: 130px 78px 130px 56px; border-right: 1px solid var(--line-soft); }
.contact-left .heading-xl { margin: 18px 0 22px; }
.contact-desc { font-family: var(--serif); font-size: 18px; font-style: italic; font-weight: 300; color: var(--mist); line-height: 1.7; margin-bottom: 54px; max-width: 380px; }
.contact-items { display: flex; flex-direction: column; gap: 28px; }
.ci-label { font-family: var(--sans); font-size: 8px; font-weight: 400; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.ci-val { font-family: var(--serif); font-size: 17px; font-weight: 300; color: var(--forest); }
.contact-right { padding: 130px 56px 130px 78px; }
.contact-right .heading-xl { margin: 18px 0 44px; font-size: 33px; }
.f-row { border-bottom: 1px solid var(--line); padding-top: 24px; margin-bottom: 2px; }
.f-row label { display: block; font-family: var(--sans); font-size: 8px; font-weight: 400; letter-spacing: .28em; text-transform: uppercase; color: var(--mist); margin-bottom: 8px; }
.f-row input, .f-row textarea, .f-row select { width: 100%; background: none; border: none; outline: none; font-family: var(--serif); font-size: 17px; font-weight: 300; color: var(--forest); padding-bottom: 14px; resize: none; appearance: none; }
.f-row input::placeholder, .f-row textarea::placeholder { color: rgba(42,26,12,.28); }
.f-row textarea { min-height: 70px; }
.f-submit { margin-top: 42px; display: inline-flex; align-items: center; gap: 18px; font-family: var(--sans); font-size: 10px; font-weight: 400; letter-spacing: .26em; text-transform: uppercase; color: var(--ivory); background: var(--forest); border: 1px solid var(--forest); padding: 20px 44px; cursor: pointer; transition: background .35s, color .35s, border-color .35s; }
.f-submit::after { content: '→'; font-size: 15px; }
.f-submit:hover { background: transparent; color: var(--forest); border-color: var(--gold); }
#f-ok { display: none; font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 16px; margin-top: 22px; }

/* ════════════ FOOTER ════════════ */
footer { background: var(--ink); padding: 84px 56px 46px; }
.ft-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 62px; }
.ft-brand-name { font-family: var(--serif); font-size: 25px; font-weight: 300; letter-spacing: .16em; text-transform: uppercase; color: rgba(246,240,228,.86); margin-bottom: 6px; }
.ft-emblem { height: 66px; width: auto; display: block; margin-bottom: 22px; opacity: .95; }
.ft-brand-sub { font-family: var(--sans); font-size: 8px; font-weight: 300; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-lt); opacity: .75; margin-bottom: 22px; }
.ft-brand-sub.wm-sub { gap: 4px; max-width: 180px; line-height: 1.5; }
.ft-tagline { font-family: var(--serif); font-size: 14px; font-style: italic; color: rgba(246,240,228,.3); line-height: 1.75; max-width: 290px; }
.ft-col h4 { font-family: var(--sans); font-size: 8px; font-weight: 400; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-lt); opacity: .8; margin-bottom: 26px; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.ft-col ul a { font-family: var(--serif); font-size: 14px; font-weight: 300; color: rgba(246,240,228,.38); text-decoration: none; transition: color .3s; }
.ft-col ul a:hover { color: rgba(246,240,228,.85); }
.ft-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; }
.ft-copy { font-family: var(--sans); font-size: 10px; font-weight: 300; color: rgba(246,240,228,.22); letter-spacing: .08em; }
.ft-social { display: flex; gap: 26px; }
.ft-social a { font-family: var(--sans); font-size: 9px; font-weight: 300; letter-spacing: .22em; text-transform: uppercase; color: rgba(246,240,228,.3); text-decoration: none; transition: color .3s; }
.ft-social a:hover { color: var(--gold-lt); }

/* ════════════ DARK-MODE SECTION OVERRIDES (Tweaks) ════════════ */
html[data-mode="dark"] body { background: var(--forest-dk); }
html[data-mode="dark"] #hero,
html[data-mode="dark"] #collection,
html[data-mode="dark"] #order,
html[data-mode="dark"] #gifting { background: var(--forest-dk); }
html[data-mode="dark"] .hero-left::before { opacity: .6; }
html[data-mode="dark"] .hero-h1,
html[data-mode="dark"] .col-header .heading-xl,
html[data-mode="dark"] .gifting-intro .heading-xl,
html[data-mode="dark"] .tc-name { color: var(--ivory); }
html[data-mode="dark"] .heading-xl { color: var(--ivory); }
html[data-mode="dark"] .cta-line { color: var(--gold-lt); }
html[data-mode="dark"] nav.stuck { background: color-mix(in srgb, var(--forest-dk) 92%, transparent); }
html[data-mode="dark"] .nav-wordmark,
html[data-mode="dark"] .nav-links a { color: var(--ivory); }
html[data-mode="dark"] .gift-card { background: var(--forest); border-color: rgba(217,178,84,.18); }
html[data-mode="dark"] .gift-title { color: var(--ivory); }
html[data-mode="dark"] .gift-num { color: var(--ivory); }
html[data-mode="dark"] .gift-kicker { color: var(--gold-lt); }
html[data-mode="dark"] .gift-desc { color: rgba(246,240,228,.5); }
html[data-mode="dark"] .gift-link { color: var(--gold-lt); }
html[data-mode="dark"] #provenance { background: var(--forest); }
html[data-mode="dark"] .prov-num { color: var(--ivory); }
html[data-mode="dark"] .order-shell { background: var(--bark); }

html[data-mode="light"] .marquee,
html[data-mode="light"] #story .story-text,
html[data-mode="light"] #brew { background: var(--forest); }

/* ════════════ REVEAL ════════════ */
.r { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.r.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .r { opacity: 1; transform: none; } }

/* ════════════ RESPONSIVE ════════════ */
@media (max-width: 1080px) {
  nav, nav.stuck { padding: 14px 22px; gap: 18px; }
  .nav-links { display: none; }
  .nav-shop { padding: 11px 18px; font-size: 9px; }
  #hero { min-height: 78vh; }
  .hero-img { object-position: 64% center; }
  .hero-scrim { background: linear-gradient(180deg, rgba(8,18,11,.5) 0%, rgba(8,18,11,.55) 40%, rgba(8,18,11,.9) 100%); }
  .hero-content { padding: 0 26px; }
  .hero-inner-border { inset: 14px; }
  .hero-badge { display: none; }
  .seal { width: 76px; height: 76px; top: 26px; right: 26px; }
  #elevation { padding: 0; }
  .elev-grid { grid-template-columns: 1fr; gap: 56px; }
  .elev-left { padding-left: 46px; }
  .elev-chart { height: 380px; }
  .elev-flag { width: 110px; }
  .elev-map2 { max-width: 460px; }
  .ecallout { width: 150px; padding: 10px 12px; }
  .ecallout h4 { font-size: 18px; }
  #collection { padding: 80px 24px; }
  .col-header { grid-template-columns: 1fr; }
  .tea-grid { grid-template-columns: repeat(2,1fr); gap: 18px; }
  #order { padding: 0 24px 80px; }
  .order-shell { padding: 48px 26px; }
  .order-grid { grid-template-columns: 1fr; gap: 44px; }
  #landscapes { padding: 80px 24px; }
  .land-grid { grid-template-columns: 1fr; gap: 30px; }
  #story { grid-template-columns: 1fr; min-height: auto; }
  .story-photo { min-height: 400px; }
  .story-text { padding: 56px 24px; }
  .story-body { font-size: 16px; }
  .story-pull { font-size: 20px; }
  .story-float { left: 18px; bottom: 28px; max-width: 230px; padding: 18px 20px; }
  .story-float blockquote { font-size: 15px; }
  #provenance { grid-template-columns: repeat(2,1fr); }
  .prov-item { padding: 50px 30px; }
  .prov-item:nth-child(2) { border-right: none; }
  #brew { padding: 80px 24px; }
  .brew-inner { grid-template-columns: 1fr; gap: 52px; }
  .brew-circle-wrap { display: none; }
  #gifting { padding: 80px 24px; }
  .gift-grid { grid-template-columns: 1fr; }
  #contact { grid-template-columns: 1fr; }
  .contact-left { padding: 80px 24px 48px; border-right: none; border-bottom: 1px solid var(--line-soft); }
  .contact-right { padding: 48px 24px 80px; }
  footer { padding: 60px 24px 36px; }
  .ft-top { grid-template-columns: 1fr 1fr; }
  .seal { width: 88px; height: 88px; top: 92px; right: 28px; }
}
@media (max-width: 600px) {
  nav, nav.stuck { padding: 12px 16px; gap: 12px; }
  .nav-emblem { height: 40px; }
  nav.stuck .nav-emblem { height: 34px; }
  .nav-wordmark { font-size: 14px; }
  .nav-shop { padding: 10px 15px; font-size: 8.5px; letter-spacing: .16em; }
  /* Hero (phones): editorial overlay — text anchored to the bottom over a
     strong upward gradient on the dark foliage, clear of her face. */
  #hero { min-height: 92vh; align-items: flex-end; background: var(--forest-dk); }
  .hero-img { object-position: 58% 30%; }
  .hero-scrim { background: linear-gradient(to top, rgba(8,18,11,.94) 0%, rgba(8,18,11,.74) 26%, rgba(8,18,11,.34) 52%, rgba(8,18,11,.08) 74%, transparent 100%); }
  .hero-inner-border { inset: 14px; }
  .hero-inner-border::after { inset: 4px; }
  .hero-content { padding: 0 24px 62px; max-width: none; }
  .hero-pretitle { font-size: 9px; letter-spacing: .22em; margin-bottom: 18px; }
  .hero-h1 { font-size: clamp(40px, 11vw, 60px); margin-bottom: 22px; text-shadow: 0 2px 24px rgba(0,0,0,.5); }
  .hero-tagline { font-size: 17px; margin-bottom: 30px; max-width: none; }
  .hero-ctas { gap: 14px; }
  .heading-xl { font-size: clamp(32px, 8.5vw, 46px); }
  .tea-grid { grid-template-columns: 1fr; }
  .ob-teas { grid-template-columns: 1fr; }
  .jrec-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .jrec-q { width: auto; text-align: center; }
  .jrec-opts { justify-content: center; flex-wrap: wrap; }
  .ob-format { grid-template-columns: 18px 1fr auto; }
  .story-photo { min-height: 320px; }
  .story-text { padding: 48px 20px; }
  #provenance { grid-template-columns: 1fr 1fr; }
  .prov-item { padding: 38px 22px; }
  .prov-item:nth-child(3) { border-right: none; }
  .marquee-track span { font-size: 13px; padding: 0 22px; }
  .gift-grid { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr; gap: 30px; }
  .deco-frame { inset: 8px; }
  .seal { display: none; }
  .hero-scroll { display: none; }
  .col-intro, .order-lead.center { font-size: 16px; }
}
