/* ── Fonts ─────────────────────────────────────────────── */
@font-face {
  font-family: 'Northwell';
  src: url('assets/fonts/northwell.woff2') format('woff2');
  font-display: swap;
}

/* ── Reset ──────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: #f4efe6;
  color: #061d3c;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --cream:       #f4efe6;
  --navy:        #061d3c;
  --navy-mid:    #2d4270;
  --gold:        #D9B66F;
  --amber:       #e8d09e;
  --vh-heading:  #061d3c;
  --vh-body:     rgba(6, 29, 60, 0.4);
  --vh-body-mid: rgba(6, 29, 60, 0.55);
  --vh-accent:   #c9a84c;
}

/* ── Container ──────────────────────────────────────────── */
.container {
  max-width: 80rem;
  margin: 0 auto;
}

/* ── Tag labels ─────────────────────────────────────────── */
.tag {
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(6, 29, 60, 0.38);
}

.tag--gold {
  color: rgba(201, 168, 76, 0.95);
}

.tag--gold-faint {
  color: rgba(217, 182, 111, 0.5);
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 9999px;
  transition: background 180ms ease;
}

.btn--amber {
  color: #1a1a1a;
  background: var(--amber);
  padding: 0.92rem 2.8rem;
}

.btn--amber:hover {
  background: #f0ddb5;
}

.btn--navy {
  color: var(--cream);
  background: var(--navy);
  padding: 0.9rem 2.5rem;
  align-self: flex-start;
  width: fit-content;
}

.btn--navy:hover {
  background: #0d2d52;
}

.btn--gold {
  color: var(--navy);
  background: var(--gold);
  padding: 1rem 3rem;
}

.btn--gold:hover {
  background: #e8c97a;
}

/* ── Text link ──────────────────────────────────────────── */
.text-link {
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid rgba(6, 29, 60, 0.25);
  padding-bottom: 2px;
  align-self: flex-start;
}

.text-link:hover {
  border-color: var(--navy);
}

/* ══════════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════════ */

/* Zero-height sticky anchor lets hero fill the full viewport behind the nav */
.nav-anchor {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 0;
  overflow: visible;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.5rem, 5vw, 3.5rem);
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-color 300ms ease;
}

.site-header.scrolled {
  background: rgba(6, 29, 60, 0.97);
  backdrop-filter: blur(18px);
  border-color: rgba(255, 255, 255, 0.08);
}

.nav-logo {
  font-family: 'Northwell', cursive;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.25));
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a:not(.nav-cta) {
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

.site-nav a:not(.nav-cta):hover {
  color: #fff;
}

.nav-cta {
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: var(--amber);
  padding: 0.52rem 1.5rem;
  border-radius: 9999px;
  transition: background 180ms ease;
}

.nav-cta:hover {
  background: #f0ddb5;
}

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background: linear-gradient(160deg, #061d3c 0%, #2d4270 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 7vw, 5rem) clamp(2rem, 7vw, 5rem) clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.hero__logo {
  width: 530px;
  max-width: 85vw;
  height: auto;
  filter: drop-shadow(0 2px 28px rgba(0, 0, 0, 0.4));
}

.hero__divider {
  width: 40px;
  height: 1px;
  background: rgba(217, 182, 111, 0.35);
}

.hero__headline {
  font-family: 'Northwell', cursive;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.2;
  max-width: 580px;
  margin-top: 0.25rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(2rem, 5vw, 3.5rem);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.scroll-line {
  width: 1px;
  height: 32px;
  background: rgba(217, 182, 111, 0.22);
}

.scroll-label {
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.47rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(217, 182, 111, 0.22);
  writing-mode: vertical-rl;
}

/* ══════════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════════ */
.services {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 7vw, 5rem);
  background: var(--cream);
  border-top: 1px solid rgba(6, 29, 60, 0.07);
}

.services__header {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.services__heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--vh-heading);
  line-height: 1.15;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid rgba(6, 29, 60, 0.07);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card__img {
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

.service-card__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-grow: 1;
}

.service-num {
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--vh-accent);
}

.service-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.38rem;
  font-weight: 400;
  color: var(--vh-heading);
  line-height: 1.2;
}

.service-desc {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.87rem;
  line-height: 1.82;
  color: var(--vh-body);
  flex-grow: 1;
}

