/* =========================================================
   ATHERTON LUXURY RIDE — Master Stylesheet
   Brand: Black + Champagne Gold + Off-white
   Type:  Cormorant Garamond (display) + Inter (body)
========================================================= */

:root {
  /* Type scale (fluid) */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 1rem + 6vw, 6.5rem);

  /* Spacing (4px base) */
  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem;
  --space-4: 1rem;    --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem;    --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem;   --space-20: 5rem;   --space-24: 6rem; --space-32: 8rem;

  /* Brand palette */
  --color-bg: #0A0A0A;
  --color-surface: #111111;
  --color-surface-2: #161616;
  --color-surface-offset: #1C1C1C;
  --color-divider: #2A2A2A;
  --color-border: #383838;

  --color-text: #F5F1E8;
  --color-text-muted: #B8B2A4;
  --color-text-faint: #6E6A60;
  --color-text-inverse: #0A0A0A;

  --color-gold: #C9A961;
  --color-gold-bright: #E0C079;
  --color-gold-deep: #8E7438;
  --color-gold-faint: rgba(201, 169, 97, 0.18);

  /* Radius */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;

  /* Shadows */
  --shadow-md: 0 8px 24px rgba(0,0,0,0.45);
  --shadow-lg: 0 18px 50px rgba(0,0,0,0.55);

  /* Layout */
  --content-narrow: 720px;
  --content-default: 1080px;
  --content-wide: 1280px;

  /* Fonts */
  --font-display: 'Cormorant Garamond', 'Trajan Pro', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  /* Transitions */
  --t: 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Base reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  min-height: 100dvh;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0.01em;
}
img, picture, video, svg { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-wrap: balance;
  color: var(--color-text);
}
p { text-wrap: pretty; }

::selection { background: var(--color-gold); color: var(--color-text-inverse); }
:focus-visible { outline: 2px solid var(--color-gold); outline-offset: 3px; }

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

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}
.container-narrow { max-width: var(--content-narrow); margin: 0 auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem); }

section { padding-block: clamp(var(--space-16), 9vw, var(--space-32)); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}
.divider-gold {
  width: 64px; height: 1px;
  background: var(--color-gold);
  margin: var(--space-4) 0 var(--space-6);
}
.gold { color: var(--color-gold); }

/* ---------- Top contact bar ---------- */
.topbar {
  background: #050505;
  border-bottom: 1px solid var(--color-divider);
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
}
.topbar__inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: var(--space-3);
  padding: 10px clamp(1.25rem, 5vw, 2.5rem);
  max-width: var(--content-wide);
  margin: 0 auto;
  color: var(--color-text-muted);
}
.topbar a {
  color: var(--color-text-muted);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color var(--t);
}
.topbar a:hover { color: var(--color-gold); }
.topbar__group { display: flex; flex-wrap: wrap; gap: var(--space-5); }
.topbar__svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(10,10,10,0.85);
  backdrop-filter: saturate(120%) blur(14px);
  -webkit-backdrop-filter: saturate(120%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), background var(--t);
}
.header.scrolled { border-bottom-color: var(--color-divider); }
.header__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-4) clamp(1.25rem, 5vw, 2.5rem);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-6);
}
.brand img { height: 56px; width: auto; }
@media (min-width: 768px) { .brand img { height: 64px; } }

.nav { display: none; }
@media (min-width: 1024px) {
  .nav { display: flex; align-items: center; gap: var(--space-8); }
}
.nav a {
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  position: relative;
  padding: 6px 0;
  transition: color var(--t);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--color-gold); }
.nav a[aria-current="page"]::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--color-gold);
}

