:root {
  --forest-950: #0b2419;
  --forest-900: #123325;
  --forest-800: #173f2c;
  --forest-700: #23583d;
  --forest-600: #32734f;
  --sage-500: #7c9b79;
  --sage-300: #b9c9af;
  --sage-100: #e8eee3;
  --cream-50: #fbfaf4;
  --cream-100: #f4f0e4;
  --cream-200: #e9e1cf;
  --gold-500: #b58a42;
  --gold-300: #d6b875;
  --plum-700: #58415e;
  --ink: #172019;
  --muted: #5f685f;
  --white: #ffffff;
  --shadow-sm: 0 12px 34px rgba(15, 42, 29, 0.08);
  --shadow-lg: 0 28px 70px rgba(4, 27, 16, 0.18);
  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 34px;
  --container: 1220px;
  --header-height: 84px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-50);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold-300);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 860px;
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 7.2vw, 7.5rem);
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.45rem, 4.8vw, 5.1rem);
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
}

p {
  margin-bottom: 20px;
}

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

.section {
  position: relative;
  padding: 132px 0;
}

.eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--forest-700);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow.light {
  color: var(--cream-200);
}

.lead {
  color: var(--ink);
  font-size: clamp(1.17rem, 1.65vw, 1.4rem);
  line-height: 1.55;
}

.section-intro {
  margin-bottom: 70px;
}

.section-intro.centered {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-intro.centered .eyebrow {
  justify-content: center;
}

.section-intro.centered > p:last-child {
  max-width: 680px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.75fr);
  gap: 10%;
  align-items: end;
}

.split-intro h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.split-intro > div:last-child {
  padding-bottom: 6px;
}

.split-intro > div:last-child p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--forest-700);
}

.button-primary:hover {
  background: var(--forest-600);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.button-cream {
  color: var(--forest-950);
  background: var(--cream-100);
}

.button-cream:hover {
  background: var(--white);
}

.text-link {
  color: var(--forest-700);
  font-weight: 700;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest-950);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: height 200ms ease, color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.site-header.scrolled {
  height: 72px;
  color: var(--forest-950);
  border-color: transparent;
  background: rgba(251, 250, 244, 0.95);
  box-shadow: 0 8px 30px rgba(12, 37, 25, 0.08);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  flex: 0 0 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.brand-text small {
  margin-top: 7px;
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.primary-navigation {
  display: flex;
  gap: clamp(14px, 1.55vw, 26px);
  align-items: center;
}

.primary-navigation a {
  position: relative;
  padding: 12px 0;
  font-size: 0.83rem;
  font-weight: 600;
  white-space: nowrap;
}

.primary-navigation a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-navigation a:hover::after,
.primary-navigation a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-navigation .nav-cta {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  align-items: center;
}

.site-header:not(.scrolled) .nav-cta {
  display: inline-flex;
  color: var(--forest-950);
  border-color: var(--cream-100);
  background: var(--cream-100);
}

.site-header.scrolled .nav-cta {
  display: inline-flex;
  color: var(--white);
  border-color: var(--forest-700);
  background: var(--forest-700);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 1.5px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: 820px;
  height: 100svh;
  color: var(--white);
  background: var(--forest-950);
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(8, 32, 21, 0.2), rgba(8, 32, 21, 0.05)),
    url("https://images.unsplash.com/photo-1576092768241-dec231879fc3?auto=format&fit=crop&w=2200&q=88") center 58% / cover no-repeat;
  transform: scale(1.02);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 25, 16, 0.91) 0%, rgba(7, 31, 20, 0.76) 46%, rgba(7, 28, 18, 0.25) 78%, rgba(7, 28, 18, 0.16) 100%),
    linear-gradient(0deg, rgba(4, 22, 14, 0.45), transparent 45%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 70px;
  padding-top: var(--header-height);
  align-items: end;
}

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

.hero-lead {
  max-width: 680px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

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

.hero-actions .button-primary {
  color: var(--forest-950);
  background: var(--cream-100);
}

.hero-actions .button-primary:hover {
  background: var(--white);
}

.hero-note {
  margin-bottom: 18px;
  padding: 28px 0 20px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.45);
  align-self: end;
}

.hero-note .note-number {
  display: block;
  margin-bottom: 60px;
  color: var(--gold-300);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
}

.hero-note p {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.35;
}

.hero-note .note-rule {
  width: 42px;
  height: 1px;
  margin: 26px 0 16px;
  background: var(--gold-300);
}

.hero-note > span:last-child {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 38px;
  left: max(24px, calc((100vw - min(calc(100vw - 48px), var(--container))) / 2));
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 55px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.scroll-cue i::after {
  position: absolute;
  top: -2px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cream-100);
  content: "";
  animation: cue 2.2s ease-in-out infinite;
}

@keyframes cue {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(49px); }
}

