/* ============================================================
   FONTS
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  --bg:           #FAFAF7;
  --bg-warm:      #F0E8D9;
  --bg-section:   #F5EFE5;
  --dark:         #1A1A18;
  --dark-green:   #192A1D;
  --text:         #2A2826;
  --text-muted:   #7A746E;
  --accent:       #C4916A;
  --green:        #3D6B4A;
  --border:       #E4DDD5;
  --white:        #FFFFFF;

  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --section-pad:  clamp(72px, 9vw, 130px);
  --container:    1240px;
  --gap:          clamp(16px, 4vw, 48px);

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth:  cubic-bezier(0.4, 0, 0.2, 1);
  --dur:          0.72s;
  --dur-fast:     0.35s;
}

/* ============================================================
   RESET
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font-body); }
input, textarea, select {
  font-family: var(--font-body);
  font-size: 15px;
  appearance: none;
}

/* ============================================================
   LAYOUT UTILITIES
============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.section { padding: var(--section-pad) 0; }
.section--warm  { background: var(--bg-warm); }
.section--dark  { background: var(--dark-green); color: var(--white); }
.section--white { background: var(--white); }

/* ============================================================
   TYPOGRAPHY
============================================================ */
.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.label--light { color: rgba(255, 255, 255, 0.5); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.12;
  color: var(--dark);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--white); }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1.5px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-smooth),
              border-color var(--dur-fast) var(--ease-smooth),
              transform var(--dur-fast) var(--ease-smooth),
              box-shadow var(--dur-fast) var(--ease-smooth);
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--dur-fast) var(--ease-out);
}

/* Nav booking button — sage pill with two-tone icon, matches .hero__cta */
.nav-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #93b4a3;
  border-radius: 8px;
  color: rgba(255,255,255,0.92);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 0 0 22px;
  overflow: hidden;
  transition: background 0.2s;
}
.nav-book-btn:hover { background: #c9b8ab; }
.nav__cta .nav-book-btn { margin-right: -1px; }
.nav-book-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: 18px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}
.nav-book-btn__icon svg { width: 14px; height: 14px; }

.nav__mobile a.nav-book-btn {
  color: rgba(255,255,255,0.92);
  padding: 0 0 0 22px;
  font-size: 11px;
  letter-spacing: 0.14em;
  border-bottom: none;
  margin-top: 32px;
  align-self: flex-start;
}
.nav__mobile a.nav-book-btn:hover { color: rgba(255,255,255,0.92); padding: 0 0 0 22px; }

/* Outline button (on dark bg) */
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  padding-bottom: 3px;
  transition: gap var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast),
              color var(--dur-fast);
}
.link-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform var(--dur-fast) var(--ease-out);
}
.link-arrow:hover {
  gap: 14px;
  border-color: var(--dark);
  color: var(--dark-green);
}
.link-arrow:hover svg { transform: translate(3px, -3px); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity var(--dur) var(--ease-out),
              transform var(--dur) var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal--left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity var(--dur) var(--ease-out),
              transform var(--dur) var(--ease-out);
}
.reveal--left.visible { opacity: 1; transform: translateX(0); }

.reveal--right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity var(--dur) var(--ease-out),
              transform var(--dur) var(--ease-out);
}
.reveal--right.visible { opacity: 1; transform: translateX(0); }

.reveal--scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity var(--dur) var(--ease-out),
              transform var(--dur) var(--ease-out);
}
.reveal--scale.visible { opacity: 1; transform: scale(1); }

/* Stagger delays */
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }

/* Page load */
.page-load {
  opacity: 0;
  animation: pageIn 0.9s var(--ease-out) 0.1s forwards;
}
@keyframes pageIn {
  to { opacity: 1; }
}

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #e8e2d9;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.3s var(--ease-out);
}
.nav.nav--hidden { transform: translateY(-100%); }

.nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 24px rgba(26, 26, 24, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 0;
}

/* Logo */
.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-right: 20px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #98b6a6;
  text-decoration: none;
}

.nav__logo-cred {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #98b6a6;
  opacity: 0.75;
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 44px;
  margin-left: auto;
}
.nav__links a {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  color: #98b6a6;
  transition: color var(--dur-fast);
  position: relative;
}
.nav__links a em {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.nav__links a::after { display: none; }
.nav__links a:hover { color: var(--green); }

.nav__item--dropdown { position: relative; }
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(26, 26, 24, 0.1);
  padding: 8px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out);
  z-index: 950;
}
.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown a {
  text-transform: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: normal;
  padding: 10px 14px;
  border-radius: 6px;
  color: #7A7670;
  white-space: nowrap;
}
.nav__dropdown a:hover { background: var(--bg-warm); color: var(--dark); }

/* CTA — visible on desktop, hidden on mobile (see max-width: 767px below) */
.nav__cta { display: flex; margin-left: 40px;}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  transition: transform 0.35s var(--ease-out), opacity 0.2s;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: #e9e2d9;
  z-index: 850;
  padding: 96px 32px 48px;
  gap: 2px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out), visibility 0.35s;
}
.nav__mobile.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav__mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
}
.nav__mobile-close svg { width: 22px; height: 22px; }
.nav__mobile a {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1.4;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.3s var(--ease-out);
}
.nav__mobile a:last-of-type { border-bottom: none; }
.nav__mobile a:hover { color: var(--green); padding-left: 12px; }
.nav__mobile-me { font-style: italic; }
.nav__mobile-cta { font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 500; }

.nav__mobile-item { border-bottom: 1px solid var(--border); }
.nav__mobile-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: none;
  border-bottom: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--dark);
  padding: 16px 0;
  transition: color 0.2s;
}
.nav__mobile-toggle:hover { color: var(--green); }
.nav__mobile-toggle-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}
.nav__mobile-item.open .nav__mobile-toggle-icon { transform: rotate(180deg); }

.nav__mobile-dropdown {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease-out);
}
.nav__mobile-item.open .nav__mobile-dropdown { grid-template-rows: 1fr; }
.nav__mobile-dropdown-inner {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.nav__mobile-sub {
  font-family: 'Manrope', sans-serif !important;
  font-size: 17px !important;
  font-weight: 500 !important;
  color: #7A7670 !important;
  padding: 10px 0 10px 16px !important;
  border-bottom: none !important;
}
.nav__mobile-sub:hover { color: var(--dark) !important; padding-left: 22px !important; }

/* ============================================================
   HERO
============================================================ */
.hero {
  background: #E8E2D9;
  height: 100vh;
  position: relative;
}

.hero__center {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 48px;
  background: #E8E2D9;
  box-sizing: border-box;
}

.hero__name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8FA49C;
  margin-bottom: 14px;
}

