/* =========================================================================
   CARZON RENTALS — DESIGN SYSTEM
   Signature: the Route Ticket — a boarding-pass-styled card (perforated
   divider, mono route codes, stamped fare) used for booking + pricing.
   Palette evolves the brand's existing gold rather than discarding it.
   ========================================================================= */

:root {
  /* ---- color ---- */
  --asphalt:      #161A22;   /* deep navy-charcoal, dashboard-at-dusk */
  --asphalt-soft: #232838;
  --route-gold:   #C6963A;   /* refined brand gold */
  --route-gold-soft: #E7C878;
  --paper:        #FAF5EA;   /* warm content background */
  --paper-dim:    #F2EADA;
  --rust:         #B24726;   /* secondary accent / CTA */
  --rust-dark:    #8F3418;
  --ink:          #211F1C;   /* body text */
  --ink-soft:     #55524B;
  --white:        #FFFFFF;
  --line:         #E4DBC7;   /* hairline on paper */
  --whatsapp:     #25D366;

  /* ---- type ---- */
  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body:    "IBM Plex Sans", "Segoe UI", sans-serif;
  --font-mono:    "IBM Plex Mono", "Consolas", monospace;

  /* ---- layout ---- */
  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-pad: clamp(48px, 8vw, 96px);
  --shadow: 0 12px 32px -12px rgba(22, 26, 34, 0.22);
  --shadow-sm: 0 4px 14px -6px rgba(22, 26, 34, 0.18);
}

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--font-display); font-weight: 700; color: var(--asphalt); line-height: 1.12; letter-spacing: -0.01em; }
p { margin: 0; }
:focus-visible { outline: 3px solid var(--route-gold); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---- type scale ---- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1.5px;
  background: var(--rust);
  display: inline-block;
}
h1, .h1 { font-size: clamp(32px, 5.6vw, 52px); }
h2, .h2 { font-size: clamp(26px, 4vw, 36px); }
h3, .h3 { font-size: clamp(19px, 2.6vw, 23px); }
.lede { font-size: clamp(16px, 2vw, 19px); color: var(--ink-soft); line-height: 1.6; }
.mono { font-family: var(--font-mono); }

