/* =========================================================================
   Sathya Rent A Car — site styles
   Palette: deep navy ink, warm gold accent, paper-white ground.
   ========================================================================= */

:root {
  --ink:        #0d1b2a;
  --ink-2:      #16283d;
  --ink-3:      #23384f;
  --gold:       #e8b44a;
  --gold-deep:  #c8912b;
  --gold-soft:  #fdf3dd;
  --paper:      #faf8f5;
  --surface:    #ffffff;
  --body:       #40515f;
  --muted:      #6b7a89;
  --line:       rgba(13, 27, 42, .10);
  --line-2:     rgba(13, 27, 42, .16);

  --shadow-sm:  0 1px 2px rgba(13, 27, 42, .06), 0 2px 8px rgba(13, 27, 42, .05);
  --shadow-md:  0 4px 12px rgba(13, 27, 42, .07), 0 14px 34px rgba(13, 27, 42, .09);
  --shadow-lg:  0 10px 24px rgba(13, 27, 42, .10), 0 30px 60px rgba(13, 27, 42, .14);

  --r-sm: 8px;
  --r:    14px;
  --r-lg: 20px;

  --wrap: 1180px;
  --pad:  clamp(1.15rem, 4vw, 2.5rem);

  --sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1.14;
  letter-spacing: -.015em;
  margin: 0 0 .5em;
  font-weight: 600;
}
h1 { font-size: clamp(2.15rem, 6.2vw, 4.1rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.7rem); }
h3 { font-size: 1.16rem; letter-spacing: -.01em; }
p  { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--ink); text-decoration-color: rgba(13,27,42,.28); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--gold-deep); }

img, picture, svg { max-width: 100%; }
img { display: block; height: auto; }

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

