/* =============================================================
   JUVENESCENCE WELLNESS — design system
   Warm neutral. Quiet luxury. Wood-tone warmth comes from photos.
   Palette: warm white · soft warm grey · warm charcoal · NO accent
   ============================================================= */

:root {
  /* surfaces */
  --bg:           #FAFAF8;   /* warm white — primary canvas */
  --bg-soft:      #EFEDE8;   /* soft warm grey — section bands */
  --bg-card:      #FFFFFF;   /* pure white — elevated surfaces */
  --bg-deep:      #2A2825;   /* warm charcoal — inverted moments */

  /* type */
  --ink:          #2A2825;   /* warm charcoal — primary text */
  --ink-soft:     #6B6660;   /* warm mid-grey — secondary text */
  --ink-mute:     #8E8A84;   /* warm muted grey — tertiary, labels */
  --ink-faint:    #A8A49E;   /* very muted — for hints, asterisks */

  /* lines */
  --line:         #E5E2DD;   /* soft warm hairline */
  --line-strong:  #D4D0C8;   /* mid hairline for emphasis */

  /* inverted (for CTA band & footer) */
  --on-deep:      #FAFAF8;
  --on-deep-soft: rgba(250,250,248,0.72);
  --on-deep-line: rgba(250,250,248,0.18);

  /* type families */
  --serif:      'Cormorant Garamond', 'Times New Roman', serif;
  --sans:       'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* layout */
  --max:        1280px;
  --gutter:     clamp(20px, 5vw, 64px);
  --header-h:   76px;
  --rad:        2px;
  --rad-md:     6px;

  /* shadow (warm tinted, never blue-grey) */
  --shadow-sm:  0 1px 2px rgba(42,40,37,0.04), 0 1px 1px rgba(42,40,37,0.03);
  --shadow-md:  0 4px 16px rgba(42,40,37,0.06), 0 2px 4px rgba(42,40,37,0.03);
  --shadow-lg:  0 18px 50px rgba(42,40,37,0.08), 0 6px 12px rgba(42,40,37,0.04);

  /* motion */
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ---------- site frame (boutique border, like premium Shopify themes) ---------- */
/* A fixed, click-through border that frames the entire viewport at all times,
   independent of scroll position or page content. Keeps full-bleed sections
   (hero photos, dark bands) from feeling like they spill past the page edge. */
.site-frame {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  border: clamp(8px, 1.6vw, 16px) solid var(--bg);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

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

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: var(--rad);
}

/* ---------- typography ---------- */
.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.display-xxl { font-size: clamp(46px, 7.4vw, 112px); }
.display-xl  { font-size: clamp(40px, 5.6vw, 84px); }
.display-lg  { font-size: clamp(34px, 4.4vw, 64px); }
.display-md  { font-size: clamp(28px, 3.4vw, 48px); }
.display-sm  { font-size: clamp(24px, 2.6vw, 36px); }

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--ink-mute);
  margin-bottom: 18px;
}

.lede {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 56ch;
}

.body-lg {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
}

em { font-style: italic; color: var(--ink); }
strong { font-weight: 500; color: var(--ink); }

/* ---------- layout primitives ---------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(48px, 7vw, 96px) 0;
  position: relative;
}

.section--soft { background: var(--bg-soft); }

.divider {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

/* ---------- image accents (service pages, gallery) ---------- */
.img-accent {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--rad-md);
  margin: clamp(16px, 2vw, 28px) 0;
}
.img-accent--tall {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.img-accent--wide {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.img-accent--square {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* Side-by-side image + content within content-grid */
.content-grid--with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 44px);
  align-items: center;
}
.content-grid--with-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--rad-md);
}
@media (max-width: 820px) {
  .content-grid--with-image {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .content-grid--with-image img { aspect-ratio: 3 / 4; }
}

/* Featured-image block: image above heading section */
.featured-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--rad-md);
  margin-bottom: clamp(28px, 3.5vw, 48px);
  display: block;
}
@media (max-width: 640px) {
  .featured-image { aspect-ratio: 4 / 3; }
}

/* Two-image side-by-side gallery row */
.image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 1.8vw, 20px);
  margin: clamp(20px, 2.5vw, 36px) 0;
}
.image-pair img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--rad-md);
}
@media (max-width: 640px) {
  .image-pair { grid-template-columns: 1fr; }
  .image-pair img { aspect-ratio: 3 / 2; }
}