.hero__title {
  font-family: 'Merriweather', serif;
  font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 400;
  color: #98b6a6;
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
  will-change: transform;
  transform-origin: center center;
}

.hero__welcome {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: rgba(100, 132, 126, 0.55);
  letter-spacing: 0.08em;
  margin-bottom: 0;
}

.hero__sub {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgb(147, 180, 163);
  max-width: 520px;
  margin: 0 auto 0;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 40px;
  background: #93b4a3;
  border-radius: 8px;
  color: rgba(255,255,255,0.92);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 0 0 22px;
  overflow: hidden;
  transition: background 0.2s;
}
.hero__cta:hover { background: #c9b8ab; }
.hero__cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: 18px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}
.hero__cta-icon svg { width: 14px; height: 14px; }

/* ============================================================
   SCROLL GALLERY — separate section below hero
============================================================ */
.scroll-gallery {
  position: relative;
  height: 400vh;
  background: #e8e1d8;
  padding-bottom: clamp(48px, 6vw, 80px);
}

.scroll-gallery__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.scroll-gallery__sticky picture {
  display: contents;
}

.scroll-gallery__img {
  position: absolute;
  width: min(86vw, 1140px);
  height: 80vh;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.75s var(--ease-smooth);
  pointer-events: none;
  user-select: none;
}

.scroll-gallery__img.active {
  opacity: 1;
}

.scroll-gallery--single {
  height: 150vh;
}
.scroll-gallery--single .scroll-gallery__img {
  height: 85vh;
  border-radius: 14px;
}

/* Static single image — no scroll pin/dwell */
.scroll-gallery--single-static {
  height: auto;
  padding: clamp(24px, 3vw, 40px) 0;
}
.scroll-gallery--single-static .scroll-gallery__sticky {
  position: static;
  height: 85vh;
}

/* Plain auto-rotating slider — no scroll pin */
.scroll-gallery--slider {
  height: auto;
  padding: clamp(48px, 6vw, 80px) 0;
}
.scroll-gallery--slider .scroll-gallery__sticky {
  position: relative;
  height: 45rem;
}

/* Homepage hero slider — drop the third image on mobile */
@media (max-width: 767px) {
  .scroll-gallery--slider .scroll-gallery__img:nth-of-type(3) {
    display: none;
  }
}

/* ============================================================
   ABOUT SCROLL CARD
============================================================ */
.about-scroll {
  position: relative;
  background: #e8e1d8;
  padding: clamp(48px, 6vw, 80px) 0;
}

