/* Leyla Moon — premium editorial + quiet luxury wellness */

:root {
  /* Palette — ivory canvas, warm ink, sand/bronze/olive/gold accents */
  --ivory: #F4EEE2;
  --ivory-warm: #EFE7D6;
  --paper: #FBF7EE;
  --sand: #E2D4BA;
  --sand-deep: #C8B595;
  --bone: #D9CDB6;
  --ink: #1E1A14;
  --ink-soft: #3A3128;
  --ink-mute: #5A4E3E;            /* darkened from #6B5F4F → ~6.8:1 on ivory (AAA) */
  --bronze: #8B6B3E;
  --bronze-deep: #6A4F2B;          /* single locked accent — used on CTAs + italic emphasis */
  --gold: #B89368;
  --gold-soft: #D4B98E;
  --olive: #5C5A3E;
  --amethyst: #6B5489;
  --line: rgba(30, 26, 20, 0.14);
  --line-soft: rgba(30, 26, 20, 0.08);

  --f-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --f-caps:    "Manrope", "Inter Tight", system-ui, sans-serif;   /* sans for all-caps labels — classification contrast w/ serif display */
  --f-body:    "Manrope", "Inter Tight", system-ui, sans-serif;   /* humanist sans body — Claude pattern */
  --f-pull:    "Spectral", "Cormorant Garamond", Georgia, serif;  /* second serif reserved for pull quotes / preview-card body */
  --f-ui:      "Manrope", "Inter Tight", system-ui, sans-serif;

  /* Modular type scale — 1.333 ratio, base 16, snapped to 8pt-friendly */
  --t-12: 12px;
  --t-14: 14px;
  --t-16: 16px;
  --t-21: 21px;
  --t-28: 28px;
  --t-36: 36px;
  --t-48: 48px;
  --t-64: 64px;
  --t-84: 84px;
  --t-112: 112px;

  /* 8pt spacing scale */
  --s-1: 8px;  --s-2: 16px; --s-3: 24px; --s-4: 32px;
  --s-5: 48px; --s-6: 64px; --s-7: 96px; --s-8: 128px;

  --maxw: 1440px;
  --gutter: 96px;
  --radius: 2px;
  --radius-product: 8px;           /* form chrome — Claude input pattern */
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--ivory); color: var(--ink); }
body {
  font-family: var(--f-body);
  font-size: var(--t-16);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* Subtle film grain & atmospheric gradient */
.grain {
  pointer-events: none;
  position: fixed; inset: 0; z-index: 1;
  opacity: 0.06; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
}

/* Typography utilities */
.eyebrow {
  font-family: var(--f-caps);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 400;
}
.eyebrow .dot { color: var(--bronze); margin: 0 0.6em; }

.display {
  font-family: var(--f-display);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 0.98;
  color: var(--ink);
}
.display em { font-style: italic; color: var(--bronze-deep); font-weight: 400; }
.display .ink-mute { color: var(--ink-mute); font-style: italic; font-weight: 300; }

.serif { font-family: var(--f-display); font-weight: 400; }
.italic { font-style: italic; }

.kicker {
  font-family: var(--f-caps);
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--bronze);
}

/* Hairline divider with center mark */
.hairline {
  display: flex; align-items: center; gap: 18px;
  color: var(--ink-mute);
}
.hairline::before, .hairline::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.hairline .glyph {
  font-family: var(--f-display); font-style: italic; font-size: 18px;
  color: var(--bronze);
}

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--s-5);
  background: color-mix(in oklab, var(--ivory) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav .mark {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: 26px; letter-spacing: 0.01em;
}
.nav .mark span { font-style: normal; font-family: var(--f-caps); font-size: 11px; letter-spacing: 0.4em; margin-left: 14px; color: var(--ink-mute); }
.nav-links {
  display: flex; gap: 36px;
  font-family: var(--f-caps); font-size: 11.5px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-soft);
}
.nav-links a { position: relative; padding: 6px 0; }
.nav-links a:hover { color: var(--bronze-deep); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 22px; border: 1px solid var(--ink);
  font-family: var(--f-caps); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  transition: all .25s ease;
}
.nav-cta:hover { background: var(--ink); color: var(--ivory); }
.nav-cta .arr { font-family: var(--f-display); font-style: italic; }

/* Sections */
section { position: relative; }
.section-pad { padding: 120px 48px; }
.section-pad-l { padding: 160px 48px; }
.wrap { max-width: var(--maxw); margin: 0 auto; }

