/* ============================================
   TOKENS & RESET
============================================ */
:root {
  --burgundy:       #4A2620;
  --burgundy-deep:  #2C1A16;
  --terracotta:     #D9573C;
  --terracotta-dark:#be4a30;
  --cream:          #FBFAF6;
  --sage:           #7A9E7A;
  --sage-light:     rgba(122, 158, 122, 0.12);
  --warm-dark:      #2C2420;
  --warm-gray:      #6B6560;
  --divider:        rgba(74, 38, 32, 0.08);
  --white:          #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--warm-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; }
ul { list-style: none; }

/* ============================================
   NAVIGATION
============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 60px;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.nav.scrolled {
  background: var(--burgundy);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
  font-size: 1.45rem; font-weight: 700;
  color: var(--cream); letter-spacing: -0.02em;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(251, 250, 246, 0.82);
  letter-spacing: 0.01em; transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a.active { color: var(--cream); font-weight: 600; }
.nav-book {
  background: var(--terracotta);
  color: var(--cream) !important;
  padding: 10px 24px; border-radius: 100px;
  font-weight: 600 !important;
  box-shadow: 0 2px 12px rgba(217, 87, 60, 0.3);
  transition: background 0.2s, transform 0.15s !important;
}
.nav-book:hover {
  background: var(--terracotta-dark) !important;
  transform: translateY(-1px);
}

/* ============================================
   PAGE HERO (inner pages)
============================================ */
.page-hero {
  background: var(--burgundy);
  position: relative;
  padding: 160px 60px 110px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 60%; height: 140%;
  background: radial-gradient(ellipse at 60% 40%, rgba(217, 87, 60, 0.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 1;
}
.page-eyebrow {
  display: block;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(251, 250, 246, 0.5); margin-bottom: 14px;
}
.page-hero-title {
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900; color: var(--terracotta);
  letter-spacing: -0.03em; line-height: 0.95;
  text-transform: uppercase; margin-bottom: 20px;
}
.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(251, 250, 246, 0.7);
  max-width: 540px; line-height: 1.72;
}

/* ============================================
   WAVE
============================================ */
.hero-wave {
  position: absolute; bottom: -2px; left: 0;
  width: 100%; overflow: hidden; line-height: 0;
}
.hero-wave svg { display: block; width: 100%; height: 90px; }

/* ============================================
   SECTION UTILITIES
============================================ */
.content-section { padding: 80px 60px; }
.content-section.alt-bg { background: var(--white); }
.content-section + .content-section { padding-top: 0; }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: block;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 12px;
}
.section-heading {
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700; color: var(--warm-dark);
  letter-spacing: -0.025em; line-height: 1.18;
  margin-bottom: 24px;
}
.section-intro {
  font-size: 1rem; color: var(--warm-gray);
  line-height: 1.78; max-width: 680px;
  margin-bottom: 48px;
}

/* ============================================
   BUTTONS
============================================ */
.btn-primary {
  display: inline-block;
  background: var(--terracotta); color: var(--cream);
  padding: 16px 38px; border-radius: 100px;
  font-size: 0.975rem; font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 24px rgba(217, 87, 60, 0.4);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(217, 87, 60, 0.5);
}
.btn-outline {
  display: inline-block;
  background: transparent; color: var(--burgundy);
  padding: 13px 30px; border-radius: 100px;
  border: 2px solid var(--burgundy);
  font-size: 0.95rem; font-weight: 600;
  transition: background 0.22s, color 0.22s;
}
.btn-outline:hover { background: var(--burgundy); color: var(--cream); }

/* ============================================
   CTA STRIP
============================================ */
.cta-strip { background: var(--burgundy); padding: 96px 60px; text-align: center; }
.cta-strip-inner { max-width: 560px; margin: 0 auto; }
.cta-strip h2 {
  font-family: 'Fraunces', serif; font-optical-sizing: auto;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700; color: var(--cream);
  letter-spacing: -0.025em; margin-bottom: 16px; line-height: 1.2;
}
.cta-strip p {
  font-size: 0.975rem; color: rgba(251, 250, 246, 0.68);
  margin-bottom: 44px; line-height: 1.7;
}

/* ============================================
   FOOTER
============================================ */
footer {
  background: var(--burgundy-deep);
  padding: 44px 60px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
}
.footer-brand-name {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--cream); letter-spacing: -0.02em;
}
.footer-brand-tag { font-size: 0.78rem; color: rgba(251, 250, 246, 0.4); margin-top: 4px; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 0.84rem; color: rgba(251, 250, 246, 0.48); transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-copy { font-size: 0.78rem; color: rgba(251, 250, 246, 0.3); }

/* ============================================
   ABOUT PAGE
============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 72px; align-items: start;
}
.about-body p {
  font-size: 1rem; color: var(--warm-gray);
  line-height: 1.82; margin-bottom: 18px;
}
.about-body p:last-child { margin-bottom: 0; }

.about-photo-wrap { position: sticky; top: 110px; }
.about-photo-card {
  background: rgba(74, 38, 32, 0.04);
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--divider);
}
.about-photo-card img { width: 100%; display: block; }
.about-photo-placeholder {
  aspect-ratio: 4 / 5;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; color: var(--warm-gray);
  font-size: 0.82rem; text-align: center;
  padding: 24px; line-height: 1.5;
}
.about-photo-caption {
  padding: 14px 20px;
  font-size: 0.8rem; color: var(--warm-gray);
  border-top: 1px solid var(--divider);
  font-style: italic;
}

.chips-section { margin-top: 36px; }
.chips-section .section-label { margin-bottom: 14px; }
.chips-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: var(--white); border: 1px solid var(--divider);
  border-radius: 100px; padding: 7px 16px;
  font-size: 0.84rem; color: var(--warm-gray); font-weight: 500;
}

.approach-list { margin-top: 12px; }
.approach-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--divider);
  font-size: 0.975rem; color: var(--warm-dark); font-weight: 500;
}
.approach-list li:last-child { border-bottom: none; }
.approach-bullet {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--terracotta); flex-shrink: 0;
}

.personal-section {
  background: var(--white);
  border-radius: 20px; padding: 48px;
  border: 1px solid var(--divider);
}
.personal-section .section-label { margin-bottom: 16px; }
.personal-section p {
  font-size: 1rem; color: var(--warm-gray);
  line-height: 1.82; margin-bottom: 16px;
}
.personal-section p:last-child { margin-bottom: 0; }

/* ============================================
   SERVICES PAGE
============================================ */
.service-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px; align-items: start;
  padding: 52px 0; border-bottom: 1px solid var(--divider);
}
.service-item:first-child { padding-top: 0; border-top: 1px solid var(--divider); }
.service-item:last-child { border-bottom: none; }