/* ---- layout primitives ---- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-pad); }
.section--tight { padding-block: clamp(32px, 5vw, 56px); }
.section--dark { background: var(--asphalt); color: var(--white); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--dim { background: var(--paper-dim); }
.section--white { background: var(--white); }

.grid { display: grid; gap: var(--gutter); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
  .split--reverse { grid-template-columns: 0.95fr 1.05fr; }
  .split--reverse > *:first-child { order: 2; }
}
.stack-sm > * + * { margin-top: 10px; }
.stack > * + * { margin-top: 16px; }
.stack-lg > * + * { margin-top: 28px; }

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--route-gold); color: var(--asphalt); }
.btn-gold:hover { background: var(--route-gold-soft); box-shadow: var(--shadow-sm); }
.btn-dark { background: var(--asphalt); color: var(--white); }
.btn-dark:hover { background: #262c3c; }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.btn-whatsapp:hover { background: #1fbd5a; box-shadow: var(--shadow-sm); }
.btn-outline { background: transparent; border-color: currentColor; }
.btn-outline:hover { background: rgba(255,255,255,0.08); }
.btn-block { width: 100%; }
.btn svg, .btn i { width: 18px; height: 18px; flex: none; }

/* ---- site header / nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250, 245, 234, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 14px;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--asphalt); }
.brand img { height: 40px; width: auto; }
.brand-sub { display: none; }
@media (min-width: 640px) {
  .brand-sub { display: block; font-family: var(--font-mono); font-size: 11px; font-weight: 400; letter-spacing: .08em; color: var(--ink-soft); text-transform: uppercase; margin-top: 2px; }
}

.main-nav { display: none; }
.header-cta { display: none; }
@media (min-width: 960px) {
  .main-nav { display: flex; align-items: center; gap: 28px; font-size: 14.5px; font-weight: 500; }
  .main-nav a { position: relative; padding-block: 6px; color: var(--ink); }
  .main-nav a:hover, .main-nav a.active { color: var(--rust); }
  .main-nav .has-fleet { position: relative; }
  .main-nav .has-fleet > a::after { content: ""; display: inline-block; width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin-left: 6px; margin-bottom: 2px; opacity: .6; }
  .main-nav .fleet-panel {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow);
    padding: 10px; min-width: 260px; display: grid; gap: 2px;
    opacity: 0; visibility: hidden; translate: 0 6px;
    transition: opacity .18s ease, translate .18s ease, visibility .18s;
    border: 1px solid var(--line);
  }
  .main-nav .has-fleet:hover .fleet-panel,
  .main-nav .has-fleet:focus-within .fleet-panel { opacity: 1; visibility: visible; translate: 0 0; }
  .fleet-panel a { padding: 9px 12px; border-radius: 6px; font-size: 14px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
  .fleet-panel a .mono-code { font-family: var(--font-mono); font-size: 11px; color: var(--ink-soft); }
  .fleet-panel a:hover { background: var(--paper-dim); }
  .fleet-panel a:hover .mono-code { color: var(--rust); }
  .header-cta { display: inline-flex; }
}

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 10px; border: 1.5px solid var(--line);
  background: var(--white); cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--asphalt);
  position: relative; transition: all .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
@media (min-width: 960px) { .nav-toggle { display: none; } }

.mobile-nav {
  position: fixed; inset: 0; z-index: 90;
  background: var(--asphalt); color: var(--white);
  padding: 22px var(--gutter) 40px;
  transform: translateY(-100%);
  transition: transform .28s ease;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.mobile-nav-close { width: 40px; height: 40px; border-radius: 10px; border: 1.5px solid rgba(255,255,255,.25); background: transparent; color: var(--white); font-size: 20px; cursor: pointer; }
.mobile-nav a { display: block; padding: 13px 4px; font-size: 18px; font-family: var(--font-display); font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.12); }
.mobile-nav .fleet-group { padding-left: 14px; }
.mobile-nav .fleet-group a { font-size: 15.5px; font-family: var(--font-body); font-weight: 500; color: var(--route-gold-soft); border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav-cta { margin-top: 22px; display: grid; gap: 10px; }
@media (min-width: 960px) { .mobile-nav { display: none; } }

/* ---- hero ---- */
.hero {
  background:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(198,150,58,0.18), transparent 60%),
    var(--asphalt);
  color: var(--white);
  padding-block: clamp(40px, 7vw, 76px);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,150,58,.5), transparent);
}
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 22px; }
.hero-trust span { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .04em; color: var(--route-gold-soft); display: flex; align-items: center; gap: 7px; }
.hero-trust span::before { content: "\2713"; }
.hero h1 { color: var(--white); }
.hero .lede { color: #C9CDD8; max-width: 46ch; }

/* route line flourish */
.route-line { display: flex; align-items: center; gap: 10px; margin-top: 26px; font-family: var(--font-mono); font-size: 12px; color: #9AA0B0; }
.route-line .dots { flex: 1; height: 1px; background-image: repeating-linear-gradient(90deg, currentColor 0 6px, transparent 6px 12px); }
.route-line svg { flex: none; }

/* =========================================================================
   ROUTE TICKET — signature component. Boarding-pass styled card used for
   the booking form and every pricing/CTA block across the site.
   ========================================================================= */
.ticket {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--line);
}
.ticket-head {
  background: var(--asphalt);
  color: var(--white);
  padding: 16px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-family: var(--font-mono);
}
.ticket-head .route-code { font-size: 15px; font-weight: 500; letter-spacing: .04em; display:flex; align-items:center; gap:8px; }
.ticket-head .route-code b { color: var(--route-gold-soft); font-weight: 600; }
.ticket-head .barcode { display: flex; gap: 2px; height: 20px; align-items: flex-end; opacity: .8; }
.ticket-head .barcode span { width: 2px; background: var(--route-gold-soft); }
.ticket-body { padding: 24px 22px; }
.ticket-perf {
  position: relative;
  height: 1px;
  margin: 6px 0 20px;
  background-image: radial-gradient(circle, var(--line) 1.6px, transparent 1.8px);
  background-size: 10px 1px;
  background-repeat: repeat-x;
}
.ticket-stamp {
  display: inline-flex; flex-direction: column; align-items: flex-start;
  border: 2px solid var(--rust); color: var(--rust);
  border-radius: 8px; padding: 6px 12px;
  transform: rotate(-2deg);
  font-family: var(--font-mono);
}
.ticket-stamp .amt { font-size: 20px; font-weight: 700; line-height: 1; }
.ticket-stamp .unit { font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; margin-top: 3px; }

/* ---- booking / whatsapp form (lives inside .ticket-body) ---- */
.wa-form h2, .wa-form h3 { font-size: 20px; }
.wa-form > p.lede { margin-top: 6px; margin-bottom: 18px; font-size: 14.5px; }
.field-row { display: grid; gap: 12px; grid-template-columns: 1fr; margin-bottom: 12px; }
@media (min-width: 520px) { .field-row.two { grid-template-columns: 1fr 1fr; } }
.wa-booking-form input,
.wa-booking-form select,
.wa-booking-form textarea {
  width: 100%; box-sizing: border-box;
  border: 1.5px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
  padding: 12px 14px;
  height: 48px;
  font-size: 15px;
  color: var(--ink);
}
.wa-booking-form select {
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3e%3cpath fill='%2355524B' d='M6 8L1 3h10z'/%3e%3c/svg%3e");
  background-repeat: no-repeat; background-position: right 14px center;
}
.wa-booking-form textarea { height: 88px; padding-top: 12px; resize: vertical; }
.wa-booking-form input:focus, .wa-booking-form select:focus, .wa-booking-form textarea:focus {
  border-color: var(--route-gold); outline: none; background: var(--white);
}
.wa-form-submit {
  width: 100%; background: var(--whatsapp); color: var(--white); border: none;
  border-radius: 8px; height: 52px; font-size: 16px; font-weight: 700; font-family: var(--font-body);
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 4px; transition: background .2s ease;
}
.wa-form-submit:hover { background: #1fbd5a; }
.wa-form-note { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-soft); margin-top: 12px; text-align: center; }

/* ---- fleet / service cards ---- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--paper-dim); }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body h3 { font-size: 18px; }
.card-body p { color: var(--ink-soft); font-size: 14.5px; }
.card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 10px; }
.card-foot .from { font-family: var(--font-mono); font-size: 12px; color: var(--rust); }
.card-foot .from b { font-size: 15px; }
.card-link { font-family: var(--font-mono); font-size: 12.5px; font-weight: 500; color: var(--asphalt); display: inline-flex; align-items: center; gap: 5px; }
.card:hover .card-link { color: var(--rust); }

/* ---- fleet manifest sidebar (vehicle/service pages) ---- */
.manifest { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.manifest-head { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); padding: 14px 18px; border-bottom: 1px solid var(--line); background: var(--paper-dim); }
.manifest a { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 13px 18px; font-size: 14.5px; font-weight: 500; border-bottom: 1px solid var(--line); }
.manifest a:last-child { border-bottom: none; }
.manifest a:hover { background: var(--paper-dim); color: var(--rust); }
.manifest a.active { background: var(--asphalt); color: var(--white); }
.manifest a .mono-code { font-family: var(--font-mono); font-size: 11px; color: var(--ink-soft); }
.manifest a.active .mono-code { color: var(--route-gold-soft); }

/* ---- breadcrumb / page header ---- */
.page-head {
  background: var(--asphalt); color: var(--white);
  padding-block: clamp(28px, 5vw, 44px);
}
.page-head .crumb { font-family: var(--font-mono); font-size: 12px; color: #9AA0B0; margin-bottom: 10px; }
.page-head .crumb a:hover { color: var(--route-gold-soft); }
.page-head h1 { color: var(--white); font-size: clamp(26px, 4.6vw, 38px); }

/* ---- feature list ---- */
.feature-list { display: grid; gap: 10px; }
.feature-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.feature-list li::before {
  content: ""; flex: none; width: 18px; height: 18px; margin-top: 3px; border-radius: 50%;
  background: var(--route-gold);
  -webkit-mask: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3e%3cpath d='M4 12l6 6L20 6'/%3e%3c/svg%3e") center/12px no-repeat;
  mask: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3e%3cpath d='M4 12l6 6L20 6'/%3e%3c/svg%3e") center/12px no-repeat;
}

/* ---- FAQ accordion ---- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 18px 4px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--asphalt);
}
.faq-q .plus { flex: none; width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--rust); position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content:""; position:absolute; background: var(--rust); top:50%; left:50%; }
.faq-q .plus::before { width: 10px; height: 1.5px; transform: translate(-50%,-50%); }
.faq-q .plus::after { width: 1.5px; height: 10px; transform: translate(-50%,-50%); transition: transform .2s ease; }
.faq-item[open] .faq-q .plus::after { transform: translate(-50%,-50%) rotate(90deg) scale(0); }
.faq-a { padding: 0 4px 20px; color: var(--ink-soft); font-size: 15px; max-width: 66ch; }
details.faq-item summary { list-style: none; }
details.faq-item summary::-webkit-details-marker { display: none; }

/* ---- footer ---- */
.site-footer { background: var(--asphalt); color: #C9CDD8; }
.footer-top { padding-block: clamp(40px, 6vw, 64px); display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 800px) { .footer-top { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--white); margin-bottom: 12px; }
.footer-brand img { height: 34px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--route-gold-soft); margin-bottom: 14px; font-weight: 500; }
.footer-col a, .footer-col p { display: block; font-size: 14.5px; color: #C9CDD8; margin-bottom: 9px; }
.footer-col a:hover { color: var(--route-gold-soft); }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--route-gold); border-color: var(--route-gold); color: var(--asphalt); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 18px; font-size: 13px; color: #8890A0; display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; }
.footer-bottom a:hover { color: var(--route-gold-soft); }

/* ---- floating action buttons ---- */
.call_float, .whatsapp_float {
  position: fixed; bottom: 18px; width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,.28); z-index: 70;
}
.call_float { left: 18px; background: var(--route-gold); color: var(--asphalt); }
.whatsapp_float { right: 18px; background: var(--whatsapp); }
.call_float:hover, .whatsapp_float:hover { transform: translateY(-2px); }
@media (max-width: 600px) { .call_float, .whatsapp_float { width: 50px; height: 50px; font-size: 21px; bottom: 14px; } .call_float { left: 14px; } .whatsapp_float { right: 14px; } }

/* ---- misc ---- */
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; }
.badge { font-family: var(--font-mono); font-size: 12px; padding: 6px 12px; border-radius: 999px; background: var(--paper-dim); border: 1px solid var(--line); color: var(--ink-soft); }
.center { text-align: center; }
.section-head { max-width: 640px; margin-bottom: clamp(28px, 4vw, 44px); }
.section-head.center { margin-inline: auto; }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---- vehicle/service page layout ---- */
.vehicle-layout { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
@media (min-width: 900px) {
    .vehicle-layout { grid-template-columns: 260px 1fr; }
    .vehicle-layout .manifest { position: sticky; top: 90px; }
}
.vehicle-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; margin: 20px 0 28px; box-shadow: var(--shadow-sm); }
.vehicle-media img { width: 100%; height: 100%; object-fit: cover; }
.faq-list { max-width: 74ch; }

/* ---- fleet grid section (home) ---- */
.stats-band { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px 28px; }
@media (min-width: 700px) { .stats-band { grid-template-columns: repeat(4,1fr); } }
.stat b { font-family: var(--font-display); font-size: clamp(26px,3.4vw,34px); color: var(--route-gold); display: block; }
.stat span { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: #9AA0B0; }

.why-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-item .num { font-family: var(--font-mono); font-size: 13px; color: var(--rust); border: 1.5px solid var(--rust); width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex: none; }
.why-item h3 { font-size: 17px; margin-bottom: 4px; }
.why-item p { color: var(--ink-soft); font-size: 14.5px; }

/* social icon svg fit */
.footer-social a svg { width: 16px; height: 16px; }

/* ---- google maps embed band (footer, every page) ---- */
.gmap-band { width: 100%; height: 320px; line-height: 0; background: var(--paper-dim); }
@media (min-width: 900px) { .gmap-band { height: 380px; } }