/* Hero */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: calc(100vh - 70px);
  background: linear-gradient(180deg, var(--paper) 0%, var(--ivory) 60%, var(--ivory-warm) 100%);
}
.hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 72px 80px 80px;
  position: relative;
}
.hero h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(56px, 7.2vw, 112px);
  line-height: 0.96;
  letter-spacing: -0.015em;
  margin: 24px 0 28px;
  color: var(--ink);
}
.hero h1 em { font-style: italic; color: var(--bronze-deep); font-weight: 400; }
.hero .lede {
  max-width: 480px;
  font-family: var(--f-body);
  font-size: 18.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 36px;
}
.hero-cta-row { display: flex; align-items: center; gap: 24px; margin-bottom: 56px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 28px;
  background: var(--ink); color: var(--ivory);
  font-family: var(--f-caps); font-size: 11.5px; letter-spacing: 0.34em; text-transform: uppercase;
  border: 1px solid var(--ink);
  transition: all .3s ease;
}
.btn-primary:hover { background: var(--bronze-deep); border-color: var(--bronze-deep); }
.btn-primary .arr {
  font-family: var(--f-display); font-style: italic; font-size: 18px; letter-spacing: 0;
  transition: transform .3s ease;
}
.btn-primary:hover .arr { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 4px;
  font-family: var(--f-caps); font-size: 11.5px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--ink-soft);
}
.btn-ghost:hover { color: var(--bronze-deep); border-color: var(--bronze-deep); }

.hero-proof {
  display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 28px; max-width: 520px;
}
.stars { color: var(--bronze); letter-spacing: 2px; font-size: 14px; }
.proof-meta { font-size: 14px; color: var(--ink-mute); line-height: 1.4; }
.proof-meta strong { color: var(--ink); font-weight: 500; font-family: var(--f-display); font-size: 17px; letter-spacing: 0.01em; }

.hero-image {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%;
  filter: saturate(0.92) contrast(1.02);
}
.hero-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(244,238,226,0.4) 0%, transparent 25%),
              linear-gradient(180deg, transparent 60%, rgba(30,26,20,0.18) 100%);
}

.hero-corner {
  position: absolute;
  bottom: 36px; right: 36px;
  text-align: right;
  z-index: 2;
  color: var(--ivory);
  font-family: var(--f-caps); font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.hero-corner .ln { display: block; opacity: 0.85; }
.hero-corner .num { font-family: var(--f-display); font-style: italic; font-size: 26px; letter-spacing: 0; text-transform: none; margin-top: 6px; }

.hero-top-strip {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 80px; font-family: var(--f-caps); font-size: 10.5px;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--ink-mute);
  pointer-events: none;
}

/* Marquee — featured / press */
.press {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 48px;
  background: var(--paper);
}
.press-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin: 0 auto;
  font-family: var(--f-caps); font-size: 10.5px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--ink-mute);
}
.press-inner .label { color: var(--bronze); }
.press-inner ul { display: flex; gap: 56px; list-style: none; margin: 0; padding: 0; }
.press-inner li { font-family: var(--f-display); font-style: italic; font-size: 22px; letter-spacing: 0; text-transform: none; color: var(--ink-soft); }

/* Why — pains/desires */
.why { background: var(--ivory); }
.why-head { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; margin-bottom: 96px; }
.why-head h2 { font-size: clamp(48px, 5.4vw, 84px); margin: 18px 0 0; }
.why-head p { font-family: var(--f-body); font-size: 19px; line-height: 1.55; color: var(--ink-soft); margin: 0; max-width: 560px; }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border-top: 1px solid var(--line);
}
.why-item {
  padding: 48px 36px 56px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.why-item:not(:nth-child(3n)) { border-right: 1px solid var(--line); padding-right: 36px; }
.why-item:not(:nth-child(3n)) ~ .why-item { padding-left: 36px; }
.why-grid > .why-item:nth-child(3n+1) { padding-left: 0; }
.why-grid > .why-item:nth-child(3n+2) { padding-left: 36px; }
.why-grid > .why-item:nth-child(3n+3) { padding-left: 36px; }
.why-num {
  font-family: var(--f-display); font-style: italic; font-weight: 300;
  font-size: 22px; color: var(--bronze); margin-bottom: 14px;
}
.why-item h3 {
  font-family: var(--f-display); font-weight: 400; font-size: 26px;
  line-height: 1.2; margin: 0 0 12px; letter-spacing: -0.005em;
}
.why-item p { font-size: 16px; line-height: 1.55; color: var(--ink-mute); margin: 0; }

/* Receive — what you'll get */
.receive { background: var(--paper); }
.receive-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 96px; align-items: start; }
.receive h2 { font-size: clamp(48px, 5.2vw, 84px); margin: 18px 0 28px; }
.receive .lede { font-size: 18px; line-height: 1.6; color: var(--ink-soft); max-width: 460px; margin-bottom: 44px; }
.receive-list { list-style: none; padding: 0; margin: 0; }
.receive-list li {
  display: grid; grid-template-columns: 64px 1fr; gap: 8px;
  padding: 22px 0; border-top: 1px solid var(--line);
  align-items: baseline;
}
.receive-list li:last-child { border-bottom: 1px solid var(--line); }
.receive-list .ix {
  font-family: var(--f-display); font-style: italic; font-size: 26px;
  color: var(--bronze); font-weight: 300;
}
.receive-list h4 { font-family: var(--f-display); font-weight: 400; font-size: 24px; margin: 0 0 4px; letter-spacing: -0.005em; }
.receive-list p { margin: 0; color: var(--ink-mute); font-size: 16px; }