/* Market strip */
.market-strip {
  padding: 24px 0;
  color: var(--cream-200);
  background: var(--forest-900);
}

.market-list {
  display: flex;
  gap: 20px 36px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.market-list span {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.market-list span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-300);
  content: "";
}

/* About */
.about {
  background:
    radial-gradient(circle at 100% 0, rgba(185, 201, 175, 0.2), transparent 28%),
    var(--cream-50);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.story-card {
  min-height: 660px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.story-image {
  position: relative;
  background: var(--sage-100);
}

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

.image-caption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 14px 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(12, 44, 29, 0.7);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.story-copy {
  padding: clamp(38px, 5vw, 74px);
  color: var(--white);
  background: var(--forest-800);
}

.story-copy .eyebrow {
  color: var(--gold-300);
}

.story-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
}

.values-list {
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.values-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.values-list span {
  color: var(--gold-300);
  font-size: 0.73rem;
  font-weight: 700;
}

.values-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.values-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
}

.mission-grid article {
  padding: 38px;
}

.mission-grid article + article {
  border-left: 1px solid var(--cream-200);
}

.mission-grid article p:last-child {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.5;
}

/* Teas */
.tea-section {
  background: var(--cream-100);
}

.tea-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.tea-card {
  position: relative;
  display: flex;
  min-height: 510px;
  padding: 38px;
  border: 1px solid rgba(23, 63, 44, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  flex-direction: column;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.tea-card:hover {
  border-color: rgba(23, 63, 44, 0.28);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.tea-index {
  position: relative;
  z-index: 2;
  color: var(--forest-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.tea-art {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 16px auto 26px;
}

.tea-art::before,
.tea-art::after,
.tea-art span {
  position: absolute;
  display: block;
  content: "";
}

.tea-art::before {
  width: 116px;
  height: 116px;
  top: 26px;
  left: 32px;
  border-radius: 50% 8% 50% 8%;
  background: var(--sage-500);
  transform: rotate(34deg);
}

.tea-art::after {
  width: 76px;
  height: 1px;
  top: 95px;
  left: 52px;
  background: var(--forest-800);
  transform: rotate(-44deg);
}

.tea-art span {
  width: 44px;
  height: 74px;
  top: 53px;
  left: 68px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  transform: rotate(33deg);
}

.black-tea::before {
  background: #7a5331;
}

.green-tea::before {
  background: #749568;
}

.purple-tea::before {
  background: #76577c;
}

.herbal-tea::before {
  background: #bd7b42;
}

.tea-card h3 {
  margin-bottom: 14px;
}

.tea-card p {
  color: var(--muted);
}

.tea-card > a {
  display: flex;
  margin-top: auto;
  padding-top: 24px;
  color: var(--forest-700);
  border-top: 1px solid rgba(23, 63, 44, 0.14);
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.tea-card-dark {
  color: var(--white);
  background: var(--forest-800);
}

.tea-card-dark .tea-index,
.tea-card-dark > a {
  color: var(--gold-300);
}

.tea-card-dark p {
  color: rgba(255, 255, 255, 0.68);
}

.tea-card-dark > a {
  border-color: rgba(255, 255, 255, 0.18);
}

.tea-card-purple {
  color: var(--white);
  background: var(--plum-700);
}

.tea-card-purple .tea-index,
.tea-card-purple > a {
  color: #e1c8e5;
}

.tea-card-purple p {
  color: rgba(255, 255, 255, 0.7);
}

.tea-card-purple > a {
  border-color: rgba(255, 255, 255, 0.18);
}

.tea-card-wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 9%;
  min-height: 300px;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(12, 47, 31, 0.95), rgba(20, 64, 43, 0.88)),
    url("https://images.unsplash.com/photo-1567922045116-2a00fae2ed03?auto=format&fit=crop&w=1800&q=82") center / cover;
  align-items: center;
}

.tea-card-wide .eyebrow {
  margin-top: 46px;
  color: var(--gold-300);
}

.tea-card-wide p {
  color: rgba(255, 255, 255, 0.75);
}

.tea-card-wide .text-link {
  display: inline-flex;
  gap: 24px;
  margin-top: 16px;
  padding: 0;
  color: var(--cream-100);
  border: 0;
  text-transform: none;
}

.availability-note {
  max-width: 780px;
  margin: 36px auto 0;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: center;
}

/* Origin */
.origin-section {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 80%, rgba(181, 138, 66, 0.13), transparent 27%),
    var(--forest-950);
}

.origin-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1fr);
  gap: 10%;
  align-items: start;
}

.origin-copy {
  position: sticky;
  top: 120px;
}

.origin-copy h2 {
  font-size: clamp(2.6rem, 4.4vw, 4.7rem);
}

.origin-copy .lead {
  color: var(--cream-100);
}

.origin-copy > p:not(.eyebrow):not(.lead) {
  color: rgba(255, 255, 255, 0.67);
}

.origin-steps {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.origin-steps article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.origin-steps article > span {
  color: var(--gold-300);
  font-size: 0.72rem;
  font-weight: 700;
}

.origin-steps h3 {
  margin-bottom: 8px;
  color: var(--cream-100);
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0;
}

.origin-steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.94rem;
}

.origin-quote {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  margin-top: 108px;
  padding-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  align-items: end;
}

.origin-quote p {
  max-width: 900px;
  margin: 0;
  color: var(--cream-100);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.4vw, 3.6rem);
  line-height: 1.27;
}

.origin-quote span {
  color: var(--gold-300);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Responsibility */
.responsibility-section {
  background:
    linear-gradient(rgba(251, 250, 244, 0.9), rgba(251, 250, 244, 0.96)),
    repeating-linear-gradient(90deg, transparent 0, transparent 79px, rgba(23, 63, 44, 0.04) 80px);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--cream-200);
  border-bottom: 1px solid var(--cream-200);
}

.pillar {
  min-height: 310px;
  padding: 32px 24px;
}

.pillar + .pillar {
  border-left: 1px solid var(--cream-200);
}

.pillar > span {
  display: block;
  margin-bottom: 80px;
  color: var(--gold-500);
  font-size: 0.72rem;
  font-weight: 700;
}

.pillar h3 {
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
}

.pillar p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.89rem;
}

