/* ===================================================================
   Overcome LLC — Design System
   Compassionate, trustworthy care brand. Warm + clinical-clean.
   =================================================================== */

:root {
  /* Brand palette — matched to the Overcome logo (navy + gold) */
  --teal-900: #122c4f;   /* deep navy */
  --teal-700: #1d3c66;   /* navy (primary) */
  --teal-600: #2c5689;   /* mid blue (links/icons) */
  --teal-500: #3f7eb0;   /* bright figure blue (focus) */
  --teal-100: #d6e3f1;   /* light blue */
  --teal-50:  #eef3fa;   /* faint blue */

  --coral-600: #a87c2e;  /* deep gold */
  --coral-500: #caa14a;  /* gold (accent / CTA) */
  --coral-100: #f6ecd6;  /* light gold */

  --gold-500: #e3b34e;   /* bright gold (stars/badges) */

  --cream:    #fbf7f1;
  --cream-2:  #f4ede2;
  --ink:      #1f312f;
  --ink-soft: #4a5b59;
  --muted:    #74837f;
  --line:     #e7ddd0;
  --white:    #ffffff;

  /* Typography */
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Spacing & shape */
  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(16, 60, 58, 0.06);
  --shadow:    0 14px 40px rgba(16, 60, 58, 0.10);
  --shadow-lg: 0 30px 70px rgba(16, 60, 58, 0.16);
  --container:  1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-700); text-decoration: none; }
a:hover { color: var(--teal-900); }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }
p { margin: 0 0 1.1em; }
ul { margin: 0 0 1.1em; padding-left: 1.2em; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(44px, 6vw, 86px) 0; }
.section--tight { padding: clamp(40px, 5vw, 70px) 0; }
.section--cream { background: var(--cream); }
.section--cream2 { background: var(--cream-2); }
.section--teal { background: var(--teal-900); color: #e8f4f3; }
.section--teal h1, .section--teal h2, .section--teal h3 { color: #fff; }
.center { text-align: center; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--coral-500);
}
.section--teal .eyebrow { color: var(--gold-500); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 15px 28px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--coral-500); color: var(--teal-900); box-shadow: 0 10px 24px rgba(202, 161, 74, 0.36); }
.btn--primary:hover { background: var(--coral-600); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 30px rgba(168, 124, 46, 0.45); }
.btn--teal { background: var(--teal-700); color: #fff; box-shadow: 0 10px 24px rgba(15, 110, 108, 0.28); }
.btn--teal:hover { background: var(--teal-900); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--teal-900); border-color: var(--teal-700); }
.btn--ghost:hover { background: var(--teal-700); color: #fff; transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--teal-900); }
.btn--white:hover { background: var(--cream); color: var(--teal-900); transform: translateY(-2px); }
.btn--lg { padding: 17px 34px; font-size: 1.06rem; }
.btn--block { width: 100%; }

/* ---------- Header / Nav ---------- */
.topbar {
  background: var(--teal-900); color: #cfe9e7;
  font-size: 0.86rem; font-weight: 600;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 9px; padding-bottom: 9px; }
.topbar a { color: #eafaf8; }
.topbar a:hover { color: #fff; }
.topbar__left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item svg { width: 15px; height: 15px; opacity: .9; }
@media (max-width: 760px) { .topbar__left .topbar__hide { display: none; } }
@media (max-width: 600px) {
  .topbar { font-size: 0.8rem; }
  .topbar__left { display: none; }
  .topbar .container { justify-content: center; }
}

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 247, 241, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 46px; height: 46px; border-radius: 13px; flex: none;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-900));
  display: grid; place-items: center; color: #fff;
  box-shadow: var(--shadow-sm);
}
.brand__mark svg { width: 26px; height: 26px; }
.brand__name { font-family: var(--font-head); font-weight: 600; font-size: 1.32rem; color: var(--ink); line-height: 1; }
.brand__name span { color: var(--teal-600); }
.brand__tag { font-size: 0.72rem; color: var(--muted); font-weight: 600; letter-spacing: .02em; }
.brand__logo { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; flex: none; background: #fff; box-shadow: var(--shadow-sm); border: 2px solid #fff; }
.footer-brand .brand__logo { width: 52px; height: 52px; }

.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  display: inline-block; padding: 10px 14px; border-radius: 10px;
  font-weight: 600; color: var(--ink-soft); font-size: 0.97rem;
  transition: background .2s, color .2s;
}
.nav__links a:hover, .nav__links a.active { background: var(--teal-50); color: var(--teal-900); }
.nav__cta { display: flex; align-items: center; gap: 12px; }

