:root {
  --green-deep: #16261d;
  --green: #22392c;
  --green-mid: #33513f;
  --green-soft: #6f8b7a;
  --terracotta: #bd6238;
  --terracotta-dark: #9c4d29;
  --terracotta-soft: #e7ab84;
  --cream: #f6f0e3;
  --paper: #fbf8f1;
  --paper-soft: #f1ead9;
  --ink: #221f19;
  --ink-dim: #6c6255;
  --line: #e2d8c3;
  --line-dark: #3a5142;
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Manrope', 'Segoe UI', sans-serif;
  --shadow-soft: 0 20px 50px -25px rgba(22, 38, 29, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-display); margin: 0; font-weight: 600; color: var(--ink); }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
svg { display: block; }
:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 2px; }
.wrap { max-width: 1220px; margin: 0 auto; padding: 0 32px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--terracotta); color: var(--paper);
  padding: 12px 22px; z-index: 300; font-weight: 700; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 0.92rem;
  cursor: pointer; border: 1.5px solid transparent; font-family: var(--font-body);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--terracotta); color: var(--paper); box-shadow: 0 12px 24px -12px rgba(189,98,56,0.65); }
.btn-primary:hover { background: var(--terracotta-dark); }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-outline-light { border-color: rgba(246,240,227,0.55); color: var(--cream); }
.btn-outline-light:hover { background: var(--cream); color: var(--green-deep); }
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.3,1), transform 0.7s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-reveal-delay="1"] { transition-delay: 0.08s; }
.reveal[data-reveal-delay="2"] { transition-delay: 0.16s; }
.reveal[data-reveal-delay="3"] { transition-delay: 0.24s; }
.reveal[data-reveal-delay="4"] { transition-delay: 0.32s; }
.reveal[data-reveal-delay="5"] { transition-delay: 0.4s; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(251,248,241,0.88);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line); transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 24px -18px rgba(22,38,29,0.4); }
.header-inner { display: flex; align-items: center; gap: 20px; padding: 14px 32px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; color: var(--green-deep); line-height: 1.05; }
.logo-mark { color: var(--terracotta); flex: none; }
.logo-text { font-size: 0.98rem; }
.main-nav { flex: 1; display: flex; justify-content: center; gap: 26px; }
.main-nav a { font-size: 0.88rem; color: var(--ink-dim); font-weight: 600; position: relative; padding: 4px 0; }
.main-nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px; background: var(--terracotta);
  transition: right .2s ease;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { right: 0; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); display: block; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; overflow: hidden; color: var(--cream); }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 65%; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,26,20,0.35) 0%, rgba(15,26,20,0.35) 35%, rgba(15,26,20,0.86) 100%),
              linear-gradient(90deg, rgba(15,26,20,0.55) 0%, rgba(15,26,20,0.15) 55%);
}
.hero-inner { position: relative; z-index: 1; padding: 160px 0 76px; max-width: 720px; }
.eyebrow { color: var(--terracotta); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.eyebrow-light { color: var(--terracotta-soft); }
.hero-title { font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 0.98; margin-bottom: 20px; }
.hero-statement { font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem, 2.6vw, 1.7rem); line-height: 1.32; margin: 0 0 22px; font-weight: 500; }
.accent { color: var(--terracotta-soft); font-style: normal; }
.hero-desc { max-width: 54ch; color: rgba(246,240,227,0.88); margin-bottom: 34px; font-size: 1.02rem; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; margin: 0; padding-top: 28px; border-top: 1px solid rgba(246,240,227,0.22); }
.hero-stats dt { font-family: var(--font-display); font-size: 1.7rem; color: var(--cream); }
.hero-stats dd { margin: 4px 0 0; font-size: 0.76rem; color: rgba(246,240,227,0.7); letter-spacing: 0.02em; }

.scroll-cue {
  position: absolute; right: 40px; bottom: 36px; z-index: 1; width: 30px; height: 46px;
  border: 1.5px solid rgba(246,240,227,0.55); border-radius: 999px; display: flex; justify-content: center; padding-top: 8px;
}
.scroll-cue span { width: 4px; height: 8px; border-radius: 999px; background: var(--terracotta-soft); animation: cue 1.8s ease infinite; }
@keyframes cue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }
@media (max-width: 720px) { .scroll-cue { display: none; } }

/* ---------- Marquee ---------- */
.marquee { background: var(--green-deep); color: var(--paper-soft); overflow: hidden; padding: 16px 0; border-bottom: 1px solid var(--line-dark); }
.marquee-track { display: flex; gap: 26px; white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; letter-spacing: 0.02em; opacity: 0.85; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Section generics ---------- */
.section-kicker { color: var(--terracotta); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 12px; font-weight: 700; }
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 16px; letter-spacing: -0.01em; }
.section-title-light { color: var(--cream); }
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 46px; flex-wrap: wrap; }
.section-lead { color: var(--ink-dim); max-width: 38ch; margin: 0; }