/* ---------- announcement banner ---------- */
.announce {
  background: var(--ink);
  color: var(--bg);
  padding: 11px var(--gutter);
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-align: center;
}
.announce a {
  color: var(--bg);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 1px;
  border-bottom: 1px solid rgba(250,250,248,0.35);
  transition: border-color 0.2s var(--ease);
}
.announce a:hover { border-color: var(--bg); }
.announce strong {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  font-weight: 500;
  padding: 4px 10px;
  background: rgba(250,250,248,0.12);
  border-radius: 999px;
  color: var(--bg);
  margin-right: 12px;
  font-weight: 500;
}

/* ---------- featured-pair cards (homepage "Currently Featured") ---------- */
.featured-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(24px, 3vw, 36px);
}
@media (max-width: 720px) {
  .featured-pair { grid-template-columns: 1fr; }
}
.featured-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: clamp(24px, 3vw, 36px);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
  text-decoration: none;
  color: var(--ink);
}
.featured-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.featured-card__eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 16px;
}
.featured-card__name {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin-bottom: 8px;
  color: var(--ink);
}
.featured-card__price {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 20px;
}
.featured-card__price small {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-left: 6px;
  font-weight: 500;
}
.featured-card__desc {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 24px;
  flex: 1;
}
.featured-card__arrow {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,250,248,0.85);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  min-height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.005em;
  text-decoration: none;
}
.brand__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}
.brand__text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0.02em;
}
.brand__text small {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin-top: 4px;
}
@media (max-width: 520px) {
  .brand__logo { width: 40px; height: 40px; }
  .brand__text { font-size: 18px; }
  .brand__text small { font-size: 8px; letter-spacing: 0.22em; }
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a.nav-link {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.nav a.nav-link:hover { color: var(--ink); }

/* ---------- hamburger ---------- */
.hamburger {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  z-index: 60;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.hamburger:hover { border-color: var(--ink); }
.hamburger span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease), top 0.3s var(--ease);
}
.hamburger span:nth-child(1) { top: 16px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 26px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- mobile drawer ---------- */
/* Default: hidden via display:none for maximum reliability. */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 55;
  padding: 96px var(--gutter) 48px;
  overflow-y: auto;
}
.mobile-menu[data-open="true"] {
  display: block;
}
/* Hide entirely on desktop, regardless of data-open state. */
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}
.mobile-menu__inner {
  max-width: 520px;
  margin: 0 auto;
}
.mobile-menu__group {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu__group:last-child { border-bottom: 0; }
.mobile-menu__label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}
.mobile-menu a {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 0;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.mobile-menu a:hover { color: var(--ink-soft); }
.mobile-menu__cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu__cta a {
  font-family: var(--sans);
  font-size: 13px;
  padding: 16px 24px;
  text-align: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mobile-menu__cta a.btn--solid {
  background: var(--ink);
  color: var(--bg);
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .nav .nav-link { display: none; }
  .nav .btn { display: none; }
  .hamburger { display: block; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--sans);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.28s var(--ease);
}
.btn:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn--solid {
  background: var(--ink);
  color: var(--bg);
}
.btn--solid:hover {
  background: transparent;
  color: var(--ink);
}
.btn--ghost {
  border-color: var(--line-strong);
  color: var(--ink-soft);
}
.btn--ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn--small { padding: 10px 18px; font-size: 11px; }

.btn-arrow { display: inline-block; transition: transform 0.28s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
}
.hero--photo {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: clamp(120px, 14vw, 180px) 0 clamp(56px, 8vw, 96px);
}

/* Full-bleed photo sits behind the whole hero, edge to edge */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('/assets/images/stephanie-hero.jpg');
  background-size: cover;
  background-position: center 22%;
  background-repeat: no-repeat;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      100deg,
      rgba(20,18,15,0.92) 0%,
      rgba(20,18,15,0.82) 30%,
      rgba(20,18,15,0.58) 52%,
      rgba(20,18,15,0.34) 72%,
      rgba(20,18,15,0.20) 100%
    ),
    linear-gradient(
      180deg,
      rgba(20,18,15,0.15) 0%,
      rgba(20,18,15,0.05) 30%,
      rgba(20,18,15,0.25) 100%
    );
}
.hero--photo .container { position: relative; z-index: 1; }

