/* ============================================================
   Ironcrest Property Services — Stylesheet
   Brand colors sampled directly from the provided logo file.
   ============================================================ */

:root {
  /* Brand palette */
  --navy-900: #061422;
  --navy-800: #0A2540;
  --navy-700: #123B5E;
  --navy-600: #1C4E77;
  --teal-500: #0092C8;
  --teal-400: #22ABDE;
  --teal-300: #6BC7EC;
  --teal-100: #E4F5FC;
  --white: #FFFFFF;

  /* Neutrals */
  --bg: #F6F9FB;
  --bg-alt: #EDF3F7;
  --ink: #101C29;
  --ink-muted: #4E5F70;
  --ink-faint: #7A8896;
  --border: #DEE7EE;
  --border-dark: rgba(255, 255, 255, 0.16);

  /* Feedback */
  --success: #1E8E5A;
  --success-bg: #E7F6EE;
  --danger: #C2452D;
  --danger-bg: #FBEAE6;

  /* Type */
  --font-head: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.06), 0 1px 1px rgba(10, 37, 64, 0.04);
  --shadow-md: 0 8px 24px rgba(10, 37, 64, 0.10);
  --shadow-lg: 0 20px 48px rgba(6, 20, 34, 0.18);
  --header-h: 76px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-800);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--ink-muted); }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

section { padding-block: clamp(56px, 8vw, 104px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--teal-500);
  border-radius: 2px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.section-head p { font-size: 17px; margin-bottom: 0; }

/* Focus visibility (accessibility) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--teal-400);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15.5px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
  white-space: nowrap;
  min-height: 48px;
}
.btn svg { flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--teal-400);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--teal-300); box-shadow: var(--shadow-md); }

.btn-outline-light {
  background: transparent;
  border-color: var(--border-dark);
  color: var(--white);
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

.btn-outline-navy {
  background: transparent;
  border-color: var(--navy-800);
  color: var(--navy-800);
}
.btn-outline-navy:hover { background: var(--navy-800); color: var(--white); }

.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 16.5px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img { height: 42px; width: auto; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  color: var(--navy-800);
  letter-spacing: 0.01em;
  display: none;
}

.nav-desktop {
  display: none;
}
.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-desktop a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy-700);
  padding: 8px 2px;
  position: relative;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--teal-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms var(--ease);
}
.nav-desktop a:hover::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy-800);
}

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  right: 0;
  bottom: 0;
  left: 0;
  height: calc(100vh - var(--header-h));
  height: calc(100dvh - var(--header-h));
  background: var(--white);
  z-index: 99;
  padding: 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease), visibility 220ms;
}
.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  padding: 16px 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  color: var(--navy-800);
  border-bottom: 1px solid var(--border);
}
.mobile-nav .btn { margin-top: 24px; }

@media (min-width: 900px) {
  .nav-desktop { display: block; }
  .nav-toggle { display: none; }
  .brand-name { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 140% at 85% -10%, var(--navy-700) 0%, var(--navy-800) 45%, var(--navy-900) 100%);
  color: var(--white);
  overflow: hidden;
  padding-block: clamp(72px, 12vw, 140px) clamp(80px, 10vw, 120px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  opacity: 0.5;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,171,222,0.35) 0%, rgba(34,171,222,0) 70%);
  top: -220px;
  right: -160px;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.hero-copy { max-width: 620px; }
.hero .eyebrow { color: var(--teal-300); }
.hero .eyebrow::before { background: var(--teal-300); }
.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 5.4vw, 58px);
  margin-bottom: 18px;
}
.hero h1 span { color: var(--teal-300); }
.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(255,255,255,0.86);
  max-width: 540px;
  margin-bottom: 30px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
}
.hero-trust svg { color: var(--teal-300); flex-shrink: 0; }

.hero-art {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 460px;
}
.hero-art svg { width: 100%; height: auto; }

@media (min-width: 980px) {
  .hero .container { grid-template-columns: 1.15fr 0.85fr; }
  .hero-copy { max-width: none; }
}

/* ---------- Services ---------- */
.audience-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-bottom: 56px;
}
.audience-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.audience-card .icon-badge { margin-bottom: 18px; }
.audience-card h3 { font-size: 21px; margin-bottom: 10px; }
.audience-card p { font-size: 15.5px; margin-bottom: 18px; }
.audience-card .card-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--teal-500);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.audience-card .card-link svg { transition: transform 180ms var(--ease); }
.audience-card .card-link:hover svg { transform: translateX(3px); }
.audience-card.featured {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-700));
  border-color: var(--navy-800);
  color: var(--white);
}
.audience-card.featured h3, .audience-card.featured p { color: var(--white); }
.audience-card.featured p { opacity: 0.85; }
.audience-card.featured .card-link { color: var(--teal-300); }

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-100);
  color: var(--teal-500);
}
.audience-card.featured .icon-badge {
  background: rgba(255,255,255,0.12);
  color: var(--teal-300);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.service-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.service-chip .icon-badge { width: 42px; height: 42px; border-radius: 11px; flex-shrink: 0; }
.service-chip span { font-family: var(--font-head); font-weight: 700; font-size: 14.5px; color: var(--navy-800); }

@media (min-width: 720px) {
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(5, 1fr); }
  .service-chip { flex-direction: column; text-align: center; gap: 10px; padding: 24px 14px; }
}

