/* ==========================================================================
   Moring Mobility LLC — site stylesheet
   Palette: navy / blue / orange on white. Light-theme by design: this is a
   public storefront that must look identical for every visitor, so every
   surface paints its own background and color explicitly.

   Color rules (verified for WCAG AA):
     - Orange (#F58220) is a FILL color. Text on it is always navy (6.25:1).
       Never white-on-orange (2.59:1).
     - Orange as TEXT on light backgrounds uses --rust (#A85105, 5.46:1).
   ========================================================================== */

:root {
  --navy: #12222F;
  --navy-soft: #1B3040;
  --blue: #0B5FA5;
  --blue-dark: #08497F;
  --blue-wash: #EAF4FB;
  --orange: #F58220;
  --orange-dark: #D96D10;
  --rust: #A85105;           /* orange-family text on light surfaces */

  --white: #FFFFFF;
  --mist: #F6F8F9;
  --line: #E4E9ED;
  --line-strong: #C6D5E0;

  --ink: #17202A;
  --body: #41525E;
  --muted: #5E6E7A;
  --on-navy: #C8D6E0;
  --on-navy-dim: #A9BCC9;

  --font-display: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, sans-serif;

  --wrap: 1180px;
  --r: 6px;
  --shadow-sm: 0 1px 3px rgba(18, 34, 47, 0.07);
  --shadow-md: 0 10px 30px -12px rgba(18, 34, 47, 0.28);
  --shadow-lg: 0 22px 48px -20px rgba(18, 34, 47, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.12;
  text-wrap: balance;
}

h1 { font-size: clamp(38px, 5vw, 60px); font-weight: 800; letter-spacing: -0.028em; line-height: 1.04; }
h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; }
h3 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 800; letter-spacing: -0.015em; }

p { margin: 0; }
.prose p + p { margin-top: 1.05em; }

a { color: var(--blue); text-decoration: none; transition: color 0.18s var(--ease); }
a:hover { color: var(--orange-dark); }

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

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(56px, 7vw, 96px) 0; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0;
}
.eyebrow.on-dark { color: var(--orange); }

.lede { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.6; color: var(--body); max-width: 54ch; }
.body-text { font-size: 17px; line-height: 1.68; color: var(--body); max-width: 62ch; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy); color: var(--white);
  padding: 14px 22px; font-weight: 700;
}
.skip-link:focus { left: 0; color: var(--white); }

/* ---------- Utility bar ---------- */
.utility {
  background: var(--navy);
  color: var(--on-navy);
  font-size: 14px;
}
.utility .wrap {
  display: flex; flex-wrap: wrap; gap: 6px 28px;
  align-items: center; justify-content: space-between;
  padding-top: 9px; padding-bottom: 9px;
}
.utility a { color: var(--on-navy); }
.utility a:hover { color: var(--orange); }
.utility-links { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

/* Live open/closed status */
.status { display: inline-flex; align-items: center; gap: 8px; }
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--on-navy-dim); flex-shrink: 0;
}
.status.is-open .status-dot { background: #46C17E; box-shadow: 0 0 0 0 rgba(70, 193, 126, 0.7); animation: pulse 2.4s infinite; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(70, 193, 126, 0.65); }
  70%  { box-shadow: 0 0 0 7px rgba(70, 193, 126, 0); }
  100% { box-shadow: 0 0 0 0 rgba(70, 193, 126, 0); }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-top: 12px; padding-bottom: 12px;
}

.brand { display: flex; align-items: center; gap: 13px; color: var(--navy); }
.brand:hover { color: var(--navy); }
.brand img { height: 54px; width: auto; }
.brand-fallback {
  height: 54px; width: 54px; border-radius: 50%;
  background: var(--orange); color: var(--navy);
  display: none; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 20px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: -0.01em; color: var(--navy); }
.brand-sub { font-size: 12.5px; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--ink); font-weight: 600; font-size: 16px;
  padding: 6px 0; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2.5px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--blue); }

.nav-toggle {
  display: none; background: none; border: 1.5px solid var(--line-strong);
  border-radius: var(--r); padding: 9px 11px; color: var(--navy); cursor: pointer;
}

/* ---------- Services dropdown ----------
   Click-activated, not hover: hover menus are hard to use for anyone with
   limited motor control, which is a large share of this site's visitors. */
