/* ============================================================
   GOD NODS™ — Design v2
   Direction from Nancy (7/28): Maileg calm + heirloom feel as
   the foundation; Miffy joy and lightness on top; Pip the star.
   More white space, fewer boxes, softer and brighter.
   ============================================================ */

:root {
  --cream: #FDFBF6;
  --cream-deep: #F7F1E4;
  --card: #FFFFFF;
  --gold: #B98A2F;
  --gold-soft: #CBA65E;
  --navy: #3E4E6E;
  --ink: #3A4763;
  --blue: #4C6FAE;
  --sky: #EAF1F9;
  --sage: #8A9A6B;
  --sage-deep: #6F7F54;
  --blush: #F3E3DE;
  --text: #55503F;
  --muted: #97906F;
  --line: #EDE5D2;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Nunito Sans", system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.85;
  font-size: 17px;
}

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

.wrap { max-width: 1040px; margin: 0 auto; padding: 0 28px; }

/* ---------- type ---------- */
h1, h2, h3 { font-family: "Cormorant Garamond", Georgia, serif; color: var(--ink); font-weight: 600; line-height: 1.18; }
.script { font-family: "Courgette", cursive; color: var(--gold); font-weight: 400; }
.eyebrow {
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--sage-deep); font-weight: 700; margin-bottom: 14px;
}
.lede { font-size: 20px; }
.center { text-align: center; }

/* gold heart divider, echoing the book cover */
.heart-divider {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  color: var(--gold); margin: 22px auto;
}
.heart-divider::before, .heart-divider::after {
  content: ""; height: 1px; width: 44px; background: var(--gold-soft); opacity: .5;
}
.heart-divider span { font-size: 13px; }

