/* ==========================================================================
   MYBL LOGISTICS LLC — Site stylesheet
   Translation · Mobile Notary · Loan Signing — North Jersey
   ========================================================================== */

:root {
  --navy-900: #0a1c30;
  --navy-800: #0f2a44;
  --navy-700: #163a5c;
  --navy-600: #1e4c77;
  --gold-500: #c08a2e;
  --gold-400: #d8a53f;
  --gold-300: #e7c479;
  --gold-50: #fbf4e6;
  --ink: #16212e;
  --slate: #4a5a6b;
  --slate-light: #7a8899;
  --line: #e2e6ec;
  --paper: #ffffff;
  --shell: #f6f7f9;
  --cream: #faf7f1;

  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(15, 42, 68, .06), 0 2px 6px rgba(15, 42, 68, .05);
  --shadow-md: 0 4px 14px rgba(15, 42, 68, .08), 0 12px 32px rgba(15, 42, 68, .07);
  --shadow-lg: 0 18px 50px rgba(15, 42, 68, .16);
  --container: 1180px;
  --header-h: 84px;
}

/* --------------------------------------------------------- reset / base -- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--navy-600); text-decoration: none; }
a:hover { color: var(--gold-500); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy-900);
  line-height: 1.18;
  margin: 0 0 .6em;
  font-weight: 600;
  letter-spacing: -.012em;
}
h1 { font-size: clamp(2.15rem, 4.6vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.18rem, 1.8vw, 1.42rem); }
h4 { font-size: 1.06rem; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .45em; }

strong { color: var(--navy-800); font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy-900); color: #fff; padding: .85rem 1.3rem;
  border-radius: 0 0 var(--radius-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

/* ------------------------------------------------------------- layout ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 820px; }

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--shell { background: var(--shell); }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy-900); color: #c4d2e0; }
.section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: 2.75rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.07rem; color: var(--slate); margin-bottom: 0; }
.section--navy .section-head p { color: #a9bccf; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: .85rem;
}
.section--navy .eyebrow { color: var(--gold-300); }

.lead { font-size: 1.16rem; line-height: 1.6; color: var(--slate); }

.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--split { grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.grid--sidebar { grid-template-columns: 1fr 340px; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }

/* ------------------------------------------------------------ buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--sans);
  font-size: .96rem;
  font-weight: 600;
  letter-spacing: .005em;
  padding: .82rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, color .16s ease, border-color .16s ease;
  text-align: center;
  line-height: 1.25;
}
.btn svg { width: 17px; height: 17px; flex: none; }

.btn--primary {
  background: var(--gold-500);
  color: #fff;
  box-shadow: 0 2px 10px rgba(192, 138, 46, .3);
}
.btn--primary:hover { background: var(--gold-400); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(192, 138, 46, .34); }

.btn--navy { background: var(--navy-800); color: #fff; }
.btn--navy:hover { background: var(--navy-700); color: #fff; transform: translateY(-1px); }

.btn--outline { background: transparent; color: var(--navy-800); border-color: #c3ccd7; }
.btn--outline:hover { border-color: var(--navy-800); color: var(--navy-800); background: rgba(15, 42, 68, .04); }

.btn--ghost-light { background: rgba(255, 255, 255, .08); color: #fff; border-color: rgba(255, 255, 255, .32); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, .16); color: #fff; }

.btn--lg { padding: 1rem 2rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }
.btn-row--center { justify-content: center; }

/* ------------------------------------------------------------- header ---- */
.topbar {
  background: var(--navy-900);
  color: #a9bccf;
  font-size: .84rem;
  letter-spacing: .01em;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 40px;
  padding-top: .35rem;
  padding-bottom: .35rem;
}
.topbar__list { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.topbar__list li { margin: 0; display: flex; align-items: center; gap: .45rem; }
.topbar__list svg { width: 14px; height: 14px; color: var(--gold-400); flex: none; }
.topbar a { color: #d7e3ee; font-weight: 500; }
.topbar a:hover { color: var(--gold-300); }
.topbar__lang { display: flex; align-items: center; gap: .45rem; white-space: nowrap; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: .8rem; flex: none; }
.brand__mark { width: 44px; height: 44px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.12; }
.brand__name {
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: -.01em;
}
.brand__tag {
  font-size: .655rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gold-500);
  font-weight: 700;
  margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: .3rem; }
.nav__list { display: flex; align-items: center; gap: .15rem; list-style: none; margin: 0; padding: 0; }
.nav__list li { margin: 0; position: relative; }
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .6rem .82rem;
  font-size: .93rem;
  font-weight: 500;
  color: var(--navy-800);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.nav__link:hover { background: var(--shell); color: var(--navy-900); }
.nav__link.is-active { color: var(--gold-500); font-weight: 600; }
.nav__link svg { width: 11px; height: 11px; opacity: .55; transition: transform .18s ease; }
.nav__item--has-menu:hover .nav__link svg { transform: rotate(180deg); }

.nav__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 290px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: .5rem;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.nav__item--has-menu:hover .nav__menu,
.nav__item--has-menu:focus-within .nav__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__menu li { margin: 0; }
.nav__menu a {
  display: block;
  padding: .62rem .8rem;
  border-radius: var(--radius-sm);
  color: var(--navy-800);
  font-size: .92rem;
  font-weight: 500;
}
.nav__menu a:hover { background: var(--shell); color: var(--navy-900); }
.nav__menu small { display: block; font-size: .78rem; color: var(--slate-light); font-weight: 400; margin-top: 1px; }

.nav__cta { margin-left: .6rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex: none;
}
.nav-toggle span {
  display: block; width: 19px; height: 2px; background: var(--navy-800);
  position: relative; border-radius: 2px; transition: background .15s;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 19px; height: 2px;
  background: var(--navy-800); border-radius: 2px; transition: transform .2s ease, top .2s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* --------------------------------------------------------------- hero ---- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 82% 12%, rgba(216, 165, 63, .17), transparent 62%),
    linear-gradient(158deg, var(--navy-900) 0%, var(--navy-800) 52%, var(--navy-700) 100%);
  color: #c9d7e4;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 30% 42%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 30% 42%, #000 0%, transparent 72%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }
.hero h1 { color: #fff; margin-bottom: .55em; }
.hero h1 em { font-style: normal; color: var(--gold-300); }
.hero__inner { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__copy { max-width: 620px; }
.hero__sub { font-size: 1.14rem; line-height: 1.6; color: #b7c8d8; margin-bottom: 1.9rem; }

.hero__badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.6rem; }
.pill {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #dbe6f0;
  font-size: .8rem; font-weight: 500;
  padding: .36rem .82rem; border-radius: 999px;
}
.pill svg { width: 13px; height: 13px; color: var(--gold-300); flex: none; }

.hero__trust {
  display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem;
  margin-top: 2.4rem; padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, .13);
}
.hero__trust div strong {
  display: block; font-family: var(--serif); font-size: 1.62rem; color: #fff; font-weight: 600; line-height: 1.1;
}
.hero__trust div span { font-size: .84rem; color: #97aec4; }

.hero-card {
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
}
.hero-card h2 { font-size: 1.32rem; color: #fff; margin-bottom: .35em; }
.hero-card p { font-size: .93rem; color: #a9bccf; }
.hero-card__list { list-style: none; padding: 0; margin: 1.3rem 0 1.6rem; }
.hero-card__list li {
  display: flex; gap: .7rem; align-items: flex-start;
  font-size: .93rem; color: #cfdcea; padding: .55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08); margin: 0;
}
.hero-card__list li:last-child { border-bottom: 0; }
.hero-card__list svg { width: 17px; height: 17px; color: var(--gold-300); flex: none; margin-top: 2px; }

/* ------------------------------------------------------------ page hero -- */
.page-hero {
  background:
    radial-gradient(760px 380px at 88% 0%, rgba(216, 165, 63, .16), transparent 60%),
    linear-gradient(150deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: #b7c8d8;
  padding: clamp(2.75rem, 6vw, 4.5rem) 0 clamp(2.75rem, 5vw, 3.75rem);
}
.page-hero h1 { color: #fff; margin-bottom: .4em; }
.page-hero p { font-size: 1.1rem; color: #b7c8d8; max-width: 660px; margin-bottom: 0; }
.page-hero .btn-row { margin-top: 2rem; }

.crumbs { font-size: .82rem; color: #8fa6bd; margin-bottom: 1.1rem; }
.crumbs a { color: #b7c8d8; }
.crumbs a:hover { color: var(--gold-300); }
.crumbs span { opacity: .5; margin: 0 .45rem; }

/* -------------------------------------------------------------- cards ---- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.85rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%;
}
.card--link:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #cfd8e3; }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .96rem; margin-bottom: 0; }
.card__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--gold-50), #f3e4c4);
  color: var(--gold-500);
  margin-bottom: 1.15rem;
}
.card__icon svg { width: 25px; height: 25px; }
.card__more {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1.15rem; font-size: .9rem; font-weight: 600; color: var(--navy-600);
}
.card__more svg { width: 14px; height: 14px; transition: transform .18s ease; }
.card--link:hover .card__more svg { transform: translateX(3px); }
.card__list { list-style: none; padding: 0; margin: 1.1rem 0 0; }
.card__list li {
  position: relative; padding-left: 1.5rem; font-size: .93rem; margin-bottom: .5rem;
}
.card__list li::before {
  content: ""; position: absolute; left: 0; top: .58em;
  width: 7px; height: 7px; border-radius: 2px; background: var(--gold-400);
}

.card--feature { background: var(--navy-900); border-color: var(--navy-800); color: #b7c8d8; }
.card--feature h3 { color: #fff; }
.card--feature .card__icon { background: rgba(216, 165, 63, .16); color: var(--gold-300); }

/* -------------------------------------------------------------- steps ---- */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; gap: 1.4rem; }
.steps--4 { grid-template-columns: repeat(4, 1fr); }
.steps--3 { grid-template-columns: repeat(3, 1fr); }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 1.7rem 1.5rem 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 0;
  box-shadow: var(--shadow-sm);
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-500);
  display: block;
  margin-bottom: .7rem;
  letter-spacing: .04em;
}
.steps h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.steps p { font-size: .93rem; margin: 0; }

/* -------------------------------------------------------------- stats ---- */
.stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.stat-strip > div { background: #fff; padding: 1.7rem 1.4rem; text-align: center; }
.stat-strip strong {
  display: block; font-family: var(--serif); font-size: 2rem; color: var(--navy-900);
  font-weight: 600; line-height: 1.05; margin-bottom: .3rem;
}
.stat-strip span { font-size: .86rem; color: var(--slate-light); }

/* ------------------------------------------------------------- checks ---- */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: .6rem 0; margin: 0; font-size: .98rem;
}
.checklist svg { width: 19px; height: 19px; color: var(--gold-500); flex: none; margin-top: 3px; }
.section--navy .checklist svg { color: var(--gold-300); }

.two-col-list { columns: 2; column-gap: 2.5rem; }
.two-col-list li { break-inside: avoid; }

/* ---------------------------------------------------------- quote/test --- */
.quote {
  background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--gold-400);
  border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); height: 100%;
}
.quote p { font-family: var(--serif); font-size: 1.04rem; color: var(--navy-800); line-height: 1.55; }
.quote footer { font-size: .85rem; color: var(--slate-light); margin-top: 1rem; }
.quote footer strong { display: block; color: var(--navy-800); font-size: .92rem; font-weight: 600; }
.stars { display: flex; gap: 2px; margin-bottom: .9rem; }
.stars svg { width: 15px; height: 15px; color: var(--gold-400); }

/* ---------------------------------------------------------------- faq ---- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
  padding: 1.25rem 0; cursor: pointer; list-style: none;
  font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--navy-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 20px; height: 20px; margin-top: 4px;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c08a2e' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  transition: transform .22s ease;
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq details > div { padding: 0 0 1.4rem; max-width: 780px; }
.faq details > div p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------- form ---- */
.form-wrap {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.6rem, 3.5vw, 2.5rem); box-shadow: var(--shadow-md);
}
.field { margin-bottom: 1.15rem; }
.field label {
  display: block; font-size: .88rem; font-weight: 600; color: var(--navy-800); margin-bottom: .42rem;
}
.field label .req { color: #c0392b; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: .97rem; color: var(--ink);
  padding: .78rem .95rem; border: 1.5px solid #d6dde6; border-radius: var(--radius-sm);
  background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy-600); box-shadow: 0 0 0 3px rgba(30, 76, 119, .12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.field-hint { font-size: .82rem; color: var(--slate-light); margin-top: .4rem; }
.form-note { font-size: .84rem; color: var(--slate-light); margin-top: 1.1rem; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* --------------------------------------------------------- contact info -- */
.info-card {
  background: var(--navy-900); color: #b7c8d8; border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow-md);
}
.info-card h3 { color: #fff; font-size: 1.2rem; }
.info-list { list-style: none; padding: 0; margin: 1.3rem 0 0; }
.info-list li { display: flex; gap: .9rem; align-items: flex-start; padding: .8rem 0; margin: 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.info-list li:last-child { border-bottom: 0; }
.info-list svg { width: 19px; height: 19px; color: var(--gold-300); flex: none; margin-top: 3px; }
.info-list strong { display: block; color: #fff; font-size: .9rem; font-weight: 600; margin-bottom: 1px; }
.info-list span, .info-list a { font-size: .93rem; color: #b7c8d8; }
.info-list a:hover { color: var(--gold-300); }

/* ---------------------------------------------------------- area/towns --- */
.town-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: .55rem;
  list-style: none; padding: 0; margin: 0;
}
.town-grid li {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .62rem .9rem; font-size: .9rem; color: var(--navy-800); margin: 0;
  display: flex; align-items: center; gap: .5rem;
}
.town-grid li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-400); flex: none;
}
.county-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm); height: 100%;
}
.county-card h3 { font-size: 1.14rem; display: flex; align-items: center; gap: .55rem; margin-bottom: .7rem; }
.county-card h3 svg { width: 19px; height: 19px; color: var(--gold-500); flex: none; }
.county-card p { font-size: .92rem; color: var(--slate); margin-bottom: 0; }

/* ----------------------------------------------------------- cta band ---- */
.cta-band {
  background:
    radial-gradient(700px 320px at 85% 20%, rgba(216, 165, 63, .18), transparent 62%),
    linear-gradient(140deg, var(--navy-900), var(--navy-700));
  color: #c4d2e0;
  border-radius: 20px;
  padding: clamp(2.2rem, 5vw, 3.4rem);
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: .45em; }
.cta-band p { max-width: 620px; margin: 0 auto 1.9rem; color: #b7c8d8; font-size: 1.06rem; }

/* ------------------------------------------------------------- prices ---- */
.price-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.price-table th, .price-table td { text-align: left; padding: .95rem 1rem; border-bottom: 1px solid var(--line); }
.price-table th { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--slate-light); font-weight: 700; }
.price-table td:first-child { color: var(--navy-800); font-weight: 500; }
.price-table td:last-child { text-align: right; white-space: nowrap; color: var(--navy-800); font-weight: 600; }
.table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: .5rem 1rem; box-shadow: var(--shadow-sm); }

/* -------------------------------------------------------------- prose ---- */
.prose h2 { margin-top: 2.6rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.9rem; }
.prose ul li, .prose ol li { font-size: 1rem; }

.callout {
  background: var(--gold-50);
  border: 1px solid #efdfbe;
  border-left: 3px solid var(--gold-400);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.4rem;
  font-size: .95rem;
  margin: 1.8rem 0;
}
.callout strong { color: var(--navy-900); }
.callout p:last-child { margin-bottom: 0; }

.aside-card {
  background: var(--shell); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem; position: sticky; top: calc(var(--header-h) + 20px);
}
.aside-card h3 { font-size: 1.08rem; margin-bottom: .6rem; }
.aside-card p { font-size: .93rem; }

/* ------------------------------------------------------------- footer ---- */
.site-footer { background: var(--navy-900); color: #93a9bf; font-size: .93rem; padding-top: clamp(3rem, 6vw, 4.5rem); }
.site-footer h4 {
  color: #fff; font-family: var(--sans); font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .13em; margin-bottom: 1.15rem;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .6rem; }
.site-footer a { color: #b7c8d8; }
.site-footer a:hover { color: var(--gold-300); }
.footer-brand { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.1rem; }
.footer-brand .brand__name { color: #fff; }
.footer-about p { font-size: .92rem; line-height: 1.62; color: #93a9bf; max-width: 330px; }
.footer-contact li { display: flex; gap: .7rem; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold-400); flex: none; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 1.5rem 0; display: flex; flex-wrap: wrap; gap: 1rem 2rem;
  align-items: center; justify-content: space-between; font-size: .84rem; color: #7d93aa;
}
.footer-bottom ul { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.footer-bottom li { margin: 0; }
.legal-note { font-size: .8rem; line-height: 1.6; color: #6f8399; padding-bottom: 1.5rem; max-width: 900px; }

/* --------------------------------------------------------- float call ---- */
.call-bar { display: none; }

/* ---------------------------------------------------------- utilities ---- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.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;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* --------------------------------------------------------- responsive ---- */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 560px; }
  .grid--sidebar { grid-template-columns: 1fr; }
  .aside-card { position: static; }
}

@media (max-width: 960px) {
  .grid--4, .steps--4 { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .grid--split { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  :root { --header-h: 72px; }

  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.25rem 24px 2.5rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .25s ease;
    border-top: 1px solid var(--line);
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { padding: .95rem .25rem; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__item--has-menu .nav__link svg { display: none; }
  .nav__menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    border: 0; box-shadow: none; padding: .35rem 0 .6rem .9rem; min-width: 0;
    border-bottom: 1px solid var(--line); border-radius: 0;
  }
  .nav__menu a { padding: .55rem .25rem; font-size: .95rem; color: var(--slate); }
  .nav__menu small { display: none; }
  .nav__cta { margin: 1.5rem 0 0; }
  .nav__cta .btn { width: 100%; }
  body.nav-open { overflow: hidden; }

  .topbar__inner { justify-content: center; }
  .topbar__list { gap: 1.1rem; justify-content: center; font-size: .8rem; }
  .topbar__lang { display: none; }
  .topbar__hours { display: none !important; }

  .grid--2, .grid--3, .steps--3 { grid-template-columns: 1fr; }
  .two-col-list { columns: 1; }
  .hero__trust { gap: 1.2rem 2rem; }
  .hero__trust div strong { font-size: 1.4rem; }

  .call-bar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
    background: #fff; border-top: 1px solid var(--line);
    box-shadow: 0 -4px 20px rgba(15, 42, 68, .1);
    padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom)); gap: .6rem;
  }
  .call-bar .btn { flex: 1; padding: .8rem 1rem; font-size: .92rem; }
  .site-footer { padding-bottom: 76px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid--4, .steps--4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand__mark { width: 38px; height: 38px; }
  .brand__name { font-size: 1.1rem; }
  .brand__tag { font-size: .6rem; letter-spacing: .12em; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .call-bar .btn { width: auto; }
  .stat-strip { grid-template-columns: 1fr; }
}

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

@media print {
  .site-header, .topbar, .call-bar, .site-footer, .cta-band { display: none; }
  body { font-size: 12pt; color: #000; }
}