.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  width: 46px; height: 46px; border-radius: 12px;
}
.nav__toggle span { display: block; width: 24px; height: 2.5px; background: var(--ink); border-radius: 3px; margin: 5px auto; transition: .3s; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; top: 0; width: min(82vw, 340px);
    height: 100vh; flex-direction: column; align-items: stretch; gap: 6px;
    background: var(--white); padding: 90px 22px 30px; box-shadow: var(--shadow-lg);
    transform: translateX(105%); transition: transform .35s var(--ease); z-index: 70;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { padding: 14px 16px; font-size: 1.05rem; border-radius: 12px; }
  .nav__cta .btn--ghost { display: none; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(20,40,38,.4); opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 55; }
  .nav-backdrop.open { opacity: 1; pointer-events: auto; }
  /* CTA buttons shown inside the slide-out menu (injected by JS) */
  .nav-menu-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
}
.nav-menu-cta { display: none; }
/* On phones the logo + hamburger need the full row — move the header CTA into the menu */
@media (max-width: 620px) {
  .nav__cta .btn--primary { display: none; }
  .brand__tag { display: none; }
  .brand__logo { width: 46px; height: 46px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(48px, 7vw, 96px) 0 clamp(60px, 7vw, 100px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(1100px 520px at 78% -8%, var(--teal-100), transparent 60%),
    radial-gradient(800px 480px at -5% 110%, var(--coral-100), transparent 55%),
    var(--cream);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 54px; align-items: center; }
@media (max-width: 940px) { .hero__grid { grid-template-columns: 1fr; gap: 38px; } }
.hero h1 { margin-bottom: 18px; }
.hero h1 .accent { color: var(--teal-700); position: relative; }
.hero__lead { font-size: 1.16rem; color: var(--ink-soft); max-width: 560px; margin-bottom: 26px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero__trust { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; color: var(--ink-soft); font-size: 0.92rem; font-weight: 600; }
.hero__trust .stars { color: var(--gold-500); letter-spacing: 2px; }

.hero__media { position: relative; }
.hero__card-img {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/4.3; background: linear-gradient(160deg, var(--teal-100), var(--cream-2));
}

/* ---------- Hero slider ---------- */
.hero-slider {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/4.3; background: #0e2444;
}
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s var(--ease); }
.hero-slide.active { opacity: 1; }
.hero-slide img, .hero-slide video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-slide--video { background: radial-gradient(120% 120% at 50% 0%, #1d3c66, #0e2444); }
.hero-slide--video video { object-fit: contain; }
.hero-slide__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 52px 22px 20px; z-index: 3;
  color: #fff; font-weight: 700; font-size: 1rem;
  background: linear-gradient(to top, rgba(10,28,52,.85), rgba(10,28,52,0));
}
.hero-slider__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 42px; height: 42px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.88); color: var(--teal-900); display: grid; place-items: center;
  box-shadow: var(--shadow-sm); transition: transform .2s, background .2s;
}
.hero-slider__arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.hero-slider__arrow svg { width: 20px; height: 20px; }
.hero-slider__arrow--prev { left: 12px; }
.hero-slider__arrow--next { right: 12px; }
.hero-slider__dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 8px; }
.hero-slider__dots button {
  width: 10px; height: 10px; padding: 0; border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.5); transition: width .25s, background .25s;
}
.hero-slider__dots button.active { background: #fff; width: 26px; border-radius: 6px; }
@media (max-width: 480px) { .hero-slider__arrow { display: none; } }

/* ---------- Real-image media helpers ---------- */
.split__media { position: relative; }
.img-cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.card-media { aspect-ratio: 16/10; border-radius: var(--radius); overflow: hidden; position: relative; margin-bottom: 18px; box-shadow: var(--shadow-sm); }
.card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
.hero__badge {
  position: absolute; background: #fff; border-radius: 16px; box-shadow: var(--shadow);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 0.92rem;
}
.hero__badge svg { width: 34px; height: 34px; }
.hero__badge--tl { top: 22px; left: -18px; }
.hero__badge--br { bottom: 26px; right: -16px; flex-direction: column; align-items: flex-start; gap: 2px; }
.hero__badge--br .big { font-family: var(--font-head); font-size: 1.5rem; color: var(--teal-700); line-height: 1; }
.hero__badge--br .small { font-size: 0.74rem; color: var(--muted); font-weight: 600; }
@media (max-width: 480px) { .hero__badge--tl { left: 6px; } .hero__badge--br { right: 6px; } }

/* ---------- Pills / trust strip ---------- */
.trust-strip { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip .container { display: grid; grid-template-columns: repeat(5, 1fr); padding: 30px 24px; }
.trust-item {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
  font-weight: 700; color: var(--ink); font-size: 0.9rem; line-height: 1.3;
  padding: 4px 14px; position: relative;
}
/* subtle divider between columns */
.trust-item + .trust-item::before {
  content: ""; position: absolute; left: 0; top: 14%; height: 72%; width: 1px; background: var(--line);
}
.trust-item svg {
  width: 48px; height: 48px; padding: 13px; box-sizing: border-box; border-radius: 14px;
  background: var(--teal-50); color: var(--teal-700); flex: none;
  transition: transform .25s var(--ease), background .25s;
}
.trust-item:hover svg { transform: translateY(-3px); background: var(--teal-100); }
@media (max-width: 860px) {
  .trust-strip .container { grid-template-columns: repeat(3, 1fr); gap: 28px 0; padding: 28px 16px; }
  .trust-item:nth-child(3n+1)::before { display: none; }
}
@media (max-width: 520px) {
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); gap: 26px 0; }
  .trust-item::before { display: none; }
  .trust-item:nth-child(2n)::before, .trust-item:nth-child(2n+1)::before { display: none; }
}

