/* ============================================================================
   NEUSPARK WEBSITE — shared styles
   Single source of truth for all site pages.
   To restyle the site, change the design tokens in :root.
   Sections: Tokens · Base · Layout · Navigation · Buttons · Footer ·
             Section labels · Homepage · About · Booking · Quiz · Privacy · Accessibility
   ========================================================================== */


/* ---------- DESIGN TOKENS (Morning Light palette) ---------- */
:root {
  /* Palette */
  --bg: #F7F3EC;            /* Linen — page background */
  --bg-soft: #E4DDD0;       /* Soft stone — section fills */
  --bg-warm: #EDE6D8;       /* Mid-tone — layered sections */
  --ink: #16181C;           /* Ink — body text */
  --ink-soft: #444750;      /* Softer ink — secondary text */
  --accent: #A88B4F;        /* Antique gold — decoration, buttons */
  --accent-dark: #806838;   /* Darker gold — body text links (WCAG AA on Linen) */
  --line: #CFC6B3;          /* Hairline dividers */

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Hanken Grotesk', -apple-system, sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 9rem;

  /* Layout */
  --max-width: 1180px;
  --content-width: 720px;
  --reading-width: 640px;
}


/* ---------- BASE RESET + TYPOGRAPHY ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--bg);
  /* Subtle SVG noise overlay — adds warmth, prevents flat-AI look */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.12 0 0 0 0 0.10 0 0 0 0 0.08 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
}

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* Body text links use the darker accent so they meet WCAG AA on Linen
   (gold-on-linen only passes for large text). Hover reverts to the
   lighter gold for visual feedback. Buttons, nav links and footer
   links all have their own color rules and are unaffected. */
a { color: var(--accent-dark); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent); }

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

::selection { background: var(--accent); color: var(--bg); }


/* ---------- LAYOUT UTILITIES ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section { padding: var(--space-xl) 0; }

.divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 0 0 var(--space-md);
}


/* ---------- NAVIGATION (sticky) ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.1rem var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo img {
  width: 180px;
  height: 46px;
  object-fit: cover;
  object-position: center 34%;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.nav-links { display: none; gap: var(--space-md); list-style: none; }
.nav-links a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.current {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

.nav-cta {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  background: var(--ink);
  color: var(--bg) !important;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s ease;
}
.nav-cta:hover { background: var(--accent); color: var(--bg) !important; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-links-mobile { display: none; }
}
/* Mobile: hide the standalone CTA — it lives inside the dropdown instead */
@media (max-width: 767px) {
  .nav-cta { display: none; }
}

.nav.open .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(247, 243, 236, 0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: var(--space-sm) var(--space-md) var(--space-md);
  border-bottom: 1px solid var(--line);
  gap: 0;
}
.nav.open .nav-links a {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}
.nav.open .nav-links li:last-child a { border-bottom: none; }

/* Animate hamburger to X when open */
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg) !important;
}
.btn-primary:hover {
  background: var(--accent);
  color: var(--bg) !important;
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--ink) !important;
  border: 1px solid var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--bg) !important;
}
.btn-arrow { transition: transform 0.2s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }


/* ---------- FOOTER ---------- */
footer {
  background: var(--ink);
  color: var(--bg);
  padding: var(--space-lg) 0 var(--space-md);
  border-top: 1px solid rgba(247, 243, 236, 0.1);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(247, 243, 236, 0.1);
}
.footer-brand-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(247, 243, 236, 0.7);
}
.footer-links { list-style: none; display: flex; flex-wrap: wrap; gap: var(--space-md); }
.footer-links a { color: var(--bg); font-size: 0.95rem; opacity: 0.85; }
.footer-links a:hover { opacity: 1; color: var(--accent); }
.footer-social { list-style: none; display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.footer-social a { color: rgba(247, 243, 236, 0.68); font-size: 0.9rem; }
.footer-social a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  font-size: 0.85rem;
  color: rgba(247, 243, 236, 0.55);
}

