/* =============================================================
   Corey's Car Care Center — Static site styles
   Modern, mobile-first refresh. Plain CSS, no build step.
   ============================================================= */

/* ---------- Self-hosted Inter (variable, latin subset, woff2) ---------- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter.woff2") format("woff2");
}

:root {
  /* Brand palette: red / blue / charcoal */
  --red: #e02424;
  --red-dark: #b91c1c;
  --navy: #14233f;
  --navy-light: #1d3358;
  --charcoal: #1f2733;
  --steel: #51607a;
  --line: #e3e8ef;
  --bg: #f6f8fb;
  --bg-alt: #eef2f7;
  --white: #ffffff;
  --gold: #f5a623;

  --text: #1f2733;
  --text-muted: #5b6675;

  --container: 1140px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .06), 0 1px 3px rgba(16, 24, 40, .1);
  --shadow-md: 0 8px 24px rgba(16, 24, 40, .12);
  --shadow-lg: 0 20px 48px rgba(16, 24, 40, .18);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; height: auto; }

a { color: var(--red); text-decoration: none; transition: color .15s var(--ease); }
a:hover { color: var(--red-dark); }

h1, h2, h3, h4 { line-height: 1.18; color: var(--charcoal); margin: 0 0 .5em; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0 0 1rem; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }

.section { padding: clamp(48px, 8vw, 96px) 0; }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy); color: #d6deee; }
.section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .75rem;
}
.section--navy .eyebrow { color: #ff8a8a; }

.section-head { max-width: 720px; margin-bottom: 2.5rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.lead { font-size: 1.15rem; color: var(--text-muted); }
.section--navy .lead { color: #aebbd2; }

.grid { display: grid; gap: 24px; }
.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: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--red);
  --btn-color: #fff;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  background: var(--btn-bg);
  color: var(--btn-color);
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .15s var(--ease), box-shadow .15s var(--ease), background .15s var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--red-dark); }
.btn svg { width: 1.1em; height: 1.1em; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-color: #fff;
  border-color: rgba(255, 255, 255, .55);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }

