/*
 * Homepage stylesheet — New Homepage template (page-homepage.php)
 *
 * Loaded via <link> in the standalone template head.
 * Versioned via filemtime() in the template so cache busts automatically on save.
 *
 * @package fixmyairPro
 */

:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --text: #10233f;
  --muted: #5d6b82;
  --line: #dbe3ef;
  --brand: #c62828;
  --brand-dark: #a81f1f;
  --accent: #0f766e;
  --ok: #166534;
  --shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  --radius: 18px;
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --red: #c0272d;
  --red-dark: #9e1f24;
  --navy: #1a2a4a;
  --nav-h: 100px;
  --logo-size: 100px;
  --t: 0.2s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  margin: 0 auto;
  width: min(var(--max), calc(100% - 32px));
}

.skip-link {
  left: -9999px;
  position: absolute;
  top: auto;
}

.skip-link:focus {
  background: #111827;
  border-radius: 10px;
  color: #fff;
  left: 16px;
  padding: 10px 14px;
  top: 16px;
  z-index: 1000;
}

/* ── Utility bar ─────────────────────────────────────────────────────────── */
.utility-bar {
  background: #10233f;
  color: #fff;
  font-size: 14px;
}

.utility-bar .wrap {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 10px 0;
}

.utility-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.utility-links a,
.utility-links button {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  opacity: 0.96;
  padding: 0;
}

.utility-links .emergency {
  color: #ffd9d9;
}

.utility-contact {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 4px;
  opacity: 0.9;
}

.utility-contact a {
  color: #a5d0cc;
  font-weight: 700;
}

/* ── Site header ─────────────────────────────────────────────────────────── */
.site-header {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .wrap {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  align-items: center;
  display: flex;
  gap: 0px;
  min-width: 0;
}

.brand-mark {
  flex: 0 0 auto;
  height: 70px;
  line-height: 0;
}

.brand-mark img {
  height: auto;
  max-height: 140px;
  object-fit: contain;
}

.brand-copy strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
}

.brand-copy span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-top: 2px;
}

.header-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  color: var(--text);
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  min-height: 46px;
  padding: 10px 16px;
}

.btn.primary {
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-color: transparent;
  box-shadow: 0 18px 38px rgba(198, 40, 40, 0.24);
  color: #fff;
}

.btn.secondary {
  background: var(--surface-alt);
}

/* ── Sections ────────────────────────────────────────────────────────────── */
main section {
  padding: 34px 0;
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  background-attachment: fixed;
  background-color: #0d1e37;
  background-position: center 25%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 620px;
  padding: 52px 0 48px;
  position: relative;
}

/* .hero::before {
  background: linear-gradient(110deg,
      rgba(245, 247, 251, 0.94) 0%,
      rgba(245, 247, 251, 0.82) 50%,
      rgba(245, 247, 251, 0.48) 100%);
  bottom: 0;
  content: '';
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
} */

.hero>* {
  position: relative;
}

.hero-grid {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.eyebrow {
  align-items: center;
  background: #ecfdf5;
  border: 1px solid #cfeee4;
  border-radius: 999px;
  color: var(--accent);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  padding: 7px 12px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 12px;
}

.hero-location {
  color: var(--accent);
  font-style: normal;
}

.hero-lead {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
  max-width: 64ch;
}

.proof-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 18px 0;
}

.proof-item {
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
}

.proof-item strong {
  display: block;
  font-size: 18px;
  margin-bottom: 3px;
}