@media (min-width: 768px) {
  .footer-top, .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* In the dark footer, the wordmark is light on dark (overrides the
   default ink colour) and we add a little spacing under the logo. */
footer .nav-logo-text { color: var(--bg); }
footer .nav-logo { margin-bottom: 0.5rem; }


/* ---------- SECTION LABELS / EYEBROWS ----------
   Used in many sections. Defaults to a left-aligned flex row that
   pairs nicely with an inline .spark-icon. Centered contexts
   (the headers of approach / proof / faq / final-cta, and the
   standalone quiz eyebrow) override with justify-content: center. */
.section-label,
.eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.approach-header .section-label,
.proof-header .section-label,
.faq-header .section-label,
.final-cta .section-label,
.quiz-hero .eyebrow { justify-content: center; }


/* ---------- HOMEPAGE ---------- */

/* Spark icon (decorative gold) */
.spark-icon {
  width: 14px;
  height: 14px;
  fill: var(--accent);
  flex-shrink: 0;
}

/* Hero */
.hero {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-md);
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--accent); }
.hero-subhead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: var(--space-lg);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.hero-image-wrap { position: relative; padding-left: 0; }
.hero-image {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  filter: grayscale(15%) contrast(1.02);
}
.hero-image-tag {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  padding: 0.6rem 1.2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  white-space: nowrap;
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-xl);
    padding-top: var(--space-md);
  }
  .hero-image { max-width: none; }
}

/* Pain mirror */
.pain-mirror {
  background: var(--bg-warm);
  padding: var(--space-2xl) 0;
  position: relative;
}
.pain-mirror::before, .pain-mirror::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
.pain-mirror::before { top: 0; }
.pain-mirror::after { bottom: 0; }
.pain-mirror-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.pain-mirror-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.pain-statements {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.pain-statements li {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  line-height: 1.25;
  color: var(--ink);
  padding-left: var(--space-md);
  border-left: 2px solid var(--accent);
}
.pain-mirror-close {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 600px;
}

/* Who this is for */
.who-for { padding: var(--space-2xl) 0; }
.who-for-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.who-for h2 {
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  margin-bottom: var(--space-lg);
}
.who-for-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.who-for-list li {
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink);
  padding-left: var(--space-md);
  position: relative;
}
.who-for-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 12px;
  height: 1px;
  background: var(--accent);
}
.who-for-list strong { font-weight: 500; color: var(--ink); }

/* Location focus */
.location-focus {
  padding: var(--space-2xl) 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
}
.location-focus-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.location-focus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}
.location-focus h2 {
  max-width: 520px;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
}
.location-focus p {
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.65;
}
@media (min-width: 860px) {
  .location-focus-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: var(--space-xl);
  }
}

/* Approach (three principles) */
.approach {
  background: var(--bg-soft);
  padding: var(--space-2xl) 0;
  position: relative;
}
.approach::before, .approach::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
.approach::before { top: 0; }
.approach::after { bottom: 0; }
.approach-header {
  max-width: var(--content-width);
  margin: 0 auto var(--space-xl);
  padding: 0 var(--space-md);
  text-align: center;
}
.approach-header h2 {
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  margin-bottom: var(--space-md);
}
.approach-header p { font-size: 1.1rem; color: var(--ink-soft); }
.principles {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
.principle {
  padding: var(--space-md) 0;
  border-top: 1px solid var(--line);
}
.principle:last-child { border-bottom: 1px solid var(--line); }
.principle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}
.principle-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.principle h3 {
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}
.principle p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 640px;
}
@media (min-width: 768px) {
  .principle-grid {
    grid-template-columns: 100px 1fr;
    gap: var(--space-lg);
    align-items: baseline;
  }
  .principle-num { font-size: 1.05rem; padding-top: 0.4rem; }
}

