/* ==========================================================================
   On Call Notary — Design System v2 (2026 rebuild)
   Navy + gold, mobile-first, no frameworks.
   ========================================================================== */

:root {
  --navy-950: #071729;
  --navy-900: #0A2240;
  --navy-800: #0E2E54;
  --navy-700: #15406E;
  --navy-600: #1D5290;
  --gold-300: #F6D98A;
  --gold-400: #F0C75E;
  --gold-500: #E8B64C;
  --gold-600: #D9A32E;
  --gold-700: #A87C1A;
  --ink: #16222F;
  --slate: #4A5B6E;
  --line: #E2E8F1;
  --paper: #F5F8FC;
  --white: #FFFFFF;
  --green: #1E7F4F;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --shadow-sm: 0 1px 3px rgba(7, 23, 41, .08);
  --shadow-md: 0 6px 18px rgba(7, 23, 41, .10);
  --shadow-lg: 0 18px 44px rgba(7, 23, 41, .16);
  --radius: 14px;
  --radius-sm: 9px;
  --header-h: 74px;
}

/* Base ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-700); text-decoration: none; }
a:hover { color: var(--navy-600); }
h1, h2, h3, h4 { line-height: 1.18; color: var(--navy-900); margin: 0 0 .5em; }
h1, h2 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.22rem; font-weight: 700; }
h4 { font-size: 1.02rem; font-weight: 700; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.3em; margin: 0 0 1em; }
li { margin-bottom: .35em; }
strong { color: var(--navy-900); }
.container { width: min(1180px, 100% - 2.5rem); margin-inline: auto; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--gold-500); color: var(--navy-950); padding: .6rem 1rem;
  border-radius: 0 0 var(--radius-sm) 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.7rem; border-radius: 999px; border: 2px solid transparent;
  font-weight: 700; font-size: 1.02rem; line-height: 1; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; flex: none; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold-500); color: var(--navy-950); }
.btn-gold:hover { background: var(--gold-400); color: var(--navy-950); }
.btn-navy { background: var(--navy-900); color: var(--white); }
.btn-navy:hover { background: var(--navy-800); color: var(--white); }
.btn-outline { border-color: var(--navy-900); color: var(--navy-900); background: transparent; }
.btn-outline:hover { background: var(--navy-900); color: var(--white); }
.btn-outline-light { border-color: rgba(255,255,255,.75); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: var(--white); color: var(--navy-900); }
.btn-lg { padding: 1.15rem 2.1rem; font-size: 1.12rem; }

/* Top bar ----------------------------------------------------------------- */
.topbar {
  background: var(--navy-950); color: #B9C7D9; font-size: .84rem;
  padding: .45rem 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.topbar-note { display: flex; align-items: center; gap: .45rem; }
.topbar-note .dot { width: 7px; height: 7px; border-radius: 50%; background: #3DDC84; box-shadow: 0 0 0 3px rgba(61,220,132,.22); }
.topbar a { color: var(--gold-400); font-weight: 600; }
.topbar a:hover { color: var(--gold-300); }
.topbar-links { display: flex; gap: 1.1rem; align-items: center; }
@media (max-width: 640px) { .topbar-links .hide-sm { display: none; } }

/* Header ------------------------------------------------------------------ */
.header {
  position: sticky; top: 0; z-index: 100; background: var(--white);
  border-bottom: 1px solid var(--line); transition: box-shadow .2s ease;
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; gap: 1.2rem; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: .65rem; margin-right: auto; }
.brand img { width: 46px; height: 46px; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.28rem; color: var(--navy-900); line-height: 1.05; }
.brand-tag { display: block; font-family: var(--font-body); font-size: .62rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-700); }

.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: .1rem; }
.main-nav > ul > li { position: relative; }
.main-nav a {
  display: flex; align-items: center; gap: .3rem; padding: .65rem .85rem;
  font-weight: 600; font-size: .96rem; color: var(--navy-900); border-radius: 8px;
}
.main-nav a:hover { background: var(--paper); }
.main-nav a.active { color: var(--gold-700); }
.main-nav .caret { width: 10px; height: 10px; flex: none; transition: transform .18s ease; }
.main-nav ul.dropdown {
  display: block;
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 268px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); padding: .55rem;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  max-height: min(72vh, 640px); overflow-y: auto;
}
.has-dropdown:hover > .dropdown, .has-dropdown.open > .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.has-dropdown:hover > a .caret, .has-dropdown.open > a .caret { transform: rotate(180deg); }
.dropdown li { margin: 0; }
.dropdown a { display: block; padding: .5rem .75rem; font-weight: 500; font-size: .93rem; border-radius: 7px; }
.dropdown .dd-label {
  padding: .55rem .75rem .25rem; font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-700);
}
.dropdown .dd-sep { border-top: 1px solid var(--line); margin: .4rem .3rem; }
.nav-cta { margin-left: .4rem; }
.nav-cta .btn { padding: .72rem 1.25rem; font-size: .95rem; }

