/* Pathway Estate Planning — styles
   Type: Source Serif 4 (headlines) + Inter (body)
   Colors: warm neutrals + sage accent
*/

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,300;8..60,400;8..60,500;8..60,600&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Palette */
  --ink: #1A1D1A;
  --stone: #6B6E68;
  --mist: #B7BAB4;
  --hairline: #E5E1D8;
  --paper: #FAF8F4;
  --cream: #F2EFE8;
  --sage: #2F4D7A;
  --sage-deep: #1F3559;
  --sage-light: #DCE6F2;
  --clay: #B8744D;

  /* Type */
  --serif: 'Source Serif 4', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing — golden ratio scale (φ ≈ 1.618), base 16 */
  --s-1: 6px;    /* 16 / φ² */
  --s-2: 10px;   /* 16 / φ */
  --s-3: 16px;   /* base */
  --s-4: 26px;   /* 16 · φ */
  --s-5: 42px;   /* 16 · φ² */
  --s-6: 68px;   /* 16 · φ³ */
  --s-7: 110px;  /* 16 · φ⁴ */
  --s-8: 178px;  /* 16 · φ⁵ */

  --container: 1200px;
  --prose: 720px;
  --wide: 1100px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
section[id] { scroll-margin-top: 88px; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.618;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
  line-height: 1.15;
}

h1 { font-size: clamp(40px, 6vw, 68px); line-height: 1.05; letter-spacing: -0.02em; font-weight: 400; }
h2 { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.15; letter-spacing: -0.015em; }
h3 { font-size: clamp(20px, 1.6vw, 24px); line-height: 1.25; }
h4 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage);
  margin: 0 0 var(--s-3);
}

p { margin: 0; text-wrap: pretty; }

a { color: inherit; }

/* Layout helpers */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .container { padding: 0 20px; } }
.container--prose { max-width: var(--prose); }
.container--wide { max-width: var(--wide); }

section { padding: var(--s-7) 0; }
@media (max-width: 720px) { section { padding: var(--s-6) 0; } }

.section--cream { background: var(--cream); }
.section--ink   { background: var(--ink); color: var(--paper); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--paper); }

/* Header */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.header.is-scrolled {
  border-bottom-color: var(--hairline);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; padding: 18px 32px;
  max-width: 1400px; margin: 0 auto;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink); text-decoration: none;
}
.logo__mark {
  width: 40px; height: 40px;
}
.logo__text {
  display: flex; flex-direction: column; line-height: 1;
}
.logo__name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--ink);
}
.logo__sub {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 4px;
}

