:root {
  --bg: #050505;
  --bg-2: #0a0a0a;
  --surface: #0e0e10;
  --surface-2: #131316;
  --text: #f5efd6;
  --text-soft: #ded3a3;
  --muted: rgba(245, 239, 214, 0.58);
  --border: rgba(245, 200, 0, 0.16);
  --border-strong: rgba(245, 200, 0, 0.35);

  --gold-1: #ffe27a;
  --gold-2: #f5c800;
  --gold-3: #c9a000;
  --gold-4: #7a5f00;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-xs: 10px;
  --container: 1180px;

  --shadow-gold: 0 20px 60px rgba(245, 200, 0, 0.18);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.55);
  --shadow-card: 0 22px 70px rgba(0, 0, 0, 0.7);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Mobile-safe background glow (avoid z-index:-1 + fixed issues) */
.bg-glow { display: none; }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(800px 520px at 12% -10%, rgba(245, 200, 0, 0.12), transparent 60%),
    radial-gradient(720px 520px at 100% 12%, rgba(245, 200, 0, 0.08), transparent 62%),
    radial-gradient(640px 540px at 50% 110%, rgba(245, 200, 0, 0.08), transparent 62%);
}
body > * { position: relative; z-index: 1; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.display {
  font-family: "Playfair Display", "Inter", serif;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.08;
}

.gold {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2) 45%, var(--gold-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin: 0 0 10px;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-2), transparent);
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.brand-mark {
  width: 68px; height: 68px;
  border-radius: 16px;
  background: radial-gradient(circle at 30% 20%, rgba(245, 200, 0, 0.16), rgba(0, 0, 0, 1));
  border: 1px solid var(--border-strong);
  box-shadow: inset 0 0 0 1px rgba(255, 224, 120, 0.1), 0 14px 34px rgba(245, 200, 0, 0.22);
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  background: rgba(0, 0, 0, 0.35);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.55));
}
.brand-text { display: grid; line-height: 1.15; gap: 4px; }
.brand-name {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #fff2b8, var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 600px) {
  .brand-mark { width: 52px; height: 52px; border-radius: 14px; }
  .brand-name { font-size: 1.2rem; }
  .brand-tagline { display: none; }
  .brand { gap: 12px; }
  .header-inner { padding: 12px 0; gap: 10px; }
}

/* Mobile: header not sticky (doesn't follow scroll) */
@media (max-width: 959px) {
  .site-header {
    position: relative;
    top: auto;
    z-index: 70;
  }
  .brand {
    max-width: calc(100% - 70px);
    min-width: 0;
  }
  .brand-text { min-width: 0; overflow: hidden; }
  .brand-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.nav { display: none; gap: 6px; align-items: center; }
.nav a {
  color: var(--text-soft);
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: color .2s, background .2s;
}
.nav a:hover { color: var(--gold-2); background: rgba(245, 200, 0, 0.06); }

.header-actions { display: none; gap: 10px; align-items: center; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: transform .15s ease, filter .2s, box-shadow .2s, border-color .2s, color .2s, background .2s;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 8px 12px; border-radius: 10px; font-size: 0.88rem; }
.btn-lg { padding: 14px 22px; border-radius: 14px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(180deg, var(--gold-1), var(--gold-2) 55%, var(--gold-3));
  color: #0a0a0a;
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 226, 122, 0.8);
}
.btn-primary:hover { filter: brightness(1.06); box-shadow: 0 24px 70px rgba(245, 200, 0, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.6); }

.btn-ghost {
  background: rgba(245, 200, 0, 0.04);
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--border-strong); color: var(--gold-2); }

.btn-outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--gold-2); color: var(--gold-2); background: rgba(245, 200, 0, 0.06); }

