/* ============================================
   The S.H.E.P.S. Method — Editorial Magazine
   Apple Newsroom × Airbnb Magazine
   ============================================ */

:root {
  --ink: #14110f;
  --ink-soft: #3b3531;
  --ink-mute: #6f6862;
  --paper: #faf7f2;
  --paper-2: #f3ede4;
  --line: #e5ddd2;
  --accent: #b8632b;        /* warm editorial sienna */
  --accent-deep: #8c4519;
  --accent-soft: #f0d9c4;
  --gold: #b08847;
  --shadow-sm: 0 2px 8px rgba(20,17,15,0.06);
  --shadow-md: 0 12px 32px rgba(20,17,15,0.10);
  --shadow-lg: 0 24px 60px rgba(20,17,15,0.14);
  --radius: 14px;
  --radius-lg: 22px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --container: 1180px;
  --container-narrow: 980px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(20,17,15,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.brand sup { font-size: 0.55em; opacity: 0.7; top: -0.7em; }
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.nav-cta:hover { color: var(--accent); border-color: var(--accent); }

@media (max-width: 800px) {
  .nav-links { display: none; }
  .nav-cta { font-size: 13px; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #1c1612;
  color: #fdfbf7;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 75% 35%, rgba(184, 99, 43, 0.35) 0%, rgba(184, 99, 43, 0) 55%),
    radial-gradient(ellipse at 20% 90%, rgba(140, 69, 25, 0.25) 0%, rgba(140, 69, 25, 0) 50%),
    linear-gradient(160deg, #2b211a 0%, #1c1612 60%, #14110f 100%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(253,251,247,0.04) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: 0.5;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 64px;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding-top: 56px; padding-bottom: 56px; }
}
.hero-text { max-width: 560px; }
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 22px;
  color: var(--accent-soft);
  font-weight: 600;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(52px, 7.5vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
}
.hero-title sup { font-size: 0.32em; opacity: 0.7; top: -1.6em; font-weight: 500; }
.hero-sub {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.4;
  max-width: 38ch;
  margin: 0 0 36px;
  color: rgba(253,251,247,0.85);
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: #fdfbf7;
  color: var(--ink);
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-md);
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.hero-cta .arrow { transition: transform 0.2s; }
.hero-cta:hover .arrow { transform: translateX(4px); }
.hero-byline {
  margin: 40px 0 0;
  color: rgba(253,251,247,0.55);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-prop {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-book {
  width: 78%;
  max-width: 360px;
  border-radius: 4px;
  box-shadow:
    0 28px 60px rgba(0,0,0,0.55),
    0 8px 18px rgba(0,0,0,0.4);
  transform: perspective(1200px) rotateY(-12deg) rotateX(3deg) rotateZ(-2deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  z-index: 2;
}
.hero-prop:hover .hero-book {
  transform: perspective(1200px) rotateY(-6deg) rotateX(1deg) rotateZ(-1deg);
}
.hero-prop-coffee {
  position: absolute;
  width: 130px;
  height: 130px;
  bottom: 14%;
  right: 4%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, #3a2418 0%, #2a1810 50%, #1a0e08 70%, transparent 75%),
    radial-gradient(circle at 50% 50%, #d9b896 0%, #b89070 70%, transparent 75%);
  box-shadow:
    inset 0 0 0 6px rgba(217, 184, 150, 0.4),
    0 20px 40px rgba(0,0,0,0.4);
  z-index: 1;
  opacity: 0.85;
}
.hero-prop-coffee::after {
  content: "";
  position: absolute;
  top: 18%;
  left: 22%;
  width: 26%;
  height: 12%;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  filter: blur(3px);
}
.hero-prop-pen {
  position: absolute;
  width: 180px;
  height: 8px;
  background: linear-gradient(90deg, #b08847 0%, #8c6b35 50%, #14110f 95%, #14110f 100%);
  border-radius: 4px;
  bottom: 22%;
  left: 0%;
  transform: rotate(-22deg);
  box-shadow: 0 6px 16px rgba(0,0,0,0.5);
  z-index: 1;
  opacity: 0.85;
}
@media (max-width: 900px) {
  .hero-prop { min-height: 320px; }
  .hero-book { max-width: 240px; }
  .hero-prop-coffee { width: 90px; height: 90px; bottom: 10%; right: 8%; }
  .hero-prop-pen { width: 130px; bottom: 18%; left: 8%; }
}

/* ---------- PULL QUOTE ---------- */
.pull-quote {
  padding: 90px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.quote-text {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 auto 22px;
  max-width: 18ch;
  color: var(--ink);
}
.quote-source {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}

/* ---------- SECTION HEAD ---------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head-tight { margin-bottom: 36px; }
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 16px;
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
}
.section-sub {
  font-size: 18px;
  color: var(--ink-mute);
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
}

/* ---------- PILLARS ---------- */
.pillars { padding: 120px 0; background: var(--paper); }

.pillar-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
@media (max-width: 1100px) { .pillar-rail { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px) { .pillar-rail { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pillar-rail { grid-template-columns: 1fr; } }

.pillar-card {
  position: relative;
  background: #fdfbf7;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px 28px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  overflow: hidden;
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-soft);
}
.pillar-card[data-pillar="sleep"]       { color: #4a3b6b; }
.pillar-card[data-pillar="hydration"]   { color: #2a5e7c; }
.pillar-card[data-pillar="exercise"]    { color: #8c4519; }
.pillar-card[data-pillar="protein"]     { color: #6e3a2a; }
.pillar-card[data-pillar="supplements"] { color: #4f5d3a; }

.pillar-letter {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 110px;
  line-height: 0.8;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
  opacity: 0.85;
}
.pillar-visual {
  width: 72px;
  height: 72px;
  margin: 8px 0 18px;
  transition: transform 0.4s ease;
}
.pillar-visual svg { width: 100%; height: 100%; }
.pillar-card:hover .pillar-visual { transform: scale(1.08) rotate(-3deg); }

.pillar-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--ink);
}
.pillar-line {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 20px;
  flex: 1;
}
.pillar-more {
  background: none;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-align: left;
  transition: color 0.2s;
}
.pillar-more:hover { color: var(--accent-deep); }
.pillar-more .arrow { transition: transform 0.2s; }
.pillar-more:hover .arrow { transform: translateX(4px); }

.pillar-body { display: none; }
/* ---------- PILLAR MODAL ---------- */
.pillar-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 5vh 24px;
  overflow-y: auto;
}
.pillar-modal.is-open { display: flex; }
.pillar-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 17, 15, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn 0.25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.pillar-modal-panel {
  position: relative;
  width: 100%;
  max-width: 760px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  margin: auto;
  animation: slideUp 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
}
.pillar-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20,17,15,0.06);
  border: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}
.pillar-modal-close:hover { background: var(--ink); color: #fdfbf7; transform: rotate(90deg); }
.pillar-modal-inner {
  padding: 56px 56px 48px;
}
.pillar-modal-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 16px;
}
.pillar-modal-letter {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 120px;
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin: 0 0 12px;
}
.pillar-modal-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: var(--ink);
}
.pillar-modal-lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  margin: 0 0 32px;
  color: var(--ink-soft);
  max-width: 28ch;
}
.pillar-modal-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.pillar-modal-body p { margin: 0 0 18px; }
.pillar-modal-body h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  margin: 28px 0 14px;
  color: var(--ink);
}
.pillar-modal-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.pillar-modal-body ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}
.pillar-modal-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}
.pillar-modal-body .quiet {
  font-style: italic;
  color: var(--ink-mute);
  font-size: 14px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.pillar-modal-body .pull-line {
  font-family: var(--serif, 'Playfair Display', Georgia, serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
  color: var(--ink, #1a1a1a);
  border-left: 3px solid #1f6f63;
  padding: 4px 0 4px 18px;
  margin: 0 0 24px;
}
.pillar-modal-cta {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.pillar-modal-cta .btn { padding: 14px 22px; font-size: 15px; }
@media (max-width: 600px) {
  .pillar-modal { padding: 0; }
  .pillar-modal-panel { border-radius: 0; min-height: 100%; max-width: 100%; }
  .pillar-modal-inner { padding: 72px 24px 40px; }
  .pillar-modal-letter { font-size: 88px; }
  .pillar-modal-cta { flex-direction: column; }
  .pillar-modal-cta .btn { width: 100%; text-align: center; }
}


/* ---------- FOUNDER ---------- */
.founder {
  padding: 120px 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 56px;
}
@media (max-width: 820px) {
  .founder-grid { grid-template-columns: 1fr; gap: 36px; }
}
.founder-portrait {
  margin: 0;
}
.founder-portrait img {
  width: 100%;
  border-radius: var(--radius);
  filter: grayscale(1) contrast(1.05);
  box-shadow: var(--shadow-md);
}
.founder-portrait figcaption {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: center;
}
.founder-quote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 24px;
}
.founder-sig {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 12px;
}
@media (max-width: 780px) { .proof-row { grid-template-columns: 1fr; } }

.proof-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: #fdfbf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}
a.proof-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.proof-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--paper-2);
}
.proof-icon img { width: 100%; height: 100%; object-fit: cover; }
.proof-icon-glyph {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.proof-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 3px;
  font-weight: 600;
}
.proof-value {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  margin: 0;
  color: var(--ink);
}

/* ---------- BOOK ---------- */
.book { padding: 120px 0; background: var(--paper); }
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 820px) {
  .book-grid { grid-template-columns: 1fr; gap: 48px; }
}
.book-cover {
  margin: 0;
  position: relative;
}
.book-cover img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  transform: perspective(900px) rotateY(-5deg);
  transition: transform 0.5s;
}
.book-cover:hover img { transform: perspective(900px) rotateY(0); }
.book-copy .section-title { text-align: left; }
.book-copy .eyebrow { text-align: left; }
.book-copy .section-head { text-align: left; margin: 0 0 32px; }

.book-toc {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  counter-reset: toc;
}
.book-toc li {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.book-toc li:last-child { border-bottom: 1px solid var(--line); }
.toc-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: -0.01em;
  min-width: 36px;
}
.toc-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.link-cta:hover { color: var(--accent-deep); border-color: var(--accent-deep); }
.link-cta .arrow { transition: transform 0.2s; }
.link-cta:hover .arrow { transform: translateX(4px); }

/* ---------- BUY ---------- */
.buy {
  padding: 120px 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}
.buy-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
@media (max-width: 1180px) { .buy-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px) { .buy-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .buy-grid { grid-template-columns: 1fr; } }

.buy-card {
  background: #fdfbf7;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.buy-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.buy-card-featured {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}
.buy-flag {
  position: absolute;
  top: -10px;
  left: 22px;
  background: var(--accent);
  color: #fdfbf7;
  padding: 5px 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
}
.buy-card-soon {
  opacity: 0.92;
  background: #f7f1e8;
}
.buy-flag-soon {
  background: #8a6f3f;
  color: #faf7f2;
}
.buy-tier {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.buy-price {
  margin: 0 0 10px;
}
.buy-price .num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 46px;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.buy-tagline {
  font-size: 14px;
  color: var(--ink-mute);
  margin: 0 0 18px;
  min-height: 3.6em;
  line-height: 1.45;
}
.buy-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
  font-size: 14px;
  line-height: 1.55;
}
.buy-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--ink-soft);
}
.buy-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}
.buy-ctas {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.btn {
  display: inline-block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: #fdfbf7;
}
.btn-primary:hover { background: var(--accent-deep); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fdfbf7; }

/* ---------- FAQ ---------- */
.faq {
  padding: 120px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.faq-container { max-width: var(--container-narrow); }
.link-inline {
  color: var(--accent);
  border-bottom: 1px solid var(--accent-soft);
  transition: color 0.2s, border-color 0.2s;
}
.link-inline:hover { color: var(--accent-deep); border-color: var(--accent-deep); }
.faq .section-sub a.link-inline { font-style: normal; font-weight: 500; }

.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 4px;
  cursor: pointer;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-toggle {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 300;
  color: var(--ink-mute);
  line-height: 1;
  transition: transform 0.3s, background 0.2s, color 0.2s, border-color 0.2s;
  font-family: var(--sans);
}
.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
  background: var(--ink);
  color: #fdfbf7;
  border-color: var(--ink);
}
.faq-body {
  padding: 0 4px 28px;
  max-width: 70ch;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.faq-body p { margin: 0; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: rgba(253,251,247,0.85);
  padding: 80px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(253,251,247,0.12);
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  color: #fdfbf7;
  margin: 0 0 12px;
}
.footer-brand sup { font-size: 0.55em; opacity: 0.7; top: -0.7em; }
.footer-tag {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(253,251,247,0.6);
  margin: 0;
}
.footer-links-head {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253,251,247,0.5);
  margin: 0 0 16px;
  font-weight: 600;
}
.footer-links a {
  display: block;
  font-size: 14px;
  color: rgba(253,251,247,0.85);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent-soft); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 12px;
  color: rgba(253,251,247,0.45);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { margin: 0; }
