:root {
  --bg: #ece7de;
  --bg-deep: #e3ddd2;
  --ink: #1a1a17;
  --ink-soft: #3a3832;
  --forest: #1f2a24;
  --accent: #8a3a2a;
  --rule: rgba(26,26,23,0.12);
  --rule-strong: rgba(26,26,23,0.24);
  --maxw: 1240px;
  --pad: clamp(18px, 4vw, 44px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }

/* NAV */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.site-nav {
  max-width: var(--maxw); margin: 0 auto;
  padding: 14px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.wordmark {
  font-family: 'Bodoni Moda', serif;
  font-size: 22px; line-height: 1;
  display: flex; flex-direction: column; align-items: center;
}
.wordmark em { font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; }
.wordmark small {
  font-family: 'Jost', sans-serif;
  font-size: 9px; letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-top: 4px; opacity: 0.65;
}
.nav-right {
  display: flex; gap: 18px; align-items: center;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
}
.nav-phone {
  font-family: 'Bodoni Moda', serif; font-style: italic;
  font-size: 15px; letter-spacing: 0.02em; text-transform: none;
  opacity: 0.85;
}
.nav-cta {
  padding: 10px 18px; border: 1px solid var(--ink); border-radius: 999px;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--ink); color: var(--bg); }

/* BREADCRUMB */
.breadcrumb {
  max-width: var(--maxw); margin: 0 auto;
  padding: 28px var(--pad) 0;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft);
}
.breadcrumb a { opacity: 0.7; transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb .sep { margin: 0 8px; opacity: 0.4; }

/* LANDING HEADER */
.landing {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(30px, 5vw, 60px) var(--pad) clamp(60px, 8vw, 100px);
}
.landing-header { padding: clamp(30px, 6vw, 70px) 0 clamp(40px, 6vw, 80px); border-bottom: 1px solid var(--rule); }
.eyebrow {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-soft); opacity: 0.75;
  margin-bottom: 18px;
}
.landing-header h1 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 400;
  font-size: clamp(38px, 6.2vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  max-width: 22ch;
  margin-bottom: 24px;
}
.landing-header h1 em { font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; }
.lede {
  font-family: 'Fraunces', serif;
  font-style: italic; font-weight: 300;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  max-width: 56ch;
  color: var(--ink-soft);
}

/* BODY */
.landing-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 3vw, 40px);
  padding: clamp(40px, 6vw, 70px) 0;
  max-width: 68ch;
  margin: 0 auto;
}
.landing-body h2 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin-top: 20px;
  max-width: 26ch;
}
.landing-body h2 em { font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; }
.landing-body h3 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 24px);
  margin-top: 16px;
  letter-spacing: -0.005em;
}
.landing-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 60ch;
}
.landing-body p strong { color: var(--ink); font-weight: 500; }
.landing-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.landing-body li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 10px;
  max-width: 60ch;
}
.landing-body li::before {
  content: '';
  position: absolute; left: 0; top: 12px;
  width: 10px; height: 1px;
  background: var(--ink);
  opacity: 0.4;
}
.landing-body a {
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}
.landing-body a:hover { color: var(--accent); border-color: var(--accent); }

/* INLINE FIGURES */
.landing-figure {
  margin: clamp(28px, 4vw, 44px) 0;
  max-width: 100%;
}
.landing-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  background: #f4ede3;
}
.landing-figure figcaption {
  margin-top: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.7;
}

/* PULL QUOTE */
.pullquote {
  border-left: 2px solid var(--ink);
  padding-left: 24px;
  margin: 12px 0;
  font-family: 'Fraunces', serif;
  font-style: italic; font-weight: 300;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.4;
  color: var(--ink);
  max-width: 48ch;
}

/* FAQ */
.faq {
  max-width: 68ch; margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 0 clamp(30px, 5vw, 60px);
  border-top: 1px solid var(--rule);
}
.faq h2 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 400;
  font-size: clamp(30px, 3.8vw, 44px);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.faq h2 em { font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; }
.faq-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.faq-item:last-child { border-bottom: 0; }
.faq-item h3 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 500;
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.faq-item p {
  font-size: 16px; line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* CTA */
.cta-band {
  background: var(--ink);
  color: var(--bg);
  margin: clamp(40px, 6vw, 80px) calc(-1 * var(--pad)) 0;
  padding: clamp(48px, 7vw, 90px) var(--pad);
}
.cta-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(24px, 4vw, 60px);
  align-items: end;
}
.cta-band h2 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.08; letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.cta-band h2 em { font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; }
.cta-band p {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: clamp(17px, 1.8vw, 21px);
  opacity: 0.82;
  max-width: 50ch;
}
.cta-actions {
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-end; justify-self: end;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border: 1px solid var(--bg);
  border-radius: 999px;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  transition: all 0.2s;
  white-space: nowrap;
}
.cta-btn:hover { background: var(--bg); color: var(--ink); }
.cta-btn.primary { background: var(--bg); color: var(--ink); }
.cta-btn.primary:hover { background: transparent; color: var(--bg); }

/* RELATED */
.related {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) var(--pad);
  border-top: 1px solid var(--rule);
}
.related h2 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 28px;
  letter-spacing: -0.005em;
}
.related h2 em { font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 4px;
}
.related-card {
  padding: 20px 22px;
  background: rgba(26,26,23,0.03);
  border-radius: 4px;
  transition: background 0.2s;
  display: block;
  border-bottom: 0 !important;
}
.related-card:hover { background: rgba(26,26,23,0.07); color: inherit !important; }
.related-card .tag {
  font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-soft); opacity: 0.6;
  margin-bottom: 8px;
}
.related-card h3 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.005em;
}

/* FOOTER */
.site-footer {
  background: var(--bg-deep);
  padding: 60px var(--pad) 30px;
  border-top: 1px solid var(--rule);
  margin-top: 0;
}
.foot-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}
.foot-mark {
  font-family: 'Bodoni Moda', serif;
  font-size: 28px; line-height: 1;
  display: flex; flex-direction: column;
}
.foot-mark em { font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; }
.foot-mark small {
  font-family: 'Jost', sans-serif;
  font-size: 9px; letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-top: 10px; opacity: 0.65;
}
.foot-col h5 {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-soft); opacity: 0.7;
  margin-bottom: 16px;
  font-weight: 500;
}
.foot-col a {
  display: block;
  font-size: 14px;
  color: var(--ink);
  opacity: 0.8;
  margin-bottom: 10px;
  transition: opacity 0.2s;
}
.foot-col a:hover { opacity: 1; }
.foot-bottom {
  max-width: var(--maxw); margin: 0 auto;
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-soft); opacity: 0.65;
}

/* MOBILE */
@media (max-width: 720px) {
  .site-nav { flex-wrap: wrap; gap: 10px; }
  .nav-right { gap: 10px; font-size: 10px; }
  .nav-phone { font-size: 13px; }
  .nav-cta { padding: 8px 14px; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { align-items: stretch; }
  .cta-btn { justify-content: center; }
  .foot-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .foot-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
  body { padding-bottom: 72px; }
}

/* MOBILE STICKY */
.mobile-sticky {
  display: none;
}
@media (max-width: 720px) {
  .mobile-sticky {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
    background: var(--ink); color: var(--bg);
    border-top: 1px solid rgba(236,231,222,0.2);
  }
  .mobile-sticky a {
    padding: 16px;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--bg);
  }
  .ms-book { background: var(--accent); }
}