.hero__copy { max-width: 640px; }
.hero h1 { margin-bottom: 22px; }
.hero .lede { margin-bottom: 28px; }

/* Light text over the photo */
.hero--photo .eyebrow { color: var(--on-deep-soft); }
.hero--photo .hero__title {
  color: var(--on-deep);
  font-size: clamp(32px, 3.6vw, 58px);
  text-shadow: 0 2px 24px rgba(0,0,0,0.18);
}
.hero--photo .hero__title em { color: var(--on-deep); }
.hero--photo .lede { color: var(--on-deep-soft); }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.hero--photo .btn--ghost {
  border-color: var(--on-deep-line);
  color: var(--on-deep-soft);
}
.hero--photo .btn--ghost:hover {
  border-color: var(--on-deep);
  color: var(--on-deep);
  background: rgba(250,250,248,0.08);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
}
.hero--photo .hero__meta {
  border-top-color: var(--on-deep-line);
  color: var(--on-deep-soft);
}
.hero__meta strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 6px;
}
.hero--photo .hero__meta strong { color: var(--on-deep); }

@media (max-width: 700px) {
  .hero--photo {
    min-height: 88vh;
    padding: clamp(96px, 22vw, 130px) 0 clamp(44px, 10vw, 64px);
  }
  .hero__scrim {
    background:
      linear-gradient(
        180deg,
        rgba(20,18,15,0.55) 0%,
        rgba(20,18,15,0.72) 45%,
        rgba(20,18,15,0.94) 100%
      );
  }
  .hero--photo .hero__copy { max-width: 100%; }

  /* Quieter hero on small screens — less weight, more air */
  .hero--photo .eyebrow {
    font-size: 10px;
    letter-spacing: 0.2em;
    margin-bottom: 18px;
  }
  .hero--photo .hero__title {
    font-size: clamp(30px, 8.4vw, 38px);
    line-height: 1.12;
  }
  .hero h1 { margin-bottom: 18px; }

  /* Lede: smaller, softer, and capped so it can't run 6 lines deep */
  .hero--photo .lede {
    font-size: 15px;
    line-height: 1.6;
    max-width: 34ch;
    margin-bottom: 26px;
  }

  /* Buttons hug their text instead of spanning full width */
  .hero__cta {
    gap: 10px;
    margin-bottom: 30px;
  }
  .hero__cta .btn {
    padding: 11px 20px;
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  /* Meta row: two columns, lighter type, no cramped third column */
  .hero__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
    padding-top: 18px;
    font-size: 12px;
  }
  .hero__meta strong {
    font-size: 9px;
    letter-spacing: 0.18em;
    margin-bottom: 3px;
  }

  /* Announcement banner: one clean line, no cramped wrap */
  .announce {
    padding: 9px 14px;
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .announce a {
    gap: 6px;
    flex-wrap: nowrap;
    justify-content: center;
  }
  .announce strong {
    font-size: 8.5px;
    letter-spacing: 0.14em;
    padding: 3px 7px;
    margin-right: 7px;
    flex-shrink: 0;
  }
}

/* page-load animation */
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero h1, .hero .lede, .hero__cta, .hero__meta {
  opacity: 0;
  animation: rise 0.8s var(--ease) forwards;
}
.hero h1       { animation-delay: 0.05s; }
.hero .lede    { animation-delay: 0.18s; }
.hero__cta     { animation-delay: 0.30s; }
.hero__meta    { animation-delay: 0.42s; }

/* ---------- authority bar ---------- */
.authority {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(44px, 5vw, 68px) 0;
}
.authority__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: stretch;
}
@media (max-width: 1000px) {
  .authority__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .authority__grid { grid-template-columns: 1fr; }
}
.authority__item {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  padding: 4px clamp(20px, 2.6vw, 40px);
  border-left: 1px solid var(--line);
}
.authority__item:first-child { border-left: 0; padding-left: 0; }
@media (max-width: 1000px) {
  .authority__item { padding: 14px clamp(16px, 2.4vw, 32px); }
  .authority__item:nth-child(odd) { border-left: 0; padding-left: 0; }
  .authority__item:nth-child(n+3) { border-top: 1px solid var(--line); margin-top: 14px; padding-top: 26px; }
}
@media (max-width: 620px) {
  .authority__item { border-left: 0; padding: 0 0 0 0; }
  .authority__item + .authority__item {
    border-top: 1px solid var(--line);
    margin-top: 20px;
    padding-top: 20px;
  }
}
.authority__item strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(21px, 2.1vw, 27px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: -0.005em;
}

