/* ═══════════════════════════════════════════════════════════════
   The North Lakes Suites — public site
   Brand: gold tiger on black. Premium, editorial, generous space.
   Built on Bootstrap 5.3; this file is the theme layer on top.
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Surfaces */
  --ink:        #0d0d0f;
  --ink-2:      #141417;
  --ink-3:      #1b1b20;
  --line:       #2a2a30;
  --line-soft:  rgba(212, 175, 55, .18);

  /* Brand */
  --gold:       #d4af37;
  --gold-lift:  #e6c85c;
  --gold-deep:  #a8842a;
  --gold-wash:  rgba(212, 175, 55, .10);

  /* Type */
  --cream:      #f6f3ec;
  --text:       #e7e7ea;
  --muted:      #93939c;
  --muted-dim:  #6c6c75;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius:    14px;
  --radius-lg: 22px;
  --shell:     1240px;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ── Base ──────────────────────────────────────────────────── */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--gold); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold-lift); }

img { max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.015em;
  color: var(--cream);
}

h1 { font-size: clamp(2.6rem, 6.2vw, 5rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.9rem); }

p { color: var(--text); }

.lead-text {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--muted);
  line-height: 1.8;
  max-width: 62ch;
}

.shell { max-width: var(--shell); margin-inline: auto; padding-inline: 1.5rem; }

section { position: relative; }

.section-pad    { padding-block: clamp(4.5rem, 9vw, 8.5rem); }
.section-pad-sm { padding-block: clamp(3rem, 6vw, 5.5rem); }

.bg-ink-2 { background: var(--ink-2); }
.bg-ink-3 { background: var(--ink-3); }

/* ── Shared type utilities ─────────────────────────────────── */

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: .65;
}

.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: .65;
}

.text-gold  { color: var(--gold) !important; }
.text-muted-2 { color: var(--muted) !important; }

.rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-soft), transparent);
  border: 0;
  margin: 0;
}

/* ── Buttons ───────────────────────────────────────────────── */

.btn {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 1rem 2.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all .3s var(--ease);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.btn-gold:hover {
  background: var(--gold-lift);
  border-color: var(--gold-lift);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, .28);
}

.btn-outline-gold {
  background: transparent;
  border-color: rgba(212, 175, 55, .5);
  color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--cream);
}
.btn-ghost:hover {
  border-color: var(--cream);
  color: var(--cream);
  background: rgba(255, 255, 255, .04);
}

.btn-lg { padding: 1.15rem 2.6rem; font-size: .82rem; }
.btn-sm { padding: .6rem 1.3rem; font-size: .7rem; }

/* Text link with an animated arrow */
.link-arrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.link-arrow svg { transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translateX(6px); }

/* ── Promo bar ─────────────────────────────────────────────── */

.promo-bar {
  background: var(--gold);
  color: var(--ink);
  text-align: center;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .65rem 1rem;
  position: relative;
  z-index: 1040;
}

.promo-bar a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* ── Navigation ────────────────────────────────────────────── */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(13, 13, 15, .72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), padding .35s var(--ease);
  padding-block: .9rem;
}

.site-nav.is-scrolled {
  background: rgba(13, 13, 15, .96);
  border-bottom-color: var(--line);
  padding-block: .55rem;
}

.brand { display: flex; align-items: center; gap: .85rem; }

.brand img {
  height: 42px;
  width: auto;
  transition: height .35s var(--ease);
}
.site-nav.is-scrolled .brand img { height: 34px; }

.brand-text {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: .01em;
}
.brand-text span {
  display: block;
  font-family: var(--sans);
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .18rem;
}

.nav-link-x {
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  padding: .55rem .1rem;
  position: relative;
}
.nav-link-x::after {
  content: "";
  position: absolute;
  left: 0; bottom: .28rem;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-link-x:hover,
.nav-link-x.active { color: var(--cream); }
.nav-link-x:hover::after,
.nav-link-x.active::after { width: 100%; }

.nav-toggle {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  color: var(--cream);
}

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 1050;
  padding: 5.5rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a.m-link {
  display: block;
  font-family: var(--serif);
  font-size: 1.85rem;
  color: var(--cream);
  padding: .75rem 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a.m-link:hover { color: var(--gold); padding-left: .5rem; }
.mobile-close {
  position: absolute; top: 1.35rem; right: 1.35rem;
  background: transparent; border: 1px solid var(--line);
  border-radius: 8px; width: 44px; height: 44px;
  color: var(--cream); display: grid; place-items: center;
}

/* ── Hero ──────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: clamp(600px, 92vh, 940px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,13,15,.82) 0%, rgba(13,13,15,.55) 45%, rgba(13,13,15,.96) 100%),
    radial-gradient(120% 80% at 15% 50%, rgba(13,13,15,.75) 0%, transparent 65%);
}

.hero-body { position: relative; z-index: 2; width: 100%; }

.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  color: rgba(231, 231, 234, .82);
  max-width: 54ch;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-scroll {
  position: absolute;
  bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--muted);
  font-size: .64rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 46px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .35; transform: scaleY(.6); transform-origin: top; }
  50%      { opacity: 1;   transform: scaleY(1);  transform-origin: top; }
}

/* ── Split feature (two big entry cards) ───────────────────── */

.split-card {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  isolation: isolate;
}
.split-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 1s var(--ease);
}
.split-card::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(13,13,15,.25) 0%, rgba(13,13,15,.9) 100%);
}
.split-card:hover img { transform: scale(1.06); }
.split-card h3 { margin-bottom: .4rem; }
.split-card p  { color: var(--muted); margin-bottom: 1.4rem; }