/* Social proof / testimonials */
.proof { padding: var(--space-2xl) 0; }
.proof-header {
  max-width: var(--content-width);
  margin: 0 auto var(--space-xl);
  padding: 0 var(--space-md);
  text-align: center;
}
.proof-header h2 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); }
.testimonials {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
.testimonial {
  padding: var(--space-md);
  background: var(--bg-warm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink);
  flex-grow: 1;
}
.testimonial--expandable .testimonial-quote {
  max-height: 12rem;
  overflow: hidden;
  position: relative;
}
.testimonial--expandable:not(.expanded) .testimonial-quote::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4rem;
  background: linear-gradient(to bottom, rgba(237, 230, 216, 0), var(--bg-warm));
}
.testimonial--expandable.expanded .testimonial-quote { max-height: none; }
.testimonial-toggle {
  align-self: flex-start;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  padding: 0.55rem 0.85rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.testimonial-toggle:hover { border-color: var(--accent); color: var(--accent-dark); }
.testimonial-attr {
  font-size: 0.9rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--line);
}
.testimonial-attr strong {
  color: var(--ink);
  font-weight: 500;
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  margin-bottom: 0.1rem;
}
@media (min-width: 768px) {
  .testimonials { grid-template-columns: repeat(2, 1fr); }
}

/* FAQ */
.faq { padding: var(--space-2xl) 0; background: var(--bg); }
.faq-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.faq-header { text-align: center; margin-bottom: var(--space-xl); }
.faq-header h2 {
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  margin-top: var(--space-sm);
}
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-md) 2.25rem var(--space-md) 0;
  position: relative;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  color: var(--accent-dark);
  font-size: 1.35rem;
  line-height: 1;
}
.faq-item[open] summary::after { content: '-'; }
.faq-item p {
  margin: 0;
  padding: 0 0 var(--space-md);
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 1rem;
}

/* About preview (homepage) */
.about-preview {
  padding: var(--space-2xl) 0;
  background: var(--bg-warm);
  position: relative;
}
.about-preview::before, .about-preview::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
.about-preview::before { top: 0; }
.about-preview::after { bottom: 0; }
.about-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.about-img {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%) contrast(1.02);
}
.about-text h2 {
  font-size: clamp(1.9rem, 4.5vw, 2.6rem);
  margin-bottom: var(--space-md);
}
.about-text p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}
.about-link:hover { gap: 0.8rem; }
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: var(--space-xl);
  }
  .about-img { max-width: none; }
}

/* Lead magnet */
.lead-magnet { padding: var(--space-2xl) 0; }
.lead-magnet-card {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  border: 1px solid var(--line);
  background: var(--bg);
  position: relative;
}
.lead-magnet-card .spark-icon {
  width: 22px;
  height: 22px;
  margin: 0 auto var(--space-md);
  display: block;
}
.lead-magnet-card h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: var(--space-sm);
}
.lead-magnet-card p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto var(--space-lg);
}

/* Final CTA (used on homepage and about page) */
.final-cta {
  background: var(--ink);
  color: var(--bg);
  padding: var(--space-2xl) 0;
  text-align: center;
}
.final-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.final-cta h2 {
  color: var(--bg);
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  margin-bottom: var(--space-md);
}
.final-cta p {
  font-size: 1.1rem;
  color: rgba(247, 243, 236, 0.8);
  margin-bottom: var(--space-lg);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
/* On a dark background, invert the primary button to gold. */
.final-cta .btn-primary { background: var(--accent); }
.final-cta .btn-primary:hover {
  background: var(--bg);
  color: var(--ink) !important;
}


/* ---------- ABOUT PAGE ---------- */
.about-hero { padding: var(--space-xl) 0 var(--space-lg); }
.about-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.about-hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-md);
}
.about-hero h1 em { font-style: italic; font-weight: 400; color: var(--accent); }
.about-hero-subhead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
}
.about-hero-image-wrap { position: relative; }
.about-hero-image {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  filter: grayscale(15%) contrast(1.02);
}
@media (min-width: 900px) {
  .about-hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-xl);
  }
  .about-hero-image { max-width: none; }
}

