/* ===== Design tokens ===== */
:root {
  --navy: #1d3f8f;
  --navy-dark: #122c68;
  --red: #e2222a;
  --red-dark: #b5181f;
  --cream: #faf6ef;
  --cream-deep: #f2ead9;
  --white: #ffffff;
  --text: #2a2a2e;
  --text-muted: #5c5f6b;
  --border: #e7ded0;
  --shadow: 0 10px 30px rgba(29, 63, 143, 0.10);
  --radius: 14px;
  --font-head: "Nunito", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-dark);
  line-height: 1.2;
  margin: 0 0 .5em;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--navy); color: #fff; padding: .75rem 1.25rem;
  z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.section-inner { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4.5rem 0; }
.section-alt { background: var(--white); }
.eyebrow {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--red);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
  margin-bottom: .6rem;
}
.section-head { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.section-head p { color: var(--text-muted); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 800;
  padding: .9rem 1.7rem; border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: 2px solid transparent; cursor: pointer;
}
.btn svg { width: 1.1em; height: 1.1em; flex: none; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(226,34,42,.30); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.15); }
.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 239, .93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-top {
  background: var(--navy-dark); color: #fff; font-size: .82rem;
}
.header-top-inner {
  max-width: 1140px; margin: 0 auto; padding: .45rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.header-top a { display: inline-flex; align-items: center; gap: .35rem; }
.header-top a:hover { color: #ffd7d9; }
.lang-toggle { display: flex; gap: .25rem; }
.lang-toggle button {
  background: transparent; border: 1px solid rgba(255,255,255,.35); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: .76rem;
  padding: .2rem .55rem; border-radius: 999px; cursor: pointer;
}
.lang-toggle button.active { background: #fff; color: var(--navy-dark); border-color: #fff; }

.header-inner {
  max-width: 1140px; margin: 0 auto; padding: .85rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .6rem; }
.brand-logo { height: 76px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 1.9rem; }
.main-nav a:not(.nav-cta) {
  font-family: var(--font-head); font-weight: 700; font-size: .95rem; color: var(--navy-dark);
  padding: .3rem 0; border-bottom: 2px solid transparent;
}
.main-nav a:not(.nav-cta):hover, .main-nav a.active { border-color: var(--red); color: var(--red); }
.nav-cta {
  font-family: var(--font-head); font-weight: 800; font-size: .9rem;
  background: var(--red); color: #fff; padding: .6rem 1.2rem; border-radius: 999px;
  display: inline-flex; align-items: center; gap: .4rem;
}
.nav-cta:hover { background: var(--red-dark); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .4rem;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--navy-dark); border-radius: 2px; transition: .2s; }

/* ===== Hero ===== */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(120deg, var(--navy-dark), var(--navy));
}
.hero-inner {
  max-width: 1140px; margin: 0 auto; padding: 4.5rem 1.5rem 3.5rem;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: center;
}
.hero-kicker {
  font-family: var(--font-head); font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: #ffc9cc; font-size: .85rem; margin-bottom: .8rem;
}
.hero h1 { color: #fff; font-size: clamp(2.1rem, 4vw, 3.1rem); }
.hero-lead { color: #dfe6f7; font-size: 1.1rem; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.6rem; }
.hero-pills { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin-top: 1.8rem; }
.hero-pill { display: flex; align-items: center; gap: .5rem; font-size: .88rem; color: #eef1fb; }
.hero-pill svg { width: 1.2em; height: 1.2em; color: #7fe0a0; flex: none; }
.hero-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,.35); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }

/* ===== Info strip ===== */
.info-strip { background: var(--white); border-bottom: 1px solid var(--border); }
.info-strip-inner {
  max-width: 1140px; margin: 0 auto; padding: 1.1rem 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1.2rem 2.2rem; justify-content: center;
}
.info-item { display: flex; align-items: center; gap: .55rem; font-weight: 700; font-family: var(--font-head); color: var(--navy-dark); font-size: .92rem; }
.info-item svg { width: 1.3em; height: 1.3em; color: var(--red); flex: none; }

/* ===== About teaser / split content ===== */
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; align-items: center; }
.split.reverse { grid-template-columns: 1.1fr .9fr; }
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split-text ul { margin-top: 1.2rem; display: grid; gap: .7rem; }
.split-text ul li { display: flex; gap: .6rem; align-items: flex-start; color: var(--text); }
.split-text ul li svg { width: 1.3em; height: 1.3em; color: var(--red); flex: none; margin-top: .1em; }

/* ===== Cards / grids ===== */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 1.8rem;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.service-card .icon-badge {
  width: 52px; height: 52px; border-radius: 14px; background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.service-card .icon-badge svg { width: 26px; height: 26px; color: var(--red); }
.service-card h3 { font-size: 1.12rem; }
.service-card p { color: var(--text-muted); font-size: .95rem; margin-bottom: 0; }

/* ===== Reviews ===== */
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.review-card {
  background: var(--white); border-radius: var(--radius); padding: 1.8rem;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.review-stars { color: #f5a623; letter-spacing: .1em; margin-bottom: .8rem; font-size: 1.05rem; }
.review-card p.quote { font-style: italic; color: var(--text); }
.review-author { font-family: var(--font-head); font-weight: 800; color: var(--navy-dark); font-size: .92rem; }
.review-meta { color: var(--text-muted); font-size: .82rem; }

/* ===== Pricing / insurance callout ===== */
.callout {
  background: linear-gradient(120deg, var(--red), var(--red-dark)); color: #fff;
  border-radius: var(--radius); padding: 2.2rem; display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; box-shadow: var(--shadow);
}
.callout h3 { color: #fff; margin-bottom: .3rem; }
.callout p { color: #ffe3e4; margin-bottom: 0; max-width: 46ch; }

.insurance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem 1.4rem; margin-top: 1rem; }
.insurance-grid li { display: flex; align-items: center; gap: .55rem; font-weight: 600; font-size: .95rem; }
.insurance-grid li svg { width: 1.15em; height: 1.15em; color: #22a35c; flex: none; }
.insurance-grid.soon li svg { color: #c8ccd6; }
.insurance-grid.soon li { color: var(--text-muted); }

/* ===== Location / map ===== */
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); }
.map-frame iframe { width: 100%; height: 380px; border: 0; display: block; }
.location-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow);
}
.location-card dl { display: grid; grid-template-columns: auto 1fr; gap: .5rem 1rem; margin: 1rem 0; }
.location-card dt { font-family: var(--font-head); font-weight: 800; color: var(--navy-dark); }
.location-card dd { margin: 0; color: var(--text-muted); }

/* ===== Timeline (About page) ===== */
.timeline { display: grid; gap: 1.4rem; margin-top: 1.5rem; }
.timeline-item { display: grid; grid-template-columns: 30px 1fr; gap: 1rem; }
.timeline-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--red); margin-top: .35rem; position: relative; }
.timeline-item:not(:last-child) .timeline-dot::after {
  content: ""; position: absolute; top: 18px; left: 6px; width: 2px; height: 60px; background: var(--border);
}
.timeline-item h4 { margin-bottom: .15rem; }
.timeline-item p { color: var(--text-muted); margin-bottom: 0; font-size: .95rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.gallery-grid img {
  border-radius: 10px; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow);
  cursor: zoom-in; transition: transform .2s ease, box-shadow .2s ease;
}
.gallery-grid img:hover { transform: scale(1.03); box-shadow: 0 14px 34px rgba(29,63,143,.22); }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 300; display: none;
  align-items: center; justify-content: center;
  background: rgba(18, 44, 104, .92); padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox-figure { position: relative; max-width: min(90vw, 1000px); max-height: 86vh; }
.lightbox-figure img {
  display: block; max-width: 100%; max-height: 86vh; width: auto; height: auto;
  border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5); margin: 0 auto;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed; background: rgba(255,255,255,.12); color: #fff; border: none; border-radius: 50%;
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .15s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--red); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 22px; height: 22px; }
.lightbox-close { top: 1.4rem; right: 1.4rem; }
.lightbox-prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
  position: absolute; bottom: -2.2rem; left: 0; right: 0; text-align: center;
  color: #dfe6f7; font-family: var(--font-head); font-weight: 700; font-size: .85rem;
}
@media (max-width: 620px) {
  .lightbox-prev { left: .5rem; }
  .lightbox-next { right: .5rem; }
  .lightbox-close { top: .6rem; right: .6rem; }
  .lightbox-prev, .lightbox-next, .lightbox-close { width: 40px; height: 40px; }
}