.proof-item span {
  color: var(--muted);
  display: block;
  font-size: 13px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.hero-note {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

.hero-note strong {
  color: var(--text);
}

.hero-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.hero-list li {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: 10px;
  padding: 12px 14px;
}

.hero-list li svg {
  color: var(--accent);
  flex-shrink: 0;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.callout {
  background: linear-gradient(180deg, #fff9f9 0%, #fff 100%);
}

.callout h2,
.section-head h2 {
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 8px;
}

.callout p,
.section-head p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

.triage-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.triage-list li {
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  gap: 12px;
  padding: 14px;
}

.triage-icon {
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 1px;
}

.triage-list strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.triage-list span {
  color: var(--muted);
  display: block;
  font-size: 13px;
}

/* ── Badges ──────────────────────────────────────────────────────────────── */
.badge-cloud {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.badge {
  align-items: center;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: center;
  min-height: 60px;
  padding: 8px 10px;
  text-align: center;
}

/* ── Section head ────────────────────────────────────────────────────────── */
.section-head {
  align-items: end;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 16px;
}

/* ── Grids ───────────────────────────────────────────────────────────────── */
.mini-grid,
.service-grid,
.location-grid,
.resource-grid,
.trust-grid,
.reviews-grid,
.footer-grid {
  display: grid;
  gap: 14px;
}

.mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.location-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.resource-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

/* ── Cards ───────────────────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.card h3 {
  font-size: 18px;
  line-height: 1.2;
  margin: 0 0 8px;
}

.card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.card ul {
  color: var(--muted);
  font-size: 14px;
  margin: 14px 0 0;
  padding-left: 18px;
}

.card li+li {
  margin-top: 6px;
}

.card .text-link {
  align-items: center;
  color: var(--brand);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
  margin-top: 14px;
}

/* ── Trust block ─────────────────────────────────────────────────────────── */
.trust-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-line {
  align-items: flex-start;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  gap: 10px;
  padding: 12px 14px;
}

.trust-line strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.trust-line span {
  color: var(--muted);
  display: block;
  font-size: 13px;
}

/* ── Review quotes ───────────────────────────────────────────────────────── */
.quote {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.quote .stars {
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.quote blockquote {
  color: var(--text);
  font-size: 15px;
  margin: 0;
}

.quote footer {
  border: 0;
  color: var(--muted);
  font-size: 13px;
  margin-top: 12px;
  padding: 0;
}

/* ── FAQ accordion ───────────────────────────────────────────────────────── */
.faq {
  display: grid;
  gap: 10px;
}

details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 14px 16px;
}

summary {
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  color: var(--muted);
  font-size: 14px;
  margin: 10px 0 0;
}

/* ── Badge images ────────────────────────────────────────────────────────── */
.badge-img {
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: block;
  height: auto;
  max-height: 76px;
  min-height: 60px;
  object-fit: contain;
  padding: 8px;
  width: 100%;
}

/* ── Service card images ─────────────────────────────────────────────────── */
.service-card-img {
  border-radius: 12px;
  display: block;
  height: 180px;
  margin-bottom: 14px;
  object-fit: cover;
  width: 100%;
}

/* ── Team section ────────────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-card {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 22px;
  text-align: center;
}

.team-img-wrap {
  align-items: center;
  background: var(--bg);
  border-radius: 16px;
  display: flex;
  height: 150px;
  justify-content: center;
  margin: 0 auto 16px;
  overflow: hidden;
  width: 150px;
}

.team-img-wrap img {
  height: 150px;
  object-fit: cover;
  width: 150px;
}

.team-body {
  flex: 1;
  text-align: center;
  width: 100%;
}

.team-body h3 {
  font-size: 17px;
  margin: 0 0 4px;
}

.team-role {
  color: var(--brand);
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.team-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 34px 0 0;
}

.footer-title {
  font-size: 16px;
  margin: 0 0 10px;
}

.footer-copy,
.footer-list,
.footer-copy a {
  color: var(--muted);
  font-size: 14px;
}

.footer-list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-offices li {
  display: grid;
  gap: 2px;
  padding: 10px 0;
}

.footer-offices li+li {
  border-top: 1px solid var(--line);
}

.footer-offices strong {
  color: var(--text);
  display: block;
  font-size: 13px;
}

.footer-offices span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.footer-offices a {
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.footer-social a {
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  display: inline-flex;
  height: 36px;
  justify-content: center;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  width: 36px;
}

.footer-social a:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.footer-bottom {
  background: var(--bg);
  border-top: 1px solid var(--line);
  margin-top: 28px;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
  padding: 16px 0;
  text-align: center;
}

/* ── Location action cards ───────────────────────────────────────────────── */
.location-action-card {
  background: linear-gradient(135deg, #10233f 0%, #1a3560 100%);
  border-color: transparent;
  color: #fff;
}

.location-action-card h3 {
  color: #fff;
}

.location-action-card p {
  color: rgba(255, 255, 255, 0.72);
}

.location-action-card:hover {
  background: linear-gradient(135deg, #1a3560 0%, #c62828 100%);
}

.location-action-icon {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

/* ── Founder trust card ──────────────────────────────────────────────────── */
.founder-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.founder-img-wrap {
  align-items: center;
  background: var(--bg);
  border-radius: 999px;
  display: flex;
  height: 80px;
  justify-content: center;
  overflow: hidden;
  width: 80px;
}

.founder-img-wrap img {
  height: 80px;
  object-fit: cover;
  width: 80px;
}

.founder-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.founder-quote {
  color: var(--text);
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.founder-attr {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

.founder-facts {
  color: var(--muted);
  font-size: 13px;
  margin: 4px 0 0;
  padding-left: 16px;
}

.founder-facts li+li {
  margin-top: 5px;
}

.founder-facts a {
  color: var(--brand);
  font-weight: 700;
}

/* ── Intent cards ────────────────────────────────────────────────────────── */
.intent-icon {
  color: var(--brand);
  margin-bottom: 12px;
}

/* ── Body call CTA (phone number display) ────────────────────────────────── */
.call-number-btn {
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
  min-height: 54px;
}

.cta-phone {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.cta-avail {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.85;
  text-transform: uppercase;
}

/* ── Footer icon helper ──────────────────────────────────────────────────── */
.footer-copy-icon {
  align-items: center;
  display: flex;
  gap: 7px;
}

.footer-icon {
  color: var(--muted);
  display: inline-flex;
  flex-shrink: 0;
}

/* ── Mobile sticky CTA ───────────────────────────────────────────────────── */
.mobile-sticky {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 18px;
  bottom: 12px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
  display: none;
  gap: 10px;
  left: 12px;
  padding: 10px;
  position: fixed;
  right: 12px;
  z-index: 60;
}

.mobile-sticky a,
.mobile-sticky button {
  align-items: center;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  flex: 1 1 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 12px;
}

.mobile-sticky .primary,
.mobile-sticky button.primary {
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-color: transparent;
  color: #fff;
}

/* ── Accessibility ───────────────────────────────────────────────────────── */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1120px) {

  .proof-row,
  .service-grid,
  .location-grid,
  .reviews-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-grid,
  .mini-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ── 1024px → 768px: hide brand copy ─────────────────────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
  .brand-copy {
    display: none;
  }
}

/* ── ≤768px: show brand copy, hide header actions, stack brand centered ───── */
@media (max-width: 768px) {
  .hero {
    padding: 20px 0;
  }

  .utility-links {
    display: none;
  }

  .utility-contact {
    display: block;
    text-align: center;
  }

  .brand-copy {
    display: block;
  }

  .site-header .wrap {
    padding: 0;
    margin: 0;
  }

  .header-actions {
    display: none;
  }

  .brand-copy {
    display: none;
  }

  .brand {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .brand-mark,
  .brand-mark img {
    height: 90px;
    max-height: 90px;
  }
}

@media (max-width: 920px) {

  body {
    padding-bottom: 90px;
  }

  .site-header .wrap,
  .utility-bar .wrap,
  .section-head {
    align-items: flex-start;
  }

  .site-header .wrap,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .header-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .proof-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .location-grid,
  .resource-grid,
  .reviews-grid,
  .mini-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero-list {
    grid-template-columns: 1fr;
  }

  .mobile-sticky {
    display: flex;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(var(--max), calc(100% - 24px));
  }

  h1 {
    font-size: 2rem;
  }

  .proof-row {
    grid-template-columns: 1fr;
  }

  .panel {
    padding: 18px;
  }

  .btn,
  .mobile-sticky a {
    min-height: 50px;
  }
}

ul.dropdown {
margin: 0;
padding: 0;
}
/* ── NAVBAR ── */
.navbar {
position: relative;
z-index: 100;
background: #fff;
box-shadow: 0 2px 14px rgba(0,0,0,0.10);
height: var(--nav-h);
overflow: visible;
}

.navbar-inner {
max-width: 1320px;
margin: 0 auto;
padding: 0 28px;
height: 100%;
display: flex;
align-items: center;
gap: 0;
overflow: visible;
justify-content: space-between;
}

/* ── LOGO ── */
.logo-wrap {
flex-shrink: 0;
align-self: flex-start;
padding-top: 0;
margin-right: 10px;
text-decoration: none;
display: block;
position: relative;
z-index: 10;
}
.logo {
width: 150px;
}
.logo-circle {
width: var(--logo-size);
height: var(--logo-size);
border-radius: 50%;
background: var(--navy);
border: 4px solid var(--red);
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 6px 24px rgba(0,0,0,0.22);
transition: transform var(--t), box-shadow var(--t);
}
.logo-wrap:hover .logo-circle { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,0.28); }
.logo-ci { display: flex; flex-direction: column; align-items: center; color: #fff; line-height: 1; }
.logo-ci .lt { font-family: 'Barlow Condensed', sans-serif; font-size: 9.5px; font-weight: 700; letter-spacing: 0.14em; opacity: 0.6; text-transform: uppercase; }
.logo-ci .lm { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 800; letter-spacing: -1px; margin: 0; }
.logo-ci .ls { font-family: 'Barlow Condensed', sans-serif; font-size: 6.5px; font-weight: 700; letter-spacing: 0.06em; opacity: 0.55; text-transform: uppercase; text-align: center; line-height: 1.4; margin-top: 2px; }

/* ── DESKTOP MENU (center/fill) ── */
.menu-row {
display: none;
list-style: none;
flex: 1;
align-items: center;
gap: 0;
}
@media (min-width: 960px) { .menu-row { display: flex; } .panel {
        position: relative;
      }
      .phone-push {
        position: absolute;
  right: 20px;
  top: 30px;
      }
      .phone-push a {
        color: #c12727;
      } }
@media (max-width: 600px) { .navbar {height: 80px;} .logo { width: 80px; } ul {padding: 0;} .phone-push { margin-bottom: 10px; text-align: center; } }

.menu-row > li { position: relative; }
.menu-row > li > a {
display: flex;
align-items: center;
gap: 3px;
color: var(--navy);
font-size: 12.5px;
font-weight: 700;
letter-spacing: 0.04em;
text-transform: uppercase;
text-decoration: none;
padding: 0 11px;
height: var(--nav-h);
white-space: nowrap;
transition: color var(--t), background var(--t);
border-bottom: 3px solid transparent;
}
.menu-row > li > a:hover,
.menu-row > li:hover > a {
color: var(--red);
border-bottom-color: var(--red);
background: #fdf5f5;
}
.chevron {
width: 9px; height: 5px;
fill: none; stroke: currentColor; stroke-width: 2;
stroke-linecap: round; stroke-linejoin: round;
transition: transform var(--t); flex-shrink: 0;
}
.menu-row > li:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%) translateY(-6px);
min-width: 200px;
background: #fff;
border-top: 3px solid var(--red);
border-radius: 0 0 6px 6px;
box-shadow: 0 8px 28px rgba(0,0,0,0.13);
opacity: 0;
pointer-events: none;
transition: opacity var(--t), transform var(--t);
z-index: 300;
list-style: none;
}
.menu-row > li:last-child .dropdown,
.menu-row > li:nth-last-child(2) .dropdown { left: auto; right: 0; transform: translateY(-6px); }
.menu-row > li:hover .dropdown { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.menu-row > li:last-child:hover .dropdown,
.menu-row > li:nth-last-child(2):hover .dropdown { transform: translateY(0); }

.dropdown li a {
display: flex; align-items: center; gap: 8px;
padding: 10px 16px;
font-size: 12.5px; font-weight: 500; color: #444;
text-decoration: none;
border-bottom: 1px solid #f0f0f0;
transition: background var(--t), color var(--t), padding-left var(--t);
white-space: nowrap;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: #fdf1f1; color: var(--red); padding-left: 22px; }
.dropdown li a::before {
content: ''; width: 4px; height: 4px;
background: var(--red); border-radius: 50%;
flex-shrink: 0; opacity: 0; transition: opacity var(--t);
}
.dropdown li a:hover::before { opacity: 1; }

/* ── CTAs ── */
.cta-group {
display: flex;
align-items: center;
gap: 8px;
flex-shrink: 0;
margin-left: 16px;
}

.btn-call {
background: var(--red);
color: #fff;
font-family: 'Barlow', sans-serif;
font-size: 13.5px; font-weight: 700;
padding: 0 20px; height: 40px;
border: none; border-radius: 5px;
cursor: pointer; text-decoration: none;
display: flex; align-items: center; gap: 7px;
white-space: nowrap; letter-spacing: 0.03em;
transition: background var(--t), transform var(--t);
}
.btn-call:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-call svg { width: 14px; height: 14px; fill: #fff; flex-shrink: 0; }

.btn-outline {
background: transparent; color: var(--navy);
font-family: 'Barlow', sans-serif;
font-size: 13px; font-weight: 700;
padding: 0 16px; height: 40px;
border: 2px solid #ccd2dc; border-radius: 5px;
cursor: pointer; text-decoration: none;
display: flex; align-items: center;
white-space: nowrap; letter-spacing: 0.02em;
transition: all var(--t);
}
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: #fff; transform: translateY(-1px); }

/* ── HAMBURGER (mobile) ── */
.hamburger {
display: flex; flex-direction: column; gap: 5px;
cursor: pointer; padding: 6px; background: none; border: none; outline: none; flex-shrink: 0;
}
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: all var(--t); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
@media (min-width: 960px) { .hamburger { display: none; } }
/* hide book service on mobile too */
@media (max-width: 959px) { .btn-outline { display: none; } }

/* ── OFFCANVAS ── */
.oc-overlay {
position: fixed; inset: 0; background: rgba(0,0,0,0.52);
z-index: 1100; opacity: 0; pointer-events: none; transition: opacity var(--t);
}
.oc-overlay.open { opacity: 1; pointer-events: auto; }
.offcanvas {
position: fixed; top: 0; right: 0;
width: min(320px, 92vw); height: 100vh;
background: #fff; z-index: 1200;
transform: translateX(100%);
transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
display: flex; flex-direction: column; overflow: hidden;
}
.offcanvas.open { transform: translateX(0); }
.oc-head {
background: var(--navy); padding: 18px 20px;
display: flex; align-items: center; justify-content: space-between; flex-shrink: 0;
}
.oc-logo { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; color: #fff; letter-spacing: 0.06em; text-transform: uppercase; }
.oc-logo em { color: #f87171; font-style: normal; }
.oc-close {
background: rgba(255,255,255,0.15); border: none; width: 34px; height: 34px;
border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
color: #fff; font-size: 18px; transition: background var(--t);
}
.oc-close:hover { background: rgba(255,255,255,0.28); }
.oc-ctas {
padding: 12px 16px; display: flex; gap: 8px;
background: #f8f8f8; border-bottom: 1px solid #eee; flex-shrink: 0;
}
.oc-ctas .btn-call { flex: 1; justify-content: center; font-size: 13px; height: 40px; display: flex; }
.oc-ctas .btn-outline { flex: 1; justify-content: center; font-size: 13px; height: 40px; display: flex; }
.oc-nav { overflow-y: auto; flex: 1; padding: 8px 0; }
.oc-nav ul { list-style: none; }
.oc-nav > ul > li { border-bottom: 1px solid #f0f0f0; }
.oc-nav > ul > li > a,
.oc-nav > ul > li > .oc-btn {
display: flex; align-items: center; justify-content: space-between;
padding: 13px 20px; font-size: 13.5px; font-weight: 700; color: var(--navy);
text-decoration: none; letter-spacing: 0.04em; text-transform: uppercase;
cursor: pointer; background: none; border: none; width: 100%; text-align: left;
font-family: 'Barlow', sans-serif; transition: background var(--t), color var(--t);
}
.oc-nav > ul > li > a:hover, .oc-nav > ul > li > .oc-btn:hover { background: #f5f5f5; color: var(--red); }
.oc-chev { width: 14px; height: 9px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--t); flex-shrink: 0; }
.oc-btn.expanded .oc-chev { transform: rotate(180deg); }
.oc-sub { display: none; background: #fafafa; border-top: 1px solid #eee; list-style: none; }
.oc-sub.open { display: block; }
.oc-sub li a {
display: flex; align-items: center; gap: 9px;
padding: 10px 20px 10px 30px; font-size: 13px; font-weight: 500; color: #555;
text-decoration: none; border-bottom: 1px solid #f0f0f0; transition: color var(--t), background var(--t);
}
.oc-sub li:last-child a { border-bottom: none; }
.oc-sub li a:hover { color: var(--red); background: #fdf1f1; }
.oc-sub li a::before { content: '›'; font-size: 16px; color: var(--red); line-height: 1; }