/* ── Tokens ── */
:root {
  --cream:   #FAF6F0;
  --ink:     #1C1A17;
  --green:   #2A4A3E;
  --terra:   #C4714B;
  --sage:    #8FAE8B;
  --warm-gray: #9E9590;
  --light-warm: #F0EAE2;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --max-w: 1100px;
  --pad-x: clamp(1.5rem, 5vw, 4rem);
  --pad-y: clamp(3rem, 8vw, 6rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--green); color: var(--cream); }

/* ── Header ── */
.site-header {
  padding: 1.25rem var(--pad-x);
  border-bottom: 1px solid rgba(44, 42, 40, 0.08);
}
.site-header .header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
}
.wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: -0.01em;
}
.site-header .tagline {
  font-size: 0.85rem;
  color: var(--warm-gray);
  font-weight: 300;
  font-style: italic;
}

/* ── Hero ── */
.hero {
  padding: clamp(3rem, 10vw, 7rem) var(--pad-x) 0;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero-ledge {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--warm-gray);
  line-height: 1.7;
  max-width: 42ch;
}

/* Scene illustration */
.hero-scene {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Warm background wash */
.hero-scene::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 45%, #F5E6CC 0%, transparent 70%);
  opacity: 0.6;
  border-radius: 50% 50% 0 0;
}

/* Book stack */
.book-stack {
  position: absolute;
  bottom: 18%;
  left: 15%;
  width: 35%;
}
.book {
  height: 14px;
  border-radius: 2px;
  position: absolute;
}
.book-1 { width: 72%; bottom: 0; left: 0; background: var(--green); }
.book-2 { width: 65%; bottom: 16px; left: 8%; background: var(--terra); transform: rotate(-2deg); }
.book-3 { width: 78%; bottom: 32px; left: 2%; background: #D4B483; transform: rotate(1.5deg); }

/* Light orb */
.light-orb {
  position: absolute;
  top: 20%;
  right: 20%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, #F5D89A 0%, rgba(245,216,154,0.4) 50%, transparent 80%);
  filter: blur(12px);
}

/* Coffee cup */
.coffee-cup {
  position: absolute;
  bottom: 28%;
  right: 12%;
  width: 28%;
}
.cup-body {
  width: 100%;
  aspect-ratio: 1 / 0.9;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 4px 4px 12px 12px;
  position: relative;
}
.cup-body::after {
  content: '';
  position: absolute;
  top: 15%;
  right: -38%;
  width: 32%;
  height: 50%;
  border: 3px solid var(--ink);
  border-radius: 0 10px 10px 0;
  border-left: none;
}
.steam {
  position: absolute;
  top: -30%;
  left: 30%;
  width: 2px;
  height: 25%;
  background: rgba(160,150,140,0.4);
  border-radius: 2px;
  transform: rotate(-8deg);
  animation: steam 2.5s ease-in-out infinite alternate;
}
.steam::after {
  content: '';
  position: absolute;
  top: -8px;
  left: 10px;
  width: 2px;
  height: 22px;
  background: rgba(160,150,140,0.3);
  border-radius: 2px;
  transform: rotate(15deg);
}
@keyframes steam {
  from { opacity: 0.4; transform: translateY(0) rotate(-8deg); }
  to   { opacity: 0.1; transform: translateY(-8px) rotate(-5deg); }
}

/* Candle */
.candle {
  position: absolute;
  bottom: 12%;
  left: 52%;
  width: 12%;
}
.candle-body {
  width: 100%;
  height: 40px;
  background: #E8DFD4;
  border-radius: 2px 2px 4px 4px;
  border: 1.5px solid rgba(44,42,40,0.2);
}
.candle-flame {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 16px;
  background: #F5B942;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  box-shadow: 0 0 12px 4px rgba(245,185,66,0.5);
  animation: flicker 1.8s ease-in-out infinite alternate;
}
@keyframes flicker {
  0%   { transform: translateX(-50%) scaleY(1) scaleX(1); }
  100% { transform: translateX(-50%) scaleY(1.1) scaleX(0.9); }
}

/* Pages flutter */
.pages {
  position: absolute;
  top: 12%;
  left: 8%;
  width: 30%;
}
.page {
  position: absolute;
  width: 70%;
  height: 55%;
  border: 2px solid rgba(44,42,40,0.15);
  border-radius: 2px;
  background: var(--cream);
}
.p1 { transform: rotate(-18deg) translateY(0); left: 0; }
.p2 { transform: rotate(-8deg) translateY(-8px); left: 15%; }
.p3 { transform: rotate(3deg) translateY(-14px); left: 28%; }

.hero-rule {
  max-width: var(--max-w);
  margin: clamp(3rem, 7vw, 5rem) auto 0;
  padding: 0 var(--pad-x);
  border: none;
  border-top: 1px solid rgba(44,42,40,0.08);
}

/* ── Manifesto ── */
.manifesto {
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad-x);
  background: var(--cream);
}
.manifesto-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.manifesto-kicker {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
  grid-column: 1 / -1;
}
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  grid-column: 1;
  align-self: center;
}
.manifesto-body {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: #5A5550;
  line-height: 1.75;
  grid-column: 2;
}
.manifesto-body + .manifesto-body {
  margin-top: 1rem;
}

/* ── Proof ── */
.proof {
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad-x);
  background: var(--light-warm);
}
.proof-inner { max-width: var(--max-w); margin: 0 auto; }
.proof-kicker {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.75rem;
}
.proof-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 3rem;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.proof-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.proof-illustration {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid rgba(44,42,40,0.07);
  overflow: visible;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proof-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink);
}
.proof-price {
  font-size: 0.82rem;
  color: var(--warm-gray);
}

