/* =============================================================
   DECA Health and Wellness — Premium Clinical Design System
   Palette: deep teal + warm bone neutrals + health green
   Type: Lora (display serif) + Raleway (UI sans)
   ============================================================= */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Raleway:wght@300;400;500;600;700;800&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Brand — DECA navy (retains --teal-* variable names for compatibility) */
  --teal-900: #081d2c;
  --teal-800: #0b2639;
  --teal-700: #0e3049;
  --teal-600: #123a57;   /* primary — matches DECA logo navy */
  --teal-500: #1c5680;
  --teal-300: #8fb2cc;
  --teal-100: #d3e0eb;
  --teal-50:  #eef3f8;

  --green-600: #1f9d5f;
  --green-500: #27ae66;

  --gold-600: #b0864a;
  --gold-500: #c79a5b;
  --gold-100: #f0e6d6;

  /* Neutrals (warm) */
  --bone:     #faf8f3;
  --bone-2:   #f4efe6;
  --white:    #ffffff;
  --ink:      #16302c;   /* primary text */
  --ink-soft: #3d534e;   /* secondary text */
  --muted:    #6b7d78;   /* tertiary text */
  --line:     #e7e0d3;   /* borders */
  --line-2:   #efe9de;

  /* Semantic */
  --color-primary: var(--teal-600);
  --color-primary-deep: var(--teal-800);
  --color-accent: var(--green-600);
  --color-bg: var(--bone);
  --color-surface: var(--white);
  --color-fg: var(--ink);

  /* Type scale */
  --fs-eyebrow: 0.78rem;
  --fs-body: 1.0625rem;      /* 17px */
  --fs-lg: 1.1875rem;
  --step--1: clamp(0.85rem, 0.82rem + 0.15vw, 0.95rem);
  --step-0:  clamp(1rem, 0.97rem + 0.2vw, 1.0625rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.4rem);
  --step-2:  clamp(1.5rem, 1.3rem + 0.9vw, 1.9rem);
  --step-3:  clamp(1.9rem, 1.5rem + 1.6vw, 2.6rem);
  --step-4:  clamp(2.3rem, 1.7rem + 2.7vw, 3.6rem);
  --step-5:  clamp(2.8rem, 1.9rem + 4vw, 4.6rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-full: 999px;

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(16,48,44,.06), 0 2px 8px rgba(16,48,44,.05);
  --sh-md: 0 6px 20px rgba(16,48,44,.08), 0 2px 6px rgba(16,48,44,.05);
  --sh-lg: 0 20px 50px -12px rgba(12,64,58,.22), 0 8px 20px rgba(16,48,44,.08);
  --sh-teal: 0 18px 40px -14px rgba(18,58,87,.55);

  --container: 1200px;
  --header-h: 84px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: 'Raleway', system-ui, -apple-system, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul[class] { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, serif;
  color: var(--ink);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.01em;
}

::selection { background: var(--teal-600); color: #fff; }

:focus-visible {
  outline: 3px solid var(--teal-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.5rem);
}
.container-narrow { max-width: 820px; }

.section { padding-block: clamp(4rem, 8vw, 7.5rem); }
.section-sm { padding-block: clamp(3rem, 5vw, 4.5rem); }
.bg-bone { background: var(--bone); }
.bg-bone-2 { background: var(--bone-2); }
.bg-teal { background: var(--teal-800); color: #dfeeea; }
.bg-white { background: var(--white); }

.grid { display: grid; gap: var(--space-6); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: 'Raleway', sans-serif;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-600);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--gold-500); border-radius: 2px;
}
.bg-teal .eyebrow { color: var(--teal-300); }
.bg-teal .eyebrow::before { background: var(--gold-500); }

.section-head { max-width: 660px; margin-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: var(--step-3); margin: .8rem 0 0; }
.section-head p { margin-top: 1rem; font-size: var(--fs-lg); color: var(--muted); }
.bg-teal .section-head h2 { color: #fff; }
.bg-teal .section-head p { color: #b7d1cb; }

.lead { font-size: var(--fs-lg); color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--teal-600);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .01em;
  padding: 1rem 1.7rem;
  min-height: 52px;
  border: none;
  border-radius: var(--r-full);
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), background .25s ease;
  box-shadow: var(--sh-teal);
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 24px 46px -14px rgba(18,58,87,.62); }
.btn:active { transform: translateY(-1px); }

.btn-accent { --btn-bg: var(--green-600); box-shadow: 0 18px 40px -14px rgba(31,157,95,.55); }
.btn-accent:hover { box-shadow: 0 24px 46px -14px rgba(31,157,95,.62); background: var(--green-500); }

.btn-outline {
  background: transparent;
  color: var(--teal-700);
  border: 1.5px solid var(--teal-300);
  box-shadow: none;
}
.btn-outline:hover { background: var(--teal-50); border-color: var(--teal-600); box-shadow: var(--sh-sm); }

.btn-ghost-light {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.28);
  box-shadow: none;
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.16); }