.pullquote {
  border-left: 4px solid var(--red); padding: .3rem 0 .3rem 1.4rem; margin: 2rem 0;
  font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--navy-dark);
}

/* ===== Footer ===== */
.site-footer { background: var(--navy-dark); color: #cfd8ef; }
.footer-inner {
  max-width: 1140px; margin: 0 auto; padding: 3.5rem 1.5rem 2rem;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.5rem;
}
.footer-brand img { height: 46px; margin-bottom: 1rem; }
.footer-brand p { color: #aab6db; font-size: .92rem; max-width: 34ch; }
.footer-col h4 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; }
.footer-col ul { display: grid; gap: .6rem; margin-top: .8rem; }
.footer-col a { color: #cfd8ef; font-size: .92rem; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: .7rem; margin-top: 1rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
}
.footer-social svg { width: 18px; height: 18px; }
.footer-social a:hover { background: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); text-align: center; padding: 1.2rem 1.5rem;
  font-size: .82rem; color: #93a0c9;
}

/* ===== Page banner (About/Services/Contact) ===== */
.page-banner {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy)); color: #fff;
  padding: 3.2rem 0 2.8rem; text-align: center;
}
.page-banner h1 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: .5rem; }
.page-banner p { color: #dfe6f7; max-width: 60ch; margin: 0 auto; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .main-nav { position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw); height: 100vh;
    background: #fff; flex-direction: column; align-items: flex-start; padding: 5.5rem 1.8rem 2rem;
    transform: translateX(100%); transition: transform .25s ease; box-shadow: -10px 0 30px rgba(0,0,0,.15);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a:not(.nav-cta) { font-size: 1.05rem; width: 100%; }
  .nav-toggle { display: flex; }
  .hero-inner, .split, .split.reverse { grid-template-columns: 1fr; }
  .split-media, .split.reverse .split-media { order: -1; }
  .card-grid, .review-grid, .insurance-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .header-top-inner { font-size: .74rem; }
  .brand-logo { height: 56px; }
  .card-grid, .review-grid, .insurance-grid, .gallery-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .callout { flex-direction: column; text-align: center; }
}
