/* ============================================================
   The Unbroken Smile
   A warm, cinematic, editorial static site.
   "A soft place to land after a hard season of life."

   Design system rebuilt from the brand brief:
   modern editorial meets cozy home, earthy modern boho,
   organic texture, warm shadows, intentional whitespace.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* ---- earthy modern boho palette ---- */
  --ivory:      #FBF6EC;   /* warm ivory, primary background */
  --sand:       #F3E8D5;   /* soft beige, alternating sections */
  --linen:      #EADBC2;   /* deeper beige, cards and edges */
  --clay:       #C58E6F;   /* muted clay */
  --terracotta: #AE6140;   /* earthy terracotta, the accent that does the work */
  --terra-soft: #C9805C;   /* lighter terracotta for hover */
  --olive:      #6C7150;   /* olive green */
  --olive-deep: #545941;   /* deep olive */
  --taupe:      #A38C73;   /* soft taupe */
  --mauve:      #A98792;   /* dusty mauve accent, used sparingly */
  --charcoal:   #2F2A24;   /* warm charcoal, dark sections + headings */
  --ink:        #463D31;   /* body text */
  --cream:      #FBF6EC;   /* light text on dark */

  /* legacy aliases kept so any older markup still resolves */
  --paper:    var(--ivory);
  --deep:     var(--charcoal);
  --gold:     var(--terracotta);
  --mushroom: var(--taupe);
  --sage:     var(--olive);
  --terra:    var(--clay);
  --plum:     var(--mauve);

  --shadow-soft:  0 10px 34px rgba(47, 35, 22, 0.09);
  --shadow-lift:  0 26px 60px rgba(47, 35, 22, 0.18);
  --shadow-book:  16px 22px 48px rgba(47, 35, 22, 0.30);
  --shadow-deep:  0 40px 90px rgba(47, 35, 22, 0.26);

  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease2: cubic-bezier(0.16, 1, 0.3, 1);

  --maxw: 1200px;
  --maxw-wide: 1340px;
  --gutter: clamp(22px, 5vw, 72px);

  /* a faint film grain, baked in as a data-uri so there is no extra request */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.78;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* a soft, warm light wash sits behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 600px at 12% -5%, rgba(197,142,111,0.20), transparent 60%),
    radial-gradient(800px 620px at 100% 15%, rgba(108,113,80,0.14), transparent 55%),
    radial-gradient(1000px 800px at 50% 110%, rgba(169,135,146,0.14), transparent 60%),
    var(--ivory);
}
/* the film grain, very faint, over the whole page */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: var(--grain);
  opacity: 0.45;
  mix-blend-mode: multiply;
  pointer-events: none;
}

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