.nav__dropdown { position: relative; }
.nav__dropdown > button {
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color var(--t);
}
.nav__dropdown > button:hover,
.nav__dropdown:hover > button { color: var(--color-gold); }
.nav__panel {
  position: absolute; top: calc(100% + 8px); left: -16px;
  min-width: 280px;
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  padding: var(--space-3);
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--t), transform var(--t), visibility var(--t);
  box-shadow: var(--shadow-md);
}
.nav__dropdown:hover .nav__panel,
.nav__dropdown:focus-within .nav__panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__panel a {
  display: block; padding: 10px 14px;
  text-transform: none; letter-spacing: 0;
  font-size: var(--text-sm);
  color: var(--color-text);
}
.nav__panel a:hover { background: var(--color-surface-offset); color: var(--color-gold); }

.header__cta { display: none; }
@media (min-width: 1024px) { .header__cta { display: inline-flex; } }

.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  color: var(--color-gold);
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle svg { width: 24px; height: 24px; }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 0;
  background: var(--color-bg);
  z-index: 70;
  padding: var(--space-8) var(--space-6);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav__close {
  position: absolute; top: var(--space-4); right: var(--space-4);
  color: var(--color-gold);
}
.mobile-nav__close svg { width: 28px; height: 28px; }
.mobile-nav nav { margin-top: var(--space-12); }
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-divider);
  color: var(--color-text);
  letter-spacing: 0.02em;
}
.mobile-nav .submenu a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  padding: 10px 0 10px var(--space-4);
  color: var(--color-text-muted);
  border: none;
}
.mobile-nav__cta { margin-top: var(--space-8); display: flex; flex-direction: column; gap: var(--space-3); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: all var(--t);
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
}
.btn--gold {
  background: var(--color-gold);
  color: var(--color-text-inverse);
  border-color: var(--color-gold);
}
.btn--gold:hover {
  background: var(--color-gold-bright);
  border-color: var(--color-gold-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 169, 97, 0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.btn--ghost:hover {
  background: var(--color-gold);
  color: var(--color-text-inverse);
}
.btn--small { padding: 10px 20px; font-size: var(--text-xs); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 86vh, 820px);
  display: flex; align-items: center;
  background: var(--color-bg);
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  background: var(--color-bg) center/cover no-repeat;
}
.hero__media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.65) 35%, rgba(10,10,10,0.92) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.25) 60%, transparent 100%);
}
.hero__content {
  position: relative; z-index: 2;
  width: 100%;
  padding-block: var(--space-16);
}
.hero__inner { max-width: 760px; }
.hero h1 {
  font-size: var(--text-hero);
  font-weight: 400;
  margin-bottom: var(--space-5);
}
.hero h1 em { font-style: italic; color: var(--color-gold); }
.hero__sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  max-width: 560px;
  line-height: 1.7;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.hero__chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid var(--color-gold-deep);
  border-radius: 999px;
  margin-bottom: var(--space-6);
}
.hero__chip::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(201,169,97,0.18);
}

/* Hero variant for interior pages */
.hero--interior { min-height: clamp(360px, 50vh, 480px); }
.hero--interior h1 { font-size: var(--text-2xl); }
.hero--interior .hero__sub { font-size: var(--text-base); }

