/* ==========================================================================
   Balance Skin & Wellness Institute — design system
   Quiet luxury · modern clinical wellness · soft editorial
   ========================================================================== */

:root {
  /* Palette sampled directly from Branding-Logo/balance-*.pdf vector fills */
  --ivory: #F7F2EE;        /* logo background */
  --ivory-deep: #EFE6DE;
  --espresso: #262525;     /* wordmark / dark stones */
  --espresso-soft: #403C39;
  --camel-gold: #A6845F;   /* button gold — logo camel deepened for contrast */
  --camel-dark: #8C6D4C;
  --camel-text: #B1947C;   /* "SKIN & WELLNESS INSTITUTE" tan */
  --taupe: #C8BCB0;        /* light stone */
  --taupe-light: #DED6CC;
  --blush: #D9C6B6;        /* lightened mid-stone accent — use sparingly */
  --white: #FFFFFF;

  --font-head: "Cormorant Garamond", Georgia, serif;
  --font-body: "Montserrat", "Helvetica Neue", Arial, sans-serif;

  --max-w: 1180px;
  --pad-x: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);
  --radius: 2px;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--espresso);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--camel-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--espresso); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 .6em;
  color: var(--espresso);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1.1em; }
ul { padding-left: 1.2em; }

.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;
}

/* eyebrow label above headings */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--camel-gold);
  margin-bottom: 1rem;
}

.lead { font-size: 1.08rem; font-weight: 300; line-height: 1.9; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
  text-align: center;
}
.btn-gold { background: var(--camel-gold); color: var(--white); }
.btn-gold:hover { background: var(--camel-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--espresso); border-color: var(--espresso); }
.btn-outline:hover { background: var(--espresso); color: var(--ivory); }
.btn-outline-light { background: transparent; color: var(--ivory); border-color: var(--ivory); }
.btn-outline-light:hover { background: var(--ivory); color: var(--espresso); }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- announcement bar ---------- */
.announce-bar {
  background: var(--espresso);
  color: var(--ivory);
  text-align: center;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .55rem var(--pad-x);
}
.announce-bar p { margin: 0; }
.announce-bar a { color: var(--camel-gold); font-weight: 600; }
.announce-bar a:hover { color: var(--taupe-light); }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 241, 232, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(35, 31, 28, .08);
}
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: .6rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand-logo { height: 64px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 1.75rem; }
.nav-book { white-space: nowrap; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list > li { flex-shrink: 0; }
.nav-list > li > a {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--espresso);
  padding: .5rem 0;
  display: inline-block;
  white-space: nowrap;
}
.nav-list > li > a:hover { color: var(--camel-gold); }
.nav-list > li > a[aria-current="page"] { color: var(--camel-gold); }

.has-dropdown { position: relative; }
.has-dropdown > a { white-space: nowrap; }
.caret {
  display: inline-block;
  margin-left: .35em;
  border: solid var(--camel-gold);
  border-width: 0 1.5px 1.5px 0;
  padding: 2px;
  transform: rotate(45deg);
  vertical-align: .15em;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: -1.25rem;
  min-width: 240px;
  background: var(--white);
  border: 1px solid rgba(35, 31, 28, .08);
  box-shadow: 0 18px 40px rgba(35, 31, 28, .12);
  list-style: none;
  margin: 0;
  padding: .75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: .55rem 1.5rem;
  font-size: .8rem;
  letter-spacing: .08em;
  color: var(--espresso-soft);
}
.dropdown a:hover { background: var(--ivory); color: var(--camel-gold); }

.nav-toggle { display: none; background: none; border: 0; padding: .5rem; cursor: pointer; }
.nav-toggle .bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--espresso);
  margin: 6px 0;
  transition: transform .25s ease, opacity .25s ease;
}