/* Sample reading preview card — editorial paper */
.preview-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 44px 44px 48px;
  position: relative;
  box-shadow: 0 30px 80px -50px rgba(30, 26, 20, 0.4);
  font-family: var(--f-body);
}
.preview-card::before {
  content: ""; position: absolute; inset: 8px;
  border: 1px solid var(--line-soft); pointer-events: none;
}
.preview-card .pc-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  border-bottom: 1px solid var(--line); padding-bottom: 18px; margin-bottom: 22px;
}
.preview-card .pc-title { font-family: var(--f-display); font-style: italic; font-size: 28px; }
.preview-card .pc-meta { font-family: var(--f-caps); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-mute); }
.preview-card h5 {
  font-family: var(--f-caps); font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--bronze); margin: 22px 0 8px; font-weight: 400;
}
.preview-card .body-p { font-family: var(--f-body); font-size: 15.5px; line-height: 1.62; color: var(--ink-soft); margin: 0 0 14px; }
.preview-card .pull {
  font-family: var(--f-display); font-style: italic; font-weight: 400; font-size: 22px;
  line-height: 1.32; color: var(--ink); margin: 18px 0; padding-left: 18px; border-left: 1px solid var(--bronze);
}
.preview-card .sigil {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--f-display); font-style: italic; font-size: 36px; color: var(--gold);
  opacity: 0.85;
}

/* Reading menu */
.menu { background: var(--ivory); }
.menu-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
  margin-bottom: 64px;
}
.menu-head h2 { font-size: clamp(56px, 6.4vw, 100px); margin: 14px 0 0; }
.menu-head p { font-size: 17.5px; color: var(--ink-soft); margin: 0 0 8px; max-width: 460px; }
.menu-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.reading-card {
  padding: 40px 32px 36px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: var(--ivory);
  transition: background .35s ease, color .35s ease;
  cursor: pointer;
  position: relative;
  display: flex; flex-direction: column; min-height: 360px;
}
.reading-card:nth-child(3n) { border-right: 0; }
.reading-card:hover { background: var(--paper); }
.reading-card .rc-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 28px;
}
.reading-card .rc-num {
  font-family: var(--f-caps); font-size: 10px; letter-spacing: 0.32em;
  color: var(--ink-mute);
}
.reading-card .rc-glyph {
  width: 44px; height: 44px; display: grid; place-items: center;
  color: var(--bronze);
}
.reading-card h3 {
  font-family: var(--f-display); font-weight: 400; font-size: 32px;
  line-height: 1.05; letter-spacing: -0.01em; margin: 0 0 10px;
}
.reading-card h3 em { font-style: italic; color: var(--bronze-deep); }
.reading-card .rc-desc { font-size: 15.5px; line-height: 1.55; color: var(--ink-mute); margin: 0 0 24px; flex: 1; }
.reading-card .rc-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; border-top: 1px solid var(--line-soft);
}
.reading-card .rc-price {
  font-family: var(--f-display); font-style: italic; font-size: 26px; font-weight: 400;
}
.reading-card .rc-price small { font-style: normal; font-family: var(--f-caps); font-size: 10px; letter-spacing: 0.3em; color: var(--ink-mute); margin-right: 6px; }
.reading-card .rc-go {
  font-family: var(--f-caps); font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink); display: inline-flex; align-items: center; gap: 8px;
  transition: gap .25s ease, color .25s ease;
}
.reading-card:hover .rc-go { gap: 14px; color: var(--bronze-deep); }

