/* ================================================
   Crest Hill Clinic — Main Stylesheet
   Wix-matching design system
   Fonts loaded via <link> in HTML head
   ================================================ */

:root {
  /* === Wix-matching palette — restored to the live site's actual colors (source of
     truth: the live Wix site). Undoes the earlier contrast remediation per owner:
     buttons sage-green, bars/rings sky-blue, dark grey body text. === */
  --sage:        #A3D29B;   /* light sage green — primary BUTTON fill + decorative */
  --sage-dark:   #8BC17F;   /* mid sage — borders / accents */
  --sage-light:  #C8E4C1;   /* light sage surface */
  --sage-cta:    #A3D29B;   /* button fill (Wix green) */
  --sage-cta-dark:#8BC17F;  /* button hover */
  --sage-ink:    #8BC17F;   /* sage accent text / eyebrows / links */
  --slate:       #657F8B;   /* slate-blue accent */
  --slate-dark:  #4A6572;   /* deep slate — heading / emphasis text on white */
  --sky:         #75CAEA;   /* sky blue — top bar / footer / icon rings / bands */
  --cyan:        #00A3E0;   /* deeper blue accent */
  --teal:        #00A3E0;   /* inline-HTML accent alias → blue accent text / links */
  --light:       #f7f7f4;   /* = --bg-alt; cream surface for card frames / sidebars */
  --text:        #555555;   /* body text */
  --text-muted:  #7a7a7a;   /* muted text */
  --heading:     #2C2C2C;   /* headings */
  --bg:          #ffffff;
  --bg-alt:      #f7f7f4;
  --border:      #e5e5e0;
  --radius:      16px;
  --radius-lg:   24px;
  --shadow:      0 8px 28px rgba(20,40,55,0.07);
  --shadow-lg:   0 20px 52px rgba(20,40,55,0.13);
  --font-head:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:   'Raleway', 'Helvetica Neue', Arial, sans-serif;
  --container:   1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--sage-ink); text-decoration: none; transition: color .15s; }
a:hover { color: var(--slate-dark); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2;
  letter-spacing: 0;
}
/* Playfair display headings get a slightly tighter track for a premium serif feel.
   (h3/h4 are Raleway uppercase — kept at their wider tracking below.) */
h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.015em; }
h3 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.1em; }
h4 { font-size: 0.92rem; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; }

/* Accent label — small uppercase tag above section headings */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-ink);
  margin-bottom: 14px;
}
.eyebrow::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--sage-ink);
  vertical-align: middle;
  margin-left: 10px;
  margin-bottom: 3px;
}

p { margin-bottom: 1.2rem; color: var(--text); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }

/* ================================================
   ACCESSIBILITY — global focus ring + skip link
   ================================================ */
/* Visible keyboard focus on every interactive control. Inputs keep their own
   focus rule above; this covers links, buttons, nav, cards, carousel controls. */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible,
.btn:focus-visible,
.nav-cta:focus-visible,
.top-bar-book:focus-visible,
#main-nav a:focus-visible,
.submenu-toggle:focus-visible,
.hero-arrow:focus-visible,
.hero-dots button:focus-visible,
.testimonial-arrow:focus-visible,
.testimonial-dots button:focus-visible,
.service-card:focus-visible,
.sticky-cta__btn:focus-visible,
.sticky-cta__close:focus-visible {
  outline: 3px solid var(--slate-dark);
  outline-offset: 2px;
  border-radius: 4px;
}
/* Over the dark hero photo / footer / sticky bar, use a light ring so it stays visible */
body.has-hero #main-nav > ul > li > a:focus-visible,
.footer-v2 a:focus-visible,
.footer-v2 button:focus-visible,
#sticky-cta a:focus-visible,
#sticky-cta button:focus-visible,
.top-bar a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* Skip-to-content link — first focusable element, visible only on focus */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--sky);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 8px 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus,
.skip-link:focus-visible { top: 0; color: #fff; outline: 3px solid #fff; outline-offset: 2px; }

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-block;
  padding: 15px 38px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--sage-cta);
  color: #fff;
  border-color: var(--sage-cta);
}
.btn-primary:hover {
  background: var(--sage-cta-dark);
  border-color: var(--sage-cta-dark);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--slate);
  border-color: var(--slate);
}
.btn-outline:hover {
  background: var(--slate);
  color: #fff;
}
.btn-light {
  background: #fff;
  color: var(--slate);
  border-color: #fff;
}
.btn-light:hover {
  background: var(--bg-alt);
  color: var(--slate-dark);
}

/* ================================================
   TOP UTILITY BAR
   ================================================ */