.mobile-menu-toggle {
  display: none; background: none; border: 0; padding: .5rem; cursor: pointer;
}
.mobile-menu-toggle span {
  display: block; width: 26px; height: 3px; background: var(--navy-900);
  border-radius: 2px; margin: 5px 0; transition: transform .22s ease, opacity .22s ease;
}
.menu-open .mobile-menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-open .mobile-menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .mobile-menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1024px) {
  .mobile-menu-toggle { display: block; }
  .nav-cta { display: none; }
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 88vw); z-index: 150;
    background: var(--white); padding: 5.2rem 1.4rem 7rem; overflow-y: auto;
    transform: translateX(100%); transition: transform .26s ease; box-shadow: var(--shadow-lg);
  }
  .main-nav.active { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; gap: .15rem; }
  .main-nav a { padding: .8rem .6rem; font-size: 1.05rem; }
  .main-nav ul.dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; padding: 0 0 0 .9rem; display: none; min-width: 0;
    max-height: none; overflow-y: visible;
  }
  .main-nav .has-dropdown.open > ul.dropdown { display: block; }
  .mobile-menu-toggle { position: relative; z-index: 160; }
  body.menu-open { overflow: hidden; }
  /* Lift the whole header (which contains the fixed nav panel) above the overlay:
     the sticky header's stacking context otherwise traps the menu below it. */
  body.menu-open .header { z-index: 200; }
  .menu-overlay {
    position: fixed; inset: 0; background: rgba(7,23,41,.5); z-index: 140;
    opacity: 0; visibility: hidden; transition: opacity .2s ease;
  }
  body.menu-open .menu-overlay { opacity: 1; visibility: visible; }
}

/* Mobile sticky call bar --------------------------------------------------- */
.mobile-call-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 120;
  background: var(--navy-950); padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
  gap: .6rem; box-shadow: 0 -6px 18px rgba(7,23,41,.28);
}
.mobile-call-bar .btn { flex: 1; padding: .85rem 1rem; font-size: 1rem; }
@media (max-width: 767px) {
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 68px; }
}

/* Hero ---------------------------------------------------------------------- */
.hero {
  background:
    radial-gradient(1100px 520px at 85% -10%, rgba(29,82,144,.55), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(232,182,76,.14), transparent 55%),
    linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
  color: #D8E2EF; padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { color: var(--white); margin-bottom: .55rem; }
.hero h1 .gold { color: var(--gold-400); }
.hero .lede { font-size: 1.14rem; max-width: 56ch; color: #C3D0E0; }
.badge-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(232,182,76,.14); border: 1px solid rgba(232,182,76,.45);
  color: var(--gold-300); font-size: .8rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .42rem 1rem; border-radius: 999px; margin-bottom: 1.2rem;
}
.badge-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #3DDC84; box-shadow: 0 0 0 3px rgba(61,220,132,.25); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.6rem 0 1.4rem; }
.hero-note { font-size: .9rem; color: #9FB2C8; display: flex; align-items: center; gap: .45rem; }
.hero-note svg { width: 15px; height: 15px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 2.2rem; margin-top: 1.9rem; padding-top: 1.7rem; border-top: 1px solid rgba(255,255,255,.14); }
.hero-stat .num { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--gold-400); line-height: 1; }
.hero-stat .lbl { font-size: .82rem; color: #9FB2C8; margin-top: .3rem; }
.hero-photo { position: relative; }
.hero-photo img {
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.14); width: 100%; object-fit: cover;
}
.hero-photo::after {
  content: ""; position: absolute; inset: 14px -14px -14px 14px;
  border: 2px solid var(--gold-600); border-radius: var(--radius); z-index: -1; opacity: .7;
}
.hero-photo .float-card {
  position: absolute; left: -18px; bottom: 22px; background: var(--white); color: var(--ink);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); padding: .75rem 1.05rem;
  display: flex; align-items: center; gap: .65rem; font-size: .9rem; font-weight: 600;
}
.hero-photo .float-card svg { width: 30px; height: 30px; flex: none; }
@media (max-width: 900px) {
  .hero-photo { margin-top: 2.2rem; }
  .hero-photo img { max-height: 300px; object-position: 50% 18%; }
  .hero-photo::after { display: none; }
  .hero-photo .float-card { left: 12px; bottom: 14px; font-size: .84rem; padding: .6rem .85rem; }
}