/* About */
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 96px; align-items: center; }
.about-img {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  background: var(--sand);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.94) contrast(1.02); }
.about-img-cap {
  position: absolute; left: 16px; bottom: 16px;
  color: var(--ivory); font-family: var(--f-caps); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase; text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.about-text h2 { font-size: clamp(48px, 5vw, 80px); margin: 14px 0 28px; }
.about-text .lede { font-family: var(--f-display); font-style: italic; font-size: 26px; line-height: 1.35; color: var(--ink); margin: 0 0 28px; font-weight: 300; }
.about-text p { font-size: 16.5px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 16px; }
.about-quals {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line); margin-top: 36px; padding-top: 28px;
}
.about-qual .n { font-family: var(--f-display); font-style: italic; font-size: 36px; color: var(--bronze-deep); }
.about-qual .l { font-family: var(--f-caps); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-mute); margin-top: 4px; }

/* Bundles */
.bundles { background: var(--ink); color: var(--ivory); position: relative; overflow: hidden; }
.bundles::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 500px at 80% 0%, rgba(184, 147, 104, 0.22), transparent 60%),
    radial-gradient(700px 400px at 10% 100%, rgba(107, 84, 137, 0.16), transparent 60%);
  pointer-events: none;
}
.bundles .eyebrow { color: var(--gold-soft); }
.bundles h2 { font-size: clamp(48px, 5.4vw, 84px); color: var(--ivory); margin: 14px 0 18px; }
.bundles h2 em { color: var(--gold-soft); }
.bundles .lede { font-size: 18px; max-width: 540px; color: rgba(244, 238, 226, 0.75); }
.bundles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 72px; position: relative; }
.bundle-card {
  border: 1px solid rgba(244, 238, 226, 0.16);
  padding: 44px;
  background: rgba(244, 238, 226, 0.02);
  position: relative;
  transition: background .35s ease, border-color .35s ease;
}
.bundle-card:hover { background: rgba(244, 238, 226, 0.06); border-color: rgba(212, 185, 142, 0.5); }
.bundle-card .tag {
  display: inline-block; padding: 6px 12px;
  font-family: var(--f-caps); font-size: 9.5px; letter-spacing: 0.32em; text-transform: uppercase;
  background: var(--gold-soft); color: var(--ink); margin-bottom: 32px;
}
.bundle-card h3 { font-family: var(--f-display); font-weight: 400; font-size: 44px; line-height: 1.05; margin: 0 0 14px; }
.bundle-card h3 em { font-style: italic; color: var(--gold-soft); }
.bundle-card .desc { color: rgba(244, 238, 226, 0.7); font-size: 16px; line-height: 1.55; margin: 0 0 28px; }
.bundle-card .includes { list-style: none; margin: 0 0 32px; padding: 0; border-top: 1px solid rgba(244, 238, 226, 0.12); }
.bundle-card .includes li {
  padding: 14px 0; border-bottom: 1px solid rgba(244, 238, 226, 0.08);
  font-size: 15px; display: flex; justify-content: space-between; align-items: center;
}
.bundle-card .includes li span { color: var(--gold-soft); font-family: var(--f-caps); font-size: 10px; letter-spacing: 0.3em; }
.bundle-card .price-row { display: flex; align-items: baseline; justify-content: space-between; padding-top: 4px; }
.bundle-card .price { font-family: var(--f-display); font-style: italic; font-size: 48px; }
.bundle-card .strike { text-decoration: line-through; color: rgba(244, 238, 226, 0.4); font-family: var(--f-display); font-style: italic; font-size: 22px; margin-left: 12px; }
.bundle-card .save { font-family: var(--f-caps); font-size: 10px; letter-spacing: 0.3em; color: var(--gold-soft); }
.bundle-card .btn-bundle {
  display: block; text-align: center;
  padding: 18px; margin-top: 28px;
  border: 1px solid var(--ivory); color: var(--ivory);
  font-family: var(--f-caps); font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase;
  transition: all .3s ease;
}
.bundle-card .btn-bundle:hover { background: var(--ivory); color: var(--ink); }