.top-bar {
  background: var(--sky);   /* deep brand blue (--brand-deep #0A6480) — white text 6.67:1 */
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  transition: background .3s;
}
.top-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.top-bar a {
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.top-bar a:hover { color: var(--sage-light); }
.top-bar-spacer { flex: 1; }
.top-bar-book {
  background: var(--sage-cta);
  color: #fff;
  padding: 8px 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: 100px;
  transition: background .2s;
}
.top-bar-book:hover { background: var(--sage-cta-dark); color: #fff; }
.top-bar-note { color: rgba(255,255,255,0.92); font-size: 0.74rem; letter-spacing: 0.05em; font-weight: 500; }
@media (max-width: 760px) { .top-bar-note { display: none; } }
.top-bar svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ================================================
   HEADER & NAVIGATION
   ================================================ */
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: background .3s, box-shadow .3s, padding .3s;
}

/* ================================================
   TRANSPARENT NAV ON HOMEPAGE (body.has-hero)
   Nav floats over hero photo at top of page,
   transitions to solid on scroll.
   ================================================ */
body.has-hero .top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background: var(--sky);
}
body.has-hero header {
  position: fixed;
  top: 37px; /* below top-bar */
  left: 0;
  right: 0;
  z-index: 100;
  /* Blend: starts at the sky-blue banner color and fades gently into the hero
     photo below, so the nav melts into the image instead of sitting on a bar. */
  background: linear-gradient(to bottom,
    rgba(117, 202, 234, 0.55) 0%,
    rgba(70, 130, 165, 0.30) 45%,
    rgba(40, 70, 90, 0.10) 78%,
    rgba(40, 70, 90, 0) 100%);
  box-shadow: none;
}
/* White logo + light nav text while floating over the photo */
body.has-hero .nav-logo-img--color { display: none; }
body.has-hero .nav-logo-img--white { display: block; }
body.has-hero #main-nav > ul > li > a {
  color: #fff;
  text-shadow: 0 1px 8px rgba(15, 40, 55, 0.45);
}
body.has-hero #main-nav > ul > li > a:hover,
body.has-hero #main-nav > ul > li > a.active {
  color: #fff;
}
body.has-hero #main-nav > ul > li > a::after { background: #fff; }
body.has-hero .hero-carousel {
  margin-top: 0;
}
body.has-hero .hero-slide {
  padding-top: 200px; /* clear the taller fixed nav with breathing room */
  padding-bottom: 60px;
}

/* Hide the header (and top bar) on scroll-down, reveal on scroll-up */
.top-bar { transition: transform .38s ease; }
header { transition: background .3s, box-shadow .3s, padding .3s, transform .38s ease; }
body.header-hidden .top-bar,
body.header-hidden header { transform: translateY(-185px); }

/* SCROLLED state — revert to solid */
body.has-hero.scrolled .top-bar {
  background: var(--sky);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.has-hero.scrolled header {
  background: #fff;
  padding-bottom: 0;
  box-shadow: 0 2px 14px rgba(20, 50, 70, 0.08);
}
/* Back to the color logo + dark nav once scrolled onto white */
body.has-hero.scrolled .nav-logo-img--color { display: block; }
body.has-hero.scrolled .nav-logo-img--white { display: none; }
body.has-hero.scrolled .nav-logo-text {
  color: var(--slate-dark);
  text-shadow: none;
}
body.has-hero.scrolled .nav-logo-text span {
  color: var(--slate);
  text-shadow: none;
}
body.has-hero.scrolled #main-nav > ul > li > a {
  color: var(--slate-dark);
  text-shadow: none;
}
body.has-hero.scrolled #main-nav > ul > li > a:hover,
body.has-hero.scrolled #main-nav > ul > li > a.active {
  color: var(--sage-ink);
}
body.has-hero.scrolled #main-nav > ul > li > a::after { background: var(--sage); }
body.has-hero.scrolled .nav-logo-icon {
  filter: none;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
}
.nav-logo-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 80px;   /* enlarged to match the Wix header logo (was 58px) */
  width: auto;
  display: block;
}
.nav-logo-img--white { display: none; }
.nav-logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--slate-dark);
  line-height: 1.05;
  display: flex;
  flex-direction: column;
  letter-spacing: 0.04em;
}
.nav-logo-text span {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 3px;
}

#main-nav { flex: 1; display: flex; justify-content: center; }
#main-nav > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
#main-nav > ul > li { position: relative; }
#main-nav > ul > li > a {
  position: relative;
  display: block;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-dark);
  transition: color .15s;
}
#main-nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px; border-radius: 2px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
#main-nav > ul > li > a:hover,
#main-nav > ul > li > a.active {
  color: var(--sage-ink);
}
#main-nav > ul > li > a:hover::after,
#main-nav > ul > li > a.active::after {
  transform: scaleX(1);
}
/* Premium nav CTA button */
.nav-cta {
  /* Hidden: the top-bar "Book Now" already covers this corner (matches the Wix
     header, which has no second button). Was a duplicate stacked under the top bar. */
  display: none;
  margin-left: 24px;
  background: var(--sage-cta);
  color: #fff;
  padding: 12px 26px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(45,75,55,0.22);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.nav-cta:hover {
  background: var(--sage-cta-dark); color: #fff;
  transform: translateY(-2px); box-shadow: 0 8px 20px rgba(45,75,55,0.3);
}
/* Tablet dead-zone fix: keep the Book Now CTA visible down to the hamburger
   breakpoint (768px) so 769–992px isn't left with no primary CTA + no hamburger. */
@media (max-width: 768px) { .nav-cta { display: none; } }

/* dropdown */
.submenu-toggle { display: none; }   /* mobile-only; shown in the 768px block */
#main-nav .has-submenu > a::after {
  content: " ▾";
  font-size: 0.55rem;
  opacity: 0.6;
  margin-left: 2px;
}
#main-nav .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  list-style: none;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 110;
}
#main-nav .has-submenu:hover > .submenu,
#main-nav .has-submenu:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* Right-align the trailing dropdowns so their absolutely-positioned (but hidden)
   box doesn't extend past the viewport and create phantom horizontal scroll at
   tablet widths (~820px). Opens leftward from the parent's right edge. */
#main-nav > ul > li:nth-last-child(2) > .submenu,
#main-nav > ul > li:nth-last-child(3) > .submenu { left: auto; right: 0; }
#main-nav .submenu li a {
  display: block;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-dark);
}
#main-nav .submenu li a:hover {
  background: var(--bg-alt);
  color: var(--sage-ink);
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  padding: 10px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--sky);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* ================================================
   HERO CAROUSEL (3 slides, card overlay)
   ================================================ */