.about-scroll__sticky {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-scroll__card {
  display: flex;
  width: min(85vw, 1160px);
  min-height: 92vh;
  border-radius: 14px;
  overflow: hidden;
}

.about-scroll--short .about-scroll__card {
  min-height: 0;
}
.about-scroll--short .about-scroll__img-wrap img {
  height: 42rem;
}
.about-scroll--short .about-scroll__panel-inner { padding: 32px 44px; }
.about-scroll--short .about-scroll__label { margin-bottom: 12px; }
.about-scroll--short .about-scroll__body { margin-top: 10px; }
.about-scroll--short .btn--sage { margin-top: 18px; }

.about-scroll__panel {
  background: #7d867f;
  flex-shrink: 0;
  overflow: hidden;
  width: min(45vw, 600px);
  opacity: 1;
}

.about-scroll__panel-inner {
  width: min(45vw, 600px);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 52px 44px;
}

.about-scroll__label {
  color: rgb(147, 180, 163);
  letter-spacing: 0.22em;
  font-size: 16px;
  margin-bottom: 20px;
}

.about-scroll__heading {
  font-family: 'Noto Serif', sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0;
}

.about-scroll__heading--pink { color: #c9b7aa; }
.about-scroll__heading--blue { color: #93b4a3; }

.about-scroll__body {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: rgb(228, 220, 209);
  margin-top: 16px;
  padding-top: 0;
}

.about-scroll__body--quals {
  font-weight: 500;
  font-style: italic;
  color: rgb(228, 220, 209);
}

.btn--sage {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 11px 18px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 6px;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  align-self: flex-start;
  transition: background var(--dur-fast);
  white-space: nowrap;
}
.btn--sage svg { width: 13px; height: 13px; }
.btn--sage:hover { background: rgba(255,255,255,0.1); }

.about-scroll__img-wrap {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.about-scroll__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

/* ============================================================
   ABOUT NEW (HOME)
============================================================ */
.about-new {
  background: var(--bg);
}

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100vh;
}

.about-head {
  grid-column: 1;
  grid-row: 1;
  background: #7d867f;
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-image-secondary {
  grid-column: 1;
  grid-row: 2;
  overflow: hidden;
}

.about-image {
  grid-column: 2;
  grid-row: 1 / 3;
  overflow: hidden;
}

.img-cover-about {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-eyebrow {
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-h2 {
  font-family: 'Noto Serif', sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
}

.about-span-pink { color: #c9b7aa; }
.about-span-blue { color: #93b4a3; }

.about-desc-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-body-text {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   ABOUT PREVIEW (HOME) — legacy, kept for other pages
============================================================ */
.about-preview {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.about-preview__grid {
  display: grid;
  grid-template-columns: 1fr 45%;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.about-preview__image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
}
.about-preview__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
  pointer-events: none;
}
.about-preview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.about-preview__image:hover img { transform: scale(1.04); }

.about-preview__text { display: flex; flex-direction: column; gap: 20px; }

.about-preview__text h2 {
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.1;
}

.about-preview__text p {
  font-size: 16px;
  line-height: 1.78;
  color: var(--text-muted);
}

/* Credentials row */
.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 0 4px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}
.credential-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-warm);
  padding: 6px 12px;
  border-radius: 40px;
}

/* ============================================================
   INTRO CONTENT (HOME) — "Therapy That Meets You Where You Are"
============================================================ */
.intro-content {
  background: #E8E2D9;
  padding: var(--section-pad) 0;
}

.intro-content__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-content__heading {
  font-family: 'Noto Serif', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 32px;
}
.intro-content__heading--strong {
  color: rgb(147, 180, 163);
  display: block;
}
.intro-content__heading--faint {
  color: #c9b7aa;
  display: block;
}

.intro-content__body {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.78;
  color: rgb(147, 180, 163);
  margin-bottom: 20px;
}

.intro-content__btn { margin-top: 16px; }
.intro-content__btn-explore { margin-right: 0.3em; }

/* ============================================================
   SERVICES SLIDER
============================================================ */
.services-slider {
  background: #7d867f;
  padding: clamp(60px, 8vw, 100px) 0 clamp(48px, 6vw, 80px);
  overflow: hidden;
}

.services-slider__header {
  padding: 0 clamp(24px, 5vw, 80px);
  margin-bottom: 56px;
}

.services-slider__label {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 15px;
  letter-spacing: 0.22em;
  color: rgb(147, 180, 163);
  display: block;
  margin-bottom: 12px;
}

.services-slider__heading {
  font-family: 'Noto Serif', sans-serif;
  font-style: normal;
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
  color: rgba(255,255,255,0.8);
}

.services-slider__highlight { color: #c9b7aa; }
.services-slider__green { color: rgb(147, 180, 163); }

.services-slider__track-wrap {
  overflow: hidden;
  margin: 0 clamp(16px, 3vw, 48px);
}

.services-slider__track {
  display: flex;
  gap: 20px;
  padding: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.services-slider__track::-webkit-scrollbar { display: none; }

.svc-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-height: 280px;
  background: #EDE8DF;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
}

.svc-card--detailed {
  justify-content: flex-start;
  gap: 16px;
}

.svc-card__content { display: flex; flex-direction: column; gap: 10px; }

.svc-card__desc {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #8a8b83;
}

.svc-card__btn {
  align-self: flex-start;
  margin-top: auto;
  font-size: 10px;
  padding-left: 16px;
}
.cta-section__btn.svc-card__btn:hover { background: #c9b7aa; border-color: #c9b7aa; }
.svc-card__btn .cta-section__btn-icon { width: 36px; height: 36px; margin-left: 14px; }
.svc-card__btn .cta-section__btn-icon svg { width: 14px; height: 14px; }

.svc-card__badge {
  width: 56px;
  height: 56px;
  background: #6B3A1E;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svc-card__badge svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
}

.svc-card__title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: #7d867f;
  line-height: 1.3;
}

.services-slider__nav {
  display: none;
  gap: 12px;
  justify-content: flex-end;
  padding: 36px clamp(24px, 5vw, 80px) 0;
}

.svc-nav-btn {
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  background: transparent;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast);
}
.svc-nav-btn:hover { background: rgba(255,255,255,0.12); }
.svc-nav-btn svg { width: 18px; height: 18px; }

/* ============================================================
   SERVICES SECTION (legacy)
============================================================ */
.services { padding: var(--section-pad) 0; }

.section-header {
  margin-bottom: clamp(40px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-header--center {
  align-items: center;
  text-align: center;
}

.section-header h2 {
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.12;
  max-width: 700px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.45s var(--ease-out),
              box-shadow 0.45s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(26, 26, 24, 0.12);
}

.service-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.service-card:hover .service-card__img img { transform: scale(1.06); }

.service-card__body {
  padding: 24px 24px 28px;
}

.service-card__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-warm);
  border-radius: 50%;
  margin-bottom: 14px;
}
.service-card__icon svg { width: 20px; height: 20px; }

.service-card__body h3 {
  font-size: 22px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.25;
}
.service-card__body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ============================================================
   INFO SPLIT (HOME) — counselling vs psychotherapy / is therapy right for you
============================================================ */
.info-split {
  background: #E8E2D9;
  padding: clamp(32px, 4vw, 56px) 0 var(--section-pad);
  overflow-x: clip;
}

.info-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}

.info-split__col h2 {
  font-family: 'Noto Serif', sans-serif;
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.2;
  margin-bottom: 18px;
}
.info-split__col--green { color: rgb(147, 180, 163); }
.info-split__col--pink { color: #c9b7aa; }

.info-split__col p {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.78;
  color: rgb(147, 180, 163);
  margin-bottom: 16px;
}
.info-split__col p:last-child { margin-bottom: 0; }

.info-split__col--divider {
  padding-left: clamp(40px, 6vw, 80px);
  border-left: 1px solid var(--border);
}

/* ============================================================
   NICOLE DETAIL (ABOUT) — qualifications & approach
============================================================ */
.nicole-detail {
  background: #E8E2D9;
  padding: clamp(32px, 4vw, 56px) 0 var(--section-pad);
  overflow-x: clip;
}

.nicole-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.nicole-detail__grid > .nicole-detail__col:first-child { padding-right: 16px; }

.nicole-detail__col p {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.nicole-detail__col p:last-child { margin-bottom: 0; }

/* Register-verification line. The global reset strips link colour and
   underline, so the anchor needs both back or it reads as plain text. */
.nicole-detail__verify a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.nicole-detail__verify a:hover { color: var(--dark-green); }

.nicole-detail__list {
  list-style: disc;
  padding-left: 20px;
  margin: 4px 0 20px;
}
.nicole-detail__list li {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.nicole-detail__col--divider {
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

/* ============================================================
   TRUST SECTION
============================================================ */
.trust {
  background: #c9b7aa;
  padding: var(--section-pad) 0;
  overflow-x: clip;
}

.trust__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.trust__label {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  color: rgb(233, 226, 217);
  background: transparent;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.trust__heading {
  font-family: 'Noto Serif', sans-serif;
  font-size: 48px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  color: rgba(255,255,255,0.45);
  margin-top: 20px;
}

.trust__heading--accent {
  color: #7d867f;
}

.trust__photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 28px;
}
.trust__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.trust__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}

.trust__item h3 {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: rgb(233, 226, 217);
  margin-bottom: 8px;
}
.trust__item p {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: rgb(233, 226, 217);
}

/* ============================================================
   FAQ SECTION
============================================================ */
.faq { padding: var(--section-pad) 0; background: #e9e2d9; overflow-x: clip; }

.faq__layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}

.faq__intro { }

.faq__label {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(147, 180, 163);
  display: block;
  margin-bottom: 28px;
}

.faq__heading {
  font-family: 'Noto Serif', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 32px;
}
.faq__heading--strong {
  color: rgb(147, 180, 163);
  display: block;
}
.faq__heading--faint {
  color: #c9b7aa;
  display: block;
}

.faq__sub {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: rgb(147, 180, 163);
}
.faq__sub a {
  color: rgb(147, 180, 163);
  text-decoration: none;
}

.faq__list { width: 100%; }

.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  color: rgb(147, 180, 163);
  transition: color var(--dur-fast);
}
.faq__question:hover { color: rgb(107, 140, 123); }

.faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: rgb(147, 180, 163);
  transition: transform 0.4s var(--ease-out);
}
.faq__item.open .faq__icon { transform: rotate(180deg); }

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.48s var(--ease-out);
}
.faq__item.open .faq__answer { grid-template-rows: 1fr; }

.faq__answer-inner { overflow: hidden; }
.faq__answer-inner p {
  padding: 0 0 22px;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: rgb(147, 180, 163);
  max-width: 560px;
}

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  background: #1a1a1a url('../images/699d7dfb1ca395e7e86a07c8_pexels-alex-green-5699491.avif') center/cover no-repeat;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.93);
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: clamp(72px, 8vw, 96px) clamp(24px, 6vw, 80px);
  flex-wrap: wrap;
}

.cta-section__heading {
  font-family: 'Noto Serif', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  line-height: 56px;
  color: rgb(233, 226, 217);
  margin: 0;
  white-space: nowrap;
}

.cta-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #93b4a3;
  border: 1px solid #93b4a3;
  border-radius: 8px;
  color: rgba(255,255,255,0.9);
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 0 0 22px;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.cta-section__btn:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }
.cta-section__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-left: 18px;
  background: rgba(255,255,255,0.15);
  border-left: 1px solid rgba(255,255,255,0.2);
}
.cta-section__btn-icon svg { width: 18px; height: 18px; }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: #8fa49c;
  color: var(--white);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__logo {
  display: block;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__bacp-logo {
  display: block;
  max-width: 220px;
  height: auto;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 4px;
  padding: 6px 10px;
}

.footer__brand p {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  max-width: 340px;
}

.footer__col-title {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
  display: block;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__nav a {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s, padding-left 0.25s var(--ease-out);
}
.footer__nav a:hover { color: var(--white); padding-left: 4px; }

.footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.footer__bottom > :first-child { justify-self: start; }
.footer__bottom-links {
  justify-self: center;
  display: flex;
  gap: 20px;
}
.footer__bottom > picture { justify-self: end; }

.footer__bacp-badge {
  display: block;
  height: 32px;
  width: auto;
  background: #fff;
  border-radius: 4px;
  padding: 4px 8px;
}
.footer__bottom a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.footer__bottom a:hover { color: var(--white); }

/* Agency credit — inherits the footer's colour and size; only the inline
   logo needs sizing. See templates/designed-by-avily.html. */
.avily-credit .avily-link { text-decoration: none; }
.avily-credit .avily-link:hover { text-decoration: underline; }
.avily-credit img {
  display: inline-block;
  height: 1em;
  width: auto;
  vertical-align: middle;
  margin: 0 4px;
}

/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.page-hero {
  padding-top: 64px;
  padding-bottom: 0;
  background: var(--bg-warm);
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
}

.page-hero__inner {
  padding: 64px 0 72px;
}

.page-hero__inner .label { margin-bottom: 20px; }

.page-hero__inner h1 {
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  max-width: 800px;
}

.page-hero__inner p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 580px;
  margin-top: 20px;
}

/* ── Page hero ── */
.about-hero {
  background: #E8E2D9;
  height: 60vh;
  position: relative;
}
.about-hero__center {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 48px;
  background: #E8E2D9;
  box-sizing: border-box;
}
.about-hero__label {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgb(147, 180, 163);
  margin-bottom: 20px;
}
.about-hero__title {
  font-family: 'Merriweather', serif;
  font-weight: 400;
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  will-change: transform;
  transform-origin: center top;
}
.about-hero__title--strong { color: #98b6a6; }
.about-hero__title--faint  { color: #c9b7aa; }
.about-hero__subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgb(147, 180, 163);
  margin-top: 16px;
  max-width: 560px;
}

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-intro {
  padding: 8px 0 var(--section-pad);
  background: #e8e1d8;
  overflow-x: clip;
}

.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 52%;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.about-intro__images {
  position: relative;
  height: 620px;
}

.about-intro__img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 74%;
  height: 88%;
  border-radius: 12px;
  overflow: hidden;
}
.about-intro__img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 46%;
  height: 56%;
  border-radius: 12px;
  overflow: hidden;
  border: 6px solid var(--white);
}
.about-intro__img-main img,
.about-intro__img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.about-intro__img-main:hover img,
.about-intro__img-secondary:hover img { transform: scale(1.04); }
.about-intro__img-main--static:hover img { transform: none; }

/* Contact page — reach-out section */
.contact-info__grid {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  gap: 0;
  grid-template-columns: 1.4fr 1fr;
}
.contact-info__image-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.contact-info__image {
  position: static;
  width: 90%;
  height: 72%;
}
.contact-info__extra {
  max-width: 1240px;
  margin-top: -145px;
}
.contact-info__text {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgb(147, 180, 163);
  margin-bottom: 20px;
}
.contact-info__text:last-child { margin-bottom: 0; }

@media (max-width: 991px) {
  .contact-info__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-info__image { height: auto; width: 100%; }
  .contact-info__extra { margin-top: 40px; }
}

.about-intro__images--stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-intro__images--stack .about-intro__img-main,
.about-intro__images--stack .about-intro__img-secondary {
  position: static;
  width: 100%;
  height: auto;
  border: none;
}
.about-intro__images--stack .about-intro__img-main { flex: 0.85; }
.about-intro__images--stack .about-intro__img-secondary { flex: 1.15; }

.about-intro__grid--stacked {
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 48px);
}

.contact-info__grid {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
}
.contact-info__image-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.contact-info__image {
  position: static;
  width: 90%;
  height: 72%;
}
.contact-info__extra {
  max-width: 1240px;
  margin-top: -145px;
}
.contact-info__text {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgb(147, 180, 163);
  margin-bottom: 20px;
}
.contact-info__text:last-child { margin-bottom: 0; }

.about-intro__images--pair {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  height: auto;
}
.about-intro__images--pair .about-intro__img-main,
.about-intro__images--pair .about-intro__img-secondary {
  position: static;
  width: 100%;
  height: clamp(220px, 32vw, 480px);
  border: none;
}

.about-intro__text h2 {
  font-family: 'Noto Serif', sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 3.8vw, 48px);
  line-height: 1.15;
  color: rgb(147, 180, 163);
  margin-bottom: 24px;
}
/* --subhead carries the h3 look on an <h2>, for sections that need the smaller
   heading without skipping a level in the document outline (contact page). */