.btn--dark { --btn-bg: var(--charcoal); }
.btn--dark:hover { background: #0f141b; }

.btn--outline {
  --btn-bg: transparent;
  --btn-color: var(--red);
  border-color: var(--red);
  box-shadow: none;
}
.btn--outline:hover { background: var(--red); color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar {
  background: var(--navy);
  color: #c7d2e6;
  font-size: .85rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 38px; padding-block: 6px; }
.topbar a { color: #e7edf7; font-weight: 600; white-space: nowrap; }
.topbar a:hover { color: #fff; }
.topbar-info { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: .4rem; }
.topbar-info svg { width: 15px; height: 15px; opacity: .8; }
@media (max-width: 720px) {
  .topbar-hours { display: none; }
  .topbar .container { justify-content: center; }
  .topbar-info { display: none; }
}

.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand img, .brand svg { height: 44px; width: auto; }
.brand-name { font-weight: 800; color: var(--charcoal); font-size: 1.05rem; letter-spacing: -.01em; line-height: 1.1; }
.brand-name small { display: block; font-size: .72rem; font-weight: 600; color: var(--steel); letter-spacing: .04em; }

.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-menu > li { position: relative; }
.nav-menu a {
  display: block;
  padding: .6rem .85rem;
  color: var(--charcoal);
  font-weight: 600;
  font-size: .95rem;
  border-radius: 8px;
}
.nav-menu a:hover, .nav-menu a[aria-current="page"] { color: var(--red); background: var(--bg-alt); }

.has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: .4em; height: .4em;
  margin-left: .4em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .6;
}
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .18s var(--ease);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { padding: .55rem .75rem; border-radius: 7px; font-size: .92rem; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span { display: block; height: 2.5px; background: var(--charcoal); border-radius: 2px; transition: all .25s var(--ease); }
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-cta-desktop { display: none; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 340px);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #fff;
    padding: 88px 18px 24px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform .3s var(--ease);
    overflow-y: auto;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a { padding: .8rem .9rem; font-size: 1rem; }
  .has-dropdown > a::after { float: right; margin-top: .35em; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--line);
    border-radius: 0;
    margin: 2px 0 6px 12px;
    padding: 2px 0;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .nav-overlay {
    position: fixed; inset: 0;
    background: rgba(15, 23, 42, .45);
    opacity: 0; visibility: hidden;
    transition: opacity .3s var(--ease);
    z-index: 90;
  }
  .nav-overlay.show { opacity: 1; visibility: visible; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #eaf0fb;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(224, 36, 36, .28), transparent 60%),
    linear-gradient(160deg, #16264a 0%, #11203c 55%, #0d1830 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.035' stroke-width='1'%3E%3Cpath d='M30 0v60M0 30h60'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; padding-block: clamp(60px, 9vw, 110px); }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; gap: 32px; } }
.hero h1 { color: #fff; }
.hero p { color: #c3cfe6; font-size: 1.2rem; max-width: 36ch; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 1.5rem; }
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #e7edf7;
  padding: .4rem .85rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
}
.chip svg { width: 15px; height: 15px; color: var(--gold); }

.hero-card {
  background: rgba(255, 255, 255, .96);
  color: var(--text);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hero-card h2 { margin-bottom: .25rem; font-size: clamp(1.2rem, 2vw, 1.5rem); }
.hero-card .muted { color: var(--text-muted); font-size: .95rem; margin-bottom: 1.2rem; }
.hours-list { list-style: none; margin: 0 0 1.25rem; padding: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: .4rem 0; border-bottom: 1px dashed var(--line); font-size: .95rem; }
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { font-weight: 600; color: var(--charcoal); }
.hours-list .closed { color: var(--red); font-weight: 600; }

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d3dbe6; }
.card .icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #fde2e2, #fbcaca);
  color: var(--red-dark);
  margin-bottom: 1.1rem;
}
.card .icon svg { width: 28px; height: 28px; }
.card-media {
  margin: -28px -28px 1.2rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-alt);
  border-radius: var(--radius) var(--radius) 0 0;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--ease); }
.card:hover .card-media img { transform: scale(1.04); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--text-muted); margin-bottom: 1.1rem; }
.card .card-link { margin-top: auto; font-weight: 700; display: inline-flex; align-items: center; gap: .35rem; }
.card .card-link svg { width: 1em; height: 1em; transition: transform .15s var(--ease); }
.card:hover .card-link svg { transform: translateX(3px); }

/* feature list */
.features { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.features li { display: flex; gap: .75rem; align-items: flex-start; }
.features svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--red); margin-top: 2px; }
.features strong { display: block; color: var(--charcoal); }

/* ---------- Stats / trust ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat .num { font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 800; color: #fff; letter-spacing: -.03em; }
.stat .label { color: #9fb0cd; font-size: .92rem; font-weight: 600; }

/* ---------- Split media ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 28px; } }
.split.reverse .split-media { order: 2; }
@media (max-width: 860px) { .split.reverse .split-media { order: 0; } }
.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-alt);
  border: 1px solid var(--line);
}
.media-frame img, .media-frame svg { width: 100%; display: block; }

/* ---------- Testimonials ---------- */
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: .75rem; font-size: 1.05rem; }
.testimonial p { font-style: italic; color: var(--text); }
.testimonial .who { margin-top: auto; font-weight: 700; color: var(--charcoal); }
.testimonial .who small { display: block; font-weight: 500; color: var(--text-muted); }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-photo {
  width: 100%;
  aspect-ratio: 27 / 34;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-alt), #dde4ee);
  margin-bottom: 1rem;
  border: 1px solid var(--line);
}
.team-photo svg, .team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { margin-bottom: .15rem; font-size: 1.2rem; }
.team-card .role { color: var(--red); font-weight: 600; font-size: .92rem; }

/* ---------- Pricing table ---------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.price-table caption { caption-side: bottom; padding: 16px; color: var(--text-muted); font-size: .9rem; }
.price-table th, .price-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.price-table thead th { background: var(--navy); color: #fff; font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; }
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr:nth-child(even) { background: var(--bg); }
.price-table .price { text-align: right; font-weight: 800; color: var(--charcoal); white-space: nowrap; }
.price-table .price small { display: block; font-weight: 500; color: var(--text-muted); font-size: .78rem; }
@media (max-width: 560px) {
  .price-table th, .price-table td { padding: 13px 14px; font-size: .92rem; }
}

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 36px);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; color: var(--charcoal); margin-bottom: .4rem; font-size: .92rem; }
.field .req { color: var(--red); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: .8rem .9rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(224, 36, 36, .12);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-hint { font-size: .82rem; color: var(--text-muted); margin-top: .35rem; }
.form-note { font-size: .85rem; color: var(--text-muted); }

/* Honeypot anti-spam field — hidden from users, visible to dumb bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Inline form error (shown by the JS spam guard) */
.form-error {
  background: #fff5f5;
  border: 1px solid #f3c0c0;
  color: var(--red-dark);
  border-radius: var(--radius-sm);
  padding: .7rem .9rem;
  margin-bottom: 1rem;
  font-size: .9rem;
}

/* Inline form success */
.form-success {
  background: #f0fbf3;
  border: 1px solid #b7e4c5;
  color: #1b7a3d;
  border-radius: var(--radius-sm);
  padding: .7rem .9rem;
  margin-bottom: 1rem;
  font-size: .9rem;
}