.sr-only {
  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: 999;
  background: var(--ink); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 var(--r-sm) 0;
  text-decoration: none; font-weight: 600;
}
.skip-link:focus { left: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.wrap-narrow { max-width: 820px; }

/* ── Typographic helpers ────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--sans);
  font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-deep); margin: 0 0 .85rem;
}
.eyebrow.light { color: var(--gold); }
.fine { font-size: .84rem; color: var(--muted); line-height: 1.6; }

.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-alt { background: var(--surface); border-block: 1px solid var(--line); }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-lead { font-size: 1.05rem; color: var(--muted); }

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn {
  --btn-bg: var(--ink); --btn-fg: #fff; --btn-bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .78rem 1.4rem;
  background: var(--btn-bg); color: var(--btn-fg); border: 1px solid var(--btn-bd);
  border-radius: 999px;
  font: 600 .95rem/1.2 var(--sans);
  text-decoration: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: .55rem 1.05rem; font-size: .875rem; }
.btn-lg { padding: .95rem 1.8rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-gold  { --btn-bg: var(--gold); --btn-fg: var(--ink); --btn-bd: var(--gold); }
.btn-gold:hover { --btn-bg: #f0c163; }
.btn-navy  { --btn-bg: var(--ink); --btn-fg: #fff; --btn-bd: var(--ink); }
.btn-ghost { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.55); }
.btn-ghost:hover { --btn-bg: rgba(255,255,255,.12); }
.btn-outline { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line-2); }
.btn-outline:hover { --btn-bg: var(--ink); --btn-fg: #fff; --btn-bd: var(--ink); }

.ico { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }

/* ── Header ─────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250, 248, 245, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background-color .25s ease, box-shadow .25s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(13,27,42,.06); }
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: 68px; }

.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; margin-right: auto; }
.brand-mark {
  width: 38px; height: 38px; flex: none;
  display: grid; place-items: center;
  background: var(--ink); color: var(--gold);
  border-radius: 11px;
  font: 700 1.25rem/1 var(--serif);
}
.brand-text { display: grid; line-height: 1.05; }
.brand-text strong { font: 700 1.06rem/1 var(--serif); color: var(--ink); letter-spacing: -.01em; }
.brand-text em {
  font-style: normal; font-size: .63rem; font-weight: 600;
  letter-spacing: .19em; text-transform: uppercase; color: var(--muted); margin-top: .18rem;
}

.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav ul { display: flex; align-items: center; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.site-nav a {
  font-size: .93rem; font-weight: 500; color: var(--ink-3); text-decoration: none;
  padding: .35rem 0; position: relative;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--gold); transition: right .25s ease;
}
.site-nav a:hover::after { right: 0; }
.nav-cta { color: var(--ink); }

.nav-toggle {
  display: none; width: 44px; height: 44px; margin-left: auto;
  background: transparent; border: 1px solid var(--line-2); border-radius: 11px;
  cursor: pointer; padding: 0; place-items: center;
}
.nav-toggle-bars { display: grid; gap: 4px; width: 18px; }
.nav-toggle-bars i { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: grid; }
  .site-nav {
    position: absolute; inset: 100% 0 auto; display: grid; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: .6rem var(--pad) 1.3rem;
    clip-path: inset(0 0 100% 0); opacity: 0; pointer-events: none;
    transition: clip-path .3s ease, opacity .25s ease;
  }
  .site-nav.is-open { clip-path: inset(0 0 0 0); opacity: 1; pointer-events: auto; }
  .site-nav ul { display: grid; gap: 0; }
  .site-nav li { border-bottom: 1px solid var(--line); }
  .site-nav ul a { display: block; padding: .9rem .1rem; font-size: 1rem; }
  .site-nav a::after { display: none; }
  .nav-cta { margin-top: 1.1rem; justify-self: start; }
}

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero { position: relative; isolation: isolate; padding-top: clamp(3rem, 9vw, 6rem); }
.hero-media { position: absolute; inset: 0; z-index: -2; display: block; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 55%; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(9,18,29,.80) 0%, rgba(9,18,29,.52) 38%, rgba(9,18,29,.72) 100%),
    linear-gradient(100deg, rgba(9,18,29,.72) 12%, rgba(9,18,29,.12) 68%);
}
.hero-inner { padding-bottom: clamp(3rem, 7vw, 5rem); max-width: 810px; }
.hero h1 { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,.28); }
.hero-lead {
  color: rgba(255,255,255,.86); font-size: clamp(1.02rem, 1.9vw, 1.18rem);
  max-width: 56ch; margin-top: 1.35rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

.hero-trust {
  list-style: none; margin: 2.4rem 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .55rem 1.35rem;
}
.hero-trust li {
  position: relative; padding-left: 1.4rem;
  color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500;
}
.hero-trust li::before {
  content: ""; position: absolute; left: 0; top: .48em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 3px rgba(232,180,74,.22);
}

/* Quick quote card */
.quote-card {
  position: relative;
  display: grid; gap: .85rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  align-items: end;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.15rem;
  margin-bottom: -3.2rem;
  transform: translateY(1.6rem);
}
.quote-field { display: grid; gap: .3rem; min-width: 0; }
.quote-field label,
.field label {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
}
.quote-field :is(select, input),
.field :is(select, input, textarea) {
  width: 100%; font: 500 .95rem var(--sans); color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-2); border-radius: 10px;
  padding: .62rem .7rem; min-height: 44px;
  appearance: none;
}
.quote-field select, .field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%236b7a89' stroke-width='1.6' d='m1 1.5 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .7rem center; background-size: 11px;
  padding-right: 2rem;
}
.quote-field :is(select, input):focus,
.field :is(select, input, textarea):focus { border-color: var(--gold-deep); background: #fff; }
.quote-submit { min-height: 44px; align-self: end; }

@media (max-width: 560px) {
  .quote-card { grid-template-columns: 1fr 1fr; }
  .quote-field:first-child, .quote-submit { grid-column: 1 / -1; }
}

/* ── Fleet ──────────────────────────────────────────────────────────── */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.8rem; }
.chip {
  padding: .5rem 1.05rem; border-radius: 999px;
  background: transparent; border: 1px solid var(--line-2); color: var(--ink-3);
  font: 600 .875rem var(--sans); cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

.fleet-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.card.is-hidden { display: none; }

.card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #e9edf1; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.card:hover .card-media img { transform: scale(1.045); }

.tag {
  position: absolute; top: .85rem; left: .85rem; z-index: 2;
  padding: .3rem .7rem; border-radius: 999px;
  background: rgba(13,27,42,.86); color: #fff;
  font: 700 .68rem/1.5 var(--sans); letter-spacing: .08em; text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.tag-gold { background: var(--gold); color: var(--ink); }

.card-body { display: flex; flex-direction: column; flex: 1; padding: 1.25rem 1.3rem 1.3rem; }
.card-cat {
  font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--gold-deep); margin: 0 0 .4rem;
}
.card h3 { margin-bottom: .75rem; }

.specs { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: 0 0 .9rem; padding: 0; }
.specs li {
  font-size: .78rem; font-weight: 600; color: var(--ink-3);
  background: var(--paper); border: 1px solid var(--line);
  padding: .22rem .6rem; border-radius: 7px;
}
.card-note { font-size: .9rem; color: var(--muted); margin-bottom: 1.15rem; }

.card-foot {
  display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line);
}
.price { font: 700 1.28rem/1.1 var(--serif); color: var(--ink); margin: 0; }
.price span { display: block; font: 600 .68rem/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .28rem; }
.price small { font: 500 .78rem var(--sans); color: var(--muted); }