/* ---------- Story ---------- */
.story { padding: 120px 0; background: var(--paper); }
.story-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.story-visual { position: relative; }
.story-visual img { border-radius: 18px; aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow-soft); }
.story-badge {
  position: absolute; left: -20px; bottom: -20px; background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; padding: 14px 18px; display: flex; flex-direction: column; gap: 2px; box-shadow: var(--shadow-soft);
  max-width: 190px;
}
.story-badge-num { font-family: var(--font-display); font-size: 1.4rem; color: var(--terracotta); }
.story-badge span:last-child { font-size: 0.78rem; color: var(--ink-dim); }
.story-copy p { color: var(--ink-dim); }
.check-list { list-style: none; padding: 0; margin: 24px 0 30px; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 28px; font-size: 0.95rem; color: var(--ink); }
.check-list li::before {
  content: ''; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-mid);
}
.check-list li::after {
  content: ''; position: absolute; left: 5px; top: 7px; width: 8px; height: 4px; border-left: 2px solid var(--paper);
  border-bottom: 2px solid var(--paper); transform: rotate(-45deg);
}

/* ---------- Catalog ---------- */
.catalog { padding: 110px 0; background: var(--paper-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tea-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease;
}
.tea-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.tea-card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.tea-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tea-card:hover .tea-card-media img { transform: scale(1.06); }
.tea-badge {
  position: absolute; top: 14px; left: 14px; background: var(--green-deep); color: var(--paper-soft);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.tea-badge-new { background: var(--terracotta); color: var(--paper); }
.tea-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.tea-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 4px; }
.tea-card-top h3 { font-size: 1.15rem; line-height: 1.25; }
.tea-price { font-family: var(--font-display); font-weight: 700; color: var(--terracotta); white-space: nowrap; text-align: right; }
.tea-price span { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.68rem; color: var(--ink-dim); }
.tea-origin { font-size: 0.8rem; color: var(--green-mid); font-weight: 600; margin-bottom: 6px; }
.tea-notes { font-size: 0.88rem; color: var(--ink-dim); margin-bottom: 18px; flex: 1; }

/* ---------- Sourcing ---------- */
.sourcing { padding: 120px 0; background: var(--paper); }
.sourcing-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: start; }
.steps-list { list-style: none; margin: 40px 0 0; padding: 0; display: grid; gap: 30px; }
.step-item { display: flex; gap: 20px; }
.step-num { font-family: var(--font-display); font-size: 1.5rem; color: var(--terracotta-soft); -webkit-text-stroke: 1px var(--terracotta); flex: none; width: 46px; }
.step-item h3 { font-size: 1.08rem; margin-bottom: 6px; }
.step-item p { color: var(--ink-dim); font-size: 0.92rem; margin: 0; }
.sourcing-visual { position: relative; }
.sourcing-img-main { border-radius: 18px; aspect-ratio: 3/4; object-fit: cover; box-shadow: var(--shadow-soft); width: 100%; }
.sourcing-img-small {
  position: absolute; right: -28px; bottom: -34px; width: 54%; border-radius: 14px; aspect-ratio: 4/5; object-fit: cover;
  border: 6px solid var(--paper); box-shadow: var(--shadow-soft);
}

/* ---------- Ritual ---------- */
.ritual { padding: 120px 0; background: var(--green-deep); color: var(--cream); }
.ritual .section-kicker { color: var(--terracotta-soft); }
.ritual .section-title { color: var(--cream); }
.ritual .section-lead { color: rgba(246,240,227,0.72); }
.ritual-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: center; }
.ritual-visual img { border-radius: 18px; aspect-ratio: 3/4; object-fit: cover; box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6); }
.ritual-table-wrap { background: rgba(246,240,227,0.05); border: 1px solid rgba(246,240,227,0.16); border-radius: 18px; padding: 28px; }
.brew-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.brew-table { width: 100%; min-width: 460px; border-collapse: collapse; font-size: 0.88rem; }
.brew-table th, .brew-table td { text-align: left; padding: 12px 10px; border-bottom: 1px solid rgba(246,240,227,0.14); }
.brew-table thead th { color: var(--terracotta-soft); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; }
.brew-table tbody th { font-weight: 600; color: var(--cream); }
.brew-table tbody td { color: rgba(246,240,227,0.78); }
.brew-table tbody tr:last-child th, .brew-table tbody tr:last-child td { border-bottom: none; }
.ritual-note { margin: 18px 0 0; font-size: 0.82rem; color: rgba(246,240,227,0.6); }

