/* ==========================================================================
   Avenue Coach — shared stylesheet
   One file for all 5 pages. Browser downloads it once, caches it, reuses it.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* brand */
  --gold: #c9a15a;
  --gold-grad: linear-gradient(135deg, #c9a15a, #a97e33);
  --ink: #16130f;
  --ink-soft: #2e2a24;
  --body-bg: #f8f6f1;
  --page-bg: linear-gradient(180deg, #faf8f3, #f3ece0);
  --muted: #6f6a61;
  --muted-2: #8a8478;
  --line: #e8e3d9;
  --nav-link: #4d473e;
  /* on dark */
  --on-dark: #d6cfc2;
  --on-dark-2: #a8a196;
  --on-dark-3: #b3ab9e;
  --on-dark-4: #e9e2d4;
  /* forms */
  --field-border: #e6e0d5;
  --field-bg: #faf8f4;

  /* responsive scale — desktop */
  --px: clamp(18px, 5vw, 56px);
  --py: clamp(48px, 6vw, 84px);
  --txt: 18px;
  --h2: 52px;
  --btnfs: 18px;
  --faqt: 19px;
  --faqa: 18px;
  --hpy: 6px;
  --fx: 18px;
  --fh: 20px;
  --svct: 24px;
  --whyt: 21px;
}

@media (min-width: 600px) and (max-width: 899px) {
  :root {
    --px: 20px; --py: 40px; --txt: 17px; --h2: 42px; --btnfs: 17px;
    --faqa: 17px; --hpy: 10px; --fx: 17px; --svct: 22px; --whyt: 22px;
  }
}

@media (max-width: 599px) {
  :root {
    --px: 12px; --py: 30px; --txt: 16px; --h2: 32px; --btnfs: 16px;
    --faqt: 18px; --faqa: 16px; --fx: 16px; --svct: 20px; --whyt: 20px;
  }
}

/* --------------------------------------------------------------------------
   2. RESET + BASE
   -------------------------------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--body-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.page-home { background: var(--page-bg); }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }
img { display: block; max-width: 100%; }
input, select, textarea, button { font-family: inherit; }
::placeholder { color: var(--on-dark-2); }

h1, h2, h3 { font-family: 'Poppins', Arial, Helvetica, sans-serif; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.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: -9999px; top: 0; z-index: 200;
  padding: 12px 20px; background: var(--ink); color: var(--body-bg);
  border-radius: 0 0 10px 0; font-size: 15px; font-weight: 600;
}
.skip-link:focus { left: 0; color: var(--body-bg); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   3. LAYOUT HELPERS
   -------------------------------------------------------------------------- */
.wrap { max-width: 1350px; margin: 0 auto; }
.sec { padding: var(--py) var(--px); }
.sec-white { background: #fff; border-top: 1px solid var(--line); }
.sec-head { margin-bottom: clamp(14px, 2vw, 22px); }
.sec-head--narrow { max-width: 620px; margin-bottom: clamp(24px, 3vw, 36px); }

.kicker {
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
h2 { font-weight: 600; font-size: var(--h2); line-height: 1.12; letter-spacing: -0.8px; }
.lead {
  font-size: var(--txt); line-height: 1.65; color: var(--muted);
  text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: 100px; cursor: pointer;
  font-family: inherit; font-size: var(--btnfs); font-weight: 600;
  padding: 15px 30px; transition: filter .18s, transform .18s, background .18s, color .18s, border-color .18s;
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { filter: brightness(1.07); transform: translateY(-1px); color: var(--ink); }

.btn-grad { background: var(--gold-grad); color: var(--ink); }
.btn-grad:hover { filter: brightness(1.07); transform: translateY(-1px); color: var(--ink); }

.btn-dark { background: var(--ink); color: var(--body-bg); }
.btn-dark:hover { background: var(--gold); color: var(--ink); }

.btn-line {
  background: none; border: 1px solid rgba(255, 255, 255, .4); color: var(--body-bg);
  padding: 16px 34px;
}
.btn-line:hover { border-color: var(--gold); color: var(--gold); }

.btn-lg { padding: 16px 34px; }

/* --------------------------------------------------------------------------
   5. HEADER + NAV
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 246, 241, .9);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 20px rgba(22, 19, 15, .06);
}
.site-header .wrap {
  position: relative; display: flex; align-items: center;
  justify-content: space-between; gap: 20px; padding: var(--hpy) var(--px);
}
.brand { display: inline-flex; align-items: center; }
.brand img { height: clamp(64px, 8vw, 88px); width: auto; }

.site-header nav { display: flex; align-items: center; gap: clamp(10px, 2.4vw, 34px); }

.nav-links {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: clamp(14px, 2.4vw, 34px);
}
.nav-links a {
  color: var(--nav-link); font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500; white-space: nowrap;
}
.nav-links a[aria-current="page"] { color: var(--ink); font-weight: 600; }

.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 100px;
  background: var(--gold-grad); color: var(--ink);
  font-size: 15px; font-weight: 700; white-space: nowrap;
  box-shadow: 0 6px 18px -8px rgba(169, 126, 51, .7);
  transition: filter .18s, transform .18s;
}
.nav-phone:hover { filter: brightness(1.07); transform: translateY(-1px); color: var(--ink); }

.nav-toggle {
  display: none; width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border: 1px solid #d9d2c6; border-radius: 12px;
  background: #fff; color: var(--ink); font-size: 19px; cursor: pointer;
}

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 45;
  background: #fff; padding: 92px 20px 26px;
  flex-direction: column; overflow-y: auto;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  display: block; padding: 17px 4px; border-bottom: 1px solid #f0ebe1;
  font-size: 18px; font-weight: 500; color: var(--ink-soft);
}
.mobile-menu .mm-phone {
  margin-top: auto; display: inline-flex; align-items: center;
  justify-content: center; gap: 8px; padding: 18px 4px;
  font-size: 18px; font-weight: 700; color: var(--ink); border-bottom: none;
}

@media (min-width: 600px) {
  .nav-toggle, .mobile-menu { display: none !important; }
}
@media (max-width: 599px) {
  .nav-links, .nav-phone { display: none !important; }
  .nav-toggle { display: inline-flex; }
}

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero__shade {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg,
    rgba(12, 10, 8, .9) 0%, rgba(12, 10, 8, .82) 47%,
    rgba(12, 10, 8, .5) 74%, rgba(12, 10, 8, 0) 97%);
}
.hero--page .hero__shade {
  background: linear-gradient(100deg,
    rgba(15, 12, 9, .92) 0%, rgba(15, 12, 9, .78) 50%, rgba(15, 12, 9, .5) 100%);
}
.hero__inner {
  position: relative; z-index: 2; max-width: 1350px; margin: 0 auto;
  min-height: 80vh; display: flex; align-items: center;
  padding: clamp(56px, 8vw, 110px) var(--px);
}
@media (max-width: 899px) { .hero__inner { min-height: 70vh; } }

.hero__txt { max-width: 640px; color: var(--body-bg); animation: fadeUp .6s ease both; }
.hero--page .hero__txt { max-width: 660px; }

.hero h1 {
  font-weight: 600; font-size: clamp(44px, 6vw, 62px); line-height: 1.06;
  letter-spacing: -1.2px; margin-bottom: 20px; text-wrap: balance;
}
.hero--page h1 { font-size: clamp(38px, 5.5vw, 58px); letter-spacing: -1.1px; margin-bottom: 18px; }

.hero p {
  font-size: var(--txt); line-height: 1.65; color: var(--on-dark);
  max-width: 500px; text-wrap: pretty;
}
.hero--page p { max-width: 540px; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 26px; }
.hero--page .hero__cta { margin: 30px 0 0; }
@media (max-width: 599px) {
  .hero__cta { flex-wrap: nowrap; }
  .hero__cta > .btn { flex: 0 0 auto; align-self: flex-start; width: auto; }
}

.chips { display: flex; flex-wrap: wrap; gap: 18px; }
.chip { display: flex; align-items: center; gap: 7px; font-size: 13.5px; color: var(--on-dark-4); }
.tick { color: var(--gold); font-weight: 700; }
@media (max-width: 480px) { .chips { gap: 10px 16px; } }

/* --------------------------------------------------------------------------
   7. TRUST MARQUEE
   -------------------------------------------------------------------------- */
.trust { background: #fff; overflow: hidden; }
.trust__track {
  display: flex; width: max-content; gap: 40px; padding: 20px 6px;
  animation: marquee 26s linear infinite;
}
.trust__track:hover { animation-play-state: paused; }
.trust__item {
  display: inline-flex; align-items: center;
  font-size: clamp(14px, 1.4vw, 18px); font-weight: 500;
  color: var(--nav-link); white-space: nowrap; letter-spacing: .2px;
}

/* --------------------------------------------------------------------------
   8. CARD GRIDS
   -------------------------------------------------------------------------- */
.grid-cards {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}
.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 18px; overflow: hidden; transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -20px rgba(22, 19, 15, .35); }
.card img { width: 100%; height: 170px; object-fit: cover; }
.card__body { padding: 22px; }
.card h3 { font-size: var(--svct); font-weight: 600; margin-bottom: 6px; }
.card p { font-size: var(--txt); line-height: 1.55; color: var(--muted); }

/* WHY / STEPS — numbered rule items */
.why-grid {
  display: grid; gap: clamp(20px, 3vw, 36px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}
@media (min-width: 600px) and (max-width: 899px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
.why-item { border-top: 2px solid var(--gold); padding-top: 18px; }
.why-item__num { font-size: 26px; font-weight: 700; color: var(--gold); margin-bottom: 10px; }
.why-item h3 { font-size: var(--whyt); font-weight: 600; margin-bottom: 8px; }
.why-item p { font-size: var(--txt); line-height: 1.6; color: var(--muted); }

/* FLEET */
.fleet-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
.fleet-card {
  background: #fff; border: 1.5px solid var(--gold); border-radius: 18px;
  overflow: hidden; box-shadow: 0 12px 32px -18px rgba(22, 19, 15, .45);
  transition: transform .2s, box-shadow .2s;
}
.fleet-card:hover { transform: translateY(-4px); box-shadow: 0 22px 46px -20px rgba(22, 19, 15, .5); }
.fleet-card img { width: 100%; height: 240px; object-fit: cover; object-position: center; }
.fleet-card__body { padding: 20px 22px; }
.fleet-card h3 {
  font-size: clamp(19px, 2vw, 22px); font-weight: 600;
  letter-spacing: -.2px; margin-bottom: 12px;
}
.fleet-card p { font-size: var(--txt); line-height: 1.55; color: var(--muted); margin-bottom: 14px; }
.feat-list { display: flex; flex-direction: column; gap: 8px; }
.feat-list li {
  display: flex; align-items: center; gap: 9px;
  font-size: var(--txt); color: var(--ink-soft); list-style: none;
}

/* --------------------------------------------------------------------------
   9. SERVICE AREA PILLS
   -------------------------------------------------------------------------- */
.area-sec { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.area-sec h2 { color: var(--ink); max-width: 640px; }
.area-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.area-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; background: #f6f1e6; border-radius: 100px;
  font-weight: 400; font-size: var(--txt); color: var(--ink);
  transition: background .18s;
}
.area-pill:hover { background: #efe4cf; color: var(--ink); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: 0 0 auto; }
@media (max-width: 599px) {
  .area-sec { text-align: center; }
  .area-pills { justify-content: center; }
}

/* --------------------------------------------------------------------------
   10. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative; color: var(--body-bg);
  background-image:
    linear-gradient(120deg, rgba(18, 14, 9, .9) 0%, rgba(18, 14, 9, .8) 55%, rgba(18, 14, 9, .72) 100%),
    url('../img/cta-band.webp');
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
/* iOS Safari renders fixed backgrounds badly — fall back on touch devices */
@media (hover: none), (max-width: 899px) {
  .cta-band { background-attachment: scroll; }
}
.cta-band__inner {
  position: relative; max-width: 760px; margin: 0 auto;
  padding: clamp(80px, 11vw, 150px) var(--px);
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.cta-band--wide .cta-band__inner { max-width: 1350px; }
.cta-band__rule { width: 40px; height: 3px; background: var(--gold); border-radius: 3px; margin-bottom: 20px; }
.cta-band h2 { font-size: var(--h2); line-height: 1.1; margin-bottom: 14px; text-wrap: balance; }
.cta-band p { font-size: 18px; line-height: 1.6; color: var(--on-dark); max-width: 540px; }
@media (max-width: 899px) { .cta-band p { font-size: 17px; } }
@media (max-width: 599px) { .cta-band p { font-size: 16px; } }
.cta-band__perks {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px 24px; margin-top: 22px;
}
.cta-band__perks span { display: inline-flex; align-items: center; gap: 8px; font-size: var(--txt); color: var(--on-dark-4); }
.cta-band__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
@media (max-width: 480px) {
  .cta-band__btns { width: 100%; }
  .cta-band__btns .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   11. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq { border: 1px solid var(--line); border-radius: 14px; background: #fff; overflow: hidden; }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 22px; background: none; border: none; cursor: pointer;
  text-align: left; font-size: var(--faqt); font-weight: 600; color: var(--ink);
}
.faq__sign { flex: 0 0 auto; color: var(--gold); font-size: 24px; line-height: 1; font-weight: 400; }
.faq__q[aria-expanded="true"] .faq__sign::before { content: '\2013'; }
.faq__q[aria-expanded="false"] .faq__sign::before { content: '+'; }
.faq__a { padding: 0 22px 20px; font-size: var(--faqa); line-height: 1.65; color: var(--muted); }
.faq__a[hidden] { display: none; }
@media (max-width: 599px) {
  .faq-head { text-align: center; }
  .faq-head .kicker { margin-left: auto; margin-right: auto; }
}

/* --------------------------------------------------------------------------
   12. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink); color: var(--on-dark);
  padding: clamp(44px, 6vw, 72px) var(--px) 28px;
}
.footer-grid {
  max-width: 1350px; margin: 0 auto; display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.6fr; gap: clamp(28px, 4vw, 56px);
}
.footer-about img { height: 96px; width: auto; margin-bottom: 18px; }
.footer-about p { font-size: var(--fx); line-height: 1.65; color: var(--on-dark-2); max-width: 320px; }
.footer-about strong { color: var(--on-dark); font-weight: 600; }

.fcol h2, .fcol__title {
  font-size: var(--fh); font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.fcol ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.fcol a { font-size: var(--fx); color: var(--on-dark); }
.fcol a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1350px; margin: clamp(32px, 4vw, 48px) auto 0;
  padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex; flex-wrap: wrap; gap: 14px 24px;
  align-items: center; justify-content: space-between;
  font-size: var(--fx); color: var(--muted-2);
}
.footer-bottom strong { color: var(--on-dark); font-weight: 600; }
.footer-bottom__links { display: flex; gap: 24px; }
.footer-bottom__links a { color: var(--on-dark); }
.footer-bottom__links a:hover { color: var(--gold); }

@media (max-width: 899px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 599px) {
  .footer-grid > .footer-about,
  .footer-grid > :last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: center; text-align: center; }
  .foot-phone { display: none; }
}

.credit-bar { background: var(--body-bg); padding: 20px var(--px); text-align: center; }
.credit-bar .wrap { font-size: var(--fx); color: var(--muted); }
.credit-bar a { color: var(--gold); font-weight: 600; }
.credit-bar a:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   13. STICKY MOBILE BAR
   -------------------------------------------------------------------------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: flex; gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(22, 19, 15, .1);
}
.mobile-bar .btn { padding: 14px; font-size: 15px; }
.mobile-bar .mb-call {
  flex: 1; background: none; border: 1.5px solid var(--ink); color: var(--ink);
}
.mobile-bar .mb-quote { flex: 1.4; }
@media (min-width: 600px) { .mobile-bar { display: none !important; } }
@media (max-width: 599px) { body { padding-bottom: 74px; } }

/* --------------------------------------------------------------------------
   14. QUOTE MODAL
   -------------------------------------------------------------------------- */
.overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(22, 19, 15, .6);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: none; align-items: flex-start; justify-content: center;
  padding: clamp(16px, 5vh, 60px) 16px; overflow-y: auto;
}
.overlay.is-open { display: flex; animation: fadeUp .25s ease both; }
body.modal-open { overflow: hidden; }

.modal {
  position: relative; width: 100%; max-width: 480px; background: #fff;
  border-radius: 20px; padding: clamp(20px, 3vw, 28px);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, .5);
  animation: fadeUp .3s ease both;
}
.modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 32px; height: 32px;
  border: none; border-radius: 50%; background: #f2eee6; color: var(--ink);
  font-size: 17px; line-height: 1; cursor: pointer;
}
.modal__close:hover { background: #e8e2d7; }
.modal h2 {
  font-size: clamp(22px, 2.6vw, 26px); font-weight: 600;
  letter-spacing: normal; line-height: 1.2;
  margin-bottom: 4px; padding-right: 34px;
}
.modal__sub { font-size: 13.5px; color: var(--muted-2); margin-bottom: 14px; }

/* LeadConnector embedded form.
   form_embed.js resizes the iframe to fit its content; the min-height below
   just stops the modal collapsing before that script runs. */
.form-embed {
  display: block; width: 100%; min-height: 621px;
  border: none; border-radius: 4px;
}
@media (max-width: 599px) {
  .modal { padding: 18px 14px 14px; border-radius: 16px; }
  .form-embed { min-height: 560px; }
}

/* --------------------------------------------------------------------------
   15. SERVICES PAGE
   -------------------------------------------------------------------------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
}
.svc-card img { width: 100%; height: 200px; object-fit: cover; }
.svc-card__body {
  padding: clamp(22px, 2.5vw, 30px); display: flex; flex-direction: column; flex: 1;
}
.svc-card h3 {
  font-weight: 600; font-size: clamp(21px, 2.2vw, 26px); line-height: 1.14;
  letter-spacing: -.4px; margin-bottom: 10px;
}
.svc-card p {
  font-size: var(--txt); line-height: 1.6; color: var(--muted);
  margin-bottom: 22px; text-wrap: pretty;
}
.svc-card .btn { margin-top: auto; align-self: flex-start; padding: 13px 26px; }

/* --------------------------------------------------------------------------
   16. SERVICE AREA PAGE
   -------------------------------------------------------------------------- */
.coverage {
  position: relative; color: var(--body-bg);
  background: radial-gradient(circle at 85% 22%, rgba(201, 161, 90, .16), transparent 45%), var(--ink);
  overflow: hidden;
}
.coverage__grid {
  position: relative; max-width: 1350px; margin: 0 auto;
  padding: var(--py) var(--px);
  display: grid; grid-template-columns: .85fr 1.4fr;
  gap: clamp(32px, 4vw, 64px); align-items: start;
}
@media (max-width: 1100px) { .coverage__grid { grid-template-columns: 1fr; } }
.coverage h2 { color: var(--body-bg); }
.coverage__intro { font-size: var(--txt); line-height: 1.7; color: var(--on-dark-3); margin-top: 14px; max-width: 420px; }

.stats {
  display: flex; flex-wrap: wrap; gap: 28px; margin-top: 28px;
  padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .12);
}
.stats__num { font-size: 30px; font-weight: 700; color: var(--gold); line-height: 1; }
.stats__label { font-size: 13px; color: var(--on-dark-2); margin-top: 6px; }

.region {
  display: grid; grid-template-columns: minmax(170px, .6fr) 1fr;
  gap: 20px; align-items: baseline; padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.region:last-of-type { border-bottom: none; }
.region h3 { font-size: 20px; font-weight: 600; letter-spacing: -.2px; color: var(--body-bg); }
.region p { font-size: var(--txt); line-height: 1.7; color: var(--on-dark-2); }
@media (max-width: 1100px) { .region { grid-template-columns: 1fr; gap: 6px; } }

.region-note { font-size: var(--txt); line-height: 1.65; color: var(--muted-2); margin-top: 14px; }

.map-split {
  display: grid; gap: clamp(28px, 4vw, 56px); align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
}
.map-embed {
  position: relative; border: 1px solid var(--line); border-radius: 20px;
  overflow: hidden; min-height: clamp(280px, 34vw, 400px); background: #f0ece3;
}
.map-embed iframe { display: block; width: 100%; height: 100%; min-height: inherit; border: 0; }

/* --------------------------------------------------------------------------
   17. ABOUT PAGE
   -------------------------------------------------------------------------- */
.split {
  display: grid; gap: clamp(32px, 4vw, 64px); align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
}
.split img { width: 100%; height: clamp(300px, 40vw, 460px); object-fit: cover; border-radius: 20px; }
.split h2 { font-size: clamp(28px, 3.6vw, 44px); letter-spacing: -.7px; margin-bottom: 18px; text-wrap: balance; }
.split p { font-size: var(--txt); line-height: 1.7; color: var(--muted); text-wrap: pretty; }
.split p + p { margin-top: 16px; }

.values-grid {
  display: grid; gap: clamp(20px, 3vw, 36px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}
.value { border-top: 2px solid var(--gold); padding-top: 18px; }
.value h3 { font-size: clamp(18px, 1.9vw, 22px); font-weight: 600; margin-bottom: 10px; }
.value p { font-size: var(--txt); line-height: 1.65; color: var(--muted); }

/* --------------------------------------------------------------------------
   18. CONTACT PAGE
   -------------------------------------------------------------------------- */
.contact-split {
  display: grid; gap: clamp(28px, 4vw, 56px); align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}
.contact-cards {
  display: grid; gap: 14px; margin-bottom: 30px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
}
.contact-card {
  display: flex; align-items: center; gap: 14px; padding: 18px 20px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  transition: border-color .18s, transform .18s;
}
.contact-card:hover { border-color: var(--gold); transform: translateY(-2px); color: inherit; }
.contact-card__icon {
  width: 44px; height: 44px; flex: 0 0 auto; border-radius: 12px;
  background: #f2ece0; display: flex; align-items: center;
  justify-content: center; font-size: 20px; color: var(--gold);
}
.contact-card__label { display: block; font-size: var(--txt); color: var(--muted-2); margin-bottom: 2px; }
.contact-card__value { display: block; font-size: var(--txt); font-weight: 600; color: var(--ink); overflow-wrap: anywhere; }

.hours { border-top: 1px solid var(--line); padding-top: 22px; }
.hours__title {
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px;
}
.hours dl { max-width: 380px; }
.hours__row {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 7px 0; font-size: var(--txt); color: var(--ink-soft);
}
.hours__row dd { font-weight: 600; }

.quote-card {
  background: var(--ink); color: var(--body-bg); border-radius: 22px;
  padding: clamp(28px, 3.5vw, 44px);
  box-shadow: 0 24px 60px -34px rgba(22, 19, 15, .5);
}
.quote-card__rule { width: 40px; height: 3px; background: var(--gold); border-radius: 3px; margin-bottom: 22px; }
.quote-card h2 {
  font-size: clamp(24px, 3vw, 32px); line-height: 1.14;
  letter-spacing: -.5px; margin-bottom: 12px; text-wrap: balance;
}
.quote-card > p { font-size: var(--txt); line-height: 1.6; color: var(--on-dark-3); margin-bottom: 26px; }
.perks { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.perks li { display: flex; align-items: center; gap: 11px; font-size: 16px; color: var(--on-dark-4); }
.quote-card .btn { width: 100%; border-radius: 12px; padding: 16px; font-size: 15px; }
.quote-card .btn + .btn { margin-top: 12px; }
.quote-card .btn-line { border-color: rgba(255, 255, 255, .3); }

/* --------------------------------------------------------------------------
   19. PRINT
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .mobile-bar, .mobile-menu, .overlay, .trust, .cta-band__btns { display: none !important; }
  body { padding-bottom: 0; background: #fff; }
  .hero__inner { min-height: auto; }
  a[href^="tel:"]::after { content: " (" attr(href) ")"; }
}