.service-link {
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid rgba(6, 29, 60, 0.22);
  padding-bottom: 1px;
  align-self: flex-start;
  margin-top: 0.5rem;
  transition: border-color 180ms ease;
}

.service-link:hover {
  border-color: var(--navy);
}

/* ══════════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════════ */
.about {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 7vw, 5rem);
  background: #ffffff;
  border-top: 1px solid rgba(6, 29, 60, 0.07);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 1rem;
}

.about__name {
  font-family: 'Northwell', cursive;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--vh-heading);
  line-height: 1;
}

.about__quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--vh-body-mid);
  line-height: 1.65;
  border: none;
  padding: 0;
}

.about__bio {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--vh-body);
}

.about__photo {
  aspect-ratio: 3 / 4;
  min-height: 380px;
  border-radius: 2px;
  overflow: hidden;
  margin-top: -3rem;
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}

/* ══════════════════════════════════════════════════════════
   RETREATS
   ══════════════════════════════════════════════════════════ */
.retreats {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 7vw, 5rem);
  background: var(--cream);
  border-top: 1px solid rgba(6, 29, 60, 0.07);
}

.retreats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.retreats__photo {
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  overflow: hidden;
}

.retreats__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.retreats__text {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.retreats__heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--vh-heading);
  line-height: 1.1;
}

.retreats__desc {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.92rem;
  line-height: 1.88;
  color: var(--vh-body);
}

/* ══════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════ */
.contact {
  padding: clamp(5rem, 10vw, 7.5rem) clamp(1.5rem, 7vw, 5rem);
  background: var(--navy);
  border-top: 1px solid rgba(6, 29, 60, 0.07);
}

.contact__inner {
  max-width: 44rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}

.contact__intro {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1.05;
  font-style: italic;
}

.contact__sub {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.96rem;
  line-height: 1.78;
  color: rgba(217, 182, 111, 0.45);
}

/* Form */
.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(217, 182, 111, 0.5);
}

.form-field input,
.form-field textarea {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  color: rgba(217, 182, 111, 0.85);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(217, 182, 111, 0.2);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  outline: none;
  width: 100%;
  transition: border-color 180ms ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(217, 182, 111, 0.3);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(217, 182, 111, 0.5);
}

.form-field textarea {
  resize: vertical;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(217, 182, 111, 0.4);
  pointer-events: none;
}

.select-wrap select {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  color: rgba(217, 182, 111, 0.35);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(217, 182, 111, 0.2);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  outline: none;
  appearance: none;
  cursor: pointer;
  width: 100%;
  transition: border-color 180ms ease;
}

.select-wrap select:focus {
  border-color: rgba(217, 182, 111, 0.5);
}

.select-wrap select option {
  background: var(--navy);
  color: rgba(217, 182, 111, 0.85);
}

.select-wrap select.has-value {
  color: rgba(217, 182, 111, 0.85);
}

.form-submit {
  align-self: center;
  margin-top: 0.5rem;
}

.form-notice {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.72rem;
  line-height: 1.6;
  color: rgba(217, 182, 111, 0.38);
  text-align: center;
  margin-top: 0.25rem;
}