/* ---------- Section heading ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto var(--space-12); }
.section-head h2 { font-size: var(--text-xl); margin-bottom: var(--space-4); }
.section-head .divider-gold { margin: var(--space-3) auto var(--space-5); }
.section-head p { color: var(--color-text-muted); font-size: var(--text-base); }
.section-head--left { text-align: left; margin-inline: 0; }
.section-head--left .divider-gold { margin-inline: 0; }

/* ---------- Service grid ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
}
.service-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  padding: var(--space-8);
  transition: border-color var(--t), transform var(--t), background var(--t);
  display: flex; flex-direction: column;
  min-height: 260px;
}
.service-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
  background: var(--color-surface-2);
}
.service-card__icon {
  width: 44px; height: 44px;
  color: var(--color-gold);
  margin-bottom: var(--space-5);
}
.service-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  font-weight: 500;
}
.service-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  flex-grow: 1;
  margin-bottom: var(--space-5);
}
.service-card__link {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: inline-flex; align-items: center; gap: 8px;
}
.service-card__link::after {
  content: '→'; transition: transform var(--t);
}
.service-card:hover .service-card__link::after { transform: translateX(4px); }

/* ---------- Two-column feature ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (min-width: 900px) {
  .feature { grid-template-columns: 1fr 1fr; gap: var(--space-16); }
  .feature--reverse > :first-child { order: 2; }
}
.feature__media {
  background-size: cover;
  background-position: center;
  aspect-ratio: 4/3;
  border: 1px solid var(--color-divider);
}
.feature h2 { font-size: var(--text-xl); margin-bottom: var(--space-4); }
.feature p { color: var(--color-text-muted); margin-bottom: var(--space-4); }

/* ---------- Locations / chips grid ---------- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-3);
}
.location-chip {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  padding: var(--space-5) var(--space-6);
  text-align: center;
  transition: all var(--t);
  position: relative;
}
.location-chip:hover {
  border-color: var(--color-gold);
  background: var(--color-surface-2);
  transform: translateY(-3px);
}
.location-chip h3 {
  font-size: var(--text-base);
  font-family: var(--font-display);
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--color-text);
}
.location-chip span {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* ---------- Stats / trust band ---------- */
.trust-band {
  background: var(--color-surface);
  border-block: 1px solid var(--color-divider);
}
.trust-band .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-8);
  text-align: center;
  padding-block: var(--space-12);
}
.stat__num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-gold);
  display: block;
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat__label {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ---------- Fleet ---------- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
}
.fleet-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  overflow: hidden;
  transition: all var(--t);
}
.fleet-card:hover { border-color: var(--color-gold); transform: translateY(-4px); }
.fleet-card__img {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  aspect-ratio: 16/10;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--color-divider);
}
.fleet-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms ease;
}
.fleet-card:hover .fleet-card__img img { transform: scale(1.05); }
.fleet-card__body { padding: var(--space-6); }
.fleet-card h3 { font-size: var(--text-lg); margin-bottom: 6px; }
.fleet-card__cap {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}
.fleet-card p { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-5);
}
.testimonial {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  padding: var(--space-8);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 8px; left: 16px;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--color-gold);
  opacity: 0.3;
  line-height: 1;
}
.testimonial p {
  font-style: italic;
  color: var(--color-text);
  font-size: var(--text-base);
  margin-bottom: var(--space-5);
  position: relative; z-index: 1;
  line-height: 1.7;
}
.testimonial__author {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.testimonial__stars {
  color: var(--color-gold);
  margin-bottom: var(--space-3);
  letter-spacing: 2px;
}

/* ---------- FAQ ---------- */
.faq { max-width: 880px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--color-divider);
  padding: var(--space-5) 0;
}
.faq details[open] summary { color: var(--color-gold); }
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  display: flex; justify-content: space-between; align-items: flex-start; gap: var(--space-4);
  list-style: none;
  transition: color var(--t);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 28px;
  color: var(--color-gold);
  line-height: 1;
  transition: transform var(--t);
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div {
  padding-top: var(--space-4);
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.75;
  max-width: 70ch;
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    linear-gradient(rgba(10,10,10,0.78), rgba(10,10,10,0.92)),
    var(--cta-bg, none) center/cover no-repeat;
  border-block: 1px solid var(--color-gold-deep);
  text-align: center;
}
.cta-band__inner { padding-block: var(--space-20); }
.cta-band h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}
.cta-band p {
  color: var(--color-text-muted);
  margin: 0 auto var(--space-8);
  max-width: 600px;
}
.cta-band__row { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-3); }

/* ---------- Page intro / breadcrumbs ---------- */
.breadcrumb {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: var(--space-4);
}
.breadcrumb a { color: var(--color-text-muted); transition: color var(--t); }
.breadcrumb a:hover { color: var(--color-gold); }
.breadcrumb span { color: var(--color-gold); }

/* ---------- Prose blocks (service/location pages) ---------- */
.prose { max-width: 70ch; }
.prose h2 {
  font-size: var(--text-xl);
  margin-top: var(--space-12);
  margin-bottom: var(--space-4);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: var(--text-lg);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}