.addons {
  margin-top: 80px; padding-top: 40px;
  border-top: 1px solid rgba(244, 238, 226, 0.12);
  display: grid; grid-template-columns: 1fr 2.2fr; gap: 64px; align-items: start;
}
.addons h4 { font-family: var(--f-display); font-weight: 400; font-size: 32px; margin: 0; line-height: 1.1; }
.addons h4 em { font-style: italic; color: var(--gold-soft); }
.addons-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.addon {
  padding: 18px 24px 18px 0;
  border-right: 1px solid rgba(244, 238, 226, 0.12);
  font-size: 15px; color: rgba(244, 238, 226, 0.75);
}
.addon:last-child { border-right: 0; }
.addon .n { font-family: var(--f-display); font-style: italic; font-size: 22px; color: var(--ivory); display: block; margin-bottom: 6px; }
.addon .p { font-family: var(--f-caps); font-size: 10px; letter-spacing: 0.3em; color: var(--gold-soft); margin-top: 6px; display: block; }

/* Reviews */
.reviews { background: var(--ivory); }
.reviews-head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 80px; }
.reviews-head h2 { font-size: clamp(48px, 5.2vw, 80px); margin: 14px 0 0; }
.reviews-head .meta { text-align: right; }
.reviews-head .meta .stars { font-size: 18px; }
.reviews-head .meta .big { font-family: var(--f-display); font-style: italic; font-size: 56px; line-height: 1; margin: 6px 0; }
.reviews-head .meta .small { font-family: var(--f-caps); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-mute); }
.reviews-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
.review {
  padding: 48px 36px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px;
}
.review:last-child { border-right: 0; }
.review .stars { color: var(--bronze); letter-spacing: 3px; }
.review .quote {
  font-family: var(--f-display); font-weight: 400; font-size: 26px;
  line-height: 1.32; letter-spacing: -0.005em; color: var(--ink);
  flex: 1;
}
.review .quote em { font-style: italic; color: var(--bronze-deep); }
.review.lead .quote { font-size: 34px; }
.review .who {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--line-soft); padding-top: 18px;
}
.review .ava {
  width: 44px; height: 44px; border-radius: 50%; overflow: hidden;
  background: var(--sand);
  font-family: var(--f-display); font-style: italic; font-size: 18px;
  display: grid; place-items: center; color: var(--bronze-deep);
}
.review .name { font-family: var(--f-display); font-size: 18px; font-weight: 400; }
.review .role { font-family: var(--f-caps); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-mute); margin-top: 2px; }

/* FAQ + ethics */
.faq { background: var(--paper); }
.faq-head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 56px; align-items: end; }
.faq-head h2 { font-size: clamp(48px, 5vw, 80px); margin: 14px 0 0; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  display: grid; grid-template-columns: 80px 1fr 40px;
  align-items: center; gap: 24px;
  padding: 28px 0; text-align: left;
  width: 100%; cursor: pointer;
}
.faq-q .n { font-family: var(--f-caps); font-size: 11px; letter-spacing: 0.3em; color: var(--ink-mute); }
.faq-q .t { font-family: var(--f-display); font-weight: 400; font-size: 24px; letter-spacing: -0.005em; }
.faq-q .x { font-family: var(--f-display); font-style: italic; font-size: 28px; color: var(--bronze); transition: transform .35s ease; }
.faq-item.open .faq-q .x { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .45s ease;
  padding: 0 80px 0 104px;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 28px; }
.faq-a p { font-size: 16px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 12px; max-width: 720px; }

.ethics {
  background: var(--ivory-warm);
  padding: 80px 48px;
  border-top: 1px solid var(--line);
}
.ethics-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; max-width: var(--maxw); margin: 0 auto; }
.ethics h3 { font-family: var(--f-display); font-weight: 400; font-size: 36px; margin: 14px 0 0; }
.ethics-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.ethics-points .pt h5 { font-family: var(--f-caps); font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--bronze); margin: 0 0 10px; font-weight: 400; }
.ethics-points .pt p { font-size: 15px; line-height: 1.55; color: var(--ink-soft); margin: 0; }

/* CTA strip before footer */
.cta-strip {
  background: var(--ivory);
  padding: 140px 48px;
  text-align: center;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.cta-strip::before, .cta-strip::after {
  content: ""; position: absolute; top: 50%; height: 1px; background: var(--line); width: 12%;
}
.cta-strip::before { left: 0; }
.cta-strip::after { right: 0; }
.cta-strip h2 {
  font-family: var(--f-display); font-weight: 300; font-size: clamp(56px, 7vw, 120px);
  line-height: 0.98; letter-spacing: -0.015em; margin: 18px 0 28px;
}
.cta-strip h2 em { font-style: italic; color: var(--bronze-deep); }
.cta-strip p { font-size: 18.5px; color: var(--ink-soft); max-width: 560px; margin: 0 auto 44px; }

/* Footer */
.footer {
  background: var(--ink); color: var(--ivory);
  padding: 80px 48px 36px;
}
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 56px; border-bottom: 1px solid rgba(244,238,226,0.16); }
.footer .mark { font-family: var(--f-display); font-style: italic; font-size: 36px; }
.footer .tag { color: rgba(244,238,226,0.55); font-size: 14.5px; line-height: 1.55; margin-top: 14px; max-width: 320px; }
.footer h6 { font-family: var(--f-caps); font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-soft); margin: 0 0 18px; font-weight: 400; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: rgba(244,238,226,0.75); font-size: 14.5px; }
.footer ul a:hover { color: var(--ivory); }
.footer-bot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 28px; font-family: var(--f-caps); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(244,238,226,0.45);
}