.has-menu { position: relative; }
.menu-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 6px 0;
  font-family: var(--font-body); font-weight: 600; font-size: 16px; color: var(--ink);
  position: relative;
}
.menu-btn::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2.5px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.menu-btn:hover { color: var(--blue); }
.menu-btn:hover::after,
.menu-btn[aria-expanded="true"]::after,
.has-menu.is-current .menu-btn::after { transform: scaleX(1); }
.has-menu.is-current .menu-btn { color: var(--blue); }
.menu-caret { transition: transform 0.25s var(--ease); width: 11px; height: 11px; }
.menu-btn[aria-expanded="true"] .menu-caret { transform: rotate(180deg); }

.menu-panel {
  position: absolute; top: calc(100% + 12px); left: -14px; z-index: 60;
  min-width: 284px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-lg); padding: 8px; display: none;
}
.menu-panel.open { display: block; }
.menu-panel ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.menu-panel a {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 11px 12px; border-radius: 4px; color: var(--ink);
  transition: background 0.16s var(--ease);
}
.menu-panel a:hover, .menu-panel a:focus-visible { background: var(--blue-wash); color: var(--ink); }
.menu-panel a[aria-current="page"] { background: var(--blue-wash); }
.menu-panel svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.menu-panel .mi-title { font-weight: 700; font-size: 16px; display: block; line-height: 1.3; }
.menu-panel .mi-sub { font-size: 14px; color: var(--muted); display: block; margin-top: 2px; line-height: 1.4; }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--white); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 4px;
    padding: 12px 24px 22px; display: none;
    box-shadow: var(--shadow-md);
  }
  .nav.open { display: flex; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links > li > a { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .nav-links a::after { display: none; }
  .nav .btn { margin-top: 14px; justify-content: center; }

  /* On phones the services list is always expanded — no nested tapping. */
  .menu-btn { display: none; }
  .menu-panel {
    position: static; display: block; min-width: 0; box-shadow: none;
    border: none; border-radius: 0; padding: 0; background: transparent;
  }
  .menu-panel a { padding: 13px 0; border-bottom: 1px solid var(--line); border-radius: 0; }
  .menu-panel a:hover, .menu-panel a[aria-current="page"] { background: transparent; }
  .menu-panel .mi-sub { display: none; }
}

/* Phones: the utility bar was wrapping to 3 cramped lines (status, then
   email+Facebook, then Instagram alone) before the header even showed.
   Keep the live office-status line -- it's the one thing worth the space --
   and drop the email/social links, which are still in the footer. */
@media (max-width: 560px) {
  .utility .wrap { justify-content: center; }
  .utility-links { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800; font-size: 17px;
  padding: 15px 26px; min-height: 52px; border-radius: var(--r);
  border: 2px solid transparent; cursor: pointer; text-align: center;
  transition: transform 0.16s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease), color 0.2s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--orange); color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--orange-dark); color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline { background: transparent; color: var(--blue); border-color: var(--line-strong); font-weight: 700; }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-wash); }

.btn-ghost-dark { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-ghost-dark:hover { background: rgba(255,255,255,0.12); color: var(--white); border-color: var(--white); }

.btn-sm { font-size: 15.5px; padding: 12px 18px; min-height: 46px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Text link with orange underline */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 16.5px; color: var(--blue);
  border-bottom: 2px solid var(--orange); padding-bottom: 3px;
}
.link-arrow span.arw { transition: transform 0.22s var(--ease); display: inline-block; }
.link-arrow:hover { color: var(--rust); }
.link-arrow:hover span.arw { transform: translateX(4px); }

/* ---------- Hero ---------- */
.hero { border-bottom: 1px solid var(--line); background: var(--white); overflow: hidden; }
.hero-grid {
  max-width: var(--wrap); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  align-items: center;
}
.hero-copy { padding: clamp(40px, 6vw, 84px) 24px; }
.hero-badge {
  display: inline-block; background: var(--blue-wash); color: var(--blue);
  font-family: var(--font-display); font-weight: 700; font-size: 13.5px;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 13px; border-radius: 4px;
}
.hero h1 { margin-top: 20px; }
.hero .lede { margin-top: 20px; }
.hero-note { margin-top: 18px; font-size: 15.5px; color: var(--muted); }
.hero-media { position: relative; min-height: clamp(320px, 42vw, 560px); background: var(--mist); }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Image fallback when a photo URL is unavailable */
.img-fallback {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px; text-align: center;
  background: var(--mist); color: var(--muted); padding: 24px; font-size: 14.5px;
  border: 2px dashed var(--line-strong); border-radius: var(--r);
}
.img-fallback svg { width: 40px; height: 40px; opacity: 0.5; }

.ratio-media { position: relative; width: 100%; height: clamp(260px, 30vw, 400px); background: var(--mist); border-radius: var(--r); overflow: hidden; }
.ratio-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.ratio-media:hover img { transform: scale(1.04); }

/* ---------- Stat strip ---------- */
.stats { background: var(--mist); border-bottom: 1px solid var(--line); }
.stats .wrap {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px 40px; padding-top: 34px; padding-bottom: 34px;
}
.stat { display: flex; gap: 14px; align-items: baseline; }
.stat-num {
  font-family: var(--font-display); font-weight: 800; font-size: 36px;
  color: var(--blue); line-height: 1; font-variant-numeric: tabular-nums; white-space: nowrap;
}
.stat-txt { font-size: 16px; line-height: 1.45; color: var(--body); }
.stat-txt strong { color: var(--ink); display: block; font-weight: 700; }

/* ---------- Split rows ---------- */
.split {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px, 4vw, 56px); align-items: center;
}
.split + .split { margin-top: clamp(44px, 5vw, 76px); }