.btn-wa svg { color: #0a0a0a; }

.btn-lang { width: 48px; padding-inline: 0; font-weight: 700; }

/* ===== Nav toggle ===== */
.nav-toggle {
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: rgba(245, 200, 0, 0.06);
  display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px; cursor: pointer;
  position: relative;
  z-index: 80;
  flex-shrink: 0;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(245, 200, 0, 0.25);
}
.nav-toggle span {
  width: 20px; height: 2px;
  background: var(--gold-2);
  border-radius: 2px;
}

/* ===== Mobile drawer (fullscreen) ===== */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s ease, visibility .25s ease;
  pointer-events: none;
}
body.menu-open .mobile-nav {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 84vw);
  background: #0a0a0a;
  border-left: 1px solid var(--border);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.7);
  padding: 72px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateX(16px);
  transition: transform .25s ease;
}
body.menu-open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: rgba(245, 200, 0, 0.06);
  color: var(--gold-2);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav a {
  padding: 14px 14px;
  border-radius: 12px;
  color: var(--text);
  font-weight: 500;
  font-size: 1.05rem;
  border: 1px solid transparent;
}
.mobile-nav a:hover,
.mobile-nav a:active { background: rgba(245, 200, 0, 0.08); color: var(--gold-2); border-color: var(--border); }
.mobile-nav .btn { margin-top: 8px; }

@media (min-width: 960px) {
  .nav, .header-actions { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 90px 0 60px;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(1200px 700px at 70% 20%, rgba(245, 200, 0, 0.10), transparent 62%),
    linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.92)),
    url("../assets/hero-bg.jpg");
  background-size: cover;
  background-position: center;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
  opacity: 0.9;
}
@keyframes heroZoom {
  from { transform: scale(1.02) translateX(0); }
  to   { transform: scale(1.1) translateX(-2%); }
}
.hero-overlay {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.25) 0%, rgba(5,5,5,0.85) 70%, rgba(5,5,5,1) 100%),
    linear-gradient(90deg, rgba(5,5,5,0.85) 0%, rgba(5,5,5,0.35) 60%, rgba(5,5,5,0.15) 100%);
}
.hero-media { pointer-events: none; }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 28px;
  align-items: center;
}
.hero-grid * { pointer-events: auto; }
@media (min-width: 980px) {
  .hero { padding: 120px 0 80px; }
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
}

.hero-copy {
  max-width: 640px;
  position: relative;
  z-index: 2;
}
.hero-copy .btn,
.hero-cta .btn {
  position: relative;
  z-index: 3;
  -webkit-tap-highlight-color: rgba(245, 200, 0, 0.25);
  touch-action: manipulation;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(245, 200, 0, 0.06);
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 0 4px rgba(245, 200, 0, 0.2);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(245, 200, 0, 0.2); }
  50%      { box-shadow: 0 0 0 8px rgba(245, 200, 0, 0.0); }
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.lead {
  margin: 0 0 26px;
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 560px;
}
.lead span { display: block; }
.lead span + br + span { margin-top: 6px; }

.hero-cta {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px;
}

.hero-stats {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 520px;
}
.hero-stats li {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(10px);
  display: grid;
}
.hero-stats strong {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  color: var(--gold-2);
  line-height: 1;
}
.hero-stats span {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  margin-top: 6px;
}

.marquee {
  margin-top: 56px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: scroll 28s linear infinite;
  color: var(--text-soft);
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  letter-spacing: 0.4em;
}
.marquee-track span:nth-child(odd) { color: var(--gold-2); }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== Sections ===== */
.section { padding: 80px 0; position: relative; }
.section-alt {
  background:
    linear-gradient(180deg, rgba(245, 200, 0, 0.04), rgba(0, 0, 0, 0.6)),
    var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
  max-width: 760px;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin: 0; font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.section-sub { margin: 0; color: var(--muted); font-size: 1.02rem; }

/* ===== Filters ===== */
.filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 22px;
}
.filter-chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(245, 200, 0, 0.04);
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.filter-chip:hover { border-color: var(--border-strong); color: var(--gold-2); }
.filter-chip.active {
  background: linear-gradient(180deg, var(--gold-1), var(--gold-2));
  color: #0a0a0a;
  border-color: var(--gold-2);
  box-shadow: 0 10px 24px rgba(245, 200, 0, 0.25);
}

/* ===== Cards ===== */
.cards {
  display: grid;
  gap: 22px;
}
@media (min-width: 720px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1080px) { .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.car-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, #131316, #090909);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .25s, box-shadow .25s;
}
.car-card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(245, 200, 0, 0.0), rgba(245, 200, 0, 0.35), rgba(245, 200, 0, 0.0));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.car-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}
.car-card:hover::before { opacity: 1; }

.car-photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: #000;
}
.car-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.7));
  pointer-events: none;
}
.car-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.car-card:hover .car-photo img { transform: scale(1.06); }