/* Scroll reveal */

/* Sticky floating begin button (appears after hero) */
.float-cta {
  position: fixed; bottom: 28px; left: 50%; transform: translate(-50%, 80px);
  z-index: 40;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 28px;
  background: var(--ink); color: var(--ivory);
  font-family: var(--f-caps); font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  box-shadow: 0 20px 60px -20px rgba(30, 26, 20, 0.5);
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), background 0.3s ease;
  pointer-events: none; opacity: 0;
}
.float-cta.show { transform: translate(-50%, 0); pointer-events: auto; opacity: 1; }
.float-cta:hover { background: var(--bronze-deep); }
.float-cta .arr { font-family: var(--f-display); font-style: italic; font-size: 18px; letter-spacing: 0; text-transform: none; }
.float-cta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-soft); box-shadow: 0 0 8px var(--gold-soft); }

/* Quiet Note — interactive sample reading */
.quiet-note {
  background: linear-gradient(180deg, var(--paper) 0%, var(--ivory-warm) 100%);
  position: relative;
}
.quiet-note::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 500px at 80% 0%, rgba(184,147,104,0.08), transparent 60%);
  pointer-events: none;
}
.qn-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 96px;
  align-items: start; position: relative;
}
.qn-left h2 { font-size: clamp(48px, 5.4vw, 84px); margin: 14px 0 28px; }
.qn-lede { font-size: 18px; line-height: 1.6; color: var(--ink-soft); max-width: 460px; margin: 0 0 40px; }
.qn-meta { max-width: 460px; }
.qn-meta .hairline { margin-bottom: 24px; max-width: 200px; }
.qn-meta p { font-family: var(--f-display); font-style: italic; font-size: 19px; line-height: 1.5; color: var(--ink-mute); margin: 0; }

.qn-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px 40px 40px;
  box-shadow: 0 40px 100px -60px rgba(30, 26, 20, 0.5);
  position: relative;
  min-height: 480px;
}
.qn-card::before {
  content: ""; position: absolute; inset: 8px;
  border: 1px solid var(--line-soft); pointer-events: none;
}
.qn-card-top {
  display: flex; justify-content: space-between;
  font-family: var(--f-caps); font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-mute); padding-bottom: 18px; border-bottom: 1px solid var(--line);
}
.qn-submit { width: 100%; justify-content: space-between; margin-top: 12px; }
.qn-submit:disabled { opacity: 0.4; cursor: not-allowed; }
.qn-fineprint { font-size: 12.5px; line-height: 1.5; color: var(--ink-mute); margin: 18px 0 0; font-family: var(--f-body); }

.qn-reading { padding-top: 22px; }
.qn-q { margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--line-soft); }
.qn-q-label { font-family: var(--f-caps); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--bronze); display: block; margin-bottom: 8px; }
.qn-q p { font-family: var(--f-display); font-style: italic; font-size: 22px; line-height: 1.35; margin: 0; color: var(--ink); }
.qn-body { font-family: var(--f-body); font-size: 16.5px; line-height: 1.7; color: var(--ink); min-height: 160px; }
.qn-body p { margin: 0 0 14px; }
.qn-body p:first-letter { font-family: var(--f-display); font-style: italic; font-size: 42px; line-height: 1; float: left; padding: 4px 8px 0 0; color: var(--bronze-deep); }
.qn-caret { color: var(--bronze); animation: qnblink 0.9s steps(2) infinite; margin-left: 1px; }
@keyframes qnblink { to { opacity: 0; } }