.reading-section { padding: var(--space-lg) 0; }
.reading-section.alt {
  background: var(--bg-warm);
  position: relative;
}
.reading-section.alt::before, .reading-section.alt::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
.reading-section.alt::before { top: 0; }
.reading-section.alt::after { bottom: 0; }
.reading-inner {
  max-width: var(--reading-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.reading-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 500;
  margin-bottom: var(--space-md);
  line-height: 1.15;
}
.reading-section p {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: var(--space-sm);
}
.reading-section p:last-child { margin-bottom: 0; }
.reading-section em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink);
}

.influences-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
}
.influences-list li {
  padding: var(--space-sm) 0;
  border-top: 1px solid var(--line);
}
.influences-list li:last-child { border-bottom: 1px solid var(--line); }
.influences-list strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink);
  display: block;
  margin-bottom: 0.3rem;
}
.influences-list span {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.pull-quote {
  max-width: var(--reading-width);
  margin: var(--space-lg) auto;
  padding: 0 var(--space-md);
}
.pull-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.35;
  color: var(--ink);
  padding-left: var(--space-md);
  border-left: 2px solid var(--accent);
}


/* ---------- BOOKING PAGE ---------- */
.booking-hero {
  padding: clamp(4rem, 8vw, 7rem) 0 3rem;
}
.booking-hero-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: end;
}
.booking-hero h1 {
  margin-top: 1rem;
  max-width: 760px;
  font-size: clamp(3.1rem, 8vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}
.booking-hero h1 em {
  color: var(--accent);
  font-style: italic;
}
.booking-intro {
  max-width: 640px;
  margin-top: 1.4rem;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.6;
}
.booking-note {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}
.booking-note strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
}
.booking-panel {
  padding: 0 0 var(--space-xl);
}
.booking-panel-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.booking-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(228, 221, 208, 0.38);
}
.booking-sidebar {
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-right: 1px solid var(--line);
}
.booking-sidebar h2 {
  max-width: 320px;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 400;
}
.booking-list {
  margin-top: 1.5rem;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.booking-list li {
  padding: 0.8rem 0;
  border-top: 1px solid var(--line);
}
.booking-list strong {
  color: var(--ink);
  font-weight: 600;
}
.calendar-frame-wrap {
  min-height: 760px;
  padding: clamp(0.75rem, 2vw, 1.25rem);
  background: var(--bg);
}
.calendar-frame {
  width: 100%;
  height: 760px;
  min-height: 760px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}
.booking-fallback {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.booking-fallback .btn {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  flex: none;
}
@media (max-width: 860px) {
  .booking-hero-inner,
  .booking-shell {
    grid-template-columns: 1fr;
  }
  .booking-note {
    max-width: 640px;
  }
  .booking-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .calendar-frame-wrap,
  .calendar-frame {
    height: 680px;
    min-height: 680px;
  }
}
@media (max-width: 560px) {
  .booking-hero {
    padding-top: 3rem;
  }
  .booking-fallback {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* ---------- QUIZ PAGE ---------- */
.quiz-hero {
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  text-align: center;
}
.quiz-hero-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}
.quiz-hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: var(--space-md);
}
.quiz-hero p {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.6;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.quiz-embed {
  max-width: 900px;
  margin: 0 auto var(--space-xl);
  padding: 0 var(--space-md);
}
.quiz-frame-wrap {
  background: var(--bg-warm);
  border: 1px solid var(--line);
  padding: var(--space-sm);
}
.quiz-frame {
  width: 100%;
  min-height: 760px;
  border: 0;
  display: block;
  background: transparent;
}
.fallback {
  max-width: 900px;
  margin: var(--space-sm) auto 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  text-align: center;
}


/* ---------- PRIVACY PAGE ---------- */
.policy {
  max-width: var(--reading-width);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md) var(--space-lg);
}
.policy h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-sm);
}
.policy .updated {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
}
.policy h2 {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  margin: var(--space-lg) 0 var(--space-sm);
}
.policy p, .policy li {
  color: var(--ink);
  line-height: 1.7;
}
.policy ul { margin: 0 0 1em var(--space-md); }
.policy li { margin-bottom: 0.4em; }


/* ---------- ACCESSIBILITY ---------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