/* ---------- header ---------- */
header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.brand { text-decoration: none; display: flex; align-items: baseline; gap: 8px; }
.brand .script { font-size: 32px; }
.brand small { font-family: "Cormorant Garamond", serif; color: var(--muted); font-size: 12px; }
nav ul { display: flex; gap: 30px; list-style: none; }
nav a {
  text-decoration: none; color: var(--ink); font-weight: 700; font-size: 14px;
  letter-spacing: .04em;
}
nav a:hover, nav a.active { color: var(--gold); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; padding: 14px 34px; border-radius: 999px;
  text-decoration: none; font-weight: 700; font-size: 14.5px; letter-spacing: .05em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(185,138,47,.22); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #C79939; }
.btn-outline { border: 1.5px solid var(--gold-soft); color: var(--gold); background: transparent; }
.btn-sage { background: var(--sage); color: #fff; }

/* ---------- hero ---------- */
.hero { background: var(--cream); }
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: center; padding: 96px 0 110px;
}
.hero h1 { font-size: 30px; margin: 6px 0 4px; }
.hero .script { font-size: 72px; display: block; line-height: 1.08; }
.hero .tagline {
  font-family: "Cormorant Garamond", serif; font-style: italic;
  color: var(--blue); font-size: 28px; margin: 6px 0 22px;
}
.hero p { margin-bottom: 32px; max-width: 44ch; }
.hero-img { position: relative; }
.hero-img img { border-radius: 24px; box-shadow: 0 30px 70px rgba(74,68,55,.16); }
.hero .cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- sections ---------- */
section { padding: 110px 0; }
section.alt { background: var(--cream-deep); }
section h2 { font-size: 44px; margin-bottom: 12px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.two-col img { border-radius: 24px; box-shadow: 0 22px 54px rgba(74,68,55,.12); }
.two-col p { max-width: 48ch; }

/* statement band — softened per Nancy: lighter + brighter */
.band {
  background: var(--sky);
  color: var(--ink); text-align: center; padding: 120px 0;
}
.band h2 { color: var(--ink); }
.band .eyebrow { color: var(--blue) !important; }
.band .script { color: var(--gold); font-size: 46px; display: block; margin: 26px 0; }
.band p { max-width: 58ch; margin: 12px auto; color: var(--text); }
.band strong { color: var(--navy); font-size: 18px; letter-spacing: .02em; }

/* ---------- product cards: heirloom gallery, no boxes ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; margin-top: 56px; }
.card {
  background: transparent; border: none; border-radius: 0;
  overflow: visible; text-decoration: none; color: var(--text);
  display: flex; flex-direction: column; text-align: center;
}
.card img {
  aspect-ratio: 1/1; object-fit: cover; border-radius: 20px;
  box-shadow: 0 14px 36px rgba(74,68,55,.10);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover img { transform: translateY(-6px) scale(1.015); box-shadow: 0 24px 52px rgba(74,68,55,.16); }
.card .pad { padding: 22px 6px 0; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card h3 { font-size: 24px; }
.card p { font-size: 14.5px; line-height: 1.65; color: var(--muted); flex: 1; }
.card .shop {
  color: var(--gold); font-weight: 700; font-size: 13px;
  letter-spacing: .12em; text-transform: uppercase;
}

/* ---------- rhythm steps: open and airy, no boxes ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; margin-top: 60px; }
.step { background: transparent; border: none; padding: 0; text-align: center; }
.step .num {
  width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--blush); color: var(--gold);
  font-family: "Cormorant Garamond", serif; font-size: 28px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step:nth-child(2) .num { background: var(--sky); }
.step:nth-child(3) .num { background: var(--cream-deep); }
.step h3 { font-size: 28px; margin-bottom: 12px; }
.step p { font-size: 15.5px; }

/* ---------- email ---------- */
.signup { text-align: center; }
.signup form {
  display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap;
}
.signup input {
  padding: 14px 24px; border-radius: 999px; border: 1.5px solid var(--line);
  min-width: 320px; font-size: 15px; font-family: inherit; background: #fff;
}
.signup input:focus { outline: 2px solid var(--gold-soft); border-color: var(--gold-soft); }
.thanks { display: none; color: var(--sage-deep); font-weight: 700; margin-top: 20px; }

/* hashtags */
.tags { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.tags span {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 22px; color: var(--blue); font-weight: 700; font-size: 14.5px;
}

/* ---------- product page ---------- */
.product-hero { display: grid; grid-template-columns: .95fr 1.05fr; gap: 72px; align-items: start; padding: 80px 0; }
.product-hero img { border-radius: 24px; box-shadow: 0 24px 60px rgba(74,68,55,.14); position: sticky; top: 104px; }
.product-hero h1 { font-size: 46px; margin-bottom: 6px; }
.product-hero .sub {
  font-family: "Cormorant Garamond", serif; font-style: italic;
  font-size: 25px; color: var(--sage-deep); margin-bottom: 24px;
}
.product-hero p { margin-bottom: 18px; max-width: 54ch; }
.verse { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 23px; color: var(--blue); margin-bottom: 20px; }
.statement { font-weight: 800; color: var(--ink); font-size: 18px; margin: 20px 0; }

.details { margin: 34px 0; border-top: 1px solid var(--line); }
.details h3 { font-size: 25px; margin: 28px 0 12px; }
.details table { width: 100%; border-collapse: collapse; font-size: 15.5px; }
.details td { padding: 10px 0; border-bottom: 1px solid var(--line); }
.details td:first-child { font-weight: 700; color: var(--ink); width: 42%; }
.tbd { color: var(--muted); font-style: italic; }

.notice {
  background: var(--blush); border-left: 3px solid var(--gold-soft); border-radius: 10px;
  padding: 20px 24px; margin: 28px 0; font-size: 15px;
}
.notice strong { color: var(--ink); letter-spacing: .06em; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; padding-bottom: 90px; }
.gallery img {
  border-radius: 18px; aspect-ratio: 1/1; object-fit: cover;
  box-shadow: 0 12px 30px rgba(74,68,55,.09);
}

/* breadcrumb */
.crumb { padding: 26px 0 0; font-size: 13.5px; color: var(--muted); letter-spacing: .04em; }
.crumb a { color: var(--gold); text-decoration: none; font-weight: 700; }

/* ---------- footer ---------- */
footer { background: var(--navy); color: #D8D2C2; padding: 64px 0 44px; margin-top: 60px; }
footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 44px; }
footer .script { font-size: 36px; color: var(--gold-soft); }
footer h4 { color: #fff; font-size: 13px; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 16px; }
footer ul { list-style: none; }
footer li { margin-bottom: 10px; font-size: 15px; }
footer a { color: #D8D2C2; text-decoration: none; }
footer a:hover { color: var(--gold-soft); }
footer .soon { opacity: .55; font-style: italic; font-size: 13px; }
footer .legal { border-top: 1px solid rgba(255,255,255,.14); margin-top: 44px; padding-top: 24px; font-size: 13.5px; opacity: .75; text-align: center; }

/* ---------- poc ribbon ---------- */
.poc {
  background: var(--sage); color: #fff; text-align: center;
  font-size: 12.5px; font-weight: 700; letter-spacing: .1em; padding: 7px 12px;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .two-col, .product-hero { grid-template-columns: 1fr; gap: 40px; }
  .hero-grid { padding: 56px 0 70px; }
  section { padding: 70px 0; }
  .cards { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  footer .cols { grid-template-columns: 1fr; }
  .product-hero img { position: static; }
  nav ul { gap: 14px; flex-wrap: wrap; }
  .hero .script { font-size: 50px; }
  section h2 { font-size: 34px; }
}