.fleet-grid + .fine { margin-top: 2rem; max-width: 70ch; }

/* ── Inclusions ─────────────────────────────────────────────────────── */
.two-col { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.panel {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.4rem, 3vw, 2.1rem);
}
.panel-muted { background: var(--ink); border-color: var(--ink); }
.panel-muted .panel-title, .panel-muted li { color: rgba(255,255,255,.9); }
.panel-title { font-size: 1.2rem; margin-bottom: 1.2rem; }

.ticks, .crosses { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.ticks li, .crosses li { position: relative; padding-left: 2rem; font-size: .96rem; color: var(--ink-3); }
.ticks li::before, .crosses li::before {
  content: ""; position: absolute; left: 0; top: .18em;
  width: 20px; height: 20px; border-radius: 50%;
  background-repeat: no-repeat; background-position: center; background-size: 11px;
}
.ticks li::before {
  background-color: var(--gold-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23c8912b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='m1.8 6.3 2.7 2.8L10.2 3'/%3E%3C/svg%3E");
}
.crosses li::before {
  background-color: rgba(255,255,255,.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' d='M3 3l6 6M9 3l-6 6'/%3E%3C/svg%3E");
}
.callout {
  display: grid; gap: .35rem;
  margin-top: 1.6rem; padding: 1.1rem 1.2rem;
  background: rgba(232,180,74,.14); border: 1px solid rgba(232,180,74,.34);
  border-radius: var(--r); color: #fff; font-size: .93rem;
}
.callout strong { color: var(--gold); }
.callout span { color: rgba(255,255,255,.82); }

/* ── Service tiles ──────────────────────────────────────────────────── */
.grid-3 { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.tile {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.6rem 1.5rem;
  transition: transform .28s ease, box-shadow .28s ease;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tile-ico {
  width: 40px; height: 40px; margin-bottom: 1.05rem;
  padding: 8px; border-radius: 11px;
  background: var(--gold-soft);
  fill: none; stroke: var(--gold-deep); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.tile p { font-size: .94rem; color: var(--muted); margin: 0; }

/* ── Why band ───────────────────────────────────────────────────────── */
.band { background: var(--ink); color: rgba(255,255,255,.78); }
.band h2, .band h3 { color: #fff; }
.why-grid { margin-top: .5rem; }
.why-item {
  padding: 1.7rem 1.5rem;
  border: 1px solid rgba(255,255,255,.13); border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  transition: border-color .28s ease, transform .28s ease;
}
.why-item:hover { border-color: rgba(232,180,74,.5); transform: translateY(-4px); }
.why-n {
  display: block; font: 700 .78rem var(--sans); letter-spacing: .16em;
  color: var(--gold); margin-bottom: .9rem;
}
.why-item p { font-size: .94rem; color: rgba(255,255,255,.72); margin: 0; }

/* ── Steps ──────────────────────────────────────────────────────────── */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  counter-reset: step;
}
.steps li { position: relative; padding: 1.7rem 1.5rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); }
.step-n {
  display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 1rem;
  border-radius: 50%; background: var(--ink); color: var(--gold);
  font: 700 1.1rem/1 var(--serif);
}
.steps p { font-size: .94rem; color: var(--muted); margin: 0; }

/* ── Booking ────────────────────────────────────────────────────────── */
.book-layout { display: grid; gap: clamp(2rem, 5vw, 3.5rem); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 940px) { .book-layout { grid-template-columns: .85fr 1.15fr; } }

.contact-list { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list span:last-child { display: grid; font-size: .95rem; color: var(--muted); }
.contact-list strong {
  font: 700 .72rem var(--sans); letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); margin-bottom: .15rem;
}
.contact-list a { color: var(--ink-3); font-weight: 600; text-decoration: none; }
.contact-list a:hover { color: var(--gold-deep); }
.ci {
  flex: none; width: 38px; height: 38px; border-radius: 11px;
  background: var(--gold-soft); display: grid; place-items: center;
}
.ci svg { width: 19px; height: 19px; fill: none; stroke: var(--gold-deep); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.book-form {
  display: grid; gap: 1rem; grid-template-columns: 1fr 1fr;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.3rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
}
.field { display: grid; gap: .35rem; min-width: 0; }
.field-wide, .book-form > .btn, .form-note { grid-column: 1 / -1; }
.field textarea { resize: vertical; min-height: 90px; font-family: var(--sans); }
.form-note { font-size: .82rem; color: var(--muted); text-align: center; margin: -.2rem 0 0; }
@media (max-width: 520px) { .book-form { grid-template-columns: 1fr; } }

/* ── FAQ ────────────────────────────────────────────────────────────── */
.faq { display: grid; gap: .7rem; }
.faq details {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq details[open] { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.1rem 3rem 1.1rem 1.3rem; position: relative;
  font: 600 1.02rem/1.45 var(--sans); color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 1.25rem; top: 1.45rem;
  width: 12px; height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%230d1b2a' stroke-width='1.8' stroke-linecap='round' d='M6 1v10M1 6h10'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .25s ease;
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq p { padding: 0 1.6rem 1.25rem 1.3rem; font-size: .95rem; color: var(--muted); margin: 0; }

/* ── CTA band ───────────────────────────────────────────────────────── */
.cta-band { background: var(--ink-2); color: rgba(255,255,255,.75); padding: clamp(2.8rem, 6vw, 4.2rem) 0; }
.cta-inner { display: grid; gap: 1.8rem; align-items: center; }
@media (min-width: 860px) { .cta-inner { grid-template-columns: 1.4fr auto; gap: 2.5rem; } }
.cta-band h2 { color: #fff; margin-bottom: .4rem; }
.cta-band p { font-size: 1rem; margin: 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ── Footer ─────────────────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255,255,255,.62); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer-grid {
  display: grid; gap: 2.2rem;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.footer-brand { grid-column: 1 / -1; max-width: 340px; }
@media (min-width: 1000px) {
  .footer-grid { grid-template-columns: 1.7fr repeat(4, 1fr); align-items: start; }
  .footer-brand { grid-column: auto; }
}
.footer-brand p { font-size: .9rem; margin-top: 1.1rem; }
.site-footer .brand-mark { background: rgba(255,255,255,.09); }
.site-footer .brand-text strong { color: #fff; }
.site-footer .brand-text em { color: rgba(255,255,255,.5); }

.footer-col h4 {
  font: 700 .73rem var(--sans); letter-spacing: .14em; text-transform: uppercase;
  color: #fff; margin: 0 0 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer-col a { color: rgba(255,255,255,.66); text-decoration: none; font-size: .92rem; }
.footer-col a:hover { color: var(--gold); }
.areas { font-size: .9rem; line-height: 1.75; margin: 0; }

.footer-base {
  margin-top: 2.8rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.12);
  display: grid; gap: .5rem;
}
.footer-base p { font-size: .82rem; color: rgba(255,255,255,.48); margin: 0; }
.footer-base .fine { color: rgba(255,255,255,.38); }

/* ── Floating WhatsApp ──────────────────────────────────────────────── */
.fab {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 70;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.42);
  transition: transform .22s ease;
}
.fab:hover { transform: scale(1.07); }
.fab svg { width: 28px; height: 28px; fill: currentColor; }

/* ── Reveal on scroll ───────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }

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