.service-number {
  font-family: 'Fraunces', serif;
  font-size: 4rem; font-weight: 900;
  color: rgba(74, 38, 32, 0.08);
  letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 10px;
}
.service-title {
  font-family: 'Fraunces', serif; font-optical-sizing: auto;
  font-size: 1.35rem; font-weight: 700;
  color: var(--warm-dark);
  letter-spacing: -0.02em; line-height: 1.25;
}
.service-abbr {
  display: inline-block; margin-top: 10px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--terracotta);
}
.service-body p {
  font-size: 0.975rem; color: var(--warm-gray);
  line-height: 1.8; margin-bottom: 14px;
}
.service-body p:last-child { margin-bottom: 0; }
.service-body ul {
  margin: 14px 0 14px 0;
  display: flex; flex-direction: column; gap: 8px;
}
.service-body ul li {
  display: flex; align-items: baseline; gap: 10px;
  font-size: 0.95rem; color: var(--warm-gray); line-height: 1.65;
}
.service-body ul li::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0; margin-top: 8px;
}

/* ============================================
   FAQS PAGE
============================================ */
.faq-list { }
.faq-item { border-bottom: 1px solid var(--divider); }
.faq-item:first-child { border-top: 1px solid var(--divider); }

.faq-question {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 24px 0; cursor: pointer;
  list-style: none;
  font-size: 1rem; font-weight: 600;
  color: var(--warm-dark); line-height: 1.45;
  transition: color 0.2s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--terracotta); }

.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%; background: var(--divider);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--warm-gray);
  transition: background 0.2s, color 0.2s, transform 0.25s;
  line-height: 1;
}
details[open] .faq-question { color: var(--terracotta); }
details[open] .faq-icon {
  background: var(--terracotta); color: var(--cream);
  transform: rotate(45deg);
}
.faq-answer {
  padding-bottom: 28px;
  font-size: 0.975rem; color: var(--warm-gray);
  line-height: 1.8; max-width: 760px;
  animation: faqFadeIn 0.2s ease;
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   FEES PAGE
============================================ */
.fee-cards {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-bottom: 64px;
}
.fee-card {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 18px; padding: 36px;
  position: relative; overflow: hidden;
}
.fee-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--terracotta);
}
.fee-card-title {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--warm-dark); letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.fee-card-duration { font-size: 0.82rem; color: var(--warm-gray); margin-bottom: 24px; }
.fee-card-amount {
  font-family: 'Fraunces', serif;
  font-size: 2.8rem; font-weight: 900;
  color: var(--burgundy); letter-spacing: -0.04em; line-height: 1;
}
.fee-card-note { font-size: 0.82rem; color: var(--warm-gray); margin-top: 12px; }