.qn-after { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.qn-after-tag { font-family: var(--f-display); font-style: italic; font-size: 17px; color: var(--ink-mute); margin: 0 0 18px; }
.qn-after-row { display: flex; gap: 14px; align-items: center; }
.qn-after-row .btn-ghost { padding: 18px 20px; }

/* How It Works */
.how { background: var(--ivory); }
.how-head { text-align: center; margin-bottom: 80px; }
.how-head h2 { font-size: clamp(48px, 5.4vw, 84px); margin: 14px 0 0; }
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.how-step {
  padding: 56px 36px 56px;
  border-right: 1px solid var(--line);
  position: relative;
  text-align: left;
}
.how-step:last-child { border-right: 0; }
.how-glyph {
  font-family: var(--f-display); font-style: italic; font-size: 48px;
  color: var(--bronze); line-height: 1; margin-bottom: 28px;
}
.how-num { font-family: var(--f-caps); font-size: 10.5px; letter-spacing: 0.32em; color: var(--ink-mute); margin-bottom: 14px; }
.how-step h3 { font-family: var(--f-display); font-weight: 400; font-size: 30px; line-height: 1.15; margin: 0 0 14px; letter-spacing: -0.005em; }
.how-step p { font-size: 16px; line-height: 1.6; color: var(--ink-mute); margin: 0; }

.how-line { margin: 56px auto 40px; max-width: 200px; }
.how-foot {
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center; padding-top: 12px;
}
.hf-item { padding: 0 12px; }
.hf-n { font-family: var(--f-display); font-style: italic; font-weight: 400; font-size: 38px; color: var(--ink); display: block; line-height: 1; }
.hf-l { font-family: var(--f-caps); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-mute); margin-top: 10px; display: block; }

@media (max-width: 1100px) {
  .qn-grid { grid-template-columns: 1fr; gap: 48px; }
  .how-grid { grid-template-columns: 1fr; }
  .how-step { border-right: 0; border-bottom: 1px solid var(--line); }
  .how-step:last-child { border-bottom: 0; }
  .how-foot { grid-template-columns: 1fr 1fr; gap: 24px 0; }
}

/* Modal — reading intake flow */
.modal-back {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20, 16, 12, 0.55);
  backdrop-filter: blur(8px);
  display: flex; justify-content: flex-end;
  opacity: 0; pointer-events: none; transition: opacity .35s ease;
}
.modal-back.open { opacity: 1; pointer-events: auto; }
.modal {
  width: min(640px, 92vw); height: 100vh; background: var(--paper);
  overflow-y: auto; padding: 32px 48px 56px;
  transform: translateX(40px); transition: transform .45s cubic-bezier(.2,.7,.2,1);
  display: flex; flex-direction: column;
}
.modal-back.open .modal { transform: translateX(0); }
.modal-close {
  position: absolute; top: 24px; right: 24px;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  font-family: var(--f-display); font-style: italic; font-size: 28px;
  color: var(--ink-mute); border: 1px solid var(--line);
  transition: all .25s ease;
}
.modal-close:hover { color: var(--ink); border-color: var(--ink); }
.modal .m-head { padding-top: 36px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.modal .m-head .kicker { color: var(--bronze); }
.modal .m-head h3 { font-family: var(--f-display); font-weight: 400; font-size: 44px; line-height: 1.05; margin: 14px 0 8px; letter-spacing: -0.01em; }
.modal .m-head h3 em { font-style: italic; color: var(--bronze-deep); }
.modal .m-head p { color: var(--ink-soft); font-size: 16px; margin: 0; }
.modal .m-price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.modal .m-price-row .px { font-family: var(--f-display); font-style: italic; font-size: 32px; }
.modal .m-price-row .meta { font-family: var(--f-caps); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-mute); }

.steps { display: flex; gap: 8px; margin: 24px 0 12px; }
.steps .s { flex: 1; height: 2px; background: var(--line); }
.steps .s.done { background: var(--bronze); }
.step-label { font-family: var(--f-caps); font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 28px; }

/* Modal form chrome — Claude `text-input` pattern: 44px height, 8px radius, hairline border, bronze focus ring */
.field { display: block; margin-bottom: var(--s-3); }
.field label {
  font-family: var(--f-caps); font-size: var(--t-12); letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: var(--s-1); display: block; font-weight: 500;
}
.field input, .field textarea, .field select {
  width: 100%; background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-product);
  padding: 10px 14px;
  font-family: var(--f-body); font-size: var(--t-16); color: var(--ink);
  font-weight: 400; outline: none; line-height: 1.5;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input { height: 44px; }
.field input::placeholder, .field textarea::placeholder {
  color: var(--ink-mute); opacity: 0.7; font-style: normal;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--bronze-deep);
  box-shadow: 0 0 0 3px rgba(106, 79, 43, 0.15);
}
.field textarea { resize: vertical; min-height: 112px; }
.field .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-2); }