/* ---------- Cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  height: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--teal-100); }
.card__icon {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  background: var(--teal-50); color: var(--teal-700); margin-bottom: 18px;
}
.card__icon svg { width: 28px; height: 28px; }
.card--accent .card__icon { background: var(--coral-100); color: var(--coral-600); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-soft); margin-bottom: 0; }
.card__link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; margin-top: 14px; }
.card__link svg { width: 16px; height: 16px; transition: transform .2s; }
.card:hover .card__link svg { transform: translateX(4px); }

/* ---------- Section head ---------- */
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 0; }
.section-head--left { margin-left: 0; text-align: left; }

/* ---------- Why-choose list ---------- */
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .tick {
  flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--teal-100);
  color: var(--teal-700); display: grid; place-items: center; margin-top: 2px;
}
.feature-list .tick svg { width: 16px; height: 16px; }
.feature-list strong { display: block; color: var(--ink); }
.feature-list span.sub { color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- Split media block ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } .split--reverse .split__media { order: 0; } }
.split__media {
  border-radius: var(--radius-lg); aspect-ratio: 5/4; box-shadow: var(--shadow);
  background: linear-gradient(160deg, var(--teal-100), var(--cream-2)); overflow: hidden;
  position: relative;
}

/* ---------- Areas served ---------- */
.areas { display: flex; flex-wrap: wrap; gap: 12px; }
.area-pill {
  display: inline-flex; align-items: center; gap: 8px; background: var(--white);
  border: 1px solid var(--line); border-radius: 999px; padding: 11px 20px; font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.area-pill svg { width: 17px; height: 17px; color: var(--coral-500); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2,1fr); } }
.stat { text-align: center; }
.stat__num { font-family: var(--font-head); font-size: clamp(2.2rem, 5vw, 3rem); color: #fff; line-height: 1; }
.section--teal .stat__num { color: var(--gold-500); }
.stat__label { font-size: 0.95rem; opacity: .85; margin-top: 6px; }

/* ---------- Reviews ---------- */
.review {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); height: 100%; display: flex; flex-direction: column;
}
.review .stars { color: var(--gold-500); letter-spacing: 2px; margin-bottom: 12px; font-size: 1.05rem; }
.review p { font-size: 1.04rem; color: var(--ink); flex: 1; }
.review__author { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.review__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none; display: grid; place-items: center;
  color: #fff; font-weight: 700; font-family: var(--font-head); font-size: 1.05rem;
}
.review__author b { display: block; line-height: 1.2; }
.review__author span { font-size: 0.85rem; color: var(--muted); }
.reviews-head { display: flex; align-items: center; gap: 14px; justify-content: center; margin-bottom: 8px; flex-wrap: wrap; }
.google-badge { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.google-badge svg { width: 22px; height: 22px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--teal-700), var(--teal-900));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(38px, 6vw, 64px);
  text-align: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(242,180,65,.25), transparent 70%); border-radius: 50%;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #d8efed; max-width: 620px; margin: 0 auto 26px; font-size: 1.1rem; }
.cta-band .hero__actions { justify-content: center; margin-bottom: 0; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); margin-bottom: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-head); font-size: 1.12rem; font-weight: 600; color: var(--ink);
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__q:hover { color: var(--teal-700); }
.faq__icon { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; transition: transform .3s, background .3s; }
.faq__icon svg { width: 16px; height: 16px; }
.faq__item.open .faq__icon { transform: rotate(45deg); background: var(--coral-500); color: #fff; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a-inner { padding: 0 24px 22px; color: var(--ink-soft); }
.faq__a-inner p:last-child { margin-bottom: 0; }

/* ---------- Page hero (interior) ---------- */
.page-hero { position: relative; padding: clamp(54px, 7vw, 96px) 0 clamp(40px, 5vw, 64px); }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(900px 420px at 85% -20%, var(--teal-100), transparent 60%), var(--cream-2);
}
.page-hero .eyebrow { justify-content: flex-start; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero p { font-size: 1.12rem; color: var(--ink-soft); max-width: 620px; margin-bottom: 0; }
.breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 18px; font-weight: 600; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--teal-700); }