.btn-white { --btn-bg: #fff; --btn-fg: var(--teal-800); box-shadow: var(--sh-md); }
.btn-white:hover { box-shadow: var(--sh-lg); background: #fff; }

.btn-lg { padding: 1.15rem 2.1rem; min-height: 58px; font-size: 1.02rem; }
.btn-block { display: flex; width: 100%; }

.btn-group { display: flex; flex-wrap: wrap; gap: .9rem; }

/* text link with arrow */
.tlink {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; color: var(--teal-600);
  font-size: .98rem;
}
.tlink svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.tlink:hover svg { transform: translateX(5px); }

/* ---------- Top utility bar ---------- */
.utilbar {
  background: var(--teal-900);
  color: #cfe4df;
  font-size: .84rem;
  font-weight: 500;
}
.utilbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 42px; }
.utilbar a { color: #eaf5f2; font-weight: 600; }
.utilbar .util-left { display: flex; gap: 1.6rem; align-items: center; }
.utilbar .util-item { display: inline-flex; align-items: center; gap: .5rem; }
.utilbar .util-item svg { width: 15px; height: 15px; color: var(--teal-300); }
.utilbar .util-right { display: inline-flex; align-items: center; gap: 1.2rem; }
.util-socials { display: inline-flex; gap: .7rem; }
.util-socials a { display: grid; place-items: center; width: 26px; height: 26px; border-radius: var(--r-full); background: rgba(255,255,255,.08); }
.util-socials svg { width: 14px; height: 14px; }
@media (max-width: 860px) { .utilbar { display: none; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,248,243,.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, background .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  background: rgba(250,248,243,.95);
  box-shadow: 0 4px 24px rgba(16,48,44,.07);
  border-color: var(--line-2);
}
.navbar { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand-mark {
  width: 48px; height: 48px; flex-shrink: 0;
  display: grid; place-items: center;
  background: transparent; box-shadow: none; overflow: visible;
}
.brand-glyph { width: 48px; height: 48px; object-fit: contain; display: block; }
/* dark footer: white chip keeps the navy logo visible */
.site-footer .brand-mark { background: #fff; border-radius: 12px; padding: 5px; box-shadow: var(--sh-sm); }
.site-footer .brand-glyph { width: 40px; height: 40px; }
.mobile-nav .brand-mark { background: transparent; box-shadow: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: 'Lora', serif; font-weight: 700; font-size: 1.22rem; color: var(--ink); letter-spacing: -.01em; }
.brand-sub { font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--teal-600); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: .3rem; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .6rem .95rem; border-radius: var(--r-full);
  font-weight: 600; font-size: .96rem; color: var(--ink-soft);
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal-700); background: var(--teal-50); }
.nav-links a.active { color: var(--teal-700); }
.nav-links .caret { width: 15px; height: 15px; transition: transform .25s; }
.has-dropdown:hover .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: 320px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-lg); padding: .6rem;
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), transform .25s var(--ease);
  z-index: 120;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown::before { content:""; position:absolute; top:-10px; left:0; right:0; height:12px; }
.dd-item { display: flex; align-items: center; gap: .85rem; padding: .7rem .8rem; border-radius: var(--r-md); transition: background .2s; }
.dd-item:hover { background: var(--teal-50); }
.dd-ico { width: 40px; height: 40px; flex-shrink: 0; border-radius: 11px; background: var(--teal-50); color: var(--teal-600); display: grid; place-items: center; }
.dd-ico svg { width: 21px; height: 21px; }
.dd-text b { display: block; font-family: 'Raleway',sans-serif; font-weight: 700; font-size: .93rem; color: var(--ink); }
.dd-text span { font-size: .8rem; color: var(--muted); }

.nav-cta { display: flex; align-items: center; gap: .8rem; }
.nav-phone { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--ink); font-size: .96rem; }
.nav-phone svg { width: 18px; height: 18px; color: var(--teal-600); }

.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  background: var(--teal-50); border: 1px solid var(--teal-100); color: var(--teal-700);
  cursor: pointer; place-items: center;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(380px, 88vw);
  background: var(--white); z-index: 200; box-shadow: var(--sh-lg);
  transform: translateX(100%); transition: transform .38s var(--ease-out);
  display: flex; flex-direction: column; padding: 1.4rem; overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.mnav-close { width: 44px; height: 44px; border-radius: 12px; background: var(--bone-2); border: none; display: grid; place-items: center; cursor: pointer; color: var(--ink); }