.about-intro__text h3,
.about-intro__text .about-intro__subhead {
  font-family: 'Noto Serif', sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.3;
  color: rgb(147, 180, 163);
  margin: 36px 0 12px;
}
.about-intro__text p {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgb(147, 180, 163);
  margin-bottom: 20px;
}
.about-intro__text .nicole-detail__list li {
  color: rgb(147, 180, 163);
}

/* Philosophy section */
.philosophy {
  background: #7d867f;
  overflow: hidden;
}

.philosophy__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.philosophy__img {
  margin: clamp(32px, 4vw, 56px);
  margin-right: 0;
  border-radius: 16px;
  overflow: hidden;
  max-height: 480px;
}
.philosophy__img img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.philosophy__content {
  padding: clamp(48px, 6vw, 80px) clamp(40px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.philosophy__label {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgb(147, 180, 163);
}

.philosophy__heading {
  font-family: 'Noto Serif', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(36px, 3.8vw, 54px);
  line-height: 1.15;
  color: rgb(147, 180, 163);
}
.philosophy__heading--accent { color: #c9b7aa; }

.philosophy__body {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

.philosophy__items {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.phil-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.phil-item__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: rgb(147, 180, 163);
  transition: color 0.2s;
}
.phil-item__btn:hover { color: #ffffff; }
.phil-item__icon { display: none; }
.phil-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s;
}
.phil-item.open .phil-item__answer { grid-template-rows: 1fr; }
.phil-item__answer-inner { overflow: hidden; }
.phil-item__answer-inner p {
  padding: 0 0 12px;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: rgb(147, 180, 163);
}
.phil-item__list {
  list-style: disc;
  padding: 0 0 12px 20px;
}
.phil-item__list li {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: rgb(147, 180, 163);
  margin-bottom: 6px;
}

.philosophy__principles {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.principle {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.principle:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
.principle-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.principle h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
}
.principle p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Credentials / qualifications */
.qualifications {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.qual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.qual-card {
  padding: 32px 28px;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.qual-card .year {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--accent);
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.qual-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
}
.qual-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   SERVICES PAGE
============================================================ */
.services-page__intro {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.services-page__tagline {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 32px);
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: var(--section-pad);
  max-width: 700px;
  line-height: 1.4;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.service-detail:first-of-type { border-top: none; padding-top: 0; }

.service-detail--reverse { direction: rtl; }
.service-detail--reverse > * { direction: ltr; }

.service-detail__img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.service-detail__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.service-detail__img:hover img { transform: scale(1.04); }

.service-detail__text h2 {
  font-size: clamp(30px, 3.2vw, 46px);
  margin-bottom: 16px;
}
.service-detail__text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.service-detail__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0;
}
.service-detail__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.service-detail__features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ============================================================
   BLOG PAGE
============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: var(--section-pad) 0;
}

/* ── Blog page redesign ── */
.blog-featured {
  background: #e8e1d8;
  padding-bottom: clamp(32px, 4vw, 56px);
}
.blog-featured__wrap {
  position: relative;
}
.blog-featured__img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 8;
  width: 105%;
  margin-left: -2.5%;
}
.blog-featured__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-featured__body {
  background: #e8e1d8;
  border-radius: 16px;
  padding: clamp(28px, 3.5vw, 48px) clamp(24px, 4vw, 56px) clamp(32px, 4vw, 48px);
  margin-top: -80px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 100%;
  max-width: none;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.12);
}
.blog-featured__title {
  font-family: 'Noto Serif', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  line-height: 56px;
  color: rgb(147, 180, 163);
  margin: 0 0 18px;
}
.blog-featured__excerpt {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: rgb(147, 180, 163);
  margin: 0 0 28px;
}
.blog-featured__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.blog-featured__tag {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background: #7d867f;
  color: #fff;
  border-radius: 100px;
  padding: 8px 18px;
}
.blog-featured__btn {
  display: inline-block;
  margin-top: 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
  background: #93b4a3;
  border-radius: 100px;
  padding: 12px 28px;
  text-decoration: none;
  transition: background 0.2s;
}
.blog-featured__btn:hover { background: #7d9e8e; }

.blog-section { padding: clamp(32px, 4vw, 56px) 0 var(--section-pad); background: #e8e1d8; }

.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.blog-filter__btn {
  padding: 8px 22px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: none;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.blog-filter__btn.active,
.blog-filter__btn:hover {
  background: #93b4a3;
  border-color: #93b4a3;
  color: #ffffff;
}

.blog-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.blog-card-v2 {
  display: block;
  position: relative;
  text-decoration: none;
}
.blog-card-v2__img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.blog-card-v2__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.blog-card-v2:hover .blog-card-v2__img img { transform: scale(1.04); }
.blog-card-v2__body {
  background: #e8e1d8;
  border-radius: 12px;
  padding: 20px 24px 24px;
  margin-top: -32px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 85%;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.10);
}
.blog-card-v2__title {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: rgb(147, 180, 163);
  margin: 0 0 10px;
}
.blog-card-v2__excerpt {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: rgb(147, 180, 163);
  margin: 0;
}

/* ── Related posts ── */
.related-posts {
  background: #e8e1d8;
  padding: clamp(32px, 4vw, 56px) 0;
}
.related-posts__heading {
  font-family: 'Noto Serif', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 32px;
}
.related-posts__heading--faint { color: #c9b7aa; }
.related-posts__heading--strong { color: rgb(147, 180, 163); }
.related-posts__grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 16px;
  align-items: start;
}
.related-posts__featured {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 2.6;
  text-decoration: none;
}
.related-posts__featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.related-posts__featured-overlay {
  position: absolute;
  inset: 0;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(0,0,0,0.55);
}
.related-posts__featured-cat {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 15px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgb(255, 211, 102);
  display: block;
  margin-bottom: 8px;
}
.related-posts__featured-overlay h3 {
  font-family: 'Noto Serif', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  line-height: 56px;
  color: rgb(233, 226, 217);
  margin: 0;
}
.related-posts__sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: stretch;
}
.related-posts__card {
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  flex: 1;
  text-decoration: none;
}
.related-posts__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.related-posts__card-overlay {
  position: absolute;
  inset: 0;
  padding: 12px 16px;
  display: flex;
  align-items: flex-end;
  background: rgba(0,0,0,0.55);
}
.related-posts__card-overlay p {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}

/* ── Blog post page ── */
.post-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.post-hero__img {
  position: absolute;
  inset: 0;
}
.post-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.75) 0%, rgba(20,20,20,0.15) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(40px, 6vw, 72px);
}
.post-hero__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.post-hero__tag {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background: rgba(147,180,163,0.85);
  color: #fff;
  border-radius: 100px;
  padding: 6px 16px;
}
.post-hero__title {
  font-family: 'Noto Serif', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 16px;
  max-width: 800px;
}
.post-hero__byline {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}

.post-body {
  background: #e8e1d8;
  padding-top: clamp(16px, 2vw, 28px);
  padding-bottom: clamp(32px, 4vw, 56px);
}
.post-body__inner {
  max-width: 100%;
}
.post-body__lead {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: rgb(147, 180, 163);
  margin: 0 0 28px;
}
.post-body__inner h2 {
  font-family: 'Noto Serif', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.3;
  color: rgb(147,180,163);
  margin: 28px 0 12px;
}
.post-body__inner p {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: rgb(147, 180, 163);
  margin: 0 0 20px;
}
.post-body__list {
  list-style: disc;
  padding: 0 0 16px 24px;
}
.post-body__list li {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: rgb(147, 180, 163);
  margin-bottom: 8px;
}
.post-body__closing {
  background: rgba(147,180,163,0.12);
  border-left: 3px solid rgb(147,180,163);
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
  margin: 48px 0;
}
.post-body__closing p { margin: 0; }

.post-body__author {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-top: 1px solid rgba(147,180,163,0.25);
  padding-top: 40px;
  margin-top: 48px;
}
.post-body__author-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.post-body__author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.post-body__author-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: rgb(147,180,163);
}
.post-body__author-role {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(147,180,163,0.7);
}
.post-body__author-bio {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgb(147,180,163);
  margin: 8px 0 0;
}

.post-body__back {
  margin-top: 48px;
}
.post-body__back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgb(147,180,163);
  text-decoration: none;
  transition: gap 0.2s;
}
.post-body__back-link svg {
  width: 16px;
  height: 16px;
}
.post-body__back-link:hover { gap: 12px; }