.rebate-block { margin-bottom: 48px; }
.rebate-block .section-heading { margin-bottom: 16px; }
.rebate-block > p {
  font-size: 0.975rem; color: var(--warm-gray);
  line-height: 1.78; margin-bottom: 20px; max-width: 680px;
}
.rebate-box {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 14px; padding: 28px 32px;
  margin-bottom: 14px;
}
.rebate-box-title {
  font-family: 'Fraunces', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--warm-dark); letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.rebate-box p { font-size: 0.92rem; color: var(--warm-gray); line-height: 1.7; margin-bottom: 8px; }
.rebate-box p:last-child { margin-bottom: 0; }
.rebate-box ul { margin-top: 10px; display: flex; flex-direction: column; gap: 8px; }
.rebate-box ul li {
  display: flex; align-items: baseline; gap: 10px;
  font-size: 0.92rem; color: var(--warm-gray); line-height: 1.65;
}
.rebate-box ul li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--sage); flex-shrink: 0; margin-top: 7px;
}
.rebate-note {
  font-size: 0.82rem; color: var(--warm-gray);
  font-style: italic; margin-top: 16px;
  padding-top: 16px; border-top: 1px solid var(--divider);
}

.cancellation-box {
  background: rgba(74, 38, 32, 0.04);
  border: 1px solid rgba(74, 38, 32, 0.12);
  border-radius: 18px; padding: 40px;
  margin-top: 16px;
}
.cancellation-box .section-heading { font-size: 1.5rem; margin-bottom: 14px; }
.cancellation-box > p {
  font-size: 0.975rem; color: var(--warm-gray);
  line-height: 1.78; margin-bottom: 28px; max-width: 640px;
}
.cancellation-table {
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--divider);
}
.cancellation-row {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--white);
}
.cancellation-row.header { background: var(--burgundy); }
.cancellation-row.header .cancellation-cell {
  color: rgba(251, 250, 246, 0.7);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.cancellation-row + .cancellation-row { border-top: 1px solid var(--divider); }
.cancellation-cell {
  padding: 14px 20px; font-size: 0.92rem;
  color: var(--warm-dark); line-height: 1.5;
}
.cancellation-cell:first-child { border-right: 1px solid var(--divider); }
.cancellation-footer {
  font-size: 0.84rem; color: var(--warm-gray);
  line-height: 1.7; margin-top: 18px; font-style: italic;
}

/* ============================================
   PROSE (Privacy Policy)
============================================ */
.prose { max-width: 760px; }
.prose-updated { font-size: 0.82rem; color: var(--warm-gray); margin-bottom: 36px; font-style: italic; }
.prose h2 {
  font-family: 'Fraunces', serif; font-optical-sizing: auto;
  font-size: 1.4rem; font-weight: 700;
  color: var(--warm-dark); letter-spacing: -0.02em;
  margin-top: 52px; margin-bottom: 16px; line-height: 1.25;
}
.prose h2:first-of-type { margin-top: 0; }
.prose p {
  font-size: 0.975rem; color: var(--warm-gray);
  line-height: 1.82; margin-bottom: 16px;
}
.prose ul { margin: 12px 0 20px; display: flex; flex-direction: column; gap: 8px; }
.prose ul li {
  display: flex; align-items: baseline; gap: 10px;
  font-size: 0.95rem; color: var(--warm-gray); line-height: 1.65;
}
.prose ul li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--terracotta); flex-shrink: 0; margin-top: 8px;
}
.prose hr { border: none; border-top: 1px solid var(--divider); margin: 44px 0; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 960px) {
  .nav { padding: 18px 24px; }
  .nav-links .hide-mobile { display: none; }

  .page-hero { padding: 120px 24px 90px; }
  .content-section { padding: 56px 24px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-wrap { position: static; }

  /* Services */
  .service-item { grid-template-columns: 1fr; gap: 16px; padding: 36px 0; }
  .service-item:first-child { border-top: none; }
  .service-number { font-size: 2.5rem; }

  /* Fees */
  .fee-cards { grid-template-columns: 1fr; }
  .cancellation-row { grid-template-columns: 1fr; }
  .cancellation-cell:first-child { border-right: none; border-bottom: 1px solid var(--divider); }

  .cta-strip { padding: 64px 24px; }

  footer { flex-direction: column; text-align: center; padding: 40px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 600px) {
  .personal-section { padding: 28px; }
  .cancellation-box { padding: 24px; }
}