.mnav-close svg { width: 24px; height: 24px; }
.mobile-nav a.mlink { display: block; padding: .95rem .8rem; border-radius: var(--r-md); font-weight: 600; font-size: 1.05rem; color: var(--ink); border-bottom: 1px solid var(--line-2); }
.mobile-nav a.mlink:hover { background: var(--teal-50); color: var(--teal-700); }
.msub { padding-left: .8rem; }
.msub a { display: block; padding: .7rem .8rem; font-size: .97rem; color: var(--ink-soft); font-weight: 600; }
.msub-label { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 700; padding: 1rem .8rem .3rem; }
.mobile-nav .btn { margin-top: 1.2rem; }
.mnav-contact { margin-top: auto; padding-top: 1.4rem; border-top: 1px solid var(--line-2); font-size: .92rem; }
.mnav-contact a { display: flex; align-items: center; gap: .6rem; padding: .5rem 0; font-weight: 600; color: var(--ink); }
.mnav-contact svg { width: 17px; height: 17px; color: var(--teal-600); }

.nav-backdrop { position: fixed; inset: 0; background: rgba(10,46,42,.5); backdrop-filter: blur(2px); z-index: 150; opacity: 0; visibility: hidden; transition: opacity .3s; }
.nav-backdrop.open { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }

@media (max-width: 1040px) {
  .nav-links, .nav-cta .btn, .nav-phone { display: none; }
  .nav-toggle { display: grid; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--bone); }
.hero::after {
  content:""; position:absolute; top:-30%; right:-10%; width:60%; height:120%;
  background: radial-gradient(closest-side, rgba(28,86,128,.13), transparent 70%);
  pointer-events:none;
}
.hero-inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,4.5rem);
  align-items: center; padding-block: clamp(3rem, 6vw, 5.5rem);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--white); border: 1px solid var(--line);
  padding: .5rem 1rem .5rem .6rem; border-radius: var(--r-full);
  font-size: .82rem; font-weight: 700; color: var(--ink); box-shadow: var(--sh-sm); margin-bottom: 1.6rem;
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 4px rgba(39,174,102,.18); }
.hero-badge .stars { display: inline-flex; gap: 1px; color: var(--gold-500); }
.hero-badge .stars svg { width: 15px; height: 15px; }
.hero h1 { font-size: var(--step-5); font-weight: 600; letter-spacing: -.02em; }
.hero h1 em { font-style: italic; color: var(--teal-600); }
.hero .lead { margin-top: 1.4rem; max-width: 40ch; font-size: 1.18rem; }
.hero-cta { margin-top: 2.1rem; }
.hero-assurances { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; }
.assur { display: flex; align-items: center; gap: .6rem; font-weight: 600; font-size: .93rem; color: var(--ink); }
.assur svg { width: 22px; height: 22px; color: var(--teal-600); flex-shrink: 0; }

/* hero visual */
.hero-visual { position: relative; }
.hero-photo {
  position: relative; border-radius: 28px; overflow: hidden;
  box-shadow: var(--sh-lg); aspect-ratio: 4/5;
  border: 8px solid #fff;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(10,46,42,.34)); }
.hero-float {
  position: absolute; background: var(--white); border-radius: var(--r-lg);
  box-shadow: var(--sh-lg); padding: 1rem 1.15rem; border: 1px solid var(--line-2);
}
.hero-float-1 { bottom: 22px; left: -26px; display: flex; align-items: center; gap: .85rem; }
.hero-float-1 .fico { width: 46px; height: 46px; border-radius: 12px; background: var(--teal-50); color: var(--teal-600); display: grid; place-items: center; flex-shrink: 0; }
.hero-float-1 .fico svg { width: 25px; height: 25px; }
.hero-float-1 b { display: block; font-family:'Lora',serif; font-size: 1.5rem; color: var(--ink); line-height: 1; }
.hero-float-1 span { font-size: .8rem; color: var(--muted); font-weight: 600; }
.hero-float-2 { top: 26px; right: -22px; display: flex; align-items: center; gap: .7rem; }
.hero-float-2 .avs { display: flex; }
.hero-float-2 .avs img { width: 36px; height: 36px; border-radius: 50%; border: 2px solid #fff; object-fit: cover; margin-left: -12px; }
.hero-float-2 .avs img:first-child { margin-left: 0; }
.hero-float-2 b { font-size: .86rem; color: var(--ink); font-weight: 700; }
.hero-float-2 span { font-size: .76rem; color: var(--muted); }

@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; max-width: 460px; margin-inline: auto; width: 100%; }
  .hero .lead { max-width: none; }
  .hero-float-1 { left: 10px; }
  .hero-float-2 { right: 10px; }
}
@media (max-width: 520px) {
  .hero-float { transform: scale(.84); }
  .hero-float-1 { left: 0; transform-origin: bottom left; }
  .hero-float-2 { right: 0; transform-origin: top right; }
}