/* ── Feature / benefit cards ───────────────────────────────── */

.feature {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  height: 100%;
  transition: border-color .35s var(--ease), transform .35s var(--ease), background .35s var(--ease);
}
.feature:hover {
  border-color: var(--line-soft);
  background: var(--ink-3);
  transform: translateY(-5px);
}

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--gold-wash);
  border: 1px solid var(--line-soft);
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.feature h3 {
  font-family: var(--sans);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: .7rem;
}
.feature p { color: var(--muted); font-size: .94rem; margin: 0; }

/* ── Suite cards ───────────────────────────────────────────── */

.suite-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.suite-card:hover { border-color: var(--line-soft); transform: translateY(-6px); }

.suite-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-3);
}
.suite-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.suite-card:hover .suite-media img { transform: scale(1.07); }

.suite-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(13, 13, 15, .85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line-soft);
  color: var(--gold);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .4rem .8rem;
  border-radius: 999px;
}
.suite-badge.taken { color: var(--muted); border-color: var(--line); }

.suite-body { padding: 1.7rem; display: flex; flex-direction: column; flex: 1; }

.suite-body h3 { font-size: 1.5rem; margin-bottom: .3rem; }

.suite-meta {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-dim);
  margin-bottom: 1rem;
}

.suite-price {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--gold);
  line-height: 1;
}
.suite-price small {
  font-family: var(--sans);
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: .35rem;
}

.feature-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.feature-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: .55rem;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 7px; height: 7px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg) translateY(-2px);
}

/* ── Stats strip ───────────────────────────────────────────── */

.stat { text-align: center; padding: 1rem; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 3.9rem);
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .7rem;
}

/* ── Accordion (FAQ) ───────────────────────────────────────── */

.accordion-item-x { border-bottom: 1px solid var(--line); }

.accordion-btn {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 1.6rem 3rem 1.6rem 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  font-weight: 600;
  position: relative;
  cursor: pointer;
  transition: color .25s var(--ease);
}
.accordion-btn:hover { color: var(--gold); }

.accordion-btn::after {
  content: "";
  position: absolute;
  right: .4rem; top: 50%;
  width: 11px; height: 11px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .3s var(--ease);
}
.accordion-btn[aria-expanded="true"]::after { transform: translateY(-20%) rotate(-135deg); }

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease);
}
.accordion-panel > div {
  padding-bottom: 1.7rem;
  color: var(--muted);
  max-width: 78ch;
}

/* ── Testimonials ──────────────────────────────────────────── */

.quote-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 2.3rem;
  height: 100%;
}
.quote-card blockquote {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--cream);
  margin: 0 0 1.6rem;
}
.quote-author { font-size: .82rem; font-weight: 600; color: var(--cream); }
.quote-role   { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-dim); }

/* ── Practitioner directory ────────────────────────────────── */

.practitioner {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.practitioner:hover { border-color: var(--line-soft); transform: translateY(-4px); }

.practitioner-photo {
  aspect-ratio: 1 / 1;
  background: var(--ink-3);
  overflow: hidden;
}
.practitioner-photo img { width: 100%; height: 100%; object-fit: cover; }
.practitioner-photo .placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--gold);
  background: linear-gradient(135deg, var(--ink-3), var(--ink-2));
}

/* ── Forms ─────────────────────────────────────────────────── */

.form-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}

.form-control,
.form-select {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--cream);
  padding: .85rem 1.05rem;
  font-size: .95rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.form-control::placeholder { color: var(--muted-dim); }
.form-control:focus,
.form-select:focus {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .14);
  outline: 0;
}
.form-control.is-invalid,
.form-select.is-invalid { border-color: #e05260; }

.form-select option { background: var(--ink-2); color: var(--cream); }

.invalid-feedback { display: block; color: #f08a94; font-size: .8rem; }

.form-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 3rem);
}