/* ---------- hero (split layout) ---------- */
.hero-split {
  display: grid;
  grid-template-columns: 45fr 55fr;
  min-height: clamp(480px, 72vh, 720px);
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.hero-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 5rem) clamp(2rem, 4vw, 3rem) clamp(3rem, 8vw, 5rem) clamp(2rem, 8vw, calc((100vw - var(--max-w)) / 2 + 2.5rem));
  position: relative;
  z-index: 2;
}
.hero-split-content h1 {
  color: var(--espresso);
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 12em;
  margin-bottom: .3em;
}
.hero-split-content .accent-rule {
  width: 60px;
  height: 3px;
  background: var(--camel-gold);
  margin-bottom: 1.5rem;
  border: 0;
}
.hero-split-content p {
  color: var(--espresso-soft);
  max-width: 32em;
  font-weight: 300;
  font-size: .95rem;
  line-height: 1.7;
}
.hero-split-media {
  position: relative;
  overflow: hidden;
}
.hero-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-split-media::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 120px;
  background: linear-gradient(to right, var(--ivory), transparent);
  z-index: 1;
  pointer-events: none;
}

/* hero overlay logo watermark */
.hero-watermark {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  opacity: .12;
  height: 160px;
  width: auto;
  z-index: 1;
  pointer-events: none;
}

/* fallback full-bleed hero (interior pages) */
.hero {
  position: relative;
  min-height: clamp(480px, 72vh, 720px);
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(35,31,28,.62) 0%, rgba(35,31,28,.28) 55%, rgba(35,31,28,.05) 100%);
  z-index: -1;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-y) var(--pad-x);
  width: 100%;
}
.hero h1 { color: var(--ivory); max-width: 15em; }
.hero p { color: rgba(247,241,232,.92); max-width: 42em; font-weight: 300; font-size: 1.05rem; }
.hero .eyebrow { color: var(--taupe-light); }

/* interior page hero (short, split style) */
.hero-sub { min-height: clamp(320px, 46vh, 460px); }
.hero-sub.hero-split { min-height: clamp(320px, 46vh, 460px); }

/* ---------- sections ---------- */
.section { padding: var(--section-y) var(--pad-x); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-taupe { background: var(--taupe-light); }
.section-espresso { background: var(--espresso); color: var(--taupe-light); }
.section-espresso h2, .section-espresso h3 { color: var(--ivory); }
.section-espresso p { color: rgba(220,211,198,.9); }
.section-white { background: var(--white); }
.section-narrow { max-width: 800px; margin: 0 auto; }
.center { text-align: center; }
.center .section-narrow, .center .btn-row { margin-left: auto; margin-right: auto; justify-content: center; }

/* two-column editorial split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split.reverse > .split-media { order: 2; }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.split-media.landscape img { aspect-ratio: 4 / 3; }

/* ---------- cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.card {
  background: var(--white);
  border: 1px solid rgba(35, 31, 28, .06);
  display: flex;
  flex-direction: column;
}
.card-img img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.card-body { padding: 1.75rem 1.75rem 2rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: .5rem; }
.card-body p { font-size: .92rem; color: var(--espresso-soft); flex: 1; }
.card-link {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--camel-gold);
}
.card-link:hover { color: var(--camel-dark); }

/* pillar list (numbered experience steps) */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.pillar .num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--camel-gold);
  display: block;
  margin-bottom: .5rem;
}
.pillar h3 { font-size: 1.3rem; }
.pillar p { font-size: .92rem; color: var(--espresso-soft); }
.section-espresso .pillar p { color: rgba(220,211,198,.85); }

/* checklist-style list */
.check-list { list-style: none; padding: 0; margin: 1.25rem 0; columns: 2; column-gap: 2.5rem; }
.check-list li {
  padding: .35rem 0 .35rem 1.6rem;
  position: relative;
  font-size: .95rem;
  break-inside: avoid;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .95em;
  width: .55em;
  height: .55em;
  background: var(--camel-gold);
  border-radius: 50%;
  transform: translateY(-50%);
}
.check-list.single { columns: 1; }