/* ---------- Trust bar ---------- */
.trustbar { border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); background: var(--white); }
.trustbar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem 2.5rem; padding-block: 1.6rem; }
.trust-item { display: flex; align-items: center; gap: .8rem; }
.trust-item svg { width: 30px; height: 30px; color: var(--teal-600); flex-shrink: 0; }
.trust-item b { display: block; font-family:'Raleway',sans-serif; font-weight: 800; font-size: 1rem; color: var(--ink); line-height: 1.2; }
.trust-item span { font-size: .84rem; color: var(--muted); }

/* ---------- Stat row ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.stat { text-align: center; padding: 1.5rem 1rem; }
.stat b { display: block; font-family:'Lora',serif; font-size: clamp(2.2rem,4vw,3.1rem); color: var(--teal-600); line-height: 1; font-weight: 600; }
.bg-teal .stat b { color: #fff; }
.stat span { display: block; margin-top: .6rem; font-size: .92rem; font-weight: 600; color: var(--muted); letter-spacing: .02em; }
.bg-teal .stat span { color: #a9c8c2; }
@media (max-width: 640px) { .stats { grid-template-columns: repeat(2,1fr); } }

/* ---------- Card grids ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
@media (max-width: 900px) { .cards-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .cards-3, .cards-2 { grid-template-columns: 1fr; } }

/* Service card */
.svc-card {
  position: relative; background: var(--white); border: 1px solid var(--line-2);
  border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--teal-100); }