.hero-carousel {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;   /* dynamic-viewport fallback — prevents hero + Book Now CTA clipping under iOS/Android browser chrome */
  overflow: hidden;
  background: #cfd8dc;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background-image: var(--hero-img, none);
  background-size: cover;
  background-position: center;
  background-color: #cfd8dc;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0s linear 0.8s;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0s linear 0s;
  z-index: 2;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Subtle, even veil so the centered white card reads cleanly over the photo. */
  background: rgba(255, 255, 255, 0.06);
  z-index: 1;
}
.hero-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 840px;   /* widened hero text container (was 660px) */
  min-height: 340px;
  /* Frosted-glass card: translucent white + backdrop blur (kept light enough that the
     dark hero text stays readable over the photo). */
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  border: 1px solid rgba(255,255,255,0.55);
  padding: 44px 52px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(20,38,45,0.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-card h1,
.hero-card .hero-card__title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  /* Balance the heading across lines so it doesn't orphan a lone last word
     (e.g. "...Well-/being"). */
  text-wrap: balance;
}
.hero-card p {
  font-size: 0.95rem;
  line-height: 1.55;
}
.hero-card h1,
.hero-card .hero-card__title {
  color: var(--heading);
  margin-bottom: 14px;
  font-weight: 700;
}
.hero-card .hero-subhead {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--slate);
  margin-bottom: 22px;
}
.hero-card p {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 18px;
}
.hero-card p:last-of-type { margin-bottom: 28px; }
.hero-card .btn-primary {
  font-size: 0.9rem;
  padding: 14px 44px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  color: var(--slate-dark);
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 5;
  transition: background .2s, color .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.hero-arrow:hover { background: #fff; color: var(--sage-ink); }
.hero-arrow--prev { left: 24px; }
.hero-arrow--next { right: 24px; }

.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2px;
  z-index: 5;
}
/* 44x44 transparent hit area around a small 10px visual dot (rendered via ::before) */
.hero-dots button {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-dots button::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  transition: background .2s;
}
.hero-dots button.active::before { background: #fff; }

/* ================================================
   GENERIC SECTION
   ================================================ */
/* Lower specificity (no `section` type prefix) so per-section overrides below
   actually win — and a tighter default to avoid excess whitespace. */
.section,
[class^="sec-"] {
  padding: 64px 0;
}
.sec-alt { background: var(--bg-alt); }

/* .section-title is defined once, in the SUBPAGE COMPONENTS block below
   (merged duplicate — was also declared here). */
.section-lead {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
}

/* ================================================
   INTRO COPY SECTION
   ================================================ */
.sec-intro {
  padding: 56px 0 40px;
  text-align: center;
}
.sec-intro h2 {
  max-width: 720px;
  margin: 0 auto 28px;
}
.sec-intro p {
  max-width: 820px;
  margin: 0 auto;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
}

/* ================================================
   SERVICES GRID — round images
   ================================================ */
.sec-services {
  padding: 32px 0 56px;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
/* Services hub: 9 tiles → 3 columns so the grid divides cleanly (3+3+3, no orphan). */
.services-grid--three { grid-template-columns: repeat(3, 1fr); }
.service-card {
  background: transparent;
  text-align: center;
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform .25s;
}
.service-card:hover {
  transform: translateY(-4px);
  color: inherit;
}
.service-card__img {
  width: 180px;
  height: 180px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--sage-light);
  background-size: cover;
  background-position: center;
  border: 4px solid var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  font-size: 0.72rem;
  font-style: italic;
  overflow: hidden;
}
.service-card:hover .service-card__img {
  border-color: var(--sage-ink);
}
.service-card__body { padding: 0 8px; }
.service-card h3 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
  font-weight: 400;
}

/* ================================================
   TESTIMONIAL — background photo + white card
   ================================================ */
.sec-testimonial {
  position: relative;
  padding: 64px 24px;
  background-color: #d0dbd4;
  background-image: linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.3)), var(--testimonial-img, none);
  background-size: cover;
  background-position: center;
  text-align: center;
}
/* Visible aggregate rating badge (mirrors the AggregateRating JSON-LD) */
.rating-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto 28px;
  padding: 9px 18px;
  background: #fff;
  border: 1px solid var(--sage-dark);
  border-radius: 999px;
  box-shadow: var(--shadow);
  color: var(--slate-dark);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  transition: box-shadow .15s, transform .15s;
}
.rating-badge:hover {
  color: var(--slate-dark);
  transform: translateY(-1px);
}
.rating-badge__star {
  width: 18px;
  height: 18px;
  color: var(--sage-cta);
  flex: 0 0 auto;
}
.rating-badge__score { font-size: 1.05rem; color: var(--sage-ink); }
.rating-badge__meta { font-weight: 500; color: var(--slate); }
.testimonial-slider {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.testimonial-track {
  position: relative;
  min-height: 260px;
}
.testimonial {
  background: #fff;
  padding: 48px 56px;
  box-shadow: var(--shadow);
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0s linear 0.5s;
}
.testimonial.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0s linear 0s;
  position: relative;
  inset: auto;
}
.testimonial__quote-mark { display: none; }
.testimonial blockquote {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  color: var(--heading);
  line-height: 1.65;
  margin-bottom: 22px;
}
.testimonial cite {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
}
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity .15s;
}
.testimonial-arrow:hover { opacity: 1; }
.testimonial-arrow--prev { left: -48px; }
.testimonial-arrow--next { right: -48px; }
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-top: 16px;
}
/* 44x44 transparent hit area around a small 10px visual dot (rendered via ::before) */
.testimonial-dots button {
  width: 44px;
  height: 44px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-dots button::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  transition: background .2s;
}
.testimonial-dots button.active::before { background: var(--sage-cta); }   /* 3:1+ UI contrast on white */

/* ================================================
   WHY CHOOSE — round image
   ================================================ */
