/* ============ Taxi Cosy — Single page site ============ */

:root {
  /* Palette: bleu profond + crème */
  --bg: #f4ede0;
  --bg-soft: #ede4d2;
  --bg-card: #fbf6ec;
  --ink: #102236;
  --ink-soft: #2b3a4d;
  --ink-mute: #5a6878;
  --primary: #14304d;
  --primary-deep: #0a1b2d;
  --primary-tint: #e2e8ef;
  --accent: #c98a3a;       /* warm amber for highlights */
  --accent-soft: #e7c694;
  --line: #d8cdb6;
  --line-soft: #e6dec8;
  --good: #2f7a55;
  --shadow-sm: 0 1px 2px rgba(10,27,45,.06), 0 1px 1px rgba(10,27,45,.04);
  --shadow-md: 0 8px 24px -8px rgba(10,27,45,.18), 0 2px 6px rgba(10,27,45,.06);
  --shadow-lg: 0 24px 60px -20px rgba(10,27,45,.35);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.serif {
  font-family: 'Newsreader', 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

a { color: inherit; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 237, 224, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(244, 237, 224, 0.95);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand-logo {
  height: 56px;
  max-height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--ink);
}
.brand-mark {
  width: 42px; height: 42px;
  background: var(--primary);
  color: var(--bg-card);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 22px;
  position: relative;
}
.brand-mark::after {
  content: ""; position: absolute; inset: 3px;
  border: 1px solid rgba(251, 246, 236, .35);
  border-radius: 50%;
}
.brand-name {
  display: flex; flex-direction: column; line-height: 1;
}
.brand-name .top {
  font-family: 'Newsreader', serif;
  font-size: 22px;
  letter-spacing: -.01em;
}
.brand-name .sub {
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}
.nav-links {
  display: flex; align-items: center; gap: 6px;
  font-size: 14.5px;
}
.nav-links a {
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--ink-soft);
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: rgba(20,48,77,.06); color: var(--ink); }

.cta-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary);
  color: var(--bg-card);
  padding: 11px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  transition: background .2s, transform .15s;
  box-shadow: var(--shadow-sm);
}
.cta-call:hover { background: var(--primary-deep); transform: translateY(-1px); }
.cta-call .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #74e2a8;
  box-shadow: 0 0 0 3px rgba(116,226,168,.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .55; }
}