a {
  color: var(--terracotta);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
a:hover { color: var(--charcoal); }

::selection { background: var(--terracotta); color: var(--ivory); }

.serif { font-family: 'Cormorant Garamond', serif; }

/* ============================================================
   SCROLL REVEAL + GENTLE MOTION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s var(--ease2), transform 1.1s var(--ease2);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.10s; }
.reveal.d2 { transition-delay: 0.20s; }
.reveal.d3 { transition-delay: 0.30s; }
.reveal.d4 { transition-delay: 0.40s; }

/* a soft scale-in variant for images */
.reveal-img {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s var(--ease2), transform 1.4s var(--ease2);
}
.reveal-img.in { opacity: 1; transform: scale(1); }

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50%      { transform: translateY(-14px) rotate(var(--rot, 0deg)); }
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(24px, -30px) scale(1.08); }
}
@keyframes cueBob {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%      { transform: translateY(8px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-img { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .orb, .hero-visual .book, .scroll-cue { animation: none !important; }
}

/* ============================================================
   NAV  (glassy, sticky, lifts a shadow on scroll)
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 236, 0.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(163, 140, 115, 0.18);
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(251, 246, 236, 0.92);
  box-shadow: 0 8px 30px rgba(47, 35, 22, 0.07);
}
.nav-wrap {
  max-width: var(--maxw-wide);
  margin: 0 auto;
  padding: 17px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--charcoal);
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.nav-brand .mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.6s var(--ease);
}
.nav-brand:hover .mark { transform: rotate(10deg) scale(1.06); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 1.9px;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--terracotta);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.current::after { width: 100%; }
.nav-links a:hover { color: var(--charcoal); }
.nav-links a.current { color: var(--charcoal); }
.nav-cta {
  background: var(--charcoal);
  color: var(--cream) !important;
  padding: 10px 20px !important;
  border-radius: 999px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--terracotta); transform: translateY(-1px); }

@media (max-width: 860px) {
  .nav-links { gap: 17px; }
  .nav-links a { font-size: 10.5px; letter-spacing: 1px; }
  .nav-links a.kit-hide { display: none; }
  .nav-brand { font-size: 20px; }
}
@media (max-width: 560px) {
  .nav-links a.blog-hide { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.9px;
  text-transform: uppercase;
  padding: 17px 36px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), background 0.28s var(--ease), color 0.28s var(--ease);
}
.btn-primary { background: var(--terracotta); color: var(--cream); box-shadow: 0 12px 28px rgba(174, 97, 64, 0.26); }
.btn-primary:hover { background: var(--charcoal); color: var(--cream); transform: translateY(-3px); box-shadow: 0 18px 38px rgba(47, 35, 22, 0.24); }
.btn-dark { background: var(--charcoal); color: var(--cream); }
.btn-dark:hover { background: var(--terracotta); transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.btn-light { background: var(--cream); color: var(--charcoal); }
.btn-light:hover { background: #fff; transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.btn-outline { background: transparent; color: var(--charcoal); border: 1.5px solid var(--taupe); }
.btn-outline:hover { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); transform: translateY(-2px); }
.btn-ghost {
  padding: 0;
  background: none;
  color: var(--terracotta);
  letter-spacing: 1.9px;
  border-radius: 0;
}
.btn-ghost:hover { color: var(--charcoal); transform: none; }
.btn-ghost::after,
.btn-arrow::after {
  content: "\2192";
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.btn-ghost:hover::after,
.btn-arrow:hover::after { transform: translateX(5px); }

/* on dark sections */
.bg-charcoal .btn-outline,
.bg-mushroom .btn-outline,
.bg-deep .btn-outline { color: var(--cream); border-color: rgba(251,246,236,0.5); }
.bg-charcoal .btn-outline:hover,
.bg-mushroom .btn-outline:hover,
.bg-deep .btn-outline:hover { background: var(--cream); color: var(--charcoal); border-color: var(--cream); }
.bg-charcoal .btn-ghost,
.bg-mushroom .btn-ghost,
.bg-deep .btn-ghost { color: var(--cream); }
.bg-charcoal .btn-ghost:hover,
.bg-mushroom .btn-ghost:hover,
.bg-deep .btn-ghost:hover { color: var(--clay); }

/* ============================================================
   LAYOUT + SECTION BACKGROUNDS
   ============================================================ */
section { padding: clamp(72px, 9.5vw, 138px) var(--gutter); position: relative; }
.wrap { max-width: var(--maxw); margin: 0 auto; }
.wrap-wide { max-width: var(--maxw-wide); margin: 0 auto; }
.wrap-narrow { max-width: 780px; margin: 0 auto; }
.wrap-prose { max-width: 650px; margin: 0 auto; }

.bg-ivory { background: transparent; }
.bg-paper { background: transparent; }                 /* legacy: now lets the body wash show */
.bg-sand  { background: var(--sand); }
.bg-cream { background: var(--sand); }                  /* legacy alias */
.bg-linen { background: var(--linen); }
.bg-sage  { background: var(--olive); color: var(--cream); }
.bg-olive { background: var(--olive); color: var(--cream); }
.bg-mushroom { background: var(--charcoal); color: var(--cream); }   /* legacy: now the warm-dark */
.bg-charcoal { background: var(--charcoal); color: var(--cream); }
.bg-terra { background: var(--clay); color: var(--charcoal); }
.bg-deep  { background: var(--charcoal); color: var(--cream); }

/* a hairline of texture on the sand sections */
.bg-sand, .bg-cream, .bg-linen { background-image: var(--grain); background-blend-mode: multiply; }
.bg-sand  { background-color: var(--sand); }
.bg-linen { background-color: var(--linen); }

/* soft section dividers, a torn-paper feel without an image */
.edge-top, .edge-bottom { position: relative; }

/* eyebrow / titles */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.6px;
  text-transform: uppercase;
  color: var(--terracotta);
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1.5px;
  background: var(--terracotta);
  display: inline-block;
}
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after {
  content: "";
  width: 30px; height: 1.5px;
  background: var(--terracotta);
  display: inline-block;
}
.bg-charcoal .eyebrow, .bg-mushroom .eyebrow, .bg-deep .eyebrow,
.bg-olive .eyebrow, .bg-sage .eyebrow { color: var(--clay); }
.bg-charcoal .eyebrow::before, .bg-charcoal .eyebrow::after,
.bg-mushroom .eyebrow::before, .bg-mushroom .eyebrow::after,
.bg-deep .eyebrow::before, .bg-deep .eyebrow::after,
.bg-olive .eyebrow::before, .bg-olive .eyebrow::after,
.bg-sage .eyebrow::before, .bg-sage .eyebrow::after { background: var(--clay); }

.h-display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(44px, 6.6vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.6px;
  color: var(--charcoal);
}
.h-section {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(32px, 4.3vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.3px;
  color: var(--charcoal);
}
.h-display em, .h-section em { font-style: italic; color: var(--terracotta); }
.bg-charcoal .h-display, .bg-charcoal .h-section,
.bg-mushroom .h-display, .bg-mushroom .h-section,
.bg-deep .h-display, .bg-deep .h-section,
.bg-olive .h-display, .bg-olive .h-section,
.bg-sage .h-display, .bg-sage .h-section { color: var(--cream); }
.bg-charcoal .h-display em, .bg-charcoal .h-section em,
.bg-mushroom .h-display em, .bg-mushroom .h-section em,
.bg-deep .h-display em, .bg-deep .h-section em { color: var(--clay); }
.bg-olive .h-display em, .bg-olive .h-section em,
.bg-sage .h-display em, .bg-sage .h-section em { color: var(--sand); }

.lede {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 27px);
  line-height: 1.5;
  color: var(--taupe);
}
.bg-charcoal .lede, .bg-mushroom .lede, .bg-deep .lede,
.bg-olive .lede, .bg-sage .lede, .bg-terra .lede { color: inherit; opacity: 0.9; }

/* ============================================================
   HERO  (home) - cinematic, layered, atmospheric
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 130px) var(--gutter) clamp(90px, 11vw, 170px);
}
/* drifting colour orbs behind the hero, very soft */
.hero-atmosphere { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}
.orb.o1 { width: 460px; height: 460px; background: var(--clay);  left: -120px; top: -80px; animation: drift 22s var(--ease) infinite; }
.orb.o2 { width: 400px; height: 400px; background: var(--olive); right: -100px; top: 40px; animation: drift 27s var(--ease) infinite reverse; }
.orb.o3 { width: 360px; height: 360px; background: var(--mauve); left: 38%; bottom: -160px; animation: drift 30s var(--ease) infinite; }

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.hero-copy .h-display { margin: 16px 0 24px; }
.hero-copy .lede { max-width: 32ch; margin-bottom: 38px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 4.5;
}
.hero-visual .glow {
  position: absolute;
  width: 86%; height: 86%;
  left: 7%; top: 9%;
  background: radial-gradient(circle at 40% 35%, rgba(251,246,236,0.9), rgba(234,219,194,0.4) 60%, transparent 75%);
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  z-index: 0;
}
.hero-visual .book {
  position: absolute;
  border-radius: 3px 6px 6px 3px;
  box-shadow: var(--shadow-book);
  background: var(--ivory);
}
.hero-visual .book.b1 { width: 63%; left: 0; bottom: 0; --rot: -6deg; transform: rotate(-6deg); z-index: 3; animation: floaty 7s var(--ease) infinite; }
.hero-visual .book.b2 { width: 57%; right: 2%; top: 0; --rot: 5deg; transform: rotate(5deg); z-index: 2; animation: floaty 8.5s var(--ease) infinite 0.6s; }
.hero-visual .book.b3 { width: 52%; right: 20%; bottom: 6%; --rot: -1deg; transform: rotate(-1deg); z-index: 1; opacity: 0.97; animation: floaty 9.5s var(--ease) infinite 1.2s; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 9.5px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--taupe);
  animation: cueBob 2.4s var(--ease) infinite;
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(var(--taupe), transparent); }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 430px; margin: 0 auto; width: 100%; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero-copy .eyebrow::after { content:""; width:30px; height:1.5px; background:var(--terracotta); display:inline-block; }
  .hero-copy .lede { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .scroll-cue { display: none; }
}

/* ============================================================
   TRUST STRIP  (quiet line under the hero)
   ============================================================ */
.trust-strip {
  padding: 30px var(--gutter);
  border-top: 1px solid rgba(163,140,115,0.2);
  border-bottom: 1px solid rgba(163,140,115,0.2);
}
.trust-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 38px;
}
.trust-item {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--taupe);
}
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--clay); }
@media (max-width: 620px) { .trust-dot { display: none; } .trust-inner { flex-direction: column; gap: 6px; } }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
  padding: clamp(72px, 9vw, 128px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 20% 0%, rgba(197,142,111,0.35), transparent 60%),
    radial-gradient(600px 400px at 90% 100%, rgba(108,113,80,0.3), transparent 60%);
}
.page-hero > * { position: relative; }
.page-hero .eyebrow { color: var(--clay); justify-content: center; }
.page-hero .eyebrow::before, .page-hero .eyebrow::after { background: var(--clay); }
.page-hero .eyebrow::after { content: ""; width: 30px; height: 1.5px; display: inline-block; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(38px, 5.6vw, 70px);
  line-height: 1.06;
  margin-bottom: 16px;
  color: var(--cream);
}
.page-hero h1 em { font-style: italic; color: var(--clay); }
.page-hero .lede { color: var(--cream); opacity: 0.86; max-width: 42ch; margin: 0 auto; }