.sec-why {
  padding: 64px 0;
  text-align: center;
}
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.why-grid__text { text-align: left; }
.why-grid__text h2 { margin-bottom: 22px; }
.why-grid__text p {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.why-grid__img {
  width: 280px;
  height: 280px;
  justify-self: center;
  border-radius: 50%;
  background: var(--sage-light);
  background-size: cover !important;
  background-position: center !important;
  border: 4px solid var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  font-style: italic;
  font-size: 0.8rem;
  overflow: hidden;
}

/* ================================================
   WELCOME — asymmetric collage
   ================================================ */
.sec-welcome {
  padding: 64px 0;
  background: var(--bg-alt);
  text-align: center;
}
.sec-welcome > .container > h2 {
  max-width: 720px;
  margin: 0 auto 48px;
}
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  text-align: left;
  max-width: 960px;
  margin: 0 auto;
}
.welcome-grid__gallery {
  position: relative;
  min-height: 420px;
}
.welcome-grid__gallery > div {
  background: var(--sage-light);
  background-size: cover !important;
  background-position: center !important;
  position: absolute;
  color: var(--slate);
  font-style: italic;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.welcome-grid__gallery > div:nth-child(1) {
  width: 62%;
  aspect-ratio: 4 / 3;
  top: 0;
  left: 0;
}
.welcome-grid__gallery > div:nth-child(2) {
  width: 52%;
  aspect-ratio: 1 / 1;
  top: 30%;
  right: 0;
}
.welcome-grid__gallery > div:nth-child(3) { display: none; }
.welcome-grid__gallery > div:nth-child(4) { display: none; }

.welcome-grid__text p {
  color: var(--text);
  margin-bottom: 18px;
  font-size: 0.98rem;
  line-height: 1.75;
}
.welcome-grid__text h2 { margin-bottom: 22px; }

/* ================================================
   BOOKING FORM SECTION (light bg)
   ================================================ */
.sec-booking {
  padding: 64px 0;
  background: #fff;
  text-align: center;
}
.sec-booking h2 { color: var(--heading); margin-bottom: 22px; }
.sec-booking > .container > p {
  max-width: 820px;
  margin: 0 auto 40px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
}

.booking-form {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  text-align: left;
  color: var(--text);
}
.booking-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.booking-form .form-field { margin-bottom: 16px; }
.booking-form label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-dark);
  margin-bottom: 6px;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;            /* tap-target / button-parity baseline */
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 1rem;             /* ≥16px also stops iOS zoom-on-focus */
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .15s, box-shadow .15s;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid var(--slate-dark);   /* visible AA focus replacement, not bare outline:none */
  outline-offset: 1px;
  border-color: var(--sage-cta);
  box-shadow: 0 0 0 3px rgba(63,107,55,0.22);
}
.booking-form textarea { min-height: 120px; resize: vertical; }
.booking-form .btn {
  width: auto;
  min-width: 220px;
  font-size: 0.9rem;
  padding: 14px 36px;
  margin: 12px auto 0;
  display: block;
}

.form-status {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  display: none;
}
.form-status:not(:empty) { display: block; }
.form-status--success {
  background: #dcf3d6;
  color: #2f6d28;
  border: 1px solid var(--sage);
}
.form-status--error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* ================================================
   FOOTER — green top band + dark bottom
   ================================================ */
.footer-map {
  width: 100%;
  height: 150px;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 8px;
  overflow: hidden;
}
.footer-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.footer-hours-block h4 {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.footer-hours-block ul {
  list-style: none;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.95);
}