.nav {
  display: flex; align-items: center; gap: 32px;
}
.nav__toggle {
  display: none;
  background: none; border: 1px solid var(--hairline);
  width: 44px; height: 44px; border-radius: 12px;
  align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink);
}
@media (max-width: 1024px) {
  .nav__toggle { display: inline-flex; border: none; }
  .nav {
    position: fixed; inset: 72px 0 0 0;
    background: var(--paper);
    flex-direction: column; align-items: stretch;
    gap: 0; padding: 24px;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
    border-top: 1px solid var(--hairline);
    z-index: 49;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__link { padding: 14px 8px; font-size: 18px; border-bottom: 1px solid var(--hairline); justify-content: space-between; width: 100%; }
  .nav__item { width: 100%; }
  .nav__dropdown {
    position: static; transform: none; opacity: 1; pointer-events: auto;
    box-shadow: none; border: none; padding: 4px 0 12px;
    min-width: 0; max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav__item.is-open .nav__dropdown { max-height: 600px; }
  .header__cta .btn { display: none; }
}
@media (max-width: 720px) {
  .header__inner { padding: 14px 20px; gap: 12px; }
  .logo__mark { width: 34px; height: 34px; }
  .logo__name { font-size: 18px; }
  .logo__sub { font-size: 9px; letter-spacing: 0.18em; }
}
.nav__link {
  font-size: 15px; color: var(--ink); text-decoration: none;
  font-weight: 500; padding: 8px 0; background: none; border: none;
  font-family: inherit;
  position: relative;
  display: inline-flex; align-items: center; gap: 4px;
  cursor: pointer;
}
.nav__link:hover { color: var(--sage); }
.nav__chev { width: 10px; height: 10px; opacity: 0.5; }

.nav__dropdown {
  position: absolute; top: calc(100% + 6px); left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 12px;
  min-width: 320px;
  box-shadow: 0 18px 40px rgba(20,30,20,0.10);
  opacity: 0; pointer-events: none;
  transition: opacity .18s, transform .18s;
}
.nav__item { position: relative; }
.nav__item.is-open .nav__dropdown {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__link.is-open .nav__chev { transform: rotate(180deg); transition: transform .2s; }
.nav__chev { transition: transform .2s; }
.nav__drop-item {
  display: block; padding: 10px 14px; border-radius: 8px;
  text-decoration: none; color: var(--ink);
  font-size: 15px; font-weight: 500;
}
.nav__drop-item small {
  display: block; font-weight: 400; color: var(--stone); font-size: 13px; margin-top: 2px;
}
.nav__drop-item:hover { background: var(--cream); }

.header__cta { display: flex; align-items: center; gap: 12px; }

/* Buttons */
.btn {
  font-family: var(--sans);
  font-size: 15px; font-weight: 500;
  padding: 15px 24px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: background-color .2s, color .2s, border-color .2s, transform .15s;
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--sage); color: #fff; }
.btn--primary:hover { background: var(--sage-deep); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--mist); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(0,0,0,0.02); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: #000; }
.btn--lg { padding: 18px 30px; font-size: 16px; border-radius: 12px; }
.btn--sm { padding: 11px 18px; font-size: 14px; border-radius: 8px; }
.btn__icon { width: 16px; height: 16px; flex-shrink: 0; }

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
}
@media (max-width: 720px) {
  .hero { min-height: auto; }
  .hero h1 { font-size: 36px; line-height: 1.08; }
  .hero__sub { font-size: 17px; margin-left: auto; margin-right: auto; }
  .hero__ctas { gap: 10px; justify-content: center; }
  .hero__ctas .btn { flex: 1 1 100%; }
  .hero__copy { text-align: center; align-items: center; }
  .hero__eyebrow { margin-left: auto; margin-right: auto; }
  .hero__assure { justify-content: center; text-align: left; }
}
.hero__copy {
  padding: 96px 64px 96px 0;
  max-width: 680px; justify-self: end;
  display: flex; flex-direction: column; justify-content: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; color: var(--sage);
  text-transform: uppercase; letter-spacing: 0.16em;
  margin-bottom: 28px;
  padding: 6px 12px 6px 10px;
  background: var(--sage-light);
  border-radius: 999px;
  align-self: flex-start;
}
.hero__eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--sage); }
.hero h1 { margin-bottom: 24px; }
.hero h1 em {
  font-style: italic; font-family: var(--serif); color: var(--sage);
  font-weight: 300; position: relative;
}
.hero h1 em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 6px; background: var(--sage-light); z-index: -1; border-radius: 3px;
}
.hero__sub {
  font-size: 19px; line-height: 1.6; color: var(--stone);
  max-width: 540px; margin-bottom: 36px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.hero__assure {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--stone);
  max-width: 420px;
}
.hero__assure svg { flex-shrink: 0; margin-top: 2px; color: var(--sage); }
.hero__visual {
  position: relative;
  background: linear-gradient(135deg, #d8d3c2 0%, #b9b09a 40%, #8a8a72 80%, #5e6a52 100%);
  overflow: hidden;
}
.hero__visual image-slot {
  display: block; width: 100%; height: 100%;
}
.hero__visual img,
.local__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(250,248,244,0.5) 0%, transparent 25%);
  pointer-events: none;
}
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero__copy { padding: 64px 32px 48px; max-width: 100%; justify-self: stretch; text-align: center; align-items: center; }
  .hero__copy .hero__eyebrow { margin-left: auto; margin-right: auto; }
  .hero__copy .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__copy .hero__ctas { justify-content: center; }
  .hero__copy .hero__assure { justify-content: center; text-align: left; }
  .hero__visual { min-height: 340px; }
}