.svc-media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc-card:hover .svc-media img { transform: scale(1.06); }
.svc-media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 50%, rgba(10,46,42,.25)); }
.svc-ico {
  position: absolute; bottom: -22px; left: 22px; width: 54px; height: 54px; z-index: 2;
  border-radius: 15px; background: var(--white); color: var(--teal-600);
  display: grid; place-items: center; box-shadow: var(--sh-md); border: 1px solid var(--line-2);
}
.svc-ico svg { width: 28px; height: 28px; }
.svc-body { padding: 2.1rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { font-size: 1.32rem; }
.svc-body p { margin-top: .7rem; font-size: .98rem; color: var(--muted); flex: 1; }
.svc-body .tlink { margin-top: 1.3rem; }

/* Feature (icon) card */
.feat-card {
  background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r-lg);
  padding: 2rem 1.7rem; transition: transform .3s var(--ease), box-shadow .3s;
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.feat-ico { width: 58px; height: 58px; border-radius: 16px; background: linear-gradient(140deg, var(--teal-50), var(--teal-100)); color: var(--teal-700); display: grid; place-items: center; margin-bottom: 1.3rem; }
.feat-ico svg { width: 30px; height: 30px; }
.feat-card h3 { font-size: 1.25rem; }
.feat-card p { margin-top: .6rem; font-size: .97rem; color: var(--muted); }

/* ---------- Split / image+text ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--r-xl); box-shadow: var(--sh-lg); aspect-ratio: 5/4; object-fit: cover; }
.split-media.tall img { aspect-ratio: 4/5; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 2.5rem; } .split.reverse .split-media { order: -1; } }

.check-list { display: grid; gap: .9rem; margin-top: 1.8rem; }
.check-list li { display: flex; align-items: flex-start; gap: .8rem; font-weight: 500; color: var(--ink-soft); }
.check-list li svg { width: 24px; height: 24px; color: var(--green-600); flex-shrink: 0; margin-top: 1px; }
.check-list.dark li { color: #cfe1dd; }
.check-list.dark li svg { color: var(--teal-300); }

/* stat badge on image */
.media-badge {
  position: absolute; background: var(--white); border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  padding: 1.2rem 1.4rem; border: 1px solid var(--line-2);
}
.media-badge.br { bottom: -24px; right: -24px; }
.media-badge.bl { bottom: -24px; left: -24px; }
.media-badge b { font-family:'Lora',serif; font-size: 2rem; color: var(--teal-600); line-height: 1; }
.media-badge span { display: block; font-size: .82rem; color: var(--muted); font-weight: 600; margin-top: .3rem; }
@media (max-width: 560px){ .media-badge.br,.media-badge.bl{ right:8px; left:auto; bottom:-18px; transform:scale(.92);} }

/* ---------- Conditions ---------- */
.conditions { display: flex; flex-wrap: wrap; gap: .7rem; }
.cond-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--white); border: 1px solid var(--line);
  padding: .6rem 1.1rem; border-radius: var(--r-full);
  font-weight: 600; font-size: .93rem; color: var(--ink-soft);
  transition: all .2s var(--ease);
}
.cond-chip svg { width: 15px; height: 15px; color: var(--teal-500); }
.cond-chip:hover { border-color: var(--teal-300); background: var(--teal-50); color: var(--teal-700); transform: translateY(-2px); }
.bg-teal .cond-chip { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: #d8e8e4; }
.bg-teal .cond-chip svg { color: var(--teal-300); }
.bg-teal .cond-chip:hover { background: rgba(255,255,255,.13); color:#fff; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; counter-reset: step; }
@media (max-width: 820px){ .steps { grid-template-columns: 1fr; } }
.step-card { position: relative; background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: 2.4rem 1.8rem 2rem; }
.step-num {
  position: absolute; top: -22px; left: 1.8rem;
  width: 52px; height: 52px; border-radius: 15px;
  background: linear-gradient(140deg, var(--teal-600), var(--teal-800)); color: #fff;
  display: grid; place-items: center; font-family:'Lora',serif; font-size: 1.4rem; font-weight: 600;
  box-shadow: var(--sh-teal);
}
.step-card h3 { font-size: 1.28rem; margin-top: .9rem; }
.step-card p { margin-top: .6rem; color: var(--muted); font-size: .97rem; }
.step-card .step-ico { position:absolute; top: 1.7rem; right: 1.7rem; color: var(--teal-100); }
.step-card .step-ico svg { width: 40px; height: 40px; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
@media (max-width: 980px){ .team-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .team-grid { grid-template-columns: 1fr; } }
.team-card { background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r-lg); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.team-photo { aspect-ratio: 1/1; overflow: hidden; position: relative; background: var(--teal-50); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-body { padding: 1.4rem 1.4rem 1.6rem; }
.team-body h3 { font-size: 1.2rem; }
.team-role { display: inline-block; margin-top: .3rem; font-size: .82rem; font-weight: 700; letter-spacing: .04em; color: var(--teal-600); text-transform: uppercase; }
.team-body p { margin-top: .8rem; font-size: .92rem; color: var(--muted); }
.team-tags { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: .4rem; }
.team-tags span { font-size: .76rem; font-weight: 600; color: var(--ink-soft); background: var(--bone-2); padding: .3rem .7rem; border-radius: var(--r-full); }

/* ---------- Testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
@media (max-width: 900px){ .tst-grid { grid-template-columns: 1fr; } }
.tst-card { background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: 2rem 1.8rem; display: flex; flex-direction: column; box-shadow: var(--sh-sm); }
.tst-stars { display: flex; gap: 2px; color: var(--gold-500); margin-bottom: 1rem; }
.tst-stars svg { width: 19px; height: 19px; }
.tst-card blockquote { font-size: 1.04rem; color: var(--ink); line-height: 1.6; flex: 1; font-family:'Lora',serif; }
.tst-foot { display: flex; align-items: center; gap: .85rem; margin-top: 1.5rem; padding-top: 1.3rem; border-top: 1px solid var(--line-2); }
.tst-av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(140deg,var(--teal-500),var(--teal-700)); color:#fff; display: grid; place-items: center; font-weight: 800; font-size: 1.05rem; flex-shrink: 0; }
.tst-foot b { display: block; color: var(--ink); font-weight: 700; font-size: .98rem; }
.tst-foot span { font-size: .84rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--teal-800), var(--teal-600)); border-radius: var(--r-xl); padding: clamp(2.6rem,6vw,4.5rem); color: #fff; }
.cta-band::before { content:""; position:absolute; top:-40%; right:-8%; width:46%; height:180%; background: radial-gradient(closest-side, rgba(255,255,255,.13), transparent 70%); }
.cta-band::after { content:""; position:absolute; bottom:-60%; left:-10%; width:50%; height:180%; background: radial-gradient(closest-side, rgba(199,154,91,.16), transparent 70%); }
.cta-band .cta-inner { position: relative; display: grid; grid-template-columns: 1.4fr auto; gap: 2rem; align-items: center; }
.cta-band h2 { color: #fff; font-size: var(--step-3); }
.cta-band p { color: #cfe4df; margin-top: 1rem; font-size: 1.1rem; max-width: 48ch; }
@media (max-width: 820px){ .cta-band .cta-inner { grid-template-columns: 1fr; } }

/* ---------- Insurance / logos ---------- */
.ins-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 1.4rem; }
.ins-chip { display: inline-flex; align-items: center; gap: .55rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: .8rem 1.3rem; font-weight: 700; color: var(--ink); font-size: .95rem; box-shadow: var(--sh-sm); }
.ins-chip svg { width: 20px; height: 20px; color: var(--teal-600); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .9rem; max-width: 840px; margin-inline: auto; }
.faq-item { background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r-md); overflow: hidden; transition: box-shadow .25s, border-color .25s; }
.faq-item.open { box-shadow: var(--sh-md); border-color: var(--teal-100); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 1.3rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family:'Raleway',sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.faq-q .faq-ico { width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%; background: var(--teal-50); color: var(--teal-600); display: grid; place-items: center; transition: transform .3s var(--ease), background .3s; }
.faq-q .faq-ico svg { width: 18px; height: 18px; transition: transform .3s; }
.faq-item.open .faq-ico { background: var(--teal-600); color: #fff; }
.faq-item.open .faq-ico svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 1.5rem 1.4rem; color: var(--muted); font-size: .99rem; }

/* ---------- Contact form ---------- */
.form-card { background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r-xl); padding: clamp(1.8rem,4vw,2.8rem); box-shadow: var(--sh-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px){ .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 700; font-size: .88rem; color: var(--ink); margin-bottom: .5rem; }
.field label .req { color: var(--green-600); }
.field input, .field select, .field textarea {
  width: 100%; padding: .95rem 1.05rem; border: 1.5px solid var(--line); border-radius: var(--r-md);
  background: var(--bone); font-size: 1rem; color: var(--ink); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal-500); background: #fff; box-shadow: 0 0 0 4px rgba(28,86,128,.14); }
.field .err-msg { display: none; color: #c0392b; font-size: .82rem; font-weight: 600; margin-top: .4rem; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #d0563f; background: #fdf3f1; }
.field.invalid .err-msg { display: block; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: .3rem; }
.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success.show { display: block; }
.form-success .fs-ico { width: 68px; height: 68px; margin: 0 auto 1.2rem; border-radius: 50%; background: var(--teal-50); color: var(--green-600); display: grid; place-items: center; }
.form-success .fs-ico svg { width: 38px; height: 38px; }
.form-success h3 { font-size: 1.5rem; }
.form-success p { margin-top: .6rem; color: var(--muted); }

/* ---------- Contact info cards ---------- */
.info-list { display: grid; gap: 1rem; }
.info-item { display: flex; align-items: flex-start; gap: 1rem; background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r-md); padding: 1.2rem 1.3rem; }
.info-item .ii-ico { width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px; background: var(--teal-50); color: var(--teal-600); display: grid; place-items: center; }
.info-item .ii-ico svg { width: 22px; height: 22px; }
.info-item b { display: block; font-family:'Raleway',sans-serif; color: var(--ink); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; margin-bottom: .25rem; }
.info-item a, .info-item p { color: var(--ink-soft); font-weight: 600; font-size: 1.02rem; }
.info-item a:hover { color: var(--teal-600); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: .7rem 0; border-bottom: 1px solid var(--line-2); font-size: .96rem; }
.hours-table td:first-child { font-weight: 600; color: var(--ink); }
.hours-table td:last-child { text-align: right; color: var(--muted); font-weight: 600; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table .today td { color: var(--teal-700); }
.hours-table .today td:last-child { color: var(--teal-700); }

.map-embed { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-md); border: 6px solid #fff; }
.map-embed iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; background: linear-gradient(135deg, var(--teal-800), var(--teal-700)); color: #fff; overflow: hidden; }
.page-hero::before { content:""; position:absolute; top:-30%; right:-6%; width:44%; height:180%; background: radial-gradient(closest-side, rgba(255,255,255,.1), transparent 70%); }
.page-hero::after { content:""; position:absolute; inset:0; opacity:.14; background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0); background-size: 26px 26px; }
.page-hero-inner { position: relative; padding-block: clamp(3rem, 6vw, 5rem); max-width: 760px; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .86rem; color: #a9cbc4; margin-bottom: 1.2rem; font-weight: 600; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 15px; height: 15px; opacity: .7; }
.page-hero h1 { color: #fff; font-size: var(--step-4); }
.page-hero p { margin-top: 1.1rem; font-size: 1.18rem; color: #cfe4df; max-width: 54ch; }
.page-hero .btn-group { margin-top: 2rem; }

/* service detail layout */
.svc-detail { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
@media (max-width: 940px){ .svc-detail { grid-template-columns: 1fr; } }
.prose h2 { font-size: var(--step-2); margin-top: 2.5rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.35rem; margin-top: 1.8rem; }
.prose p { margin-top: 1rem; }
.prose > img { border-radius: var(--r-lg); margin-top: 1.8rem; box-shadow: var(--sh-md); }
.svc-aside { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 1.2rem; }
.aside-card { background: var(--white); border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: 1.6rem; box-shadow: var(--sh-sm); }
.aside-card.dark { background: linear-gradient(140deg,var(--teal-700),var(--teal-800)); color: #dfeeea; border: none; }
.aside-card.dark h3 { color: #fff; }
.aside-card h3 { font-size: 1.25rem; }
.aside-card p { font-size: .94rem; margin-top: .6rem; color: var(--muted); }
.aside-card.dark p { color: #bcd6d0; }
.aside-list { display: grid; gap: .6rem; margin-top: 1rem; }
.aside-list a { display: flex; align-items: center; justify-content: space-between; padding: .7rem .3rem; border-bottom: 1px solid var(--line-2); font-weight: 600; color: var(--ink-soft); font-size: .95rem; }
.aside-list a:hover { color: var(--teal-600); }
.aside-list a svg { width: 16px; height: 16px; }
.aside-list a.active { color: var(--teal-700); }

.pill-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; }
.pill-list span { font-size: .86rem; font-weight: 600; color: var(--teal-700); background: var(--teal-50); border: 1px solid var(--teal-100); padding: .45rem .9rem; border-radius: var(--r-full); }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-900); color: #a9c8c2; padding-top: clamp(3.5rem,6vw,5rem); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
@media (max-width: 900px){ .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px){ .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: var(--teal-300); }
.footer-about { margin-top: 1.3rem; font-size: .95rem; line-height: 1.7; max-width: 34ch; }
.footer-socials { display: flex; gap: .7rem; margin-top: 1.5rem; }
.footer-socials a { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #cfe4df; transition: background .2s, transform .2s; }
.footer-socials a:hover { background: var(--teal-600); color: #fff; transform: translateY(-3px); }
.footer-socials svg { width: 19px; height: 19px; }
.footer-col h4 { color: #fff; font-family:'Raleway',sans-serif; font-weight: 800; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col ul { display: grid; gap: .75rem; }
.footer-col a { font-size: .96rem; color: #a9c8c2; transition: color .2s, padding .2s; }
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { display: flex; gap: .7rem; font-size: .95rem; margin-bottom: .9rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--teal-300); flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: #cfe4df; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-block: 1.6rem; font-size: .86rem; }
.footer-bottom .fb-links { display: flex; gap: 1.4rem; }
.footer-disclaimer { font-size: .8rem; color: #7ba39c; padding-bottom: 2rem; line-height: 1.6; max-width: 90ch; }

/* ---------- Policy / document pages ---------- */
.doc-meta { display: inline-flex; align-items: center; gap: .5rem; font-size: .84rem; font-weight: 700; color: #cfe4df; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); padding: .5rem 1rem; border-radius: var(--r-full); margin-top: 1.4rem; }
.doc-meta svg { width: 16px; height: 16px; }

.prose ul:not(.check-list) { margin-top: 1rem; padding-left: .2rem; list-style: none; display: grid; gap: .65rem; }
.prose ul:not(.check-list) li { position: relative; padding-left: 1.4rem; }
.prose ul:not(.check-list) li::before { content: ""; position: absolute; left: .1rem; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--teal-500); }
.prose strong { color: var(--ink); font-weight: 700; }
.prose a:not(.btn):not(.tlink) { color: var(--teal-700); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--teal-300); }
.prose a:not(.btn):not(.tlink):hover { text-decoration-color: var(--teal-600); }
.prose h2 { scroll-margin-top: calc(var(--header-h) + 20px); }

.policy-note { margin-top: 1.4rem; background: var(--teal-50); border: 1px solid var(--teal-100); border-left: 4px solid var(--teal-500); border-radius: var(--r-md); padding: 1.1rem 1.35rem; font-size: .97rem; color: var(--ink-soft); }
.policy-note b { color: var(--teal-800); }
.policy-note.warn { background: #fff6ec; border-color: #f3dcc0; border-left-color: var(--gold-500); }
.policy-note.warn b { color: var(--gold-600); }

.aside-list a[href^="#"] { font-size: .92rem; }

/* FAQ groups */
.faq-group + .faq-group { margin-top: 2.6rem; }
.faq-group-title { font-family: 'Raleway', sans-serif; font-weight: 800; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-600); margin-bottom: 1.1rem; display: flex; align-items: center; gap: .6rem; }
.faq-group-title svg { width: 18px; height: 18px; }

/* ---------- Blog ---------- */
.post-cat { display: inline-block; font-family: 'Raleway', sans-serif; font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--teal-600); margin-bottom: .5rem; }
.svc-card .svc-body h3 a { color: var(--ink); transition: color .2s; }
.svc-card:hover .svc-body h3 a { color: var(--teal-700); }
.page-hero .article-meta { display: flex; flex-wrap: wrap; gap: 1.3rem; margin-top: 1.2rem; font-size: .9rem; color: #b9cfe0; font-weight: 600; }
.page-hero .article-meta span { display: inline-flex; align-items: center; gap: .45rem; }
.page-hero .article-meta svg { width: 16px; height: 16px; opacity: .85; }
.page-hero .post-cat { color: var(--teal-300); }
.article-cta { margin-top: 2.5rem; background: linear-gradient(140deg, var(--teal-700), var(--teal-800)); color: #dfeaf2; border-radius: var(--r-lg); padding: 1.8rem; }
.article-cta h3 { color: #fff; font-size: 1.3rem; }
.article-cta p { margin-top: .5rem; color: #bcd2e2; }
.article-cta .btn-group { margin-top: 1.2rem; }
.article-share { margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid var(--line-2); display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.article-share span { font-weight: 700; color: var(--ink); font-size: .9rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn, .svc-card, .team-card, .feat-card { transition: none !important; }
  *, *::before, *::after { animation-duration: .001ms !important; }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: .5rem; } .mt-4 { margin-top: 1rem; } .mt-8 { margin-top: 2rem; }
.skip-link { position: absolute; left: 50%; transform: translateX(-50%) translateY(-120%); top: 8px; z-index: 500; background: var(--teal-700); color: #fff; padding: .7rem 1.3rem; border-radius: var(--r-full); font-weight: 700; transition: transform .2s; }
.skip-link:focus { transform: translateX(-50%) translateY(0); }
.divider-wave { display: block; width: 100%; height: auto; }

/* ============================================================
   MOBILE: premium image-background hero + persistent booking
   ============================================================ */
@media (max-width: 940px) {
  .hero { position: relative; overflow: hidden; }
  .hero::after { display: none; }
  /* framed photo becomes full-bleed background */
  .hero-visual { position: absolute; inset: 0; z-index: 0; order: 0; max-width: none; width: 100%; height: 100%; margin: 0; }
  .hero-visual .hero-photo { width: 100%; height: 100%; aspect-ratio: auto; border: 0; border-radius: 0; box-shadow: none; }
  .hero-visual .hero-photo img { width: 100%; height: 100%; object-fit: cover; }
  .hero-visual .hero-photo::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(8,26,41,.28) 0%, rgba(8,26,41,.52) 42%, rgba(8,26,41,.93) 100%);
  }
  .hero-float { display: none; }
  /* copy overlaid on the image */
  .hero-inner { position: static; z-index: auto; display: flex; flex-direction: column; justify-content: flex-end;
    min-height: min(86dvh, 780px); grid-template-columns: 1fr; gap: 0; width: 100%;
    padding-top: 2rem; padding-bottom: calc(98px + env(safe-area-inset-bottom)); }
  .hero-copy { position: relative; z-index: 2; color: #fff; }
  .hero-badge { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.32); color: #fff;
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); box-shadow: none; margin-bottom: 1.1rem; }
  .hero h1 { color: #fff; font-size: clamp(2.35rem, 8.5vw, 3.1rem); text-shadow: 0 2px 26px rgba(0,0,0,.28); }
  .hero h1 em { color: var(--gold-500); font-style: italic; }
  .hero .lead { color: rgba(255,255,255,.94); margin-top: 1rem; font-size: 1.08rem; max-width: none;
    text-shadow: 0 1px 14px rgba(0,0,0,.34); }
  .hero-cta { margin-top: 1.7rem; flex-direction: column; align-items: stretch; gap: .7rem; }
  .hero-cta .btn { width: 100%; }
  .hero-cta .btn:not(.btn-outline) { background: #fff; color: var(--teal-800); box-shadow: 0 14px 32px rgba(0,0,0,.3); }
  .hero-cta .btn:not(.btn-outline):hover { background: #fff; }
  .hero-cta .btn-outline { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.5); }
  .hero-assurances { margin-top: 1.5rem; gap: .55rem 1.2rem; }
  .assur { color: #fff; font-size: .85rem; }
  .assur svg { color: var(--teal-300); }
}

/* Compact header Book button (mobile / tablet) */
.nav-book-mobile { display: none; }
@media (max-width: 1040px) {
  .nav-book-mobile {
    display: inline-flex; align-items: center; gap: .4rem;
    min-height: 44px; padding: 0 1.05rem; border-radius: var(--r-full);
    background: var(--teal-600); color: #fff; font-weight: 800; font-size: .95rem;
    box-shadow: var(--sh-sm); white-space: nowrap; transition: transform .2s var(--ease);
  }
  .nav-book-mobile:active { transform: scale(.96); }
  .nav-book-mobile svg { width: 17px; height: 17px; }
  .nav-cta { display: flex; align-items: center; gap: .5rem; }
}

/* Persistent bottom booking bar (mobile) */
.mobile-cta-bar { display: none; }
@media (max-width: 1040px) {
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
  .mobile-cta-bar {
    display: flex; align-items: center; gap: .6rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    padding: .6rem .85rem calc(.6rem + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.95);
    -webkit-backdrop-filter: saturate(180%) blur(12px); backdrop-filter: saturate(180%) blur(12px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 26px rgba(16,48,44,.12);
  }
  .mcta-book, .mcta-call {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    min-height: 52px; border-radius: var(--r-full); font-weight: 800; transition: transform .2s var(--ease);
  }
  .mcta-book:active, .mcta-call:active { transform: scale(.97); }
  .mcta-book { flex: 1 1 auto; background: var(--teal-600); color: #fff; font-size: 1.02rem; box-shadow: var(--sh-teal); }
  .mcta-call { flex: 0 0 auto; padding: 0 1.35rem; background: var(--teal-50); color: var(--teal-700); border: 1.5px solid var(--teal-100); }
  .mcta-book svg, .mcta-call svg { width: 20px; height: 20px; }
  body.nav-open .mobile-cta-bar { opacity: 0; pointer-events: none; }
}
@media (prefers-reduced-motion: reduce) {
  .mcta-book, .mcta-call, .nav-book-mobile { transition: none; }
}