/* Wholesale */
.wholesale-section {
  color: var(--white);
  background: var(--forest-800);
}

.wholesale-header {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.52fr);
  gap: 9%;
  margin-bottom: 68px;
  align-items: end;
}

.wholesale-header h2 {
  grid-column: 1;
  margin-bottom: 0;
}

.wholesale-header > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.68);
  align-self: end;
}

.buyer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.buyer-card {
  min-height: 310px;
  padding: 34px 28px;
  background: rgba(255, 255, 255, 0.025);
}

.buyer-card + .buyer-card {
  border-left: 1px solid rgba(255, 255, 255, 0.19);
}

.buyer-card > span {
  display: block;
  margin-bottom: 80px;
  color: var(--gold-300);
  font-size: 0.7rem;
  font-weight: 700;
}

.buyer-card h3 {
  font-family: var(--sans);
  font-size: 1.15rem;
  letter-spacing: 0;
}

.buyer-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.capabilities {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 9%;
  margin-top: 84px;
  padding: 56px;
  border-radius: var(--radius-md);
  color: var(--ink);
  background: var(--cream-100);
}

.capabilities .eyebrow {
  color: var(--forest-700);
}

.capabilities h3 {
  max-width: 420px;
}

.capability-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--cream-200);
  color: var(--muted);
  font-size: 0.9rem;
}

.capability-list li::before {
  margin-right: 10px;
  color: var(--gold-500);
  content: "+";
}

.wholesale-cta {
  display: flex;
  gap: 40px;
  margin-top: 28px;
  padding: 40px 44px;
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: var(--radius-md);
  align-items: center;
  justify-content: space-between;
}

.wholesale-cta p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.65);
}

.wholesale-cta .eyebrow {
  margin-bottom: 10px;
  color: var(--gold-300);
}

/* Insights */
.insights-section {
  background: var(--cream-50);
}

.insights-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.insight-card {
  min-height: 270px;
  padding: 34px;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  background: var(--white);
}