/* Trust bar */
.trustbar {
  background: var(--sage-deep);
  color: rgba(255,255,255,0.92);
  padding: 22px 0;
}
.trustbar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
.trust {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; line-height: 1.35;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.trust:last-child { border-right: none; }
@media (max-width: 880px) { .trust { border-right: none; padding-right: 0; } }
.trust__icon {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 880px) {
  .trustbar__inner { grid-template-columns: repeat(2, 1fr); row-gap: 18px; }
}

/* Problem (full width) */
.problem-section { padding-bottom: 56px; }
.problem { max-width: 880px; margin: 0 auto; }
.problem h2 { margin: 16px 0 24px; max-width: 18ch; font-size: clamp(32px, 4vw, 52px); }
.problem__lede { font-size: 20px; color: var(--stone); margin-bottom: 36px; max-width: 56ch; line-height: 1.55; }
.problem__intro { font-size: 15px; color: var(--stone); margin: 8px 0 16px; }
.problem__list {
  list-style: none; padding: 0; margin: 16px 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px;
}
@media (max-width: 720px) { .problem__list { grid-template-columns: 1fr; } }
.problem__list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 16px; color: var(--ink); line-height: 1.45;
}
.problem__list .check {
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--sage-light); color: var(--sage);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  margin-top: 1px;
}
.problem__close {
  font-size: 19px; color: var(--ink); padding-top: 24px;
  border-top: 1px solid var(--hairline);
  margin-top: 24px; max-width: 56ch;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  line-height: 1.4;
}

/* Why choose */
.why-section { padding-top: 56px; padding-bottom: 96px; }
.why__head { text-align: center; margin-bottom: 48px; max-width: 720px; margin-left: auto; margin-right: auto; }
.why__head h2 { margin: 12px 0 0; }
.why__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 720px) { .why__grid { grid-template-columns: 1fr; } }
.why__card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 36px 32px;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.why__card:hover {
  border-color: var(--sage);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(31, 53, 89, 0.08);
}
.why__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--sage-light); color: var(--sage);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.why__card h3 { margin-bottom: 10px; font-family: var(--serif); font-size: 24px; line-height: 1.2; }
.why__card p { font-size: 15px; color: var(--stone); line-height: 1.65; }

/* Process */
.document-band {
  padding: 0;
  background: var(--paper);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.document-band__inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 64px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.document-band__image {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--hairline);
  box-shadow: 0 20px 50px rgba(31, 53, 89, 0.08);
}
.document-band__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.document-band__copy h2 {
  margin-bottom: 18px;
}
.document-band__copy p {
  color: var(--stone);
  font-size: 18px;
  line-height: 1.65;
  max-width: 44ch;
}
@media (max-width: 880px) {
  .document-band__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

.process { background: var(--cream); position: relative; overflow: hidden; }
.process::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 0%, rgba(47,77,122,0.06), transparent 70%);
  pointer-events: none;
}
.process__head { text-align: center; margin-bottom: 56px; }
.process__head h2 { margin-bottom: 12px; }
.process__head p { color: var(--stone); max-width: 52ch; margin: 0 auto; }
.process__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative;
}
.process__grid::before {
  content: ''; position: absolute; top: 64px; left: calc(12.5% + 10px); right: calc(12.5% + 10px); height: 2px;
  background: linear-gradient(90deg, transparent, var(--sage) 8%, var(--sage) 92%, transparent);
  opacity: 0.25;
  transform: scaleX(0); transform-origin: left center;
  transition: transform 1.2s ease;
}
.process.in-view .process__grid::before { transform: scaleX(1); }
.step {
  position: relative;
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 40px 32px 36px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  opacity: 0; transform: translateY(16px);
}
.process.in-view .step { opacity: 1; transform: translateY(0); }
.process.in-view .step:nth-child(1) { transition: opacity .5s ease .05s, transform .5s ease .05s, box-shadow .35s ease, border-color .35s ease; }
.process.in-view .step:nth-child(2) { transition: opacity .5s ease .15s, transform .5s ease .15s, box-shadow .35s ease, border-color .35s ease; }
.process.in-view .step:nth-child(3) { transition: opacity .5s ease .25s, transform .5s ease .25s, box-shadow .35s ease, border-color .35s ease; }
.process.in-view .step:nth-child(4) { transition: opacity .5s ease .35s, transform .5s ease .35s, box-shadow .35s ease, border-color .35s ease; }
.step:hover {
  border-color: var(--sage);
  box-shadow: 0 12px 36px rgba(31, 53, 89, 0.12);
  transform: translateY(-3px) !important;
}
.step__head {
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
}
.step__num {
  width: 48px; height: 48px; border-radius: 999px;
  background: var(--paper); border: 1.5px solid var(--sage);
  color: var(--sage); display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 19px; font-weight: 500;
  position: relative; z-index: 1; flex-shrink: 0;
}
.step__icon {
  width: 32px; height: 32px; color: var(--sage); opacity: 0.6; margin-left: auto;
}
.step h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; margin-bottom: 14px; letter-spacing: -0.01em; line-height: 1.25; }
.step p { font-size: 15px; color: var(--stone); line-height: 1.7; }
.step__time {
  margin-top: 24px; font-size: 11px; font-weight: 600; color: var(--sage);
  text-transform: uppercase; letter-spacing: 0.12em;
  padding-top: 20px; border-top: 1px solid var(--hairline);
  display: block;
}
@media (max-width: 880px) {
  .process__grid { grid-template-columns: 1fr; gap: 16px; }
  .process__grid::before { display: none; }
}