/* ---------- treatment blocks (service pages) ---------- */
.treatment {
  padding: var(--section-y) var(--pad-x);
  border-top: 1px solid rgba(35,31,28,.08);
}
.treatment:nth-of-type(even) { background: var(--white); }
.treatment-inner { max-width: var(--max-w); margin: 0 auto; }
.treatment h2 { margin-bottom: .3em; }
.treatment .tagline {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--camel-dark);
  margin-bottom: 1.5rem;
}
.treatment-cols { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem, 5vw, 4rem); }

/* ---------- FAQ accordion ---------- */
.faq-group { margin: 2rem 0 3rem; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(35,31,28,.08);
  margin-bottom: .75rem;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 3rem 1.1rem 1.5rem;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 500;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--camel-gold);
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item .faq-a { padding: 0 1.5rem 1.25rem; font-size: .95rem; color: var(--espresso-soft); }

/* ---------- membership cards ---------- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.tier {
  background: var(--white);
  border: 1px solid rgba(35,31,28,.08);
  padding: 2.75rem 2.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.tier.featured { border-color: var(--camel-gold); border-width: 2px; }
.tier h3 { font-size: 1.6rem; }
.tier .tier-price {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--camel-gold);
  margin: 1rem 0 .25rem;
}
.tier .tier-price-note {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--espresso-soft);
  margin-bottom: 1.5rem;
}
.tier ul { list-style: none; padding: 0; margin: 0 0 2rem; flex: 1; }
.tier li { padding: .5rem 0; border-bottom: 1px solid var(--ivory-deep); font-size: .9rem; }
.placeholder-badge {
  display: inline-block;
  background: var(--ivory-deep);
  color: var(--camel-dark);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  margin-bottom: 1rem;
}

/* ---------- forms ---------- */
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2rem; }
.contact-form .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .45rem;
  color: var(--espresso-soft);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--espresso);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--camel-gold);
  outline-offset: 1px;
  border-color: var(--camel-gold);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-disclaimer { font-size: .8rem; color: var(--espresso-soft); margin-top: 1rem; }
.form-status { margin-top: 1rem; font-size: .95rem; font-weight: 500; display: none; }
.form-status.ok { display: block; color: #3E6B4F; }
.form-status.err { display: block; color: #9B3A2F; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- contact cards ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
}
.contact-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  color: var(--camel-gold);
}
.contact-card-icon svg { width: 100%; height: 100%; }
.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: .75rem;
  color: var(--espresso);
}
.contact-card p { font-size: .95rem; line-height: 1.6; margin-bottom: .35rem; }
.contact-card-note { font-size: .85rem !important; color: var(--espresso-soft); font-style: italic; margin-top: .5rem !important; }

/* ---------- notices ---------- */
.legal-banner {
  background: #F4E3C8;
  border: 1px solid var(--camel-gold);
  color: var(--espresso);
  padding: 1rem 1.5rem;
  font-size: .85rem;
  margin: 2rem 0;
}
.empty-state {
  border: 1px dashed var(--taupe);
  background: var(--white);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--espresso-soft);
  font-size: .95rem;
}

/* ---------- footer ---------- */
.site-footer { background: var(--espresso); color: var(--taupe-light); }
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-y) var(--pad-x) 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.footer-logo { height: 84px; width: auto; margin-bottom: 1.25rem; }
.footer-tag {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--taupe);
}
.footer-col h3 {
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--camel-gold);
  margin-bottom: 1.1rem;
}
.footer-col p, .footer-col li { font-size: .9rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: .25rem 0; }
.footer-col a { color: var(--taupe-light); }
.footer-col a:hover { color: var(--camel-gold); }
.footer-note { font-size: .8rem; color: var(--taupe); }
.footer-legal {
  border-top: 1px solid rgba(220,211,198,.15);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem var(--pad-x) 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .78rem;
}
.footer-legal p { margin: 0; }
.footer-legal ul { list-style: none; display: flex; gap: 1.5rem; margin: 0; padding: 0; }
.footer-legal a { color: var(--taupe); }
.footer-legal a:hover { color: var(--camel-gold); }