.form-check-input {
  background-color: var(--ink);
  border-color: var(--line);
}
.form-check-input:checked { background-color: var(--gold); border-color: var(--gold); }
.form-check-label { color: var(--muted); font-size: .9rem; }

/* ── Alerts ────────────────────────────────────────────────── */

.alert {
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--ink-2);
  color: var(--text);
  font-size: .92rem;
  padding: .95rem 1.2rem;
}
.alert-success { border-color: rgba(94, 187, 122, .4); background: rgba(94, 187, 122, .1); color: #a5e0ba; }
.alert-danger  { border-color: rgba(224, 82, 96, .4);  background: rgba(224, 82, 96, .1);  color: #f0a3ab; }
.alert-warning { border-color: rgba(212, 175, 55, .4); background: var(--gold-wash);       color: #e8d391; }
.alert-info    { border-color: rgba(90, 160, 220, .4); background: rgba(90, 160, 220, .1);  color: #9fc9ea; }

/* ── Contact / map ─────────────────────────────────────────── */

.contact-line {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-line:last-child { border-bottom: 0; }
.contact-line .ico {
  width: 40px; height: 40px;
  flex: 0 0 40px;
  border-radius: 10px;
  background: var(--gold-wash);
  border: 1px solid var(--line-soft);
  color: var(--gold);
  display: grid; place-items: center;
}
.contact-line .k {
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-dim);
  margin-bottom: .15rem;
}
.contact-line .v { color: var(--cream); font-size: 1rem; }

.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  filter: grayscale(1) invert(.92) contrast(.85);
  min-height: 320px;
}

/* ── CTA band ──────────────────────────────────────────────── */

.cta-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 120% at 50% 0%, rgba(212, 175, 55, .12), transparent 70%);
}
.cta-band > * { position: relative; }

/* ── Footer ────────────────────────────────────────────────── */

.site-footer {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
}
.footer-title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links a {
  color: var(--muted);
  font-size: .92rem;
  display: inline-block;
  padding: .32rem 0;
}
.footer-links a:hover { color: var(--gold); }

.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--muted);
  transition: all .3s var(--ease);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 3rem;
  padding-top: 1.7rem;
  font-size: .82rem;
  color: var(--muted-dim);
}

/* ── Page header (interior pages) ──────────────────────────── */

.page-head {
  position: relative;
  padding-block: clamp(4rem, 9vw, 7.5rem) clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(70% 130% at 20% 0%, rgba(212, 175, 55, .10), transparent 62%);
}
.page-head > * { position: relative; }

.crumbs { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-dim); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--gold); }

/* ── Cookie notice ─────────────────────────────────────────── */

.cookie-bar {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 1060;
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .55);
  max-width: 640px;
  margin-inline: auto;
  display: none;
}
.cookie-bar.show { display: block; animation: cookieIn .5s var(--ease); }
@keyframes cookieIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* ── Scroll reveal ─────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ── Responsive ────────────────────────────────────────────── */

@media (max-width: 991.98px) {
  .hero { min-height: 84vh; }
  .split-card { min-height: 340px; padding: 2rem; }
}

@media (max-width: 575.98px) {
  .btn { width: 100%; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-scroll { display: none; }
  .brand img { height: 34px; }
  .brand-text { font-size: 1rem; }
}

/* ── Hero: YouTube background ──────────────────────────────── */
/*
 * A YouTube iframe letterboxes its video inside whatever box it is given, so
 * `object-fit: cover` is no help here — the box itself has to stay 16:9 and be
 * bigger than the hero on both axes. Sizing it off viewport units and centring
 * it does that; the poster image underneath covers the first paint and any
 * sliver left over on unusual viewports.
 */
.hero-media .hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-media .hero-yt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;                        /* 16:9 of the viewport width */
  min-width: max(177.7778vh, 1067px);     /* …or 16:9 of its height, whichever wins */
  min-height: max(100vh, 600px);          /* 600px matches the hero's own floor */
  z-index: 1;
  pointer-events: none;
}

.hero-media .hero-yt iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Keep the darkening wash above the video, not under it. */
.hero-media::after { z-index: 2; }

/* ── Disabled / read-only inputs ────────────────────────────── */
/* Bootstrap's default disabled background is a light grey, which shows up as a
   white slab against this palette. Keep them dark, just visibly inert. */
.form-control:disabled,
.form-control[readonly],
.form-select:disabled {
  background-color: rgba(255, 255, 255, .04);
  border-color: var(--line);
  color: var(--muted);
  opacity: 1;
}

/* ── Practitioner photos: keep faces in frame ──────────────────── */
/*
 * These are portrait shots cropped into a square card and a 16/11 band. A
 * centred crop takes the middle of the image, which on a standing full-length
 * photo is a torso — the faces sit in the top third. Bias the crop upwards.
 */
.practitioner-photo img,
.practitioner-figure img {
  object-position: center 15%;
}