.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(26, 26, 24, 0.1);
}

.blog-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.blog-card:hover .blog-card__img img { transform: scale(1.06); }

.blog-card__body {
  padding: 24px 24px 28px;
}

.blog-card__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.blog-card__cat {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(61, 107, 74, 0.08);
  padding: 4px 10px;
  border-radius: 40px;
}

.blog-card__body h3 {
  font-size: 22px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.2s;
}
.blog-card:hover .blog-card__body h3 { color: var(--green); }

.blog-card__body p {
  font-size: 14px;
  line-height: 1.68;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.blog-card__meta {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

.contact__info h2 {
  font-size: clamp(36px, 3.8vw, 54px);
  margin-bottom: 20px;
  line-height: 1.12;
}
.contact__info > p {
  font-size: 16px;
  line-height: 1.78;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--bg-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail__icon svg { width: 18px; height: 18px; }
.contact-detail h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-detail p, .contact-detail a {
  font-size: 15px;
  color: var(--dark);
  transition: color 0.2s;
}
.contact-detail a:hover { color: var(--green); }

/* Form */
.contact__form {
  background: var(--bg);
  padding: 48px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  color: var(--dark);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(61, 107, 74, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(122, 116, 110, 0.5); }

.form-group textarea { height: 140px; }

.form-success, .form-error {
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 14px;
  margin-top: 12px;
  display: none;
}
.form-success { background: rgba(61, 107, 74, 0.1); color: var(--green); border: 1px solid rgba(61, 107, 74, 0.2); }
.form-error { background: rgba(196, 60, 60, 0.08); color: #c43c3c; border: 1px solid rgba(196, 60, 60, 0.2); }
.form-success.show, .form-error.show { display: block; }

/* ============================================================
   RESPONSIVE — TABLET (≤ 991px)
============================================================ */
@media (max-width: 991px) {
  .hero__title { font-size: clamp(28px, 5vw, 44px); }
  .svc-card { flex: 0 0 calc((100% - 20px) / 2); }
  .services-slider__nav { display: flex; }
  .about-preview__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-preview__image { max-width: 480px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .trust__layout { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr 1fr; }

  .info-split__grid { grid-template-columns: 1fr; gap: 40px; }
  .info-split__col--divider { padding-left: 0; border-left: none; padding-top: 40px; border-top: 1px solid var(--border); }

  .nicole-detail__grid { grid-template-columns: 1fr; gap: 40px; }
  .nicole-detail__col--divider { padding-left: 0; border-left: none; padding-top: 40px; border-top: 1px solid var(--border); }

  .faq__layout { grid-template-columns: 1fr; gap: 40px; }
  .faq__intro { position: static; }

  .about-intro__grid { grid-template-columns: 1fr; gap: 40px; }
  .about-intro__images { height: 400px; max-width: 500px; }

  .contact-info__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-info__image-wrap { justify-content: flex-start; order: -1; margin-bottom: 24px; }
  .contact-info__image { width: 100%; height: 360px; }
  .contact-info__extra { margin-top: 24px; }

  .philosophy__layout { grid-template-columns: 1fr; }
  .philosophy__img { margin: clamp(24px,4vw,40px); margin-right: clamp(24px,4vw,40px); height: 300px; }
  .qual-grid { grid-template-columns: repeat(2, 1fr); }

  .service-detail { grid-template-columns: 1fr; }
  .service-detail--reverse { direction: ltr; }

  .blog-grid { grid-template-columns: repeat(2, 1fr); }

  .related-posts__grid { grid-template-columns: 1fr; }
  .related-posts__sidebar { display: grid; grid-template-columns: repeat(3, 1fr); align-self: auto; }
  .related-posts__sidebar .related-posts__card { aspect-ratio: 16 / 9; }

  .contact__grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; }

  .contact__form { padding: 32px 28px; }
}

/* ============================================================
   RESPONSIVE — SMALL LAPTOP / TABLET (768px – 1099px)
   The full desktop nav (logo + 5 links + phone + book button) was
   wide enough to overflow the viewport in this range — the book
   button got clipped off the right edge. Drop the phone number and
   tighten spacing so everything fits above the 767px hamburger cutoff.
============================================================ */
@media (min-width: 768px) and (max-width: 1099px) {
  .nav__cta .nav__phone { display: none; }
  .nav__links { gap: 18px; }
  .nav__links a { font-size: 13px; letter-spacing: 0.08em; }
  .nav__cta { margin-left: 12px; }
  .nav-book-btn { padding-left: 12px; }
  .nav-book-btn__icon { width: 34px; height: 34px; margin-left: 8px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 767px)
============================================================ */
@media (max-width: 767px) {
  .nav__links { display: none; }
  .nav__inner { flex-wrap: wrap; height: auto; padding-top: 14px; padding-bottom: 14px; }
  .nav__toggle { display: flex; order: 1; margin-left: auto; }

  /* Booking button — always visible, own row below logo + hamburger */
  .nav__cta {
    display: flex;
    order: 2;
    flex-basis: 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 14px;
  }
  .nav__cta .nav-book-btn {
    margin-right: 0;
    padding-left: 14px;
    font-size: 10px;
    letter-spacing: 0.06em;
  }
  .nav__cta .nav-book-btn__icon { width: 40px; height: 40px; margin-left: 10px; }
  .nav__cta .nav-book-btn__icon svg { width: 13px; height: 13px; }

  /* Flyout menu must clear the now taller (two-row) header */
  .nav__mobile { padding-top: 150px; }

  .hero__title { font-size: clamp(26px, 7vw, 36px); }
  .about-hero__title { font-size: clamp(24px, 6.5vw, 32px); }

  .services-slider__nav { display: flex; }

  .intro-content__btn {
    flex-wrap: wrap;
    white-space: normal;
    padding: 14px 0 14px 22px;
  }
  .intro-content__btn-explore { flex-basis: 100%; margin-bottom: 4px; }
  .intro-content__btn .cta-section__btn-icon { display: none; }
  .faq__heading,
  .cta-section__heading,
  .about-scroll__heading,
  .services-slider__heading,
  .intro-content__heading,
  .blog-featured__title,
  .related-posts__heading,
  .related-posts__featured-overlay h3,
  .trust__heading {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.25;
  }
  .cta-section__heading {
    white-space: normal;
    text-align: center;
  }
  .cta-section__inner {
    justify-content: center;
    text-align: center;
  }
  .svc-card { flex: 0 0 100%; }
  .services-grid { grid-template-columns: 1fr; }

  .blog-grid { grid-template-columns: 1fr; }

  .related-posts__sidebar { display: flex; flex-direction: column; align-self: auto; }
  .related-posts__sidebar .related-posts__card { flex: none; aspect-ratio: 16 / 9; min-height: 140px; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }

  .qual-grid { grid-template-columns: 1fr; }

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

  .footer__bottom { grid-template-columns: 1fr; justify-items: start; }
  .footer__bottom > :first-child,
  .footer__bottom-links,
  .footer__bottom > picture { justify-self: start; }

  .about-intro__images { height: 300px; }

  .about-scroll { height: auto; padding: 40px 0; }
  .about-scroll__sticky { position: static; height: auto; }
  .about-scroll__card { flex-direction: column-reverse; width: 100%; height: auto; border-radius: 0; }
  .about-scroll__panel { width: 100% !important; opacity: 1 !important; }
  .about-scroll__panel-inner { width: 100%; height: auto; padding: 32px 24px; }
  .about-scroll__img-wrap { flex: none; width: 100%; height: 320px; }

  .about-intro__images--pair {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }
  .about-intro__images--pair .about-intro__img-main,
  .about-intro__images--pair .about-intro__img-secondary {
    height: clamp(200px, 60vw, 320px);
  }

  .blog-grid-v2 { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 479px)
============================================================ */
@media (max-width: 479px) {
  .hero__imgs { margin: 0 12px 12px; border-radius: 10px; }
}

/* ============================================================
   ABOUT PAGE — PHOTO GALLERY
============================================================ */
.about-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about-gallery__item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-gallery__item:nth-child(even) { margin-top: 40px; }

.about-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.about-gallery__item:hover img { transform: scale(1.04); }

@media (max-width: 767px) {
  .about-gallery { grid-template-columns: repeat(2, 1fr); }
  .about-gallery__item:nth-child(even) { margin-top: 20px; }
}

@media (max-width: 479px) {
  .about-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ============================================================
   CONTACT FAQ MINI GRID
============================================================ */

/* ── Contact card (new design) ── */
.contact-card-section {
  background: #e8e1d8;
  padding: clamp(32px, 4vw, 56px) 0 clamp(48px, 6vw, 80px);
}

.contact-card-section .container {
  max-width: 1240px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 24px;
  background: #c7b6a9;
  border-radius: 20px;
  padding: 24px;
  align-items: stretch;
}

.contact-card--centered {
  grid-template-columns: 1fr;
  max-width: 680px;
  margin: 0 auto;
}

.contact-card__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card__heading { display: flex; flex-direction: column; gap: 6px; }

.contact-card__label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.contact-card__title {
  font-family: 'Noto Serif', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.1;
  color: #fff;
  margin: 0;
}

.contact-card__photo {
  border-radius: 14px;
  overflow: hidden;
  flex: 1;
}

.contact-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-card__chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
}

.contact-chip a {
  color: #fff;
  text-decoration: none;
}

.contact-chip a:hover { text-decoration: underline; }

.contact-chip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: #6b4c35;
  border-radius: 10px;
  color: #fff;
}

.contact-chip__icon svg {
  width: 16px;
  height: 16px;
}

.contact-card__right {
  background: #e9e2d9;
  border-radius: 14px;
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card__form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-card__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card__form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-card__form-group label {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: rgb(201, 183, 170);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-card__form-group input,
.contact-card__form-group textarea {
  background: transparent;
  border: 1px solid #a6a29b;
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: #5c4a3a;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.contact-card__form-group input::placeholder,
.contact-card__form-group textarea::placeholder {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #a89a8e;
}

.contact-card__form-group input:focus,
.contact-card__form-group textarea:focus {
  border-color: rgb(147, 180, 163);
}

.contact-card__form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-card__submit {
  background: rgb(147, 180, 163);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.contact-card__submit:hover {
  background: rgb(120, 155, 138);
}

@media (max-width: 768px) {
  .contact-card { grid-template-columns: 1fr; }
  .contact-card__chips { grid-template-columns: 1fr; }
  .contact-card__form-row { grid-template-columns: 1fr; }
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
}

.contact-faq-grid .faq-mini-card {
  padding: 28px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.contact-faq-grid .faq-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.07);
}
.contact-faq-grid .faq-mini-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.contact-faq-grid .faq-mini-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

@media (max-width: 767px) {
  .contact-faq-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICE DETAIL — MOBILE FIX
============================================================ */
@media (max-width: 767px) {
  .service-detail,
  .service-detail--reverse { direction: ltr; }
  .service-detail--reverse > * { direction: ltr; }
}

/* ============================================================
   MISC UTILITIES
============================================================ */
.text-center { text-align: center; }
.mt-sm { margin-top: 24px; }
.mt-md { margin-top: 48px; }
.mt-lg { margin-top: 64px; }

/* ============================================================
   CONTACT FAB + MODAL  ·  NAVBAR PHONE
   Built from popup-components-template.md via popup-config.yaml.

   Namespacing note: the template's .btn / .btn-primary / .form-group
   already exist in this stylesheet (lines ~102 and ~2792), so per the
   template's "Class name collisions" note they are renamed with a cm-
   prefix and the custom properties namespaced --cm-*. Nothing here
   touches the site's existing buttons or contact-page form.
============================================================ */
:root {
  --cm-main:       var(--green);      /* #3D6B4A — popup-config.yaml main_color */
  --cm-contrast:   #FFFFFF;

  /* Fallbacks for browsers without color-mix() */
  --cm-main-dark:  #325A3D;
  --cm-main-light: #E8EFEA;

  --cm-radius:     12px;
  --cm-radius-sm:  8px;
  --cm-shadow-md:  0 8px 30px rgba(25, 42, 29, 0.16);
  --cm-shadow-lg:  0 24px 60px rgba(25, 42, 29, 0.26);
}

@supports (color: color-mix(in srgb, red, red)) {
  :root {
    --cm-main-dark:  color-mix(in srgb, var(--cm-main) 82%, black);
    --cm-main-light: color-mix(in srgb, var(--cm-main) 12%, white);
  }
}

/* ---------- Leave a Message — floating action button ---------- */
.contact-fab {
  position: fixed;
  right: 24px;
  bottom: 0;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--cm-main);
  color: var(--cm-contrast);
  border: none;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: var(--cm-shadow-md);
  transition: background-color var(--dur-fast) var(--ease-smooth);
}
.contact-fab:hover { background: var(--cm-main-dark); }
.contact-fab:focus-visible { outline: 2px solid var(--cm-main-dark); outline-offset: 3px; }
.contact-fab svg { flex: 0 0 auto; }

@media (max-width: 560px) {
  .contact-fab {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 65px;
    font-size: 0.85rem;
  }
  .contact-fab:hover { transform: translateX(-50%); }
}

/* ---------- Leave a Message — modal panel ---------- */
.contact-modal { position: fixed; inset: 0; z-index: 1300; }

.contact-modal-backdrop {
  position: fixed;
  inset: 0;
  background: transparent;   /* click-outside-to-close catcher, no dimming */
}

.contact-modal-dialog {
  position: fixed;
  right: 24px;
  bottom: 60px;              /* sits just above the fab */
  width: min(380px, calc(100vw - 48px));
  max-height: min(560px, calc(100vh - 140px));
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--cm-radius);
  box-shadow: var(--cm-shadow-lg);
  padding: 28px 26px;
  overflow-y: auto;
  transform-origin: bottom right;
  opacity: 0;
  transition: opacity 0.2s var(--ease-smooth);
}
.contact-modal.is-open .contact-modal-dialog { opacity: 1; }

@media (max-width: 560px) {
  .contact-modal-dialog {
    right: 12px;
    left: 12px;
    bottom: 76px;
    width: auto;
    padding: 22px 20px;
  }
}

.contact-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--bg-section);
  color: var(--text);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color var(--dur-fast) var(--ease-smooth);
}
.contact-modal-close:hover { background: var(--bg-warm); }

.contact-modal-dialog h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 8px;
  padding-right: 30px;
  color: var(--dark-green);
}

.contact-modal-intro {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0 0 24px;
}

.cm-form-group { margin-bottom: 14px; }

.cm-form-group input,
.cm-form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--cm-radius-sm);
  background: var(--white);
  color: var(--text);
  box-sizing: border-box;
  transition: border-color var(--dur-fast) var(--ease-smooth),
              box-shadow var(--dur-fast) var(--ease-smooth);
}
.cm-form-group input::placeholder,
.cm-form-group textarea::placeholder { color: rgba(122, 116, 110, 0.5); }
.cm-form-group input:focus,
.cm-form-group textarea:focus {
  outline: none;
  border-color: var(--cm-main);
  box-shadow: 0 0 0 3px var(--cm-main-light);
}
.cm-form-group textarea { min-height: 110px; resize: vertical; }

.cm-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--cm-radius-sm);
  background: var(--cm-main);
  color: var(--cm-contrast);
  cursor: pointer;
  transition: background-color var(--dur-fast) var(--ease-smooth), transform 0.1s ease;
}
.cm-btn-primary:hover { background: var(--cm-main-dark); }
.cm-btn-primary:active { transform: translateY(1px); }

/* ---------- Navbar phone number ---------- */
/* Follows THIS site's nav breakpoint (767px), not the template's 560px, so it
   moves into the hamburger menu at the same moment the rest of the nav does. */
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 28px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-smooth);
}
.nav__phone:hover { color: var(--green); }
.nav__phone svg { flex: 0 0 auto; width: 15px; height: 15px; }

.nav__mobile a.nav__mobile-phone {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__mobile a.nav__mobile-phone svg { flex: 0 0 auto; width: 17px; height: 17px; }

@media (max-width: 767px) {
  .nav__phone { display: none; }
}

/* Privacy Policy / Terms & Conditions body copy */
.legal-content h2,
.legal-content p,
.legal-content li,
.legal-content a { color: rgb(147, 180, 163); }