/* ============================================================
   SPLIT SECTIONS
   ============================================================ */
.split {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.split.reverse { grid-template-columns: 1.12fr 1fr; }
.split.reverse .split-visual { order: 2; }
@media (max-width: 820px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 44px; }
  .split.reverse .split-visual { order: 0; }
}
.split-copy p {
  font-size: 17px;
  line-height: 1.88;
  margin-bottom: 21px;
}
.split-copy p:last-of-type { margin-bottom: 30px; }

/* framed photo / image */
.framed {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.framed img { width: 100%; display: block; }
.framed.tilt { transform: rotate(-1.6deg); }
.framed.tilt:hover { transform: rotate(0deg); transition: transform 0.6s var(--ease); }

/* photo placeholder, clearly marked, easy to swap, but designed to look intentional */
.photo-slot {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 25%, rgba(251,246,236,0.7), transparent 55%),
    linear-gradient(150deg, var(--clay), var(--taupe) 55%, var(--olive));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 34px;
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.photo-slot::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--grain);
  opacity: 0.5; mix-blend-mode: overlay;
}
.photo-slot::after {
  content: "\2727";
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  color: rgba(251,246,236,0.8);
}
.photo-slot span {
  position: relative;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--cream);
  font-size: 16px;
  line-height: 1.6;
  text-shadow: 0 1px 10px rgba(47,35,22,0.3);
}
.photo-slot.wide { aspect-ratio: 3 / 2; }
.photo-slot.tall { aspect-ratio: 3 / 4; }