.car-badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-strong);
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  z-index: 2;
}

.car-body {
  padding: 18px 18px 20px;
  display: grid;
  gap: 12px;
  flex: 1;
}
.car-body h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}

.car-specs {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-wrap: wrap;
  gap: 8px;
}
.car-specs li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(245, 200, 0, 0.04);
  color: var(--text-soft);
  font-size: 0.82rem;
}

.car-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 6px;
  border-top: 1px dashed var(--border);
}
.car-city {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--muted); font-size: 0.82rem;
}

/* ===== Features ===== */
.features {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 680px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .features { grid-template-columns: repeat(4, 1fr); } }

.feature {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #131316, #090909);
  box-shadow: var(--shadow-soft);
  transition: transform .3s, border-color .25s;
}
.feature:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.feature-icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(245, 200, 0, 0.18), rgba(245, 200, 0, 0.04));
  border: 1px solid var(--border-strong);
  color: var(--gold-2);
  margin-bottom: 14px;
}
.feature h3 {
  margin: 0 0 6px;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
}
.feature p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ===== Form ===== */
.booking-form {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #131316, #0a0a0a);
  padding: 26px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.booking-form::before {
  content: "";
  position: absolute;
  top: -60%; right: -20%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(245, 200, 0, 0.18), transparent 60%);
  pointer-events: none;
}

.form-grid { display: grid; gap: 14px; }
@media (min-width: 860px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }

label {
  display: grid; gap: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}
label.full { grid-column: 1 / -1; }

input, select, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: rgba(0, 0, 0, 0.5);
  color: var(--text);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
input::placeholder, textarea::placeholder { color: rgba(245, 239, 214, 0.35); }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold-2);
  box-shadow: 0 0 0 4px rgba(245, 200, 0, 0.18);
  background: rgba(0, 0, 0, 0.65);
}

select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold-2) 50%), linear-gradient(135deg, var(--gold-2) 50%, transparent 50%); background-position: calc(100% - 18px) 18px, calc(100% - 13px) 18px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 40px; }
select option { background: #0a0a0a; color: var(--text); }

.form-actions {
  margin-top: 18px;
  display: grid; gap: 10px;
  justify-items: start;
}
.form-hint { margin: 0; color: var(--muted); font-size: 0.88rem; }

/* ===== Contact ===== */
.contact-grid {
  display: grid; gap: 28px;
  align-items: start;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.1fr 0.9fr; gap: 40px; } }

.contact-list {
  list-style: none; padding: 0; margin: 22px 0 0;
  display: grid; gap: 14px;
}
.contact-list li {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-soft);
  font-size: 1rem;
}
.contact-list li strong { color: var(--text); font-weight: 600; }
.contact-list li a { color: var(--gold-2); font-weight: 600; }
.ci {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(245, 200, 0, 0.1);
  border: 1px solid var(--border-strong);
  color: var(--gold-2);
  flex-shrink: 0;
}

.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #131316, #0a0a0a);
  padding: 26px;
  box-shadow: var(--shadow-card);
}
.contact-card h3 {
  margin: 0 0 16px;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
}
.check-list { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 10px; }
.check-list li {
  padding-left: 26px;
  position: relative;
  color: var(--text-soft);
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-2) 30%, transparent 32%), rgba(245, 200, 0, 0.1);
  border: 1px solid var(--border-strong);
}

/* ===== Floating WhatsApp ===== */
.fab-wa {
  position: fixed;
  right: 20px; bottom: 20px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(180deg, #25d366, #128c7e);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.45);
  z-index: 80;
  animation: bob 3s ease-in-out infinite;
}
.fab-wa:hover { filter: brightness(1.08); }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* ===== Footer ===== */
.site-footer {
  padding: 30px 0 34px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: #030303;
}
.footer-inner {
  display: grid;
  gap: 16px;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .footer-inner { grid-template-columns: 1fr auto 1fr; }
  .footer-copy { text-align: center; }
  .footer-top { justify-self: end; }
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border-strong); object-fit: cover; }
.footer-brand strong { display: block; color: var(--text); font-family: "Playfair Display", serif; }
.footer-brand span { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-copy { margin: 0; }
.footer-top { color: var(--gold-2); font-weight: 600; }

/* ===== Motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