.check-list { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 11px; }
.check-list li { display: flex; gap: 11px; font-size: 16.5px; color: var(--ink); align-items: flex-start; }
.check-list svg { width: 21px; height: 21px; flex-shrink: 0; color: var(--blue); margin-top: 2px; }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 22px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px 26px 30px;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.card-num { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--rust); }
.card h3 { margin-top: 12px; font-size: 19.5px; font-weight: 700; letter-spacing: -0.01em; }
.card p { margin-top: 10px; font-size: 16.5px; line-height: 1.6; color: var(--body); }

.icon-badge {
  width: 50px; height: 50px; border-radius: var(--r);
  background: var(--blue-wash); color: var(--blue);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.icon-badge svg { width: 25px; height: 25px; }

/* ---------- Certification cards ---------- */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); gap: 20px; }
.cert-card {
  display: flex; gap: 18px; align-items: flex-start; text-decoration: none;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  padding: 20px; transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.cert-thumb {
  flex: 0 0 92px; width: 92px; height: 92px; border-radius: 6px; overflow: hidden;
  border: 1px solid var(--line-strong); display: block;
}
.cert-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cert-body { display: flex; flex-direction: column; }
.cert-org {
  font-family: var(--font-display); font-size: 12.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em; color: var(--rust);
}
.cert-body h3 { margin-top: 4px; font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.cert-name { margin-top: 3px; font-size: 14.5px; color: var(--muted); }
.cert-valid {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 10px;
  font-size: 13px; font-weight: 600; color: var(--blue-dark);
}
.cert-valid svg { color: var(--blue); flex: none; }

/* ---------- Dark band ---------- */
.band-navy { background: var(--navy); color: var(--on-navy); }
.band-navy h2, .band-navy h3 { color: var(--white); }
.band-navy p { color: var(--on-navy); }
.band-navy a:not(.btn) { color: var(--white); }
.band-navy a:not(.btn):hover { color: var(--orange); }

.band-blue { background: var(--blue); color: var(--white); }
.band-blue h2 { color: var(--white); }
.band-blue p { color: #D8E7F3; }

.tagline {
  font-family: var(--font-display); font-size: 19px; font-weight: 700;
  color: var(--white); margin-top: 4px;
}

/* ---------- Video teaser + modal ---------- */
.video-play {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 26px;
  padding: 12px 20px 12px 12px; border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px; background: rgba(255,255,255,0.06); color: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: 15.5px;
  cursor: pointer; transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.video-play:hover { background: rgba(255,255,255,0.14); transform: translateY(-1px); }
.video-play-icon {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; background: var(--orange);
  color: var(--navy); flex: none;
}
.video-play-icon svg { width: 16px; height: 16px; }

.video-modal {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center;
  justify-content: center; padding: 24px;
}
.video-modal[hidden] { display: none; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(10,18,24,0.82); }
.video-modal-panel {
  position: relative; width: 100%; max-width: 920px; background: var(--navy);
  border-radius: 14px; box-shadow: var(--shadow-md); overflow: hidden;
}
.video-modal-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; }
.video-modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-modal-close {
  position: absolute; top: 10px; right: 10px; z-index: 1; width: 38px; height: 38px;
  border-radius: 50%; border: none; background: rgba(0,0,0,0.55); color: var(--white);
  font-size: 22px; line-height: 1; cursor: pointer;
}
.video-modal-close:hover { background: rgba(0,0,0,0.75); }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(24px, 3vw, 40px); }
.quote {
  margin: 0; border-left: 3px solid var(--orange); padding: 2px 0 2px 20px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.quote:hover { border-left-color: var(--blue); transform: translateX(3px); }
.quote p { font-size: 18px; line-height: 1.6; color: var(--ink); }
.quote footer { margin-top: 12px; font-size: 15px; font-weight: 700; color: var(--muted); font-family: var(--font-display); }
.stars { display: flex; gap: 3px; margin-bottom: 10px; color: var(--orange); }
.stars svg { width: 17px; height: 17px; }

/* ---------- Accordion (FAQ) ---------- */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
  padding: 22px 4px; text-align: left;
  font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--navy);
  transition: color 0.2s var(--ease);
}
.faq-q:hover { color: var(--blue); }
.faq-icon {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--blue-wash); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease), background 0.25s var(--ease);
  font-size: 18px; line-height: 1; font-weight: 700;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); background: var(--orange); color: var(--navy); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.32s var(--ease); }