.addons-modal { margin: 12px 0 16px; }
.addons-modal .a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.addons-modal .a .lbl { font-family: var(--f-display); font-size: 19px; }
.addons-modal .a .lbl small { display: block; font-family: var(--f-body); font-size: 13px; color: var(--ink-mute); margin-top: 2px; }
.addons-modal .a .px { font-family: var(--f-display); font-style: italic; font-size: 22px; }
.addons-modal .a .check {
  width: 24px; height: 24px; border: 1px solid var(--line); margin-right: 18px;
  display: grid; place-items: center;
}
.addons-modal .a.on .check { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.addons-modal .a-left { display: flex; align-items: center; }

.m-actions { display: flex; gap: 14px; margin-top: auto; padding-top: 32px; }
.m-actions .back-btn {
  padding: 18px 24px; border: 1px solid var(--line);
  font-family: var(--f-caps); font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--ink-soft);
}
.m-actions .back-btn:hover { border-color: var(--ink); color: var(--ink); }
.m-actions .next-btn {
  flex: 1; padding: 18px;
  background: var(--ink); color: var(--ivory);
  font-family: var(--f-caps); font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase;
  display: inline-flex; align-items: center; justify-content: space-between;
}
.m-actions .next-btn:hover { background: var(--bronze-deep); }
.m-actions .next-btn .arr { font-family: var(--f-display); font-style: italic; font-size: 18px; }

.m-summary { padding: 28px 0; }
.m-summary .row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line-soft); }
.m-summary .row span { font-family: var(--f-body); font-size: 15px; }
.m-summary .row .v { color: var(--ink-mute); }
.m-summary .total { font-family: var(--f-display); font-style: italic; font-size: 30px; margin-top: 14px; display: flex; justify-content: space-between; align-items: baseline; }

.m-confirm { text-align: center; padding: 40px 0; flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.m-confirm .seal { font-family: var(--f-display); font-style: italic; font-size: 72px; color: var(--bronze); }
.m-confirm h4 { font-family: var(--f-display); font-weight: 400; font-size: 40px; margin: 18px 0 14px; line-height: 1.1; }
.m-confirm p { font-size: 16px; line-height: 1.6; color: var(--ink-soft); max-width: 360px; margin: 0 auto 24px; }
.m-confirm .delivery { font-family: var(--f-caps); font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--bronze); }

/* Glyphs SVG container */
.glyph-svg { width: 32px; height: 32px; }

/* Responsive — keep editorial but reflow */
@media (max-width: 1100px) {
  .section-pad, .section-pad-l { padding: 96px 32px; }
  .nav { padding: 16px 24px; }
  .hero { grid-template-columns: 1fr; }
  .hero-text { padding: 56px 32px; }
  .hero-image { min-height: 70vh; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-grid > .why-item:nth-child(2n+1) { padding-left: 0; }
  .why-grid > .why-item:nth-child(2n) { padding-left: 36px; }
  .why-grid > .why-item:not(:nth-child(2n)) { border-right: 1px solid var(--line); }
  .why-grid > .why-item:nth-child(2n) { border-right: 0; }
  .receive-grid { grid-template-columns: 1fr; gap: 56px; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .reading-card:nth-child(3n) { border-right: 1px solid var(--line); }
  .reading-card:nth-child(2n) { border-right: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .bundles-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .review { border-right: 1px solid var(--line) !important; }
  .review:nth-child(2n) { border-right: 0 !important; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ethics-inner { grid-template-columns: 1fr; gap: 36px; }
  .ethics-points { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav { padding: 14px 20px; }
  .section-pad, .section-pad-l { padding: 80px 24px; }
  .why-grid, .menu-grid, .reviews-grid { grid-template-columns: 1fr !important; }
  .why-grid .why-item, .reading-card { padding-left: 0 !important; padding-right: 0 !important; border-right: 0 !important; }
  .hero-text { padding: 40px 24px 64px; }
  .menu-head, .reviews-head, .faq-head, .why-head { grid-template-columns: 1fr; gap: 24px; }
  .addons { grid-template-columns: 1fr; gap: 24px; }
  .addons-list { grid-template-columns: 1fr; }
  .addon { border-right: 0; border-bottom: 1px solid rgba(244,238,226,0.12); padding: 18px 0; }
  .ethics-points { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .modal { width: 100vw; padding: 24px 24px 40px; }
}
