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

:root {
  --cream: #f5f0ea;
  --warm-white: #faf8f5;
  --charcoal: #2a2522;
  --muted: #8a7f76;
  --accent: #c4a67a;
  --light-line: rgba(42,37,34,0.1);
  --split-bg: #ece6d8;
  --method-bg: #f5f1ea;
}

html { scroll-behavior: smooth; overscroll-behavior: none; background: var(--charcoal); }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior: none;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled {
  background: var(--charcoal);
  padding: 18px 48px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 30px;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: #fff;
  transition: color 0.3s;
}
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--accent); }

/* ── HAMBURGER ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  transition: transform 0.3s, opacity 0.3s;
  background: #fff;
}
nav.open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  padding: 0;
  max-width: none;
  margin: 0;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.02) 40%,
    rgba(0,0,0,0.35) 100%
  );
}

/* ── SECTIONS ── */
section {
  padding: 100px 48px;
  max-width: 960px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

/* ── STORY ── */
.story {
  padding: 120px 48px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.story p {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.6;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}
.story p + p { margin-top: 24px; }
.story em { font-weight: 400; }

/* ── SPLIT IMAGE + TEXT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 100%;
  padding: 0;
  align-items: stretch;
}
.split-img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}
.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  background: var(--split-bg);
}
.split-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.split-text p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 16px;
}

/* ── METHOD ── */
.method-section {
  padding: 100px 48px;
  max-width: 100%;
  margin: 0 auto;
  background: var(--method-bg);
}
.method-section .method-inner {
  max-width: 800px;
  margin: 0 auto;
}
.method-section .section-label {
  text-align: left;
  color: var(--charcoal);
  opacity: 0.6;
}
.method-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.02em;
  text-align: left;
  margin-bottom: 56px;
  color: var(--charcoal);
}
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 48px;
}
.method-col h3 {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.method-divider {
  background: rgba(42,37,34,0.12);
}
.serves-header {
  margin-top: 40px;
}
.method-step {
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.method-step .num {
  flex-shrink: 0;
  min-width: 16px;
  color: var(--muted);
  font-size: 14px;
}
.need-item {
  font-size: 17px;
  line-height: 2;
  color: var(--charcoal);
}

/* ── IMAGE BAND ── */
.image-band img {
  display: block;
  width: 100%;
  height: auto;
}

/* ── FOOTER ── */
.footer {
  background: var(--charcoal);
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: rgba(255,255,255,0.9);
}
.footer a.email-link {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  transition: color 0.3s;
}
.footer a.email-link:hover { color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 16px;
    transition: background 0.4s;
  }
  nav.open .nav-links { display: flex; }
  nav.open.scrolled .nav-links {
    background: var(--charcoal);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links a {
    font-size: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.25);
  }
  nav.scrolled .nav-links a {
    border-bottom-color: rgba(255,255,255,0.15);
  }
  .nav-links a:last-child { border-bottom: none; }
  section, .story, .method-section { padding-left: 28px; padding-right: 28px; }
  .section-label { font-size: 13px; }
  .method-col h3 { font-size: 13px; }
  .split-text h2, .method-section h2 { font-size: 30px; }
  .split-text p { font-size: 17px; }
  .method-step { font-size: 17px; }
  .need-item { font-size: 17px; }
  .story p { font-size: clamp(24px, 6vw, 30px); }
  .footer a.email-link { font-size: 14px; }
  .split { grid-template-columns: 1fr; }
  .split-img { min-height: 320px; }
  .split-text { padding: 56px 28px; }
  .method-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .method-divider { display: block; height: 1px; width: 100%; background: rgba(42,37,34,0.2); }
  .serves-header { padding-top: 32px; border-top: 1px solid rgba(42,37,34,0.2); }
  .footer { padding: 24px 24px calc(24px + env(safe-area-inset-bottom)); }
  .footer-logo { font-size: 24px; }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