footer {
  background: var(--sky);
  color: #fff;
  padding: 40px 0 22px;
  font-size: 0.88rem;
}
footer h4 {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  margin-bottom: 18px;
  font-weight: 700;
}
footer a {
  color: rgba(255,255,255,0.92);
}
footer a:hover { color: #fff; text-decoration: underline; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  margin-bottom: 28px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; font-size: 0.86rem; }

.footer-hours {
  list-style: none;
  font-size: 0.82rem;
}
.footer-hours li {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
}
.footer-hours li span:first-child { color: #fff; font-weight: 500; }

.footer-areas {
  border-top: 1px solid rgba(255,255,255,0.32);
  padding-top: 22px;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.92);
  font-size: 0.82rem;
  line-height: 1.7;
  text-align: center;
}
.footer-areas strong {
  color: #fff;
  font-family: var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  display: block;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.32);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.9);
}
.footer-bottom a { color: #fff; margin: 0 4px; }
.footer-bottom a:hover { color: #fff; text-decoration: underline; }
.footer-disclaimer {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.78);
  margin-top: 20px;
  line-height: 1.75;
}

/* ================================================
   FOOTER V2 — premium compact footer
   ================================================ */
.footer-v2 {
  /* Sky-blue footer — matches the live Wix site (restored from the remediation's darker
     teal-slate). White text on sky is low-contrast, same as Wix (owner-approved fidelity). */
  background: linear-gradient(180deg, #7cceed 0%, #59b7dc 100%);
  color: #fff;
  padding: 58px 0 0;
  font-size: 0.88rem;
  border-top: none;
}
.footer-v2__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr 1.15fr;
  gap: 36px;
  align-items: stretch;
  padding-bottom: 38px;
}
.footer-v2__brand { padding-right: 30px; border-right: 1px solid rgba(255,255,255,0.22); }
.footer-v2__logo { height: 58px; width: auto; margin-bottom: 22px; display: block; }
.footer-v2__review {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px;
  border: 1.5px solid rgba(255,255,255,0.55); border-radius: 24px;
  padding: 9px 18px; color: #fff; font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.footer-v2__review:hover { background: #fff; color: var(--sky); border-color: #fff; transform: translateY(-2px); }
.footer-v2__review svg { width: 15px; height: 15px; }
.footer-v2__contact { list-style: none; margin: 0; }
.footer-v2__contact li {
  display: flex; align-items: flex-start; gap: 11px;
  margin-bottom: 13px; font-size: 0.9rem; line-height: 1.5; color: #fff;
}
.footer-v2__contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; opacity: 0.92; }
.footer-v2__contact a { color: #fff; }
.footer-v2__contact a:hover { text-decoration: underline; }
.footer-v2 h4 {
  position: relative; color: #fff; font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 20px; padding-bottom: 12px;
}
.footer-v2 h4::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 28px; height: 2px; background: var(--sage); border-radius: 2px;
}
.footer-v2 h4 a { color: #fff; }
.footer-v2__col ul { list-style: none; }
.footer-v2__col li { margin-bottom: 10px; }
.footer-v2__col a {
  position: relative; color: rgba(255,255,255,0.9); font-size: 0.86rem;
  display: inline-block; transition: color .15s;
}
.footer-v2__col a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1.5px; background: #fff;
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.footer-v2__col a:hover { color: #fff; }
.footer-v2__col a:hover::after { transform: scaleX(1); }
.footer-v2__hours {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 14px;
  padding: 24px 24px 26px;
  box-shadow: 0 6px 20px rgba(15,40,55,0.10);
}
.footer-v2__hours::before {
  content: ""; position: absolute; left: -18px; top: 4px; bottom: 4px;
  width: 1px; background: rgba(255,255,255,0.22);
}
.footer-v2__hours h4 { margin-bottom: 16px; }
.footer-v2__hours li {
  display: flex; justify-content: space-between; gap: 12px;
  margin-bottom: 9px; font-size: 0.8rem;
}
.footer-v2__hours .footer-v2__cta { display: block; text-align: center; margin-top: auto; }
.footer-v2__hours li span { white-space: nowrap; }
.footer-v2__hours li span:first-child { font-weight: 600; }
.footer-v2__cta {
  display: inline-block; margin-top: 18px; white-space: nowrap;
  background: var(--sage-cta); color: #fff;
  padding: 12px 26px; border-radius: 100px;
  font-weight: 600; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(45,75,55,0.20);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.footer-v2__cta:hover {
  background: var(--sage-cta-dark); color: #fff;
  transform: translateY(-2px); box-shadow: 0 10px 24px rgba(45,75,55,0.28);
}
.footer-v2__areas {
  border-top: 1px solid rgba(255,255,255,0.26);
  padding: 22px 0; text-align: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.88); line-height: 1.7;
}
.footer-v2__areas strong { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.76rem; color: #fff; }
.footer-v2__legalbar { background: transparent; }
.footer-v2__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 12px; padding-top: 20px; font-size: 0.78rem; color: rgba(255,255,255,0.92);
}
.footer-v2__legal a { color: #fff; margin-left: 18px; }
.footer-v2__legal a:first-child { margin-left: 0; }
.footer-v2__legal a:hover { text-decoration: underline; }
.footer-v2__disclaimer {
  font-size: 0.72rem; color: rgba(255,255,255,0.9);  /* was 0.66 → 3.35:1 fail; 0.9 = 4.75:1 on footer bg */
  padding: 12px 0 22px; margin: 0; line-height: 1.7;
}
@media (max-width: 900px) {
  .footer-v2__main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-v2__brand { border-right: 0; padding-right: 0; grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-v2__main { grid-template-columns: 1fr; }
  .footer-v2__bottom { flex-direction: column; align-items: flex-start; }
  .footer-v2__legal a { margin-left: 0; margin-right: 16px; }
}

/* ================================================
   ICON UTILITIES (SVG sprite via <use>)
   ================================================ */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  flex-shrink: 0;
}
.icon--sm { width: 16px; height: 16px; }
.icon--md { width: 24px; height: 24px; }
.icon--lg { width: 36px; height: 36px; }
.icon--xl { width: 48px; height: 48px; }

/* Service + info card icons — plain, no circle background.
   (Merged from duplicate definitions formerly in the SERVICES grid + INFO cards
   blocks below. Shared props here; the two selectors only diverge on display +
   font-size, set per-selector to preserve the original rendered look.) */
.service-icon, .info-card-icon {
  margin-bottom: 12px;
  align-items: center;
  justify-content: center;
  color: var(--sage-ink);
  background: transparent;
  width: auto;
  height: auto;
  border-radius: 0;
}
.service-icon  { display: inline-flex; font-size: 2rem; }
.info-card-icon { display: block; font-size: 2.2rem; }
.service-icon .icon, .info-card-icon .icon { width: 32px; height: 32px; }

/* Contact detail icon — keep the circle from existing .contact-detail-icon */
.contact-detail-icon .icon { width: 16px; height: 16px; }

/* Sticky CTA phone button */
.sticky-cta__btn .icon { width: 14px; height: 14px; margin-right: 4px; vertical-align: -2px; }

/* Specialty badge warning icon */
.specialty-badge .icon { width: 14px; height: 14px; margin-right: 2px; vertical-align: -2px; color: var(--slate); }

/* 5-star rating row (testimonials) */
.testimonial-stars {
  display: inline-flex;
  gap: 2px;
  color: #f5b400;
  margin-bottom: 12px;
}
.testimonial-stars .icon { width: 16px; height: 16px; fill: currentColor; stroke: currentColor; }

/* ================================================
   SUBPAGE COMPONENTS
   ================================================ */

/* Generic section padding + container for subpages */
section { padding: 70px 0; }
section.text-center { text-align: center; }

/* Page hero (top banner below nav on subpages) */
.page-hero {
  background: linear-gradient(135deg, #cdeefb 0%, #e6f5fc 100%);
  padding: 88px 0 76px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  color: var(--heading);
  margin-bottom: 12px;
  font-family: var(--font-head);
}
.page-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text);
  font-size: 1.05rem;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.8rem;
  color: var(--slate);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.breadcrumb a { color: var(--slate); }
.breadcrumb a:hover { color: var(--sage-ink); }

/* Section labels/titles/subtitles */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-ink);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--heading);
  text-align: center;          /* merged from the former duplicate in the generic-section block */
  margin-bottom: 16px;
  letter-spacing: -0.015em;    /* premium serif tracking (Playfair) */
}
.section-subtitle {
  max-width: 720px;
  margin: 0 auto 40px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
}
.text-center { text-align: center; }

/* About page grid */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 76px;
  align-items: start;
}
/* CLS prevention: reserve space for free-aspect content photos in about-grid
   cells (inline style is width:100% with no height). Cells that set their own
   inline aspect-ratio (e.g. the 1/1 about gallery tiles) override this. */