/* ============================================================
   BOOK CARDS
   ============================================================ */
.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(264px, 1fr));
  gap: clamp(30px, 4vw, 52px);
  max-width: var(--maxw);
  margin: 0 auto;
}
.book { display: flex; flex-direction: column; }
.book-cover-wrap {
  position: relative;
  margin-bottom: 24px;
  perspective: 1300px;
}
.book-cover-wrap img {
  width: 100%;
  border-radius: 2px 6px 6px 2px;
  box-shadow: var(--shadow-book);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.book:hover .book-cover-wrap img {
  transform: translateY(-8px) rotateY(-7deg);
  box-shadow: 26px 30px 60px rgba(47,35,22,0.34);
}
.book-tag {
  position: absolute;
  top: 13px; left: 13px;
  background: var(--ivory);
  color: var(--charcoal);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.9px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.book-tag.soon { background: var(--taupe); color: var(--cream); }
.book .kind {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
}
.book h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 27px;
  line-height: 1.14;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.book p {
  font-size: 14px;
  line-height: 1.68;
  color: var(--ink);
  opacity: 0.92;
  margin-bottom: 18px;
  flex: 1;
}
.book .btn { align-self: flex-start; font-size: 10.5px; padding: 12px 24px; }
.bg-charcoal .book h3, .bg-mushroom .book h3, .bg-deep .book h3 { color: var(--cream); }
.bg-charcoal .book p, .bg-mushroom .book p, .bg-deep .book p { color: var(--cream); opacity: 0.82; }

/* generic cover (no image yet) */
.cover-generic {
  aspect-ratio: 5 / 7;
  border-radius: 2px 6px 6px 2px;
  box-shadow: var(--shadow-book);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.cover-generic::after {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--grain);
  opacity: 0.4; mix-blend-mode: overlay;
}
.cover-generic .cg-mark {
  font-size: 10px; letter-spacing: 2.6px; text-transform: uppercase;
  margin-bottom: 15px; opacity: 0.75; position: relative;
}
.cover-generic .cg-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 27px;
  line-height: 1.12;
  position: relative;
}
.cover-generic .cg-name em { font-style: italic; }
.cg-1 { background: linear-gradient(155deg, var(--olive), var(--olive-deep)); color: var(--cream); }
.cg-2 { background: linear-gradient(155deg, var(--clay), var(--terracotta)); color: var(--cream); }
.cg-3 { background: linear-gradient(155deg, var(--taupe), #8c7860); color: var(--cream); }
.cg-4 { background: linear-gradient(155deg, var(--mauve), #876b75); color: var(--cream); }
.cg-5 { background: linear-gradient(155deg, var(--terracotta), #8f4c30); color: var(--cream); }
.cg-6 { background: linear-gradient(155deg, var(--sand), var(--linen)); color: var(--charcoal); }

/* ============================================================
   FEATURE ROW / RITUAL PILLARS
   ============================================================ */
.feature-row {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
  gap: clamp(30px, 4vw, 60px);
}
.feature { text-align: center; }
.feature .fnum {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 38px;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.feature .ficon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 1.5px solid var(--clay);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--terracotta);
}
.feature h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--charcoal);
  margin-bottom: 9px;
}
.feature p { font-size: 14.5px; line-height: 1.68; opacity: 0.9; }
.bg-charcoal .feature h3, .bg-mushroom .feature h3, .bg-deep .feature h3,
.bg-olive .feature h3, .bg-sage .feature h3 { color: var(--cream); }
.bg-charcoal .feature .fnum, .bg-mushroom .feature .fnum, .bg-deep .feature .fnum { color: var(--clay); }
.bg-charcoal .feature .ficon, .bg-mushroom .feature .ficon, .bg-deep .feature .ficon { color: var(--clay); border-color: rgba(251,246,236,0.4); }

/* ============================================================
   QUOTE / CALLOUT
   ============================================================ */
.callout {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.callout .mark-lg {
  font-size: 34px;
  color: var(--clay);
  margin-bottom: 24px;
}
.callout .quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(28px, 3.7vw, 46px);
  line-height: 1.3;
  color: var(--cream);
  margin-bottom: 26px;
}
.callout .attribution {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--clay);
}

/* ============================================================
   COMMUNITY / SOCIAL PREVIEW
   ============================================================ */
.ig-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.ig-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: transform 0.4s var(--ease);
}
.ig-tile::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 2;
  background-image: var(--grain);
  opacity: 0.18; mix-blend-mode: overlay;
  pointer-events: none;
}
.ig-tile img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.ig-tile:hover { transform: translateY(-5px); }
.ig-tile:hover img { transform: scale(1.05); }
.ig-tile span {
  position: relative;
  z-index: 3;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--cream);
  line-height: 1.4;
  text-shadow: 0 1px 8px rgba(47,35,22,0.35);
}
.ig-1 { background: linear-gradient(150deg, var(--clay), var(--terracotta)); }
.ig-2 { background: linear-gradient(150deg, var(--olive), var(--olive-deep)); }
.ig-3 { background: linear-gradient(150deg, var(--taupe), #8c7860); }
.ig-4 { background: linear-gradient(150deg, var(--mauve), #876b75); }
.ig-5 { background: linear-gradient(150deg, var(--terracotta), #8f4c30); }
.ig-6 { background: linear-gradient(150deg, var(--linen), var(--clay)); }
.ig-tile.ig-6 span { color: var(--charcoal); text-shadow: none; }

/* ============================================================
   FORM / OPT-IN
   ============================================================ */
.email-band {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.form-card {
  max-width: 580px;
  margin: 0 auto;
  background: var(--ivory);
  border-radius: 14px;
  padding: clamp(38px, 5vw, 60px);
  text-align: center;
  box-shadow: var(--shadow-lift);
  border: 1px solid rgba(163,140,115,0.2);
}
.form-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 32px;
  color: var(--charcoal);
  margin-bottom: 11px;
}
.form-card h3 em { font-style: italic; color: var(--terracotta); }
.form-card .sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--taupe);
  margin-bottom: 28px;
}
.form-card form { display: flex; gap: 11px; flex-wrap: wrap; justify-content: center; }
.form-card input[type="email"] {
  flex: 1;
  min-width: 230px;
  padding: 16px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  border: 1.5px solid var(--taupe);
  background: var(--sand);
  color: var(--ink);
  border-radius: 999px;
}
.form-card input[type="email"]:focus { outline: 2px solid var(--terracotta); outline-offset: 1px; }
.form-card .fine { font-size: 11.5px; color: var(--taupe); margin-top: 16px; }

/* ============================================================
   BLOG
   ============================================================ */
.post-list { list-style: none; max-width: 840px; margin: 0 auto; }
.post-list li {
  border-bottom: 1px solid rgba(163,140,115,0.3);
  padding: 42px 0;
  transition: padding-left 0.4s var(--ease);
}
.post-list li:last-child { border-bottom: none; }
.post-list li:hover { padding-left: 10px; }
.post-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.post-list h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(27px, 3.1vw, 36px);
  line-height: 1.16;
  margin-bottom: 12px;
}
.post-list h3 a { color: var(--charcoal); }
.post-list h3 a:hover { color: var(--terracotta); }
.post-list h3 em { font-style: italic; color: var(--terracotta); }
.post-list .excerpt {
  font-size: 15.5px;
  line-height: 1.72;
  opacity: 0.9;
  max-width: 62ch;
  margin-bottom: 14px;
}

/* article body */
.article {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 104px) var(--gutter);
}
.article .article-meta {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--terracotta);
  text-align: center;
  margin-bottom: 18px;
}
.article h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.1;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 42px;
}
.article h1 em { font-style: italic; color: var(--terracotta); }
.article .lead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: 32px;
}
.article p { margin-bottom: 23px; line-height: 1.88; }
.article h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 32px;
  color: var(--charcoal);
  margin: 46px 0 17px;
}
.article blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  color: var(--charcoal);
  padding: 24px 32px;
  border-left: 3px solid var(--terracotta);
  background: var(--sand);
  margin: 32px 0;
  border-radius: 0 8px 8px 0;
}
.article .cta-line {
  background: var(--sand);
  padding: 26px 30px;
  border-radius: 10px;
  font-size: 15px;
  margin-top: 42px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: clamp(66px, 8vw, 104px) var(--gutter) 38px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 85% 0%, rgba(174,97,64,0.22), transparent 60%);
}
.footer-wrap {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: clamp(38px, 5vw, 68px);
  padding-bottom: 52px;
}
@media (max-width: 720px) {
  .footer-wrap { grid-template-columns: 1fr; gap: 38px; }
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand .mark {
  width: 46px; height: 46px; border-radius: 50%;
  object-fit: contain;
  background: var(--ivory);
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  opacity: 0.82;
  max-width: 36ch;
  line-height: 1.6;
}
.site-footer h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 17px;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a { font-size: 14px; color: var(--cream); opacity: 0.8; }
.site-footer ul a:hover { opacity: 1; color: var(--clay); }
.footer-base {
  position: relative;
  border-top: 1px solid rgba(251,246,236,0.14);
  padding-top: 28px;
  text-align: center;
  font-size: 12px;
  opacity: 0.62;
  max-width: var(--maxw);
  margin: 0 auto;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-s { margin-top: 20px; }
.mt-m { margin-top: 40px; }
.mt-l { margin-top: 62px; }
.stack-center { display: flex; flex-direction: column; align-items: center; }
.divider-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--terracotta); margin: 0 auto 30px;
}
.lede-narrow { max-width: 46ch; margin-left: auto; margin-right: auto; }