.form-notice a {
  color: rgba(217, 182, 111, 0.5);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact__form-wrap {
  width: 100%;
}

/* Thank you state */
.contact__form-wrap[hidden],
.contact__thanks[hidden] {
  display: none;
}

.contact__thanks {
  padding: 2.5rem;
  border: 1px solid rgba(217, 182, 111, 0.2);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.thanks__name {
  font-family: 'Northwell', cursive;
  font-size: 2.5rem;
  color: var(--gold);
}

.contact__thanks p {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  color: rgba(217, 182, 111, 0.55);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.site-footer {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 7vw, 5rem);
  background: var(--cream);
  border-top: 1px solid rgba(6, 29, 60, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
}

.footer__logo {
  width: 132px;
  filter: brightness(0) opacity(0.42);
}

.footer__ig {
  width: 3.4rem;
  height: 3.4rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(6, 29, 60, 0.22);
  border-radius: 9999px;
  color: rgba(6, 29, 60, 0.42);
  transition: color 180ms ease, border-color 180ms ease;
}

.footer__ig:hover {
  color: var(--navy);
  border-color: rgba(6, 29, 60, 0.5);
}

.footer__ig svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.footer__tagline {
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(6, 29, 60, 0.38);
}

.footer__copy {
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.57rem;
  font-weight: 300;
  color: rgba(6, 29, 60, 0.38);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 820px) {
  .services__grid {
    grid-template-columns: 1fr;
    max-width: 26rem;
    margin: 0 auto;
  }

  .about__grid,
  .retreats__grid {
    grid-template-columns: 1fr;
  }

  .about__photo {
    min-height: 300px;
  }

  .retreats__photo {
    order: -1;
  }

  .retreats__text .btn--navy {
    align-self: center;
  }
}

/* ── Hamburger button ───────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.2rem;
  height: 2.2rem;
  padding: 0.2rem;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 240ms ease, opacity 240ms ease;
  transform-origin: center;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Mobile menu panel ──────────────────────────────────── */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(6, 29, 60, 0.98);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  padding: 1rem clamp(1.5rem, 5vw, 3.5rem) 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 0;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 180ms ease;
}

.mobile-menu a:hover {
  color: #fff;
}

.mobile-menu__cta {
  margin-top: 1rem;
  border-bottom: none !important;
  color: #1a1a1a !important;
  background: var(--amber);
  padding: 0.75rem 1.5rem !important;
  border-radius: 9999px;
  text-align: center;
  font-weight: 600 !important;
}

.mobile-menu__cta:hover {
  background: #f0ddb5;
}

@media (max-width: 640px) {
  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .site-nav .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .site-nav {
    gap: 0;
  }

  .hero__headline {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════
   INNER PAGE HERO
   ══════════════════════════════════════════════════════════ */
.page-hero {
  min-height: 48vh;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(160deg, #061d3c 0%, #2d4270 100%);
  padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 7vw, 5rem) clamp(3rem, 5vw, 4.5rem);
}

.page-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 80rem;
  width: 100%;
  margin: 0 auto;
}

.page-hero__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
}

.page-hero__intro {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.7;
  color: rgba(244, 239, 230, 0.7);
  max-width: 36rem;
}

/* ══════════════════════════════════════════════════════════
   FEATURE SECTIONS (inner pages)
   ══════════════════════════════════════════════════════════ */
.feature-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 7vw, 5rem);
  border-top: 1px solid rgba(6, 29, 60, 0.07);
}

.feature-section--cream { background: var(--cream); }
.feature-section--white { background: #fff; }

.feature-section__grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.feature-section__grid--reverse .feature-section__image {
  order: 2;
}

.feature-section__image {
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  overflow: hidden;
}

.feature-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-section__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-section__heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--vh-heading);
  line-height: 1.1;
}

.feature-section__body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.88;
  color: var(--vh-body);
}

.feature-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0;
}

.feature-details li {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--vh-body);
  padding-left: 1.1rem;
  position: relative;
}

.feature-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--vh-accent);
}

/* ══════════════════════════════════════════════════════════
   PAGE TESTIMONIALS
   ══════════════════════════════════════════════════════════ */
.page-testimonials {
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 7vw, 5rem);
  background: var(--cream);
  border-top: 1px solid rgba(6, 29, 60, 0.07);
  text-align: center;
}

.page-testimonials__heading {
  font-family: 'Northwell', cursive;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--vh-heading);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.page-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 72rem;
  margin: 0 auto;
  text-align: left;
}

/* ══════════════════════════════════════════════════════════
   PAGE CTA
   ══════════════════════════════════════════════════════════ */
.page-cta {
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 7vw, 5rem);
  background: var(--navy);
  border-top: 1px solid rgba(6, 29, 60, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.page-cta__heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1.1;
}

.page-cta__sub {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(217, 182, 111, 0.45);
  max-width: 30rem;
}

/* ══════════════════════════════════════════════════════════
   BOOKING SECTION
   ══════════════════════════════════════════════════════════ */
.booking-section {
  background: var(--navy);
  border-top: 1px solid rgba(6, 29, 60, 0.07);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.booking-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 7vw, 5rem) 2rem;
}

/* Nav active link */
.site-nav a.active {
  color: #fff;
}

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

/* ── Focus ──────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