.about-grid img:not([width]) {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.about-text h2 { margin-bottom: 18px; }
.about-text p {
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 14px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 32px;
}
.value-item h4 {
  color: var(--sage-ink);
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.value-item p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}
.about-visual {
  background: var(--bg-alt);
  padding: 32px 28px;
  border-left: 3px solid var(--sage);
}
.about-visual h3 {
  color: var(--slate-dark);
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Technique list (chips) */
.technique-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.technique-item {
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--slate-dark);
  font-weight: 500;
}

/* Info cards (3-up with icon + text) */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.info-card {
  background: #fff;
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: block;
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--sage);
}
/* .info-card-icon merged into the shared icon rule in ICON UTILITIES above. */
.info-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-dark);
  margin-bottom: 8px;
}
.info-card p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}

/* CTA banner */
.cta-banner {
  background: var(--slate);
  color: #fff;
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 {
  color: #fff;
  margin-bottom: 14px;
}
.cta-banner p {
  color: rgba(255,255,255,0.9);
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 1rem;
}
.cta-banner .btn-secondary,
.cta-banner .btn {
  background: var(--sage-cta);
  color: #fff;
  border-color: var(--sage-cta);
}
.cta-banner .btn:hover { background: var(--sage-cta-dark); border-color: var(--sage-cta-dark); }

/* Contact page layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.contact-info { padding-right: 20px; }
.contact-info h2 { margin-bottom: 18px; }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.contact-detail-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--sage-light);
  color: var(--sage-ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.contact-detail a { color: var(--slate-dark); }
.contact-detail a:hover { color: var(--sage-ink); }
.contact-form {
  background: var(--bg-alt);
  padding: 36px;
  border-radius: var(--radius);
}

/* Form helpers (beyond .booking-form) */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 48px;            /* tap-target / button-parity baseline */
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 1rem;             /* ≥16px also stops iOS zoom-on-focus */
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--slate-dark);   /* visible AA focus replacement, not bare outline:none */
  outline-offset: 1px;
  border-color: var(--sage-cta);
  box-shadow: 0 0 0 3px rgba(63,107,55,0.22);
}
/* textarea should grow from its content, not be locked at 48px */
.booking-form textarea, .form-group textarea { min-height: 120px; }
.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Hours table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.hours-table td {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.hours-table tr:last-child td { border-bottom: 0; }
.hours-table td:first-child {
  font-weight: 600;
  color: var(--slate-dark);
  width: 35%;
}
.hours-table .closed { color: var(--text-muted); font-style: italic; }

/* Map embed */
.map-embed {
  width: 100%;
  aspect-ratio: 16/9;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 20px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Services grid on /services/ index */
.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-detail-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--sage);
  color: inherit;
}
/* .service-icon merged into the shared icon rule in ICON UTILITIES above. */
.service-detail-card h3 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-dark);
  margin-bottom: 10px;
}
.service-detail-card p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}

/* Team grid — 10 cards. Flexbox so the final (10th) card centers instead of
   sitting as a lone left-aligned orphan in a rigid 3-col grid (3+3+3+1). */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;                                   /* matches .services-list gap */
}
.team-grid > .service-detail-card {
  flex: 0 1 calc((100% - 52px) / 3);           /* 3 across (two 26px gaps) */
  max-width: calc((100% - 52px) / 3);
}
@media (max-width: 1024px) {
  .team-grid > .service-detail-card {
    flex-basis: calc((100% - 26px) / 2);        /* 2 across on tablet */
    max-width: calc((100% - 26px) / 2);
  }
}
@media (max-width: 480px) {
  .team-grid > .service-detail-card { flex-basis: 100%; max-width: 100%; }
}

/* Branded initials placeholder — used when a team member has no photo yet.
   Fills its frame (inherits the parent's aspect-ratio: 4/3 grid card or
   1/1 detail page) so the grid stays uniform. On-brand: cream/sage tints,
   initials in Playfair Display, sage ink. No image file needed. */
.team-photo--initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-light);                 /* light sky surface (--brand-wash) */
  color: var(--sage-ink);                        /* deep brand blue (--brand-deep) */
}
.team-photo--initials__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44%;
  max-width: 132px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--sage-dark);            /* mid-sage ring */
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 6vw, 2.6rem);
  letter-spacing: 0.04em;
  color: var(--sage-ink);
  line-height: 1;
}

/* Conditions / What Hurts grid */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.condition-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--sage);
  padding: 22px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow .2s, transform .2s;
}
.condition-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  color: inherit;
}
.condition-card h3 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-dark);
  margin-bottom: 8px;
}
.condition-card p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}
.condition-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  margin-right: 8px;
  vertical-align: middle;
}

/* Specialty grid (team, services intro) */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}
.specialty-badge {
  background: var(--sage-light);
  color: var(--slate-dark);
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
}

/* Areas served (chips) */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}
.area-tag {
  background: #fff;
  color: var(--slate-dark);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  font-size: 0.82rem;
}

/* Aside column */
.content-aside {
  background: var(--bg-alt);
  padding: 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
}