/* Trust strip ---------------------------------------------------------------- */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); padding: 1.05rem 0; }
.trust-strip .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.6rem; }
.trust-item { display: flex; align-items: center; gap: .55rem; font-size: .92rem; font-weight: 600; color: var(--slate); }
.trust-item svg { width: 19px; height: 19px; color: var(--gold-600); flex: none; }

/* Sections --------------------------------------------------------------------- */
.section { padding: clamp(3rem, 6.5vw, 4.8rem) 0; }
.section-alt { background: var(--paper); }
.section-head { max-width: 760px; margin: 0 auto 2.6rem; text-align: center; }
.section-head.left { text-align: left; margin-inline: 0; }
.eyebrow {
  display: inline-block; font-size: .76rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-700); margin-bottom: .55rem;
}
.section-sub { color: var(--slate); font-size: 1.06rem; }

/* Cards -------------------------------------------------------------------------- */
.grid { display: grid; gap: 1.4rem; }
.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: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.55rem; box-shadow: var(--shadow-sm); position: relative;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #CBD6E4; }
.card .icon-disc {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--navy-900), var(--navy-700)); margin-bottom: 1.05rem;
}
.card .icon-disc svg { width: 25px; height: 25px; color: var(--gold-400); }
.card p { color: var(--slate); font-size: .96rem; }
.card .card-link {
  margin-top: auto; font-weight: 700; font-size: .93rem; color: var(--navy-700);
  display: inline-flex; align-items: center; gap: .35rem;
}
.card .card-link svg { width: 14px; height: 14px; transition: transform .15s ease; }
.card .card-link:hover svg { transform: translateX(3px); }
.card.featured { border-top: 4px solid var(--gold-500); }

/* Checklist / bullets --------------------------------------------------------- */
.check-list { list-style: none; padding: 0; }
.check-list li { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .55rem; color: var(--slate); }
.check-list li strong { color: var(--ink); }
.check-list svg { width: 19px; height: 19px; color: var(--green); flex: none; margin-top: .22rem; }

/* Split rows -------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 1.8rem; } }
.split .panel {
  background: linear-gradient(150deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius); color: #D8E2EF; padding: 2rem;
}
.split .panel h3, .split .panel h4 { color: var(--white); }

/* Steps ---------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; position: relative; counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 700;
  color: var(--gold-500); display: block; line-height: 1; margin-bottom: .7rem;
}
.step p { color: var(--slate); font-size: .95rem; margin: 0; }

/* Quick answer (AEO) ----------------------------------------------------------- */
.quick-answer {
  background: #FDF8EC; border: 1px solid #F0DFAE; border-left: 5px solid var(--gold-500);
  border-radius: var(--radius-sm); padding: 1.15rem 1.4rem; margin: 0 0 2rem;
  font-size: 1.03rem; color: var(--ink);
}
.quick-answer strong { color: var(--navy-900); }
.quick-answer p:last-child { margin-bottom: 0; }