/* Mobile nav toggle */
.nav-toggle { display: none; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex; align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-photo {
  position: absolute; inset: 0;
  z-index: -2;
  background: url('paysage-lyon.jpg') center / cover no-repeat;
}
.hero-photo-label {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  text-align: center;
  letter-spacing: .12em;
  text-transform: uppercase;
  pointer-events: none;
}
.hero-photo-label .big {
  font-family: 'Newsreader', serif;
  font-size: 28px;
  font-style: italic;
  color: rgba(255,255,255,.32);
  letter-spacing: 0;
  text-transform: none;
  display: block;
  margin-bottom: 8px;
}
.hero-overlay {
  position: absolute; inset: 0;
  z-index: -1;
  background: rgba(10, 27, 45, 0.75);
}

.hero-content {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 48px;
  color: #f4ede0;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 22px;
  padding: 7px 14px 7px 10px;
  border: 1px solid rgba(231,198,148,.35);
  border-radius: 999px;
  background: rgba(10,27,45,.35);
  backdrop-filter: blur(4px);
}
.hero-eyebrow svg { width: 14px; height: 14px; }

.hero h1 {
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -.02em;
  margin: 0 0 24px;
  max-width: 920px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent-soft);
}
.hero p.lead {
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.6;
  max-width: 580px;
  color: #f4ede0;
  margin: 0 0 36px;
  text-wrap: pretty;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 56px;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: transform .15s, background .2s, border-color .2s, color .2s;
}
.btn-primary {
  background: var(--accent);
  color: #1a1207;
  border-color: var(--accent);
}
.btn-primary:hover { background: #d99848; transform: translateY(-1px); }
.btn-ghost-light {
  background: rgba(244,237,224,.08);
  color: #f4ede0;
  border-color: rgba(244,237,224,.32);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover { background: rgba(244,237,224,.18); }

/* Hero cards */
.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.hero-card {
  background: rgba(244,237,224,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(244,237,224,.18);
  border-radius: var(--radius-lg);
  padding: 24px 22px 22px;
  text-decoration: none;
  color: #f4ede0;
  transition: background .25s, transform .2s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.hero-card:hover {
  background: rgba(244,237,224,.15);
  border-color: rgba(244,237,224,.32);
  transform: translateY(-3px);
}
.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.hero-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(244,237,224,.12);
  border: 1px solid rgba(244,237,224,.18);
  display: grid; place-items: center;
  color: var(--accent-soft);
}
.hero-card-icon svg { width: 20px; height: 20px; stroke-width: 1.6; }
.hero-card-tag {
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  padding: 4px 10px;
  border: 1px solid rgba(231,198,148,.3);
  border-radius: 999px;
  font-weight: 600;
}
.hero-card h3 {
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-size: 21px;
  margin: 0 0 8px;
  letter-spacing: -.01em;
  color: #f4ede0;
}
.hero-card p {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(244,237,224,.72);
  margin: 0;
  flex: 1;
}

/* ============ SECTION GENERIC ============ */
section.block { padding: 110px 0; position: relative; }
.section-head { margin-bottom: 56px; max-width: 720px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 600;
}
.section-eyebrow .num {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ink-mute);
  font-size: 14px;
  letter-spacing: 0;
}
.section-head h2 {
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.section-head h2 em { font-style: italic; color: var(--primary); }
.section-head p {
  font-size: 17.5px;
  color: var(--ink-mute);
  margin: 0;
  max-width: 600px;
  text-wrap: pretty;
}

/* ============ SERVICES ============ */
.services { background: var(--bg); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.svc-card {
  grid-column: span 6;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 32px 32px 30px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line);
}
.svc-card.featured {
  grid-column: span 12;
  background: var(--primary);
  color: #f4ede0;
  border-color: var(--primary);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 42px;
}
.svc-card.featured .svc-icon {
  background: rgba(244,237,224,.12);
  color: var(--accent-soft);
  border-color: rgba(244,237,224,.2);
}
.svc-card.featured h3 { color: #f4ede0; }
.svc-card.featured p { color: rgba(244,237,224,.78); }
.svc-card.featured .svc-list li { color: rgba(244,237,224,.85); border-color: rgba(244,237,224,.14); }
.svc-card.featured .svc-list li::before { background: var(--accent); }

.svc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--primary-tint);
  color: var(--primary);
  border: 1px solid rgba(20,48,77,.12);
  margin-bottom: 22px;
}
.svc-icon svg { width: 22px; height: 22px; stroke-width: 1.6; }
.svc-card h3 {
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -.01em;
  margin: 0 0 10px;
  color: var(--ink);
}
.svc-card p {
  font-size: 15px;
  color: var(--ink-mute);
  margin: 0 0 18px;
  line-height: 1.55;
}
.svc-list {
  list-style: none; margin: 0; padding: 0;
  font-size: 14.5px;
}
.svc-list li {
  padding: 11px 0 11px 22px;
  border-top: 1px solid var(--line-soft);
  position: relative;
  color: var(--ink-soft);
}
.svc-list li:last-child { padding-bottom: 0; }
.svc-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 8px; height: 1.5px;
  background: var(--accent);
}

/* Zones */
.zones {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.zones-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.zones-list h4 {
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 14px;
  color: var(--ink);
}
.zones-list h4 + h4 { margin-top: 28px; }
.zones-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.zone-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink-soft);
}
.zone-tag .pin {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.zone-tag.intl .pin { background: var(--primary); }

.zones-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 36px;
  display: flex; align-items: center; justify-content: center;
}

/* ============ TARIFS ============ */
.tarifs { background: var(--bg); }
.tarifs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 28px;
}
.tarif-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}
.tarif-card.highlight {
  background: var(--primary);
  color: #f4ede0;
  border-color: var(--primary);
}
.tarif-card.highlight .tarif-eyebrow { color: var(--accent-soft); }
.tarif-card.highlight h3 { color: #f4ede0; }
.tarif-card.highlight .feat li { color: rgba(244,237,224,.85); border-color: rgba(244,237,224,.16); }
.tarif-card.highlight .feat li svg { color: var(--accent); }
.tarif-card.highlight .note { color: rgba(244,237,224,.7); border-color: rgba(244,237,224,.18); }

.tarif-eyebrow {
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
}
.tarif-card h3 {
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -.01em;
  margin: 0 0 16px;
  color: var(--ink);
}
.tarif-card .lead-p {
  font-size: 15px;
  color: var(--ink-mute);
  margin: 0 0 24px;
}
.tarif-card.highlight .lead-p { color: rgba(244,237,224,.78); }
.feat {
  list-style: none; margin: 0 0 24px; padding: 0;
  font-size: 14.5px;
}
.feat li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--line-soft);
  color: var(--ink-soft);
}
.feat li svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--accent);
  margin-top: 2px;
}
.note {
  font-size: 13px;
  color: var(--ink-mute);
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  margin: 0;
}

.secu-band {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 26px 32px;
  display: flex; align-items: center; gap: 26px;
  flex-wrap: wrap;
}
.secu-band .secu-icon {
  width: 56px; height: 56px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #2f7a55, #225a3f);
  color: #fbf6ec;
  border-radius: 14px;
  display: grid; place-items: center;
}
.secu-band .secu-icon svg { width: 28px; height: 28px; }
.secu-band .secu-text { flex: 1; min-width: 240px; }
.secu-band h4 {
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-size: 21px;
  margin: 0 0 4px;
  color: var(--ink);
}
.secu-band p { margin: 0; color: var(--ink-mute); font-size: 14.5px; }
.pay-methods {
  display: flex; gap: 10px;
}
.pay {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-soft);
  background: var(--bg);
}
.pay svg { width: 16px; height: 16px; color: var(--ink-mute); }