.insight-card > span,
.insight-copy > span {
  display: block;
  margin-bottom: 50px;
  color: var(--forest-700);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.insight-card h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.insight-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.featured-insight {
  display: grid;
  grid-row: span 3;
  grid-template-rows: 360px 1fr;
  min-height: 760px;
  padding: 0;
  overflow: hidden;
}

.insight-image img {
  height: 100%;
  object-fit: cover;
}

.insight-copy {
  padding: 42px;
}

.insight-copy > span {
  margin-bottom: 24px;
}

.insight-copy a {
  display: inline-flex;
  gap: 26px;
  margin-top: 22px;
  color: var(--forest-700);
  font-weight: 700;
}

/* Contact */
.contact-section {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(181, 138, 66, 0.16), transparent 26%),
    var(--forest-950);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(540px, 1fr);
  gap: 8%;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-copy h2 {
  font-size: clamp(2.75rem, 4.8vw, 5rem);
}

.contact-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.04rem;
}

.contact-points {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.19);
}

.contact-points > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
}

.contact-points span {
  color: var(--gold-300);
  font-size: 0.7rem;
  font-weight: 700;
}

.contact-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.contact-points strong {
  display: block;
  margin-bottom: 3px;
  color: var(--cream-100);
}

.inquiry-form {
  padding: clamp(34px, 5vw, 58px);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: var(--cream-50);
  box-shadow: var(--shadow-lg);
}

.form-heading {
  margin-bottom: 36px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--cream-200);
}

.form-heading h3 {
  margin-bottom: 0;
  font-size: 2.2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px 20px;
}

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid label > span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #bcc6b8;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-grid input,
.form-grid select {
  height: 49px;
}

.form-grid textarea {
  padding: 13px 0;
  resize: vertical;
}

.form-grid select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--forest-700) 50%),
    linear-gradient(135deg, var(--forest-700) 50%, transparent 50%);
  background-position:
    calc(100% - 16px) 21px,
    calc(100% - 11px) 21px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--forest-700);
  box-shadow: 0 1px 0 var(--forest-700);
}

.form-grid input.invalid,
.form-grid select.invalid,
.form-grid textarea.invalid {
  border-color: #a63f32;
}

.full-field {
  grid-column: 1 / -1;
}

.form-footer {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  align-items: center;
}

.form-footer p {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.form-status {
  display: none;
  margin: 24px 0 0;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
}

.form-status.visible {
  display: block;
}

.form-status.success {
  color: var(--forest-800);
  background: var(--sage-100);
}

.form-status.error {
  color: #7c2f27;
  background: #f7ded9;
}

/* Footer */
.site-footer {
  padding: 74px 0 24px;
  color: rgba(255, 255, 255, 0.7);
  background: #071b12;
}

.footer-top {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr auto;
  gap: 8%;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  align-items: center;
}

.footer-brand {
  color: var(--cream-100);
}

.footer-top > p {
  max-width: 500px;
  margin: 0;
  font-size: 0.93rem;
}

.footer-inquiry {
  display: inline-flex;
  gap: 24px;
  color: var(--gold-300);
  font-weight: 700;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding: 54px 0;
}

.footer-links h3 {
  margin-bottom: 18px;
  color: var(--cream-100);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  width: max-content;
  margin: 9px 0;
  font-size: 0.9rem;
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  justify-content: space-between;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.73rem;
}

.back-to-top {
  position: fixed;
  z-index: 500;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest-700);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--forest-600);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1120px) {
  :root {
    --header-height: 76px;
  }

  .primary-navigation {
    gap: 14px;
  }

  .primary-navigation a {
    font-size: 0.76rem;
  }

  .pillar-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pillar:nth-child(4) {
    border-left: 0;
  }

  .pillar:nth-child(n + 4) {
    border-top: 1px solid var(--cream-200);
  }

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

  .buyer-card:nth-child(3) {
    border-left: 0;
  }

  .buyer-card:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.19);
  }

  .contact-grid {
    grid-template-columns: 0.72fr 1fr;
    gap: 5%;
  }
}