/* ---------- section heading with flanking lines ---------- */
.heading-lined {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.heading-lined::before,
.heading-lined::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--taupe);
}
.heading-lined span {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--camel-gold);
  white-space: nowrap;
}

/* ---------- service icon grid ---------- */
.service-icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
  text-align: center;
}
.service-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.service-icon-item .icon-wrap {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon-item .icon-wrap svg {
  width: 56px;
  height: 56px;
  stroke: var(--camel-gold);
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-icon-item h4 {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  margin: 0;
}
.service-icon-item p {
  font-size: .82rem;
  color: var(--espresso-soft);
  margin: 0;
}

/* ---------- why-balance pillars (icon variant) ---------- */
.icon-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  text-align: center;
}
.icon-pillar .icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-pillar .icon-wrap svg {
  width: 48px;
  height: 48px;
  stroke: var(--camel-gold);
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-pillar h4 {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  margin-bottom: .4rem;
}
.icon-pillar p {
  font-size: .85rem;
  color: var(--espresso-soft);
}

/* ---------- CTA banner (full-width with image) ---------- */
.cta-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  overflow: hidden;
}
.cta-banner-content {
  background: var(--espresso);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(2rem, 5vw, 4rem);
}
.cta-banner-content h2 { color: var(--ivory); }
.cta-banner-content p { color: rgba(220,211,198,.9); }
.cta-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* botanical leaf decorative accent */
.leaf-accent {
  position: absolute;
  opacity: .08;
  pointer-events: none;
  z-index: 0;
}
.leaf-accent svg {
  width: 200px;
  height: auto;
  fill: var(--camel-gold);
}

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .nav-toggle { display: block; }
  /* backdrop-filter creates a containing block for position:fixed children,
     which would trap the menu panel inside the header bar — disable it here */
  .site-header { backdrop-filter: none; background: var(--ivory); }
  .site-nav {
    position: fixed;
    inset: 0;
    top: 0;
    background: var(--ivory);
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 5.5rem 2rem 3rem;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 200;
    overflow-y: auto;
  }
  .site-nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; gap: .9rem; text-align: center; }
  .nav-list > li > a { font-size: .95rem; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: .25rem 0 0;
  }
  .dropdown a { padding: .3rem 0; font-size: .8rem; color: var(--camel-dark); }
  .caret { display: none; }
  .nav-toggle { position: relative; z-index: 300; }
  body.nav-open .nav-toggle .bar:nth-child(2) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .nav-toggle .bar:nth-child(3) { opacity: 0; }
  body.nav-open .nav-toggle .bar:nth-child(4) { transform: translateY(-8px) rotate(-45deg); }
  body.nav-open { overflow: hidden; }

  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-content { padding: clamp(2.5rem, 6vw, 4rem) var(--pad-x); }
  .hero-split-media { max-height: 360px; }
  .hero-split-media::before { display: none; }
  .hero-watermark { display: none; }
  .cta-banner { grid-template-columns: 1fr; }
  .cta-banner-media { max-height: 320px; }

  .split, .treatment-cols { grid-template-columns: 1fr; }
  .split.reverse > .split-media { order: 0; }
  .contact-cards { grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .service-icon-grid { grid-template-columns: repeat(3, 1fr); }
  .icon-pillars { grid-template-columns: repeat(3, 1fr); }
  .check-list { columns: 1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .service-icon-grid { grid-template-columns: repeat(2, 1fr); }
  .icon-pillars { grid-template-columns: 1fr; }
  .brand-logo { height: 52px; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .announce-bar { font-size: .62rem; }
}