/* 404 page */
.error-hero {
  text-align: center;
  padding: 120px 24px;
}
.error-hero h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--sage-ink);
  margin-bottom: 10px;
}
.error-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* Footer variants used on subpages */
.footer-grid--wide {
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
}
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
}
.footer-contact-item span:first-child { color: var(--sage-light); margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.85); }
.footer-contact-item a:hover { color: var(--sage-light); }

/* Sticky CTA bar */
#sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--sky);
  color: #fff;
  padding: 12px 20px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));  /* clear the iPhone home indicator */
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 90;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform .3s;
}
/* Released by JS when the footer scrolls into view (so it never covers footer/legal links) */
#sticky-cta.sticky-cta--at-footer { transform: translateY(100%); }
#sticky-cta.sticky-cta--visible { transform: translateY(0); }
.sticky-cta__text {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}
.sticky-cta__text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}
.sticky-cta__actions {
  display: flex;
  gap: 10px;
}
.sticky-cta__btn {
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
}
.sticky-cta__btn--primary { background: var(--sage-cta); color: #fff; }
.sticky-cta__btn--primary:hover { background: var(--sage-cta-dark); color: #fff; }
.sticky-cta__btn--phone {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.sticky-cta__btn--phone:hover { background: rgba(255,255,255,0.1); color: #fff; }
.sticky-cta__close {
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.7);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}
.sticky-cta__close:hover { color: #fff; }

/* btn-secondary alias used in some subpages */
.btn-secondary {
  background: var(--sage-cta);
  color: #fff;
  border-color: var(--sage-cta);
}
.btn-secondary:hover {
  background: var(--sage-cta-dark);
  border-color: var(--sage-cta-dark);
  color: #fff;
}

/* Subpage section alt background */
section[style*="--light"], section.sec-light { background: var(--bg-alt); }

/* ================================================
   SCROLL ANIMATION + MOTION
   ================================================ */
/* No-JS safety: the hidden start state only applies when JS is active
   (html gets a `js` class from main.js). With JS off, .fade-in content
   stays fully visible. */
html.js .fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
html:not(.js) .fade-in {
  opacity: 1;
  transform: none;
}
html.js .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal — apply via inline style="--delay: 100ms" for child elements */
.fade-in[style*="--delay"] { transition-delay: var(--delay); }

/* Hover lift — for cards, service tiles, info cards */
.lift {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.lift:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.06); }

/* Apply lift to existing card patterns by default */
.service-detail-card, .info-card, .condition-card, .service-card {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ================================================
   REDUCED MOTION — honor the OS "reduce motion" setting
   (JS in main.js also gates carousel autoplay, count-up,
    and smooth scroll behind the same matchMedia query)
   ================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  /* Reveal-on-scroll elements must show immediately, not stay invisible */
  .fade-in { opacity: 1 !important; transform: none !important; }
  /* No hover lift travel */
  .lift:hover { transform: none !important; }
}

/* ================================================
   SECTION RHYTHM — full-bleed, asymmetric, breakouts
   ================================================ */

/* Full-bleed section breaks out of container */
.full-bleed {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* Photo strip — full-width image divider between sections */
.photo-strip {
  width: 100%;
  height: clamp(280px, 40vh, 480px);
  background-size: cover;
  background-position: center;
  position: relative;
}
.photo-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.15));
}

/* Pull-quote — large styled quote that breaks the rhythm */
.pull-quote {
  max-width: 880px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.pull-quote blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--heading);
  margin-bottom: 18px;
}
.pull-quote cite {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-ink);
  font-style: normal;
}

/* Asymmetric grid — image + text with offset overlap */
.asym-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.asym-grid--reverse { grid-template-columns: 1fr 1.2fr; }
.asym-grid__image {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}
.asym-grid__image--tall { aspect-ratio: 3 / 4; }
.asym-grid__text h2 { margin-bottom: 18px; }
.asym-grid__text p {
  color: var(--text);
  line-height: 1.75;
  font-size: 1rem;
  margin-bottom: 16px;
}

/* Section rhythm: alternating background tones */
.sec-cream { background: var(--bg-alt); }
.sec-sage  { background: var(--sage-light); }
.sec-tight { padding: 50px 0; }
.sec-loose { padding: 110px 0; }

/* ================================================
   SERVICE DETAIL PAGE REDESIGN
   ================================================ */

/* Service body layout: text-led with sticky form on the right */
.service-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.service-body__main h2 { margin-bottom: 18px; }
.service-body__main h3 { color: var(--slate-dark); margin: 32px 0 14px; }
.service-body__main p {
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 16px;
  color: var(--text);
}

/* CLS prevention: reserve space for the free-aspect lead photo on every
   service-detail page (the inline style sets only width:100%, no height) so
   the column does not jump when the lazy image decodes. */
.service-body__main > img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* Sticky right-rail form */
.service-rail {
  position: sticky;
  top: 110px;
  background: var(--bg-alt);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.service-rail h3 {
  color: var(--slate-dark);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* Benefit cards (replaces plain bullet lists) */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 24px 0 32px;
}
.benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 22px 20px;
  border-radius: var(--radius);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, border-color 0.3s;
}
.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--sage);
}
.benefit-card .icon {
  width: 26px;
  height: 26px;
  color: var(--sage-ink);
  margin-bottom: 10px;
}
.benefit-card h4 {
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-dark);
  margin-bottom: 6px;
}
.benefit-card p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
}

/* Condition chips — wrapping styled badges */
.condition-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 28px;
}
.condition-chip {
  background: var(--sage-light);
  color: var(--slate-dark);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid transparent;
  transition: border-color 0.2s;
}
.condition-chip:hover { border-color: var(--sage); }