.faq-a > div { overflow: hidden; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a p { padding: 0 40px 24px 4px; font-size: 16.5px; line-height: 1.65; color: var(--body); }

/* ---------- Info panel / definition lists ---------- */
.panel { background: var(--mist); border: 1px solid var(--line); border-radius: var(--r); padding: 28px 26px; }
.panel h3 { font-size: 20px; }
.panel dl { margin: 18px 0 0; }
.panel dt {
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--navy); margin-top: 18px;
}
.panel dt:first-of-type { margin-top: 0; }
.panel dd { margin: 5px 0 0; color: var(--body); font-size: 16.5px; }

.contact-row { display: flex; align-items: center; gap: 13px; margin-bottom: 15px; }
.contact-row svg { width: 21px; height: 21px; flex-shrink: 0; color: var(--blue); }
.contact-row a, .contact-row span { font-weight: 600; font-size: 17px; color: var(--ink); }
.contact-row a:hover { color: var(--blue); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }

label {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 14px; color: var(--navy); margin-bottom: 6px;
}
.req { color: var(--rust); }

input, select, textarea {
  width: 100%; font-family: var(--font-body); font-size: 16.5px;
  padding: 13px 14px; border: 1.5px solid var(--line-strong); border-radius: var(--r);
  background: var(--white); color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(11, 95, 165, 0.14); outline: none;
}
.form-note { font-size: 15px; color: var(--muted); margin-top: 14px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: var(--on-navy-dim); }
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 36px 40px; padding-top: clamp(44px, 5vw, 66px); padding-bottom: clamp(36px, 4vw, 52px);
}
.site-footer h4 {
  font-family: var(--font-display); font-size: 13.5px; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--white); font-weight: 700; margin-bottom: 16px;
}
.site-footer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 11px; font-size: 16px; }
.site-footer a { color: var(--on-navy-dim); }
.site-footer a:hover { color: var(--orange); }
.footer-logo { display: inline-flex; background: var(--white); padding: 10px 14px; border-radius: var(--r); }
.footer-logo img { height: 58px; width: auto; }
.footer-blurb { margin-top: 16px; font-size: 16px; line-height: 1.6; max-width: 34ch; color: var(--on-navy-dim); }
.footer-bottom { border-top: 1px solid #24384A; }
.footer-bottom .wrap {
  display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between;
  padding-top: 20px; padding-bottom: 20px; font-size: 14.5px;
}

/* ---------- Sticky mobile call bar ---------- */
.call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none; gap: 1px; background: var(--navy);
  box-shadow: 0 -6px 20px -8px rgba(18, 34, 47, 0.45);
  transform: translateY(100%); transition: transform 0.32s var(--ease);
}
.call-bar.show { transform: translateY(0); }
.call-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 8px; min-height: 58px;
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
}
.call-bar .cb-call { background: var(--orange); color: var(--navy); }
.call-bar .cb-book { background: var(--navy); color: var(--white); }
.call-bar svg { width: 19px; height: 19px; }

@media (max-width: 940px) {
  .call-bar { display: flex; }
  body { padding-bottom: 58px; }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .ratio-media:hover img { transform: none; }
}