/* ---------- Reviews ---------- */
.reviews { padding: 110px 0; background: var(--paper); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.review { margin: 0; background: var(--paper-soft); border: 1px solid var(--line); border-radius: 16px; padding: 26px; }
.review p { font-size: 0.95rem; margin: 0 0 18px; color: var(--ink); font-style: italic; font-family: var(--font-display); line-height: 1.5; }
.review footer { display: flex; flex-direction: column; font-size: 0.85rem; }
.review cite { font-weight: 700; font-style: normal; font-family: var(--font-body); }
.review span { color: var(--ink-dim); }

/* ---------- Subscribe ---------- */
.subscribe { position: relative; padding: 120px 0; overflow: hidden; color: var(--cream); }
.subscribe-media { position: absolute; inset: 0; z-index: 0; }
.subscribe-media img { width: 100%; height: 100%; object-fit: cover; }
.subscribe-scrim { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(15,26,20,0.92) 20%, rgba(15,26,20,0.72) 100%); }
.subscribe-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.subscribe-copy p { color: rgba(246,240,227,0.82); }
.subscribe-points { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px; }
.subscribe-points li { font-size: 0.92rem; padding-left: 22px; position: relative; color: rgba(246,240,227,0.9); }
.subscribe-points li::before { content: '—'; position: absolute; left: 0; color: var(--terracotta-soft); }

.subscribe-form { background: rgba(251,248,241,0.06); border: 1px solid rgba(246,240,227,0.2); border-radius: 18px; padding: 32px; backdrop-filter: blur(6px); }
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-row label { font-size: 0.85rem; font-weight: 600; color: var(--cream); }
.form-row input[type="text"], .form-row input[type="email"] {
  background: rgba(251,248,241,0.94); border: 1px solid transparent; border-radius: 10px; padding: 13px 14px;
  color: var(--ink); font-family: var(--font-body); font-size: 0.95rem;
}
.form-row input:focus { outline: 2px solid var(--terracotta-soft); }
.form-row input[aria-invalid="true"] { border-color: #e2694a; }
.form-row-checkbox { flex-direction: row; align-items: flex-start; gap: 10px; flex-wrap: wrap; }
.form-row-checkbox input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--terracotta); flex: none; }
.form-row-checkbox label { font-weight: 500; font-size: 0.82rem; color: rgba(246,240,227,0.85); flex: 1; min-width: 200px; }
.form-error { color: #ff9a7a; font-size: 0.76rem; min-height: 1em; width: 100%; }
.form-success { margin-top: 16px; background: rgba(231,171,132,0.16); border: 1px solid rgba(231,171,132,0.4); padding: 14px 16px; border-radius: 10px; font-size: 0.88rem; color: var(--cream); }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-deep); color: rgba(246,240,227,0.82); padding: 70px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.1fr 2fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(246,240,227,0.14); }
.logo-footer { color: var(--cream); }
.footer-tagline { margin-top: 14px; font-size: 0.9rem; color: rgba(246,240,227,0.62); max-width: 30ch; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--terracotta-soft); margin: 0 0 4px; }
.footer-col a, .footer-static { font-size: 0.9rem; color: rgba(246,240,227,0.78); }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; padding: 22px 0; }
.footer-bottom p { margin: 0; font-size: 0.78rem; color: rgba(246,240,227,0.5); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(20px);
  background: var(--green-deep); color: var(--cream); padding: 14px 22px; border-radius: 999px;
  font-size: 0.88rem; font-weight: 600; box-shadow: var(--shadow-soft); z-index: 400;
  opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease;
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .story-grid, .sourcing-grid, .ritual-grid, .subscribe-grid { grid-template-columns: 1fr; }
  .sourcing-visual { margin-top: 20px; max-width: 420px; }
  .footer-inner { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper);
    border-bottom: 1px solid var(--line); flex-direction: column; gap: 0; padding: 8px 32px 18px;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .main-nav a::after { display: none; }
}

@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  .hero-inner { padding: 128px 0 60px; }
  .hero-stats { gap: 22px 28px; }
  .story, .catalog, .sourcing, .ritual, .reviews, .subscribe { padding: 76px 0; }
  .catalog-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; gap: 26px; }
  .section-head-row { margin-bottom: 32px; }
  .story-badge { left: 0; bottom: -16px; max-width: none; width: calc(100% - 32px); flex-direction: row; align-items: center; gap: 10px; }
  .sourcing-img-small { width: 58%; right: -12px; bottom: -22px; }
  .subscribe-form { padding: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .ritual-table-wrap { padding: 18px; }
}

@media (max-width: 460px) {
  .hero-title { font-size: 2.5rem; }
  .logo-text { display: none; }
  .btn-lg { padding: 14px 22px; font-size: 0.92rem; }
}