/* ---------- Forms ---------- */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 0.92rem; margin-bottom: 7px; color: var(--ink); }
.field label .req { color: var(--coral-600); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: var(--cream);
  transition: border-color .2s, box-shadow .2s; line-height: 1.5;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal-500); background: #fff; box-shadow: 0 0 0 4px var(--teal-50);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.84rem; color: var(--muted); margin-top: 12px; }
.form-status { margin-top: 14px; font-weight: 700; display: none; padding: 12px 16px; border-radius: 12px; }
.form-status.ok { display: block; background: var(--teal-50); color: var(--teal-900); }
.form-status.err { display: block; background: var(--coral-100); color: var(--coral-600); }

.contact-grid { grid-template-columns: 1.15fr 0.85fr; align-items: start; gap: 36px; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-aside { display: grid; gap: 16px; align-content: start; }
.contact-line { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow-sm); }
.contact-line__icon { flex: none; width: 46px; height: 46px; border-radius: 13px; background: var(--teal-50); color: var(--teal-700); display: grid; place-items: center; }
.contact-line__icon svg { width: 22px; height: 22px; }
.contact-line b { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 3px; }
.contact-line a, .contact-line span { font-weight: 700; color: var(--ink); font-size: 1.04rem; word-break: break-word; }
.contact-line a:hover { color: var(--teal-700); }

/* ---------- Prose (about, blog, legal) ---------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose p, .prose li { color: var(--ink-soft); font-size: 1.06rem; }
.prose strong { color: var(--ink); }
.prose ul { padding-left: 1.3em; }
.prose blockquote {
  margin: 1.6em 0; padding: 20px 26px; border-left: 4px solid var(--coral-500);
  background: var(--teal-50); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-head); font-size: 1.3rem; color: var(--teal-900); font-style: italic;
}
.prose blockquote p { color: var(--teal-900); margin: 0; }

/* ---------- Blog ---------- */
.post-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; display: flex; flex-direction: column; height: 100%; }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-card__img { aspect-ratio: 16/9; background: linear-gradient(150deg, var(--teal-100), var(--cream-2)); position: relative; overflow: hidden; }
.post-card__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-card:hover .post-card__img img { transform: scale(1.05); }
.post-card__tag { position: absolute; top: 14px; left: 14px; background: #fff; color: var(--teal-700); font-weight: 700; font-size: 0.74rem; text-transform: uppercase; letter-spacing: .06em; padding: 6px 12px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.post-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { font-size: 0.82rem; color: var(--muted); font-weight: 600; margin-bottom: 8px; }
.post-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.post-card p { color: var(--ink-soft); font-size: 0.98rem; flex: 1; }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-900); color: #bfe0dd; padding: 64px 0 0; }
.site-footer a { color: #d7efed; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__name span { color: var(--gold-500); }
.footer-brand p { color: #a9d2cf; max-width: 320px; margin-top: 14px; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 0.86rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { font-weight: 500; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .2s; }
.footer-social a:hover { background: var(--coral-500); }
.footer-social svg { width: 18px; height: 18px; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 50px; padding: 22px 0; font-size: 0.86rem; color: #95c3bf; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; }
.footer-bottom a { color: #95c3bf; }
.footer-bottom .legal-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Floating mobile action pill (Call + Schedule) ---------- */
.mobile-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 50; display: none;
  gap: 8px; align-items: stretch; background: #fff; padding: 7px;
  border-radius: 22px; border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(10, 26, 50, .3);
}
.mobile-cta__btn {
  flex: 1; min-width: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; padding: 10px 6px; border-radius: 16px; font-weight: 800; font-size: 0.9rem;
  line-height: 1.1; text-align: center;
}
.mobile-cta__btn svg { width: 20px; height: 20px; }
.mobile-cta__call { background: var(--teal-700); color: #fff; }
.mobile-cta__call:hover { color: #fff; }
.mobile-cta__book { flex: 1.15; background: var(--coral-500); color: var(--teal-900); }
.mobile-cta__book:hover { color: var(--teal-900); }
@media (max-width: 980px) { .mobile-cta { display: flex; } body { padding-bottom: 86px; } }
@media (max-width: 360px) { .mobile-cta__btn { font-size: 0.82rem; } }

/* legacy single call button (kept harmless) */
.call-fab { display: none !important; }

/* ---------- Disclaimer / small ---------- */
.fineprint { font-size: 0.82rem; color: var(--muted); }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.tag { background: var(--teal-50); color: var(--teal-700); border-radius: 999px; padding: 5px 13px; font-size: 0.82rem; font-weight: 700; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.skip-link { position: absolute; left: -999px; top: 0; background: #fff; padding: 10px 16px; z-index: 200; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }
