/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f0e8dc;
  --bg-dark: #1e1e1e;
  --fg: #1e1e1e;
  --fg-light: #f0e8dc;
  --accent: #c07830;
  --accent-light: #e8a94a;
  --teal: #0a6e6e;
  --teal-deep: #064e4e;
  --sand: #f0e8dc;
  --sand-light: #faf6f0;
  --muted: #7a6e60;
  --rule: rgba(30,30,30,0.12);
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; }
.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* === NAV === */
.nav {
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--teal);
}

/* === HERO === */
.hero {
  min-height: 85vh;
  background: var(--teal-deep);
  color: var(--fg-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 3rem 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(10,110,110,0.4) 0%, transparent 70%),
    linear-gradient(170deg, #064e4e 0%, #042e2e 100%);
  z-index: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.hero-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.hero-headline {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #faf6f0;
  margin-bottom: 1.75rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(250,246,240,0.72);
  max-width: 42ch;
  line-height: 1.7;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.moss-swatch {
  width: 280px;
  height: 340px;
  background: linear-gradient(160deg, #8a7040 0%, #c07830 40%, #e8a94a 70%, #8a7040 100%);
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.moss-swatch::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), transparent);
}
.swatch-inner {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(250,246,240,0.15);
  box-shadow: 0 0 40px rgba(192,120,48,0.4);
  margin-bottom: 1rem;
  position: relative;
}
.swatch-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,246,240,0.8);
  text-align: center;
  line-height: 1.5;
}
.swatch-label span {
  font-style: italic;
  opacity: 0.7;
}
.hero-band {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(250,246,240,0.12);
  position: relative;
  z-index: 1;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 3rem 0 0;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent-light);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(250,246,240,0.55);
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}
.stat-div {
  width: 1px;
  height: 40px;
  background: rgba(250,246,240,0.15);
  margin: 0 3rem;
  flex-shrink: 0;
}

/* === PROVENANCE === */
.provenance {
  background: var(--sand-light);
  padding: 7rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.prov-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.75rem;
  color: var(--fg);
}
.prov-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 46ch;
  margin-bottom: 1.25rem;
}
.prov-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  border: 1px solid var(--teal);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.04em;
}
.prov-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.wave-shape {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 60%, #042e2e 100%);
  box-shadow: 0 20px 80px rgba(10,110,110,0.25);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wave-shape::after {
  content: '';
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  border: 1px solid rgba(250,246,240,0.1);
}
.island-label {
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

/* === NUTRIENTS === */
.nutrients {
  background: var(--bg);
  padding: 7rem 3rem;
}
.nutrients-header {
  max-width: 52ch;
  margin-bottom: 4rem;
}
.nutrients-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
}
.nutrient-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
}
.nutrient-card {
  background: var(--sand-light);
  padding: 2.5rem;
}
.nutrient-icon {
  margin-bottom: 1.25rem;
}
.nutrient-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--fg);
}
.nutrient-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* === RITUAL === */
.ritual {
  background: var(--bg-dark);
  color: var(--fg-light);
  padding: 7rem 3rem;
}
.ritual-heading {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  color: #faf6f0;
  margin-bottom: 3.5rem;
  max-width: 40ch;
}
.ritual-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
}
.ritual-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(250,246,240,0.08);
}
.ritual-step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  opacity: 0.7;
}
.step-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #faf6f0;
  margin-bottom: 0.5rem;
}
.step-content p {
  font-size: 0.9rem;
  color: rgba(250,246,240,0.6);
  line-height: 1.65;
}
.ritual-note {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: rgba(250,246,240,0.4);
  font-style: italic;
}

/* === CLOSING === */
.closing {
  background: var(--teal-deep);
  padding: 8rem 3rem;
  text-align: center;
}
.closing-overline {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  opacity: 0.8;
  margin-bottom: 1.5rem;
}
.closing-headline {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #faf6f0;
  line-height: 1.1;
  margin-bottom: 2rem;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}
.closing-body {
  font-size: 1.1rem;
  color: rgba(250,246,240,0.65);
  max-width: 46ch;
  line-height: 1.7;
  margin: 0 auto 2.5rem;
}
.closing-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--accent-light);
  letter-spacing: 0.02em;
}

/* === FOOTER === */
.footer {
  background: var(--fg);
  color: rgba(250,246,240,0.5);
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.3rem; }
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sand-light);
}
.footer-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  opacity: 0.6;
}
.footer-legal { text-align: right; }
.footer-legal p { font-size: 0.78rem; }
.footer-copy { margin-top: 0.4rem; opacity: 0.4; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav { padding: 1.25rem 1.5rem; }
  .hero { padding: 0 1.5rem 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 3rem; padding-bottom: 2.5rem; }
  .hero-visual { justify-content: center; }
  .moss-swatch { width: 220px; height: 260px; }
  .hero-band { flex-wrap: wrap; gap: 1.5rem; padding: 1.5rem 0; }
  .stat { padding: 0; }
  .stat-div { display: none; }
  .provenance { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
  .nutrient-grid { grid-template-columns: 1fr; }
  .nutrients { padding: 5rem 1.5rem; }
  .ritual { padding: 5rem 1.5rem; }
  .ritual-step { grid-template-columns: 60px 1fr; gap: 1.25rem; }
  .closing { padding: 6rem 1.5rem; }
  .footer { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .footer-legal { text-align: left; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2.75rem; }
  .stat-num { font-size: 1.4rem; }
  .closing-headline { font-size: 2rem; }
}