/* Mock shirt */
.mock-shirt {
  position: relative;
  width: 65%;
  aspect-ratio: 1 / 1.1;
}
.mock-body {
  position: absolute;
  top: 22%;
  left: 18%;
  width: 64%;
  height: 60%;
  background: var(--ink);
  border-radius: 4px 4px 8px 8px;
}
.mock-sleeve {
  position: absolute;
  top: 20%;
  width: 20%;
  height: 28%;
  background: var(--ink);
  border-radius: 3px;
}
.mock-sleeve.left  { left: 0; transform: rotate(-20deg); }
.mock-sleeve.right { right: 0; transform: rotate(20deg); }
.mock-collar {
  position: absolute;
  top: 12%;
  left: 30%;
  width: 40%;
  height: 14%;
  background: var(--ink);
  border-radius: 50% 50% 0 0;
}
.book-stamp {
  position: absolute;
  top: 38%;
  left: 30%;
  width: 40%;
  height: 28%;
  border: 1.5px solid rgba(200,180,140,0.5);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6%;
}
.stamp-line {
  height: 1.5px;
  background: rgba(200,180,140,0.4);
  border-radius: 1px;
}
.stamp-line.short { width: 60%; }

/* Mock hoodie */
.mock-hoodie {
  position: relative;
  width: 65%;
  aspect-ratio: 1 / 1.1;
}
.hoodie-body {
  position: absolute;
  top: 24%;
  left: 18%;
  width: 64%;
  height: 58%;
  background: var(--green);
  border-radius: 4px 4px 8px 8px;
}
.hoodie-hood {
  position: absolute;
  top: 8%;
  left: 24%;
  width: 52%;
  height: 22%;
  background: var(--green);
  border-radius: 50% 50% 0 0;
  border: 2px solid rgba(0,0,0,0.08);
  border-bottom: none;
}
.hoodie-sleeve {
  position: absolute;
  top: 22%;
  width: 18%;
  height: 28%;
  background: var(--green);
  border-radius: 3px;
}
.hoodie-sleeve.left  { left: 2%; transform: rotate(-20deg); }
.hoodie-sleeve.right { right: 2%; transform: rotate(20deg); }
.bookmark-icon {
  position: absolute;
  top: 38%;
  left: 42%;
  width: 16%;
  height: 22%;
  background: var(--cream);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

/* Mock candle */
.mock-candle {
  position: relative;
  width: 40%;
  aspect-ratio: 1 / 1.4;
}
.candle-glass {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: rgba(200,185,160,0.6);
  border: 1.5px solid rgba(44,42,40,0.15);
  border-radius: 4px 4px 8px 8px;
}
.candle-wax {
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 90%;
  height: 15%;
  background: #F5E6CC;
  border-radius: 0 0 6px 6px;
}
.candle-label {
  position: absolute;
  top: 35%;
  left: 8%;
  width: 84%;
  height: 30%;
  border: 1px solid rgba(196,113,75,0.4);
  border-radius: 2px;
}

/* Mock tote */
.mock-tote {
  position: relative;
  width: 55%;
  aspect-ratio: 1 / 1.2;
}
.tote-body {
  position: absolute;
  bottom: 10%;
  left: 15%;
  width: 70%;
  height: 65%;
  background: #E8DFD4;
  border: 1.5px solid rgba(44,42,40,0.15);
  border-radius: 4px 4px 8px 8px;
}
.tote-strap {
  position: absolute;
  top: 10%;
  width: 8%;
  height: 38%;
  background: #D4CABC;
  border-radius: 3px;
}
.tote-strap.left  { left: 20%; }
.tote-strap.right { right: 20%; }
.tote-graphic {
  position: absolute;
  top: 35%;
  left: 25%;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.tote-line {
  height: 2px;
  background: rgba(44,42,40,0.2);
  border-radius: 1px;
}
.tote-line.short { width: 65%; }

/* ── Features ── */
.features {
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad-x);
  background: var(--cream);
}
.features-inner { max-width: var(--max-w); margin: 0 auto; }
.features-kicker {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.75rem;
}
.features-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 3rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.feature-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.feature-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(42,74,62,0.15);
  line-height: 1;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}
.feature-body {
  font-size: 0.95rem;
  color: #5A5550;
  line-height: 1.7;
}

/* ── Closing ── */
.closing {
  padding: clamp(3.5rem, 10vw, 7rem) var(--pad-x);
  background: var(--green);
}
.closing-inner { max-width: var(--max-w); margin: 0 auto; }
.closing-rule {
  width: 48px;
  height: 2px;
  background: var(--terra);
  margin-bottom: 2rem;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 2rem;
}
.closing-body {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: rgba(250,246,240,0.75);
  line-height: 1.75;
  max-width: 55ch;
}
.closing-body + .closing-body {
  margin-top: 1rem;
}
.closing-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: var(--cream);
  margin-top: 2rem;
}

/* ── Footer ── */
.site-footer {
  padding: 2rem var(--pad-x);
  border-top: 1px solid rgba(44,42,40,0.08);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
  display: block;
}
.footer-desc {
  font-size: 0.8rem;
  color: var(--warm-gray);
  font-style: italic;
}
.footer-meta p {
  font-size: 0.8rem;
  color: var(--warm-gray);
}
.footer-meta strong { color: var(--ink); font-weight: 500; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-scene { display: none; }
  .manifesto-inner {
    grid-template-columns: 1fr;
  }
  .manifesto-headline, .manifesto-body { grid-column: 1; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .proof-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .hero-headline { font-size: 2rem; }
}