@media (max-width: 940px) {
  .section {
    padding: 104px 0;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: block;
    color: inherit;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .primary-navigation {
    position: fixed;
    inset: 0;
    display: flex;
    gap: 2px;
    padding: 110px 32px 38px;
    color: var(--cream-100);
    background: var(--forest-950);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .primary-navigation.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-navigation a {
    padding: 8px 0;
    font-family: var(--serif);
    font-size: clamp(1.8rem, 5vh, 2.8rem);
  }

  .primary-navigation a:not(.nav-cta)::after {
    display: none;
  }

  .site-header.scrolled .primary-navigation .nav-cta,
  .site-header:not(.scrolled) .primary-navigation .nav-cta {
    display: inline-flex;
    min-height: 50px;
    width: max-content;
    margin-top: 18px;
    padding: 0 24px;
    color: var(--forest-950);
    border-color: var(--cream-100);
    background: var(--cream-100);
    font-family: var(--sans);
    font-size: 0.9rem;
  }

  .site-header.scrolled:has(.primary-navigation.open) {
    color: var(--white);
    background: transparent;
    box-shadow: none;
  }

  .hero {
    min-height: 780px;
  }

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

  .hero-note {
    display: none;
  }

  .market-list {
    justify-content: center;
  }

  .split-intro,
  .story-grid,
  .origin-grid,
  .wholesale-header,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split-intro {
    gap: 34px;
  }

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

  .story-card {
    min-height: 610px;
  }

  .origin-copy,
  .contact-copy {
    position: relative;
    top: auto;
  }

  .origin-grid {
    gap: 58px;
  }

  .origin-quote {
    grid-template-columns: 1fr;
  }

  .wholesale-header {
    gap: 26px;
  }

  .wholesale-header > p:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-grid {
    gap: 60px;
  }

  .contact-copy {
    max-width: 720px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inquiry {
    grid-column: 1 / -1;
  }
}

@media (max-width: 740px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 84px 0;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  h2 {
    font-size: clamp(2.25rem, 10vw, 3.8rem);
  }

  .hero {
    min-height: 740px;
    height: auto;
    padding: 150px 0 115px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(5, 25, 16, 0.91), rgba(7, 31, 20, 0.66));
  }

  .hero-grid {
    padding-top: 0;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .scroll-cue {
    bottom: 28px;
    left: 16px;
  }

  .market-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: start;
  }

  .section-intro {
    margin-bottom: 48px;
  }

  .story-grid,
  .tea-grid,
  .tea-card-wide,
  .mission-grid,
  .capabilities,
  .insights-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .story-card {
    min-height: auto;
  }

  .story-image {
    min-height: 460px;
  }

  .story-copy {
    padding: 42px 28px;
  }

  .mission-grid article + article {
    border-top: 1px solid var(--cream-200);
    border-left: 0;
  }

  .tea-card {
    min-height: 470px;
    padding: 30px;
  }

  .tea-card-wide {
    grid-column: auto;
    min-height: 420px;
    gap: 10px;
  }

  .tea-card-wide .eyebrow {
    margin-top: 24px;
  }

  .origin-quote {
    margin-top: 74px;
  }

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

  .pillar:nth-child(odd) {
    border-left: 0;
  }

  .pillar:nth-child(even) {
    border-left: 1px solid var(--cream-200);
  }

  .pillar:nth-child(n + 3) {
    border-top: 1px solid var(--cream-200);
  }

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

  .buyer-card + .buyer-card,
  .buyer-card:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.19);
    border-left: 0;
  }

  .capabilities {
    padding: 34px 26px;
  }

  .capability-list {
    grid-template-columns: 1fr;
  }

  .wholesale-cta,
  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .wholesale-cta {
    padding: 32px 26px;
  }

  .featured-insight {
    grid-row: auto;
    min-height: auto;
  }

  .insight-image {
    height: 300px;
  }

  .inquiry-form {
    padding: 36px 24px;
  }

  .full-field {
    grid-column: auto;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-inquiry {
    grid-column: auto;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-bottom {
    gap: 12px;
    flex-direction: column;
  }
}

@media (max-width: 470px) {
  .brand-text strong {
    font-size: 1.15rem;
  }

  .brand-text small {
    font-size: 0.5rem;
  }

  .market-list {
    grid-template-columns: 1fr;
  }

  .story-image {
    min-height: 380px;
  }

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

  .pillar {
    min-height: auto;
  }

  .pillar + .pillar,
  .pillar:nth-child(even) {
    border-top: 1px solid var(--cream-200);
    border-left: 0;
  }

  .pillar > span,
  .buyer-card > span {
    margin-bottom: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