/* Pull-quote section on service detail */
.service-quote {
  background: var(--sky);   /* was --sky (white text 1.84:1) → slate-dark 6.18:1 */
  color: #fff;
  padding: 70px 0;
  text-align: center;
}
.service-quote blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-style: italic;
  max-width: 760px;
  margin: 0 auto 22px;
  line-height: 1.5;
  color: #fff;
}
.service-quote .btn-primary {
  background: #fff;
  color: var(--slate-dark);
  border-color: #fff;
}
.service-quote .btn-primary:hover {
  background: var(--bg-alt);
  color: var(--slate-dark);
}

/* Related services */
.related-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.related-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s, box-shadow 0.3s;
}
.related-card:hover {
  transform: translateY(-3px);
  border-color: var(--sage);
  box-shadow: var(--shadow);
  color: inherit;
}
.related-card .icon {
  width: 28px;
  height: 28px;
  color: var(--sage-ink);
  margin-bottom: 10px;
}
.related-card h4 {
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-dark);
  margin-bottom: 6px;
}
.related-card p {
  font-size: 0.88rem;
  color: var(--text);
  margin: 0;
}

/* Mobile: collapse service body to single column.
   !important overrides the per-page inline grid-template-columns (320px/340px 1fr)
   on the service-detail pages, which would otherwise force a fixed sidebar column
   and cause horizontal overflow on phones. order:2 pushes the appointment sidebar
   below the main content on mobile (content-first). */
@media (max-width: 900px) {
  .service-body,
  .content-aside { grid-template-columns: 1fr !important; gap: 40px; }
  .service-body > .service-rail,
  .content-aside > aside { order: 2; }
  .service-rail { position: static; top: auto; }
  .content-aside > aside { position: static !important; top: auto; }
  .related-services { grid-template-columns: 1fr; }
  .asym-grid, .asym-grid--reverse { grid-template-columns: 1fr; gap: 32px; }
}

/* Very small screens: let long button labels wrap instead of forcing the page
   wide (e.g. "DISCOVER OUR SERVICES NEAR JOLIET" overflowed at <=387px). */
@media (max-width: 420px) {
  .btn { white-space: normal; }
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  /* keep the 9-tile hub at 3 across on tablet (round thumbnails still fit) so it stays 3+3+3 */
  .services-grid--three { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid > :nth-child(n+4) { grid-column: span 1; }
  .footer-grid--wide { grid-template-columns: 1fr 1fr 1fr; }
  .why-grid, .welcome-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid__text { text-align: center; }
  .welcome-grid__text { text-align: center; }
  #main-nav > ul > li > a { padding: 10px 9px; font-size: 0.7rem; letter-spacing: 0.08em; }
  .top-bar-inner { flex-wrap: wrap; gap: 14px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .info-cards, .services-list, .conditions-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav-inner { flex-wrap: wrap; }
  .hamburger { display: flex; order: 3; }
  #main-nav {
    display: none;
    flex: 1 0 100%;
    order: 4;
    margin-top: 14px;
    justify-content: flex-start;
  }
  #main-nav.open { display: block; }
  #main-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--border);
  }
  #main-nav > ul > li { border-bottom: 1px solid var(--border); }
  #main-nav > ul > li > a { padding: 14px 8px; }
  #main-nav .submenu {
    position: static;
    box-shadow: none;
    border: 0;
    background: var(--bg-alt);
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 4px 0 8px;
    display: none;
  }
  #main-nav .has-submenu.open > .submenu { display: block; }
  /* Submenu child links get a >=44px tap target on touch */
  #main-nav .submenu li a { padding: 14px 18px; min-height: 44px; box-sizing: border-box; }
  /* Mobile submenu disclosure: parent <a> + a toggle button sit on one row */
  #main-nav .has-submenu { display: flex; flex-wrap: wrap; align-items: stretch; }
  #main-nav .has-submenu > a { flex: 1; }
  #main-nav .has-submenu > .submenu { flex: 1 0 100%; }
  .submenu-toggle {
    flex: 0 0 auto;
    width: 52px;
    min-height: 44px;
    background: transparent;
    border: 0;
    border-left: 1px solid var(--border);
    color: var(--slate-dark);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .submenu-toggle svg { width: 16px; height: 16px; transition: transform .2s ease; }
  .has-submenu.open > .submenu-toggle svg { transform: rotate(180deg); }
  /* the desktop ▾ glyph is redundant on mobile where the button shows the chevron */
  #main-nav .has-submenu > a::after { content: none; }
  /* (dead `.hero` / `.hero .container` rules removed — no element uses a bare
     `hero` class; the homepage uses `.hero-carousel`/`.hero-slide`/`.hero-card`.) */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .service-card__img { width: 150px; height: 150px; }
  .testimonial { padding: 32px 24px; }
  .testimonial-arrow--prev { left: -8px; color: var(--slate); }
  .testimonial-arrow--next { right: -8px; color: var(--slate); }
  .welcome-grid__gallery { min-height: 340px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-grid--wide { grid-template-columns: 1fr 1fr; }
  .booking-form { padding: 24px; }
  .booking-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .about-values { grid-template-columns: 1fr; }
  #sticky-cta { flex-wrap: wrap; padding: 10px 14px; }
  .sticky-cta__text { flex: 1 1 100%; text-align: center; margin-bottom: 6px; }
  .sticky-cta__actions { flex: 1 1 100%; }
  .sticky-cta__btn {
    flex: 1 1 0; min-width: 0; padding: 12px 12px; font-size: 0.78rem;
    min-height: 44px; display: inline-flex; align-items: center; justify-content: center;
  }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid--wide { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .container { padding: 0 18px; }
  .welcome-grid__gallery > div:nth-child(1) { width: 75%; }
  .welcome-grid__gallery > div:nth-child(2) { width: 62%; }
  .info-cards, .services-list, .conditions-grid { grid-template-columns: 1fr; }
  .specialty-grid { grid-template-columns: 1fr 1fr; }
}