/* ---------- Info / contact blocks ---------- */
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.info-list li { display: flex; gap: .9rem; align-items: flex-start; }
.info-list .ico {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--bg-alt);
  color: var(--red);
}
.info-list .ico svg { width: 22px; height: 22px; }
.info-list strong { display: block; color: var(--charcoal); }
.info-list a, .info-list span { color: var(--text-muted); }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  min-height: 320px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.map-link { margin: .6rem 0 0; font-size: .9rem; }

/* ---------- Brand logos strip ---------- */
.logos { display: flex; flex-wrap: wrap; gap: 28px 48px; align-items: center; justify-content: center; }
.logos .logo-item {
  display: grid; place-items: center;
  padding: 10px 18px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  min-width: 130px;
  min-height: 64px;
  color: var(--steel);
  font-weight: 800;
  letter-spacing: .04em;
}

/* ---------- Virtual tour (inline 360 embed) ---------- */
.tour-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(13, 27, 42, .12);
  background: #0d1b2a;
}
.tour-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.tour-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
  background: #0d1b2a;
  cursor: pointer;
}
.tour-facade__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.tour-facade:hover .tour-facade__img,
.tour-facade:focus-visible .tour-facade__img { transform: scale(1.04); }
.tour-facade__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, rgba(13, 27, 42, .25), rgba(13, 27, 42, .6));
}
.tour-facade__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .5);
  backdrop-filter: blur(4px);
  font-weight: 800;
  letter-spacing: .03em;
  font-size: 1.05rem;
}
.tour-facade__badge svg { width: 22px; height: 22px; }
.tour-facade__label {
  font-weight: 700;
  font-size: 1.05rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .45);
}
.tour-facade:focus-visible { outline: 3px solid var(--red); outline-offset: -3px; }
@media (max-width: 640px) { .tour-frame { aspect-ratio: 4 / 3; } }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(224, 36, 36, .25), transparent 60%),
    linear-gradient(160deg, #16264a, #0d1830);
  color: #eaf0fb;
  padding: clamp(48px, 7vw, 84px) 0 clamp(40px, 6vw, 64px);
}
.page-hero h1 { color: #fff; margin-bottom: .5rem; }
.page-hero p { color: #c3cfe6; max-width: 60ch; font-size: 1.1rem; margin: 0; }
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: .85rem; color: #9fb0cd; margin-bottom: 1rem; }
.breadcrumb a { color: #cdd9ee; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: .6; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--red), #c01d1d);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #ffe0e0; max-width: 56ch; margin-inline: auto; }
.cta-band .btn--white { --btn-bg: #fff; --btn-color: var(--red); }
.cta-band .btn--white:hover { background: #f4f4f4; color: var(--red-dark); }
.cta-band .btn--ghost:hover { background: rgba(255,255,255,.15); }

/* ---------- Article / prose ---------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose p { color: var(--text-muted); font-size: 1.05rem; }
.prose ul { color: var(--text-muted); padding-left: 1.2rem; }
.prose li { margin-bottom: .5rem; }
.callout {
  background: #fff5f5;
  border-left: 4px solid var(--red);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 1.5rem 0;
  color: var(--charcoal);
}
.callout strong { color: var(--red-dark); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line, #e6e9ef);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq__item[open] { border-color: var(--navy, #14233f); }
.faq__q {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  color: var(--red);
  transition: transform .2s ease;
}
.faq__item[open] .faq__q::after { content: "\2212"; }
.faq__q:focus-visible { outline: 2px solid var(--navy, #14233f); outline-offset: -2px; }
.faq__a { padding: 0 22px 18px; color: #4a5568; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: #aeb8c6; padding-top: clamp(48px, 7vw, 72px); }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1.1rem; letter-spacing: .02em; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.footer-brand svg { height: 40px; }
.footer-brand img { height: 64px; width: auto; background: #fff; padding: 10px 16px; border-radius: 12px; }
.footer-brand .brand-name, .footer-brand .brand-name small { color: #fff; }
.footer-brand .brand-name small { color: #9fb0cd; }
.site-footer p { color: #9aa6b6; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer-links a { color: #aeb8c6; font-weight: 500; }
.footer-links a:hover { color: #fff; }
.footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 3px; color: var(--red); }
.footer-contact a { color: #cfd7e2; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  margin-top: clamp(36px, 6vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 22px 0;
  font-size: .85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom .social { display: flex; gap: 12px; }
.footer-bottom .social a { color: #aeb8c6; }
.footer-bottom .social a:hover { color: #fff; }
.footer-bottom .social svg { width: 20px; height: 20px; }

/* ---------- Floating call button (mobile) ---------- */
.call-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: none;
  place-items: center;
  box-shadow: var(--shadow-lg);
}
.call-fab svg { width: 24px; height: 24px; }
@media (max-width: 940px) { .call-fab { display: grid; } }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--text-muted); }
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  padding: 10px 16px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); 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; }
}