/* Services */
.services__head { text-align: center; margin-bottom: 56px; }
.services__head h2 { margin-bottom: 12px; }
.services__head p { color: var(--stone); max-width: 56ch; margin: 0 auto; }
.services__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.services__grid > :first-child {
  grid-column: span 2; grid-row: span 2;
  background: linear-gradient(160deg, var(--sage-light), var(--paper));
  border-color: transparent;
}
.services__grid > :first-child .service__icon { width: 48px; height: 48px; }
.services__grid > :first-child h3 { font-size: 28px; }
.services__grid > :first-child p { font-size: 16px; max-width: 38ch; }
@media (max-width: 640px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid > :first-child { grid-column: span 2; grid-row: auto; }
  .services__grid > :first-child h3 { font-size: 22px; }
  .services__grid > :first-child .service__icon { width: 36px; height: 36px; }
}
.services__grid > :nth-child(5),
.services__grid > :nth-child(6),
.services__grid > :nth-child(7) { grid-column: span 1; }
.services__grid--7 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
.service {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 24px;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.service:hover {
  border-color: var(--sage);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(40, 60, 40, 0.06);
}
.service__icon {
  width: 36px; height: 36px;
  color: var(--sage); margin-bottom: 18px;
}
.service h3 { font-family: var(--serif); font-size: 20px; line-height: 1.25; margin-bottom: 8px; }
.service p { font-size: 14px; color: var(--stone); line-height: 1.55; flex: 1; }
.service__arrow {
  margin-top: 18px;
  font-size: 13px; font-weight: 600; color: var(--sage);
  display: inline-flex; align-items: center; gap: 6px;
}

/* Soft CTA */
.softcta {
  text-align: center; padding: 64px 0;
  background:
    radial-gradient(60% 80% at 50% 50%, var(--sage-light) 0%, transparent 70%);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.softcta p {
  font-family: var(--serif); font-size: 22px; color: var(--ink);
  font-style: italic; font-weight: 300;
}
.softcta a {
  color: var(--sage); text-decoration: none; font-weight: 500; font-style: normal;
  font-family: var(--sans); margin-left: 8px;
}
.softcta a:hover { text-decoration: underline; }

/* Testimonials */
.testimonials__head { text-align: center; margin-bottom: 48px; }
.testimonials__viewport {
  position: relative;
  margin: 0 -32px;
  padding: 8px 32px 16px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
@media (max-width: 720px) {
  .testimonials__viewport { margin: 0 -20px; padding: 8px 20px 16px; }
}
.testimonials__track {
  display: flex; gap: 24px;
  animation: tmove 60s linear infinite;
  width: max-content;
}
.testimonials__viewport:hover .testimonials__track,
.testimonials__viewport:focus-within .testimonials__track { animation-play-state: paused; }
@keyframes tmove {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .testimonials__track { animation: none; }
  .testimonials__viewport { mask-image: none; -webkit-mask-image: none; overflow-x: auto; }
}
.testimonial {
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 36px 32px 32px;
  display: flex; flex-direction: column;
  width: 380px; flex-shrink: 0;
  position: relative;
}
.testimonials__track .testimonial:nth-child(6n+1) { background: #F4ECDC; }
.testimonials__track .testimonial:nth-child(6n+2) { background: var(--sage-light); }
.testimonials__track .testimonial:nth-child(6n+3) { background: #EFE7DC; }
.testimonials__track .testimonial:nth-child(6n+4) { background: #E7E2EF; }
.testimonials__track .testimonial:nth-child(6n+5) { background: #DCE6F2; }
.testimonials__track .testimonial:nth-child(6n)   { background: #F0E6E0; }
.testimonial::before {
  content: '“';
  position: absolute; top: 12px; right: 24px;
  font-family: var(--serif); font-size: 84px; line-height: 1;
  color: var(--sage); opacity: 0.12; pointer-events: none;
}
@media (max-width: 720px) { .testimonial { width: 300px; } }
.testimonial__theme {
  font-size: 12px; font-weight: 600; color: var(--sage);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.testimonial__quote {
  font-family: var(--serif); font-size: 19px; line-height: 1.5;
  color: var(--ink); margin-bottom: 20px; flex: 1;
  font-weight: 300;
}
.testimonial__quote::before { content: '"'; }
.testimonial__quote::after { content: '"'; }
.testimonial__stars {
  display: flex; gap: 2px; margin-bottom: 12px; color: #d4a64a;
}
.testimonial__attr {
  font-size: 14px; color: var(--stone);
}
.testimonials__link {
  text-align: center; margin-top: 36px;
  font-size: 15px;
}
.testimonials__link a {
  color: var(--sage); text-decoration: none; font-weight: 500;
}

/* Local trust */
.local {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px;
  align-items: center;
}
@media (max-width: 880px) { .local { grid-template-columns: 1fr; } }
.local__copy h2 { margin-bottom: 20px; }
.local__copy p { color: var(--stone); margin-bottom: 16px; max-width: 50ch; }
.local__visual {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(160deg, var(--sage-light), var(--paper));
  border-radius: 16px;
  position: relative; overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: 0 20px 50px rgba(31, 53, 89, 0.06);
}
.local__visual image-slot { display: block; width: 100%; height: 100%; }

/* FAQ */
.faq__head { text-align: center; margin-bottom: 48px; }
.faq__list {
  display: block;
  max-width: 760px; margin: 0 auto;
}
.faq__item {
  border-top: 1px solid var(--hairline);
  padding: 22px 0;
  transition: padding .25s ease;
}
.faq__item.open { padding: 26px 0; }
.faq__item:last-child { border-bottom: 1px solid var(--hairline); }
.faq__btn {
  width: 100%; text-align: left;
  background: none; border: none; padding: 0;
  font-family: var(--sans);
  font-size: 17px; font-weight: 500; color: var(--ink);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__btn:hover { color: var(--sage); }
.faq__item.open .faq__btn { color: var(--sage); }
.faq__icon {
  width: 24px; height: 24px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  color: var(--sage);
  transition: transform .3s ease;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, padding .25s ease;
}
.faq__item.open .faq__answer {
  max-height: 400px;
  padding-top: 14px;
}
.faq__answer p {
  color: var(--stone); font-size: 16px; line-height: 1.65;
  max-width: 60ch;
}
.faq__see-all {
  text-align: center; margin-top: 36px;
  font-size: 15px;
}
.faq__see-all a { color: var(--sage); text-decoration: none; font-weight: 500; }

/* Final CTA */
.finalcta {
  text-align: center;
  background: var(--ink); color: var(--paper);
  padding: 120px 0;
  position: relative; overflow: hidden;
}
.finalcta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 20% 0%, rgba(220,230,242,0.06), transparent 70%),
    radial-gradient(40% 60% at 80% 100%, rgba(220,230,242,0.04), transparent 70%);
  pointer-events: none;
}
.finalcta > * { position: relative; }
.finalcta h2 { color: var(--paper); margin-bottom: 18px; max-width: 18ch; margin-left: auto; margin-right: auto; }
.finalcta p {
  color: rgba(250,248,244,0.7); font-size: 18px; max-width: 52ch;
  margin: 0 auto 36px;
}
.finalcta__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.finalcta .btn--ghost { color: var(--paper); border-color: rgba(250,248,244,0.4); }
.finalcta .btn--ghost:hover { border-color: var(--paper); background: rgba(250,248,244,0.05); }
.finalcta__phone {
  margin-top: 28px; font-size: 14px; color: rgba(250,248,244,0.6);
}
.finalcta__phone a { color: var(--paper); }

/* Footer */
.footer {
  background: #14171a;
  color: rgba(250,248,244,0.7);
  padding: 80px 0 32px;
  font-size: 14px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (max-width: 960px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer__brand p { font-size: 14px; line-height: 1.6; margin-top: 16px; max-width: 28ch; }
.footer h4 {
  color: var(--paper); font-size: 13px;
  letter-spacing: 0.1em; margin-bottom: 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a { color: rgba(250,248,244,0.7); text-decoration: none; }
.footer a:hover { color: var(--paper); }
.footer__contact-row {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px;
}
.footer__contact-row svg { flex-shrink: 0; margin-top: 3px; opacity: 0.5; }
.footer__regulated {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 18px;
  font-size: 13px;
  line-height: 1.55;
}
.footer__regulated strong { color: var(--paper); font-weight: 500; }
.footer__cred {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(250,248,244,0.5);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 13px;
}
.footer__legal { display: flex; gap: 24px; flex-wrap: wrap; }

/* Newsletter */
.newsletter {
  background: var(--cream);
  padding: 72px 0;
  border-top: 1px solid var(--hairline);
}
.newsletter__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  max-width: var(--wide); margin: 0 auto; padding: 0 32px;
}
@media (max-width: 720px) {
  .newsletter__inner { grid-template-columns: 1fr; gap: 24px; padding: 0 20px; text-align: center; }
}
.newsletter h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 8px; }
.newsletter p { color: var(--stone); font-size: 16px; }
.newsletter__form { display: flex; gap: 8px; }
@media (max-width: 480px) { .newsletter__form { flex-direction: column; } }
.newsletter__form input {
  flex: 1; font-family: var(--sans); font-size: 15px;
  padding: 14px 18px; border: 1px solid var(--hairline);
  border-radius: 10px; background: var(--paper); color: var(--ink);
}
.newsletter__form input:focus {
  outline: 3px solid rgba(47,77,122,0.25); border-color: var(--sage);
}
.newsletter__note { margin-top: 12px; font-size: 13px; color: var(--stone); }

/* Sticky mobile CTA */
.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(250,248,244,0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--hairline);
  padding: 12px 16px;
  display: none;
  z-index: 60;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
  transform: translateY(100%);
  transition: transform .3s ease;
}
.mobile-cta.is-visible { transform: translateY(0); }
.mobile-cta__inner {
  display: flex; gap: 8px; align-items: center;
}
.mobile-cta .btn { flex: 1; padding: 14px; font-size: 15px; }
.mobile-cta__close {
  background: none; border: none; padding: 8px; color: var(--stone); cursor: pointer;
}
@media (max-width: 720px) {
  .mobile-cta { display: block; }
}

/* Booking modal */
.modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20,23,20,0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal__card {
  background: var(--paper);
  border-radius: 16px;
  width: 100%; max-width: 540px;
  padding: 36px;
  position: relative;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 30px 80px rgba(20,30,20,0.25);
  animation: pop .25s cubic-bezier(.2,.8,.2,1);
}
@keyframes pop {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal__close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; cursor: pointer;
  color: var(--stone); padding: 8px;
  border-radius: 999px;
}
.modal__close:hover { color: var(--ink); background: var(--cream); }
.modal h3 { font-family: var(--serif); font-size: 28px; margin-bottom: 8px; line-height: 1.2; }
.modal__lede { color: var(--stone); font-size: 15px; margin-bottom: 24px; }
.form { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 13px; font-weight: 500; color: var(--stone); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--hairline);
  background: #fff;
  border-radius: 10px;
  color: var(--ink);
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 3px solid rgba(92, 113, 89, 0.3);
  outline-offset: 0;
  border-color: var(--sage);
}
.field textarea { resize: vertical; min-height: 80px; }
.field__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .field__row { grid-template-columns: 1fr; } }
.form__assure {
  font-size: 13px; color: var(--stone);
  display: flex; align-items: center; gap: 8px;
  margin-top: 4px;
}
.form__assure svg { color: var(--sage); }
.form__submit { margin-top: 8px; }

.success {
  text-align: center; padding: 16px 0;
}
.success__icon {
  width: 64px; height: 64px; border-radius: 999px;
  background: var(--sage-light); color: var(--sage);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}

/* Accessibility */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible {
  outline: 3px solid rgba(92, 113, 89, 0.5);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Honesty note pattern (utility) */
.honesty {
  background: var(--sage-light);
  border-left: 3px solid var(--sage);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 24px 0;
}
.honesty h4 { color: var(--sage-deep); margin-bottom: 6px; }
.honesty p { color: var(--ink); font-size: 15px; line-height: 1.55; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