/* ---------- section heading ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(32px, 4vw, 56px);
}
@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 20px; }
}

/* ---------- services grid ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 720px) {
  .services { grid-template-columns: 1fr; }
}
.service-card {
  background: var(--bg);
  padding: clamp(22px, 2.5vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
  transition: background 0.4s var(--ease);
  position: relative;
}
.service-card:hover {
  background: var(--bg-card);
}
.service-card__num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.005em;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}
.service-card__link {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  transition: gap 0.28s var(--ease);
}
.service-card:hover .service-card__link { gap: 14px; }

/* ---------- editorial / about ---------- */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
@media (max-width: 900px) {
  .editorial { grid-template-columns: 1fr; }
}
.editorial__media {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--rad-md);
  position: relative;
  box-shadow: var(--shadow-lg);
}
.editorial__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.editorial__copy h2 { margin-bottom: 28px; }
.editorial__copy p + p { margin-top: 18px; }
.editorial__quote {
  margin: 36px 0;
  padding: 0 0 0 28px;
  border-left: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.32;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
}

/* ---------- principles ---------- */
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 48px);
}
@media (max-width: 820px) {
  .principles { grid-template-columns: 1fr; }
}
.principle {
  border-top: 1px solid var(--ink);
  padding-top: 24px;
}
.principle h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.1;
}
.principle p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- CTA band (inverted moment) ---------- */
.cta-band {
  background: var(--bg-deep);
  color: var(--on-deep);
  padding: clamp(44px, 5.5vw, 84px) 0;
  text-align: center;
}
.cta-band h2 {
  color: var(--on-deep);
  margin-bottom: 24px;
}
.cta-band p {
  color: var(--on-deep-soft);
  max-width: 52ch;
  margin: 0 auto 36px;
  font-size: 17px;
}
.cta-band .eyebrow { color: var(--on-deep-soft); }
.cta-band .btn {
  border-color: var(--on-deep);
  color: var(--on-deep);
}
.cta-band .btn:hover {
  background: var(--on-deep);
  color: var(--bg-deep);
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--bg-deep);
  color: var(--on-deep-soft);
  padding: clamp(40px, 5vw, 68px) 0 28px;
  font-size: 14px;
  border-top: 1px solid var(--on-deep-line);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  margin-bottom: 40px;
}
@media (max-width: 800px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer__brand {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--on-deep);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer__brand small {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--on-deep-soft);
  margin-top: 6px;
  font-weight: 500;
}
.footer__social {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__social a {
  color: var(--on-deep-soft);
  font-size: 13px;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.footer__social a:hover {
  color: var(--on-deep);
  border-bottom-color: var(--on-deep-line);
}
.site-footer h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-deep-soft);
  font-weight: 500;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul li a {
  color: var(--on-deep-soft);
  transition: color 0.25s var(--ease);
}
.site-footer ul li a:hover { color: var(--on-deep); }
.footer__hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  margin-top: 0;
}
.footer__hours li {
  display: contents;
  margin-bottom: 0 !important;
}
.footer__hours li span:first-child {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-deep-soft);
  font-weight: 500;
}
.footer__hours li span:last-child {
  font-size: 13px;
  color: var(--on-deep);
}
.footer__bottom {
  border-top: 1px solid var(--on-deep-line);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--on-deep-soft);
  letter-spacing: 0.04em;
}
.footer__legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.footer__legal a {
  color: var(--on-deep-soft);
  transition: color 0.2s var(--ease);
}
.footer__legal a:hover { color: var(--on-deep); }
.footer__credit {
  color: var(--on-deep-soft);
  font-style: italic;
}
.footer__credit a {
  color: var(--on-deep);
  border-bottom: 1px solid var(--on-deep-line);
  padding-bottom: 1px;
  transition: border-color 0.2s var(--ease);
}
.footer__credit a:hover { border-bottom-color: var(--on-deep); }

/* ============================================================
   SERVICE PAGE
   ============================================================ */