/* Testimonials --------------------------------------------------------------------- */
.quote-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.6rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.stars { color: var(--gold-500); letter-spacing: .12em; font-size: .95rem; margin-bottom: .8rem; }
.quote-card blockquote { margin: 0 0 1.2rem; color: var(--slate); font-size: .98rem; font-style: italic; }
.quote-who { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: linear-gradient(140deg, var(--navy-800), var(--navy-600));
  color: var(--gold-400); font-weight: 700; font-size: .95rem;
  display: grid; place-items: center;
}
.quote-who .name { font-weight: 700; font-size: .94rem; color: var(--navy-900); line-height: 1.2; }
.quote-who .loc { font-size: .82rem; color: var(--slate); }
.rating-banner {
  display: inline-flex; align-items: center; gap: .6rem; background: var(--white);
  border: 1px solid var(--line); border-radius: 999px; padding: .5rem 1.2rem;
  font-weight: 700; color: var(--navy-900); box-shadow: var(--shadow-sm); font-size: .95rem;
}

/* FAQ ---------------------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  margin-bottom: .8rem; overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem;
  align-items: center; padding: 1.05rem 1.3rem; font-weight: 700; color: var(--navy-900); font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--gold-600); line-height: 1;
  transition: transform .18s ease; flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details[open] { border-color: var(--gold-500); box-shadow: var(--shadow-sm); }
.faq .faq-a { padding: 0 1.3rem 1.15rem; color: var(--slate); font-size: .97rem; }
.faq .faq-a p:last-child { margin: 0; }

/* CTA band ------------------------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(900px 400px at 15% 120%, rgba(232,182,76,.16), transparent 60%),
    linear-gradient(150deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius); color: #D8E2EF;
  padding: clamp(2.2rem, 5vw, 3.4rem); text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band .phone-big {
  font-family: var(--font-display); font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  font-weight: 700; color: var(--gold-400); display: inline-block; margin: .3rem 0 1.2rem;
}
.cta-band .phone-big:hover { color: var(--gold-300); }
.cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* Breadcrumbs ------------------------------------------------------------------------ */
.breadcrumbs { background: var(--paper); border-bottom: 1px solid var(--line); padding: .7rem 0; font-size: .85rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .35rem; margin: 0; padding: 0; color: var(--slate); }
.breadcrumbs li + li::before { content: "›"; margin-right: .35rem; color: #A5B3C4; }
.breadcrumbs a { color: var(--slate); }
.breadcrumbs a:hover { color: var(--navy-700); }
.breadcrumbs [aria-current] { color: var(--navy-900); font-weight: 600; }

/* Page hero (interior pages) ----------------------------------------------------------- */
.page-hero {
  background: linear-gradient(155deg, var(--navy-950) 0%, var(--navy-900) 60%, var(--navy-800) 100%);
  color: #C3D0E0; padding: clamp(2.6rem, 5.5vw, 4rem) 0;
}
.page-hero h1 { color: var(--white); max-width: 22ch; }
.page-hero .lede { font-size: 1.1rem; max-width: 62ch; color: #C3D0E0; }
.page-hero .hero-ctas { margin: 1.4rem 0 0; }

/* Info tables / detail rows -------------------------------------------------------------- */
.info-table { width: 100%; border-collapse: collapse; font-size: .96rem; }
.info-table th, .info-table td { text-align: left; padding: .75rem .9rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.info-table th { color: var(--navy-900); white-space: nowrap; width: 34%; }
.info-table td { color: var(--slate); }

/* Chips ------------------------------------------------------------------------------ */
.chip-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip {
  display: inline-block; background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: .45rem 1.05rem; font-size: .9rem; font-weight: 600; color: var(--navy-800);
  transition: border-color .15s ease, background .15s ease;
}
.chip:hover { border-color: var(--gold-500); background: #FDF8EC; }

/* Footer --------------------------------------------------------------------------------- */
.footer { background: var(--navy-950); color: #9FB2C8; font-size: .93rem; margin-top: 3rem; }
.footer a { color: #C3D0E0; }
.footer a:hover { color: var(--gold-400); }
.footer-main { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.4rem; padding: 3.2rem 0 2.4rem; }
@media (max-width: 980px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-main { grid-template-columns: 1fr; } }
.footer h4 { color: var(--white); font-size: .82rem; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: .5rem; }
.footer .f-brand { display: flex; align-items: center; gap: .6rem; margin-bottom: .9rem; }
.footer .f-brand img { width: 40px; height: 40px; }
.footer .f-brand span { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--white); }
.footer .f-contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer .f-contact svg { width: 16px; height: 16px; color: var(--gold-500); flex: none; margin-top: .3rem; }
.social-row { display: flex; gap: .7rem; margin-top: 1.1rem; }
.social-row a {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
}
.social-row a:hover { background: rgba(232,182,76,.18); border-color: var(--gold-600); }
.social-row svg { width: 17px; height: 17px; color: #C3D0E0; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,.1); padding: 1.3rem 0 1.5rem; font-size: .8rem; color: #7A8DA3;
}
.footer-legal .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem; }
.footer-disclaimer { font-size: .78rem; color: #64778E; padding-bottom: 1.4rem; max-width: 74ch; }

/* Misc ------------------------------------------------------------------------------------ */
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 2rem; } .mt-4 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.gold-underline { box-shadow: inset 0 -0.42em 0 rgba(232,182,76,.38); }
::selection { background: var(--gold-400); color: var(--navy-950); }

/* ==========================================================================
   Motion & conversion enhancements (v2.1)
   ========================================================================== */

/* Hero entrance */
@keyframes rise-in {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
@keyframes photo-in {
  from { opacity: 0; transform: translateY(18px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
.hero .badge-pill  { animation: rise-in .55s ease-out both; }
.hero h1           { animation: rise-in .6s .08s ease-out both; }
.hero .lede        { animation: rise-in .6s .16s ease-out both; }
.hero .hero-ctas   { animation: rise-in .6s .24s ease-out both; }
.hero .hero-note   { animation: rise-in .6s .32s ease-out both; }
.hero .hero-stats  { animation: rise-in .6s .4s ease-out both; }
.hero-photo        { animation: photo-in .7s .2s ease-out both; }
.page-hero .eyebrow   { animation: rise-in .5s ease-out both; }
.page-hero h1         { animation: rise-in .55s .07s ease-out both; }
.page-hero .lede      { animation: rise-in .55s .14s ease-out both; }
.page-hero .hero-ctas { animation: rise-in .55s .21s ease-out both; }

/* Scroll reveal (elements tagged by site.js) */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Live pulse on availability dots */
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(61,220,132,.45); }
  70%  { box-shadow: 0 0 0 7px rgba(61,220,132,0); }
  100% { box-shadow: 0 0 0 0 rgba(61,220,132,0); }
}
.badge-pill .dot, .topbar-note .dot { animation: pulse-dot 2.2s ease-out infinite; }

/* Attention wiggle on the sticky call button's phone icon */
@keyframes ring-wiggle {
  0%, 86%, 100% { transform: rotate(0); }
  88% { transform: rotate(-13deg); } 90% { transform: rotate(11deg); }
  92% { transform: rotate(-9deg); }  94% { transform: rotate(7deg); }
  96% { transform: rotate(-4deg); }  98% { transform: rotate(2deg); }
}
.mobile-call-bar .btn-gold svg, .nav-cta .btn-gold svg { animation: ring-wiggle 4.5s ease-in-out infinite; transform-origin: 50% 50%; }

/* Card micro-interactions */
.card .icon-disc { transition: transform .22s ease; }
.card:hover .icon-disc { transform: scale(1.08) rotate(-4deg); }

/* Photo band (full-width conversion banner) */
.photo-band { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.photo-band img { width: 100%; height: clamp(260px, 38vw, 380px); object-fit: cover; display: block; }
.photo-band .band-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  padding: clamp(1.4rem, 4vw, 3rem);
  background: linear-gradient(90deg, rgba(7,23,41,.88) 0%, rgba(7,23,41,.55) 45%, rgba(7,23,41,.08) 100%);
  color: var(--white);
}
.photo-band h2 { color: var(--white); max-width: 18ch; margin-bottom: .4rem; }
.photo-band p { color: #C3D0E0; max-width: 42ch; margin-bottom: 1.1rem; }
.photo-band .hero-ctas { margin: 0; }
@media (max-width: 640px) {
  .photo-band .band-overlay { background: linear-gradient(90deg, rgba(7,23,41,.92) 0%, rgba(7,23,41,.72) 70%, rgba(7,23,41,.45) 100%); }
  .photo-band img { height: 340px; }
}

/* Legal-connect note */
.legal-connect {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: linear-gradient(150deg, #F2F6FB, #E9F0F8);
  border: 1px solid #D5E0EE; border-left: 5px solid var(--navy-700);
  border-radius: var(--radius-sm); padding: 1.3rem 1.5rem; margin: 2.2rem 0 0;
}
.legal-connect svg { width: 34px; height: 34px; flex: none; color: var(--navy-700); margin-top: .15rem; }
.legal-connect p { margin: 0; color: var(--ink); font-size: .98rem; }
.legal-connect strong { color: var(--navy-900); }

/* Vertical process timeline */
.timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 21px; top: 10px; bottom: 10px; width: 2px;
  background: linear-gradient(180deg, var(--gold-500), var(--line));
}
.timeline li { position: relative; padding: 0 0 2rem 64px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline .tl-num {
  position: absolute; left: 0; top: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--gold-500);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--navy-900);
  box-shadow: var(--shadow-sm); z-index: 1;
}
.timeline h3, .timeline h4 { margin-bottom: .35rem; }
.timeline p, .timeline ul { color: var(--slate); font-size: .97rem; }
.timeline .tl-tag {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold-700); background: #FDF8EC;
  border: 1px solid #F0DFAE; border-radius: 999px; padding: .18rem .7rem; margin-bottom: .4rem;
}

/* Checklist card (what to have ready) */
.ready-card {
  background: linear-gradient(150deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius); color: #D8E2EF; padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.ready-card h3 { color: var(--white); }
.ready-card .check-list li { color: #C3D0E0; }
.ready-card .check-list li strong { color: var(--white); }
.ready-card .check-list svg { color: var(--gold-400); }
.ready-card .note { font-size: .85rem; color: #9FB2C8; border-top: 1px solid rgba(255,255,255,.14); padding-top: 1rem; margin-top: 1.2rem; }

/* Package cards */
.pkg-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(120deg, var(--gold-600), var(--gold-400));
  color: var(--navy-950); font-size: .72rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; padding: .32rem 1.1rem; border-radius: 999px; white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.pkg-price { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--navy-900); line-height: 1.1; }
.pkg-price small { display: block; font-family: var(--font-body); font-size: .84rem; font-weight: 500; color: var(--slate); margin-top: .25rem; }
.card .btn { width: 100%; margin-top: 1.1rem; }

/* Inset content photos */
.photo-inset {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
  border: 1px solid var(--line); margin: 0 0 2.2rem; display: block;
}
.photo-inset img { width: 100%; display: block; object-fit: cover; max-height: 460px; }
a.photo-inset { transition: transform .18s ease, box-shadow .18s ease; }
a.photo-inset:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* Payment chips */
.pay-row { display: flex; flex-wrap: wrap; gap: .55rem; align-items: center; justify-content: center; }
.pay-row .pay-label { font-size: .85rem; font-weight: 700; color: var(--slate); letter-spacing: .06em; text-transform: uppercase; margin-right: .3rem; }
.pay-chip {
  display: inline-block; padding: .38rem .95rem; border-radius: 8px; font-size: .86rem; font-weight: 700;
  background: var(--white); border: 1px solid var(--line); color: var(--navy-800); box-shadow: var(--shadow-sm);
}

/* Accessible focus rings */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--gold-500); outline-offset: 2px; border-radius: 6px;
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero .badge-pill, .hero h1, .hero .lede, .hero .hero-ctas, .hero .hero-note, .hero .hero-stats,
  .hero-photo, .page-hero .eyebrow, .page-hero h1, .page-hero .lede, .page-hero .hero-ctas { animation: none; }
  .badge-pill .dot, .topbar-note .dot, .mobile-call-bar .btn-gold svg, .nav-cta .btn-gold svg { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .card, .btn, .card .icon-disc { transition: none; }
}