/* ---------- Why Choose ---------- */
.why-section { background: var(--bg); }
.why-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
.why-item { display: flex; gap: 16px; }
.why-item .icon-badge { flex-shrink: 0; background: var(--white); box-shadow: var(--shadow-sm); }
.why-item h3 { font-size: 17.5px; margin-bottom: 6px; }
.why-item p { font-size: 15px; margin-bottom: 0; }

@media (min-width: 640px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Service Area ---------- */
.area-wrap {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: center;
}
.area-card {
  background: var(--navy-800);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.area-card::after {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,171,222,0.3), transparent 70%);
  right: -120px; bottom: -140px;
}
.area-card-inner { position: relative; z-index: 1; }
.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  margin-bottom: 18px;
}
.area-pill svg { color: var(--teal-300); }
.area-card h3 { color: var(--white); font-size: 26px; }
.area-card p { color: rgba(255,255,255,0.82); font-size: 16px; }
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.area-list li {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
}
.area-note {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 13.5px;
  color: rgba(255,255,255,0.68);
}

.area-graphic { display: flex; flex-direction: column; align-items: center; }
.area-graphic svg { width: 100%; max-width: 360px; height: auto; }
.area-stat {
  text-align: center;
  margin-bottom: 18px;
}
.area-stat-eyebrow {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 4px;
}
.area-stat-title {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 28px);
  color: var(--navy-800);
}
.area-legend {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 12.5px;
  color: var(--ink-faint);
  text-align: center;
  max-width: 340px;
}

@media (min-width: 900px) {
  .area-wrap { grid-template-columns: 1.1fr 0.9fr; }
}

/* ---------- Quote Form ---------- */
.quote-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
}
.quote-wrap {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.quote-side {
  background: linear-gradient(165deg, var(--navy-800), var(--navy-900));
  color: var(--white);
  padding: 40px;
}
.quote-side h2 { color: var(--white); font-size: clamp(24px, 3vw, 30px); }
.quote-side p { color: rgba(255,255,255,0.82); }
.quote-side-list { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.quote-side-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: rgba(255,255,255,0.9); }
.quote-side-list svg { color: var(--teal-300); flex-shrink: 0; margin-top: 2px; }
.quote-side-contact { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.14); font-size: 14px; }
.quote-side-contact a { color: var(--teal-300); font-weight: 700; }

.quote-form { padding: 40px; }
.form-row { display: grid; gap: 18px; margin-bottom: 18px; grid-template-columns: 1fr; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--navy-800);
  margin-bottom: 7px;
}
.form-group .req { color: var(--teal-500); }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  font-size: 15.5px;
  min-height: 48px;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 4px var(--teal-100);
  outline: none;
}
.form-hint { font-size: 12.5px; color: var(--ink-faint); margin-top: 6px; margin-bottom: 0; }

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  min-height: 48px;
}
.checkbox-item:has(input:checked) {
  border-color: var(--teal-500);
  background: var(--teal-100);
}
.checkbox-item input { width: 18px; height: 18px; accent-color: var(--teal-500); flex-shrink: 0; }
.checkbox-item span { font-size: 14.5px; font-weight: 600; color: var(--navy-800); }

.form-footer { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 600;
}
.form-status.show { display: block; }
.form-status.success { background: var(--success-bg); color: var(--success); }
.form-status.error { background: var(--danger-bg); color: var(--danger); }
.privacy-note { font-size: 12.5px; color: var(--ink-faint); text-align: center; margin: 0; }

@media (min-width: 620px) {
  .form-row.two-col { grid-template-columns: 1fr 1fr; }
  .checkbox-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 980px) {
  .quote-wrap { grid-template-columns: 0.85fr 1.15fr; }
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy-800);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { flex-shrink: 0; transition: transform 220ms var(--ease); color: var(--teal-500); }
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-answer { padding: 0 22px 22px; font-size: 15px; color: var(--ink-muted); }
.faq-item[open] summary { border-bottom: 1px solid var(--border); }

/* ---------- Contact ---------- */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-card h3 { font-size: 17px; margin-bottom: 6px; }
.contact-card p { font-size: 14.5px; margin-bottom: 8px; }
.contact-card a.contact-value {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy-800);
  font-size: 15.5px;
}
.contact-card a.contact-value:hover { color: var(--teal-500); }
.badge-soon {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--teal-500);
  background: var(--teal-100);
  padding: 3px 9px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
}

@media (min-width: 720px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- CTA Band ---------- */
.cta-band {
  background: radial-gradient(120% 200% at 50% 0%, var(--navy-700), var(--navy-900));
  color: var(--white);
  text-align: center;
}
.cta-band h2 { color: var(--white); font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 560px; margin-inline: auto 20px; margin-bottom: 28px; font-size: 17px; }
.cta-band-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding-block: 56px 28px;
}
.footer-top {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 44px; width: auto; margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; max-width: 320px; }
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col span { font-size: 14.5px; color: rgba(255,255,255,0.68); }
.footer-col a:hover { color: var(--teal-300); }
.footer-bottom {
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

@media (min-width: 720px) {
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(6,20,34,0.12);
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}
.mobile-cta-bar .btn { width: 100%; }

@media (min-width: 900px) {
  .mobile-cta-bar { display: none; }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--navy-800);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 160ms var(--ease);
  font-weight: 700;
}
.skip-link:focus { top: 12px; }