.service-hero {
  padding: clamp(52px, 7vw, 92px) 0 clamp(36px, 5vw, 64px);
  position: relative;
  border-bottom: 1px solid var(--line);
}
.crumbs {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 32px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.crumbs a { color: var(--ink-soft); transition: color 0.25s var(--ease); }
.crumbs a:hover { color: var(--ink); }
.crumbs span { color: var(--ink-faint); }

/* Price chip — appears inline with breadcrumb for visible service pricing */
.price-chip {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}
.price-chip strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0;
  color: var(--bg);
  text-transform: none;
}
.crumbs {
  align-items: center;
}
@media (max-width: 600px) {
  .price-chip { margin-left: 0; margin-top: 12px; }
  .crumbs { flex-direction: row; flex-wrap: wrap; }
}

/* "Starting at" service price card */
.price-callout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  background: var(--bg-soft);
  border-left: 2px solid var(--ink);
  margin: 32px 0;
}
.price-callout__label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.price-callout__amount {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.price-callout__amount small {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  font-weight: 400;
}
.price-callout__note {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.price-callout a {
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.25s var(--ease);
}
.price-callout a:hover { text-decoration-color: var(--ink); }
@media (max-width: 640px) {
  .price-callout { grid-template-columns: 1fr; gap: 14px; }
}

.service-hero h1 { margin-bottom: 32px; max-width: 16ch; }
.service-hero .lede { max-width: 60ch; margin-bottom: 32px; }
.service-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 96px);
}
@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; }
}
.content-grid h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.05;
}
.content-grid .prose p { margin-bottom: 18px; }
.content-grid .prose p + p { margin-top: 0; }
.content-grid .prose ul {
  margin: 14px 0 24px 22px;
  color: var(--ink-soft);
}
.content-grid .prose ul li { margin-bottom: 8px; }

.callout {
  background: var(--bg-soft);
  border-left: 2px solid var(--ink);
  padding: 24px 28px;
  margin: 32px 0;
}
.callout strong { display: block; margin-bottom: 6px; color: var(--ink); }

/* ---------- FAQ ---------- */
.faq {
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  cursor: pointer;
}
.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--sans);
  font-weight: 300;
  font-size: 28px;
  color: var(--ink-soft);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); color: var(--ink); }
.faq .faq__answer {
  padding-top: 18px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  max-width: 70ch;
}

/* ---------- utilities ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  body { background: #fff; color: #000; }
  .site-header, .cta-band, .site-footer { display: none; }
}

/* ---------- service hierarchy: flagship services carry more weight ---------- */
.service-card--lead {
  grid-column: span 2;
  padding: clamp(32px, 4vw, 52px);
  background: var(--bg-card);
}
.service-card--lead h3 {
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.06;
  margin-bottom: 14px;
}
.service-card--lead p {
  font-size: 16.5px;
  max-width: 52ch;
}
@media (max-width: 880px) {
  .service-card--lead { grid-column: span 1; }
  .service-card--lead h3 { font-size: clamp(24px, 6vw, 30px); }
}

/* ---------- continuing education ---------- */
.training {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--line);
}
@media (max-width: 760px) { .training { grid-template-columns: 1fr; } }
.training__item {
  padding: clamp(24px, 3vw, 34px) clamp(20px, 3vw, 40px) clamp(24px, 3vw, 34px) 0;
  border-bottom: 1px solid var(--line);
}
.training__item:nth-child(even) {
  padding-left: clamp(20px, 3vw, 40px);
  border-left: 1px solid var(--line);
}
@media (max-width: 760px) {
  .training__item, .training__item:nth-child(even) {
    padding-left: 0; padding-right: 0; border-left: 0;
  }
}
.training__item h3 {
  font-family: var(--serif);
  font-size: clamp(19px, 1.9vw, 24px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.training__item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 46ch;
}

/* ---------- featured: four money-maker services ---------- */
.featured-pair--four {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1080px) {
  .featured-pair--four { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .featured-pair--four { grid-template-columns: 1fr; }
}
.featured-pair--four .featured-card { padding: clamp(24px, 2.6vw, 34px); }
.featured-pair--four .featured-card__name { font-size: clamp(24px, 2.3vw, 30px); }
.featured-pair--four .featured-card__desc { font-size: 14.5px; }

/* ---------- image tile inside the services grid ---------- */
.service-tile {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
  min-height: 260px;
}
/* absolute fill so the photo never dictates row height — the sibling card does */
.service-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  transition: transform 0.8s var(--ease);
}
.service-tile:hover img { transform: scale(1.03); }
@media (max-width: 880px) {
  .service-tile { min-height: 220px; }
}