/* ============ CONTACT ============ */
.contact { background: var(--bg-soft); border-top: 1px solid var(--line-soft); }

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.contact-info-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent-soft);
  display: grid; place-items: center;
  margin: 0 auto 20px;
}
.contact-info-icon.whatsapp { background: #25d366; color: #fff; }
.contact-info-icon svg { width: 24px; height: 24px; }
.contact-info-card h3 {
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 8px;
  letter-spacing: -.01em;
}
.contact-info-val {
  font-size: 17px;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 8px;
}
.contact-info-desc {
  font-size: 14px;
  color: var(--ink-mute);
  margin: 0;
  line-height: 1.5;
}
.contact-auth {
  text-align: center;
  margin-top: 36px;
  padding: 14px 20px;
  background: rgba(20, 48, 77, .06);
  border: 1px dashed var(--line);
  border-radius: 10px;
  font-size: 13px;
  color: var(--ink-mute);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.contact-auth strong { color: var(--ink); font-weight: 600; }

/* ============ FOOTER ============ */
.footer {
  background: var(--primary-deep);
  color: rgba(244,237,224,.7);
  padding: 60px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand .brand-logo { height: 72px; max-height: 72px; filter: brightness(1.8) contrast(0.9); }
.footer-brand p {
  margin: 22px 0 0;
  font-size: 14px;
  max-width: 320px;
  color: rgba(244,237,224,.6);
  line-height: 1.6;
}
.footer h5 {
  font-family: 'Manrope', sans-serif;
  font-size: 11.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(244,237,224,.5);
  margin: 0 0 16px;
  font-weight: 600;
}
.footer ul { list-style: none; margin: 0; padding: 0; font-size: 14px; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(244,237,224,.78); text-decoration: none; }
.footer ul a:hover { color: #f4ede0; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(244,237,224,.12);
  display: flex; justify-content: space-between;
  font-size: 12.5px;
  color: rgba(244,237,224,.5);
  flex-wrap: wrap; gap: 12px;
}

/* ============ FLOATING WHATSAPP ============ */
.whatsapp-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 100;
  background: #25d366;
  color: white;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid; place-items: center;
  text-decoration: none;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,.55), 0 4px 10px rgba(0,0,0,.15);
  transition: transform .2s;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 28px; height: 28px; }
.whatsapp-fab::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: .3;
  animation: ring 2.4s ease-out infinite;
}
@keyframes ring {
  0% { transform: scale(.85); opacity: .55; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ============ ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-toggle { display: grid; place-items: center; width: 42px; height: 42px; background: transparent; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; }
  .nav.menu-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 16px 28px 24px;
    gap: 4px;
  }
  .nav.menu-open .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
  .nav-links { gap: 0; }

  .cta-call { margin-left: auto; }
  .nav-toggle { margin-left: 10px; }

  .brand-logo { height: 48px; max-height: 48px; }

  .hero { min-height: calc(100vh - 68px); }
  .hero-content { padding-top: 48px; padding-bottom: 40px; }
  .hero-actions { gap: 10px; }
  .hero-cards { grid-template-columns: 1fr; gap: 12px; }

  section.block { padding: 80px 0; }
  .section-head { margin-bottom: 40px; }

  .svc-card, .svc-card.featured { grid-column: span 12; }
  .svc-card.featured { grid-template-columns: 1fr; gap: 24px; padding: 32px; }

  .zones-grid { grid-template-columns: 1fr; gap: 36px; }
  .tarifs-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; gap: 16px; }
  .fields { grid-template-columns: 1fr; }
  .type-toggle { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand .brand-logo { height: 60px; max-height: 60px; }
  .secu-band { flex-direction: column; align-items: flex-start; }
  .pay-methods { width: 100%; }
}

@media (max-width: 520px) {
  .container { padding: 0 16px; }

  .nav-inner { height: 64px; }
  .brand-logo { height: 42px; max-height: 42px; }
  .cta-call { padding: 9px 14px; font-size: 13px; }
  .cta-call .dot { width: 6px; height: 6px; }

  .hero { min-height: calc(100svh - 64px); }
  .hero-content { padding-top: 32px; padding-bottom: 32px; }
  .hero h1 { font-size: clamp(32px, 8vw, 40px); margin-bottom: 16px; }
  .hero p.lead { font-size: 15px; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 14px 20px; }
  .hero-cards { gap: 10px; }
  .hero-card { padding: 18px 16px 16px; }
  .hero-card h3 { font-size: 18px; }
  .hero-card p { font-size: 12.5px; }
  .hero-eyebrow { font-size: 11px; padding: 6px 12px 6px 8px; }

  section.block { padding: 56px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: clamp(28px, 7vw, 36px); }
  .section-head p { font-size: 15px; }

  .svc-card { padding: 24px 20px 22px; }

  .btn { padding: 14px 20px; font-size: 14px; }

  .footer { padding: 40px 0 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 36px; }
  .footer-brand .brand-logo { height: 52px; max-height: 52px; }
  .footer-brand p { font-size: 13px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