.prose p { margin-bottom: var(--space-4); color: var(--color-text-muted); }
.prose strong { color: var(--color-text); font-weight: 500; }
.prose ul { padding-left: var(--space-6); margin-bottom: var(--space-5); }
.prose ul li {
  list-style: none;
  position: relative;
  padding-left: var(--space-5);
  margin-bottom: var(--space-2);
  color: var(--color-text-muted);
}
.prose ul li::before {
  content: '◆';
  position: absolute; left: 0; top: 0;
  color: var(--color-gold);
  font-size: 10px;
  line-height: 1.8;
}
.prose a { color: var(--color-gold); text-decoration: underline; text-underline-offset: 4px; }
.prose a:hover { color: var(--color-gold-bright); }

/* Two-column page layout (for service/location pages) */
.page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}
@media (min-width: 1024px) {
  .page-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: var(--space-16);
    align-items: start;
  }
}
.sidebar {
  position: sticky; top: 120px;
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  padding: var(--space-6);
}
.sidebar h3 {
  font-size: var(--text-base);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}
.sidebar a.btn { width: 100%; }
.sidebar__row {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-divider);
  font-size: var(--text-sm);
}
.sidebar__row:last-of-type { border-bottom: none; }
.sidebar__row strong {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  font-weight: 500;
  margin-bottom: 4px;
}
.sidebar__row a {
  color: var(--color-text);
  transition: color var(--t);
}
.sidebar__row a:hover { color: var(--color-gold); }
.sidebar__cta-stack {
  display: flex; flex-direction: column; gap: var(--space-3);
  margin-top: var(--space-5);
}

/* ---------- Footer ---------- */
.footer {
  background: #050505;
  border-top: 1px solid var(--color-divider);
  padding-block: var(--space-16) var(--space-8);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}
.footer__brand img { height: 96px; width: auto; margin-bottom: var(--space-4); }
.footer__brand p { font-size: var(--text-sm); max-width: 320px; line-height: 1.7; }
.footer h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}
.footer ul li { margin-bottom: var(--space-2); }
.footer a { color: var(--color-text-muted); transition: color var(--t); }
.footer a:hover { color: var(--color-gold); }
.footer__contact-row {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: var(--space-3);
}
.footer__contact-row svg {
  width: 16px; height: 16px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 4px;
}
.footer__bottom {
  border-top: 1px solid var(--color-divider);
  padding-top: var(--space-6);
  display: flex; flex-wrap: wrap; gap: var(--space-4);
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.05em;
}

/* ---------- Floating mobile call button ---------- */
.fab {
  position: fixed;
  bottom: var(--space-5); right: var(--space-5);
  z-index: 50;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-text-inverse);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(201,169,97,0.45);
  transition: transform var(--t);
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 2; }
@media (min-width: 1024px) { .fab { display: none; } }

/* ---------- Awards strip ---------- */
.awards {
  background: var(--color-bg);
  border-block: 1px solid var(--color-divider);
  padding-block: var(--space-12);
}
.awards__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(var(--space-8), 6vw, var(--space-16));
  text-align: center;
}
.awards__head {
  flex-basis: 100%;
  margin-bottom: var(--space-4);
}
.awards__head .eyebrow { margin-bottom: var(--space-2); }
.awards__head h2 {
  font-size: var(--text-lg);
  color: var(--color-text);
  font-weight: 500;
}
.awards__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  max-width: 220px;
}
.awards__badge img {
  height: clamp(110px, 14vw, 160px);
  width: auto;
  filter: drop-shadow(0 4px 18px rgba(201,169,97,0.18));
  transition: transform var(--t);
}
.awards__badge:hover img { transform: scale(1.05); }
.awards__badge span {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.awards__badge strong {
  display: block;
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: 2px;
}

/* Inline awards in hero / sidebar */
.awards-inline {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}
.awards-inline img {
  height: 64px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(201,169,97,0.25));
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.visible { opacity: 1; transform: none; }
