/* EW Private Transportation — Marketing site styles */
@import url("./tokens.css");

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: var(--ivory);
  scroll-behavior: smooth;
  /* Bulletproof guard against any off-screen element (e.g. closed mobile nav-drawer,
     wide backgrounds, transformed photos) producing horizontal scroll on mobile. */
  overflow-x: clip;
  max-width: 100vw;
}
@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
}
a {
  color: inherit;
  border-bottom: 0;
  text-decoration: none;
}

:root {
  /* Site-level overrides: navy + black + gold */
  --site-bg-dark: #0a1628;
  --site-bg-dark-2: #0e1d34;
  --site-gold: #c9a04e;
  --site-gold-soft: #e5c98a;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
}
@media (max-width: 900px) {
  .container {
    padding: 0 20px;
  }
}

/* ============================================================
   TOP CONTACT BAR
   ============================================================ */
.topbar {
  background: var(--obsidian);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
  gap: 24px;
}
.topbar__left {
  display: flex;
  gap: 24px;
}
.topbar__phone {
  color: var(--site-gold);
  font-weight: 500;
  letter-spacing: 0.08em;
}
.topbar__right {
  display: flex;
  gap: 18px;
}
.topbar__right a {
  transition: color 200ms;
}
.topbar__right a:hover {
  color: var(--site-gold);
}
@media (max-width: 720px) {
  .topbar {
    display: none;
  }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 22, 40, 1) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 160, 78, 0.18);
  color: var(--pure);
  transition: background 240ms var(--ease);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}
.nav__brand {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--pure);
}
.nav__dot {
  color: var(--site-gold);
}
.nav__sub {
  font-family: var(--font-sans);
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  line-height: 1.2;
  opacity: 0.78;
}
.nav__links {
  display: flex;
  gap: 36px;
}
.nav__link {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 200ms var(--ease);
  cursor: pointer;
  padding: 4px 0;
}
.nav__link:hover,
.nav__link.active {
  color: var(--site-gold);
}
.nav__cta {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 22px;
  background: var(--site-gold);
  color: var(--obsidian);
  transition: background 200ms var(--ease);
  cursor: pointer;
  border: 0;
}
.nav__cta:hover {
  background: var(--site-gold-soft);
}
.nav__burger {
  display: none;
  width: 28px;
  height: 28px;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  cursor: pointer;
}
.nav__burger span {
  height: 1px;
  background: var(--pure);
}
@media (max-width: 980px) {
  .nav__links,
  .nav__cta {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
}
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--site-bg-dark);
  transform: translateX(100%);
  transition: transform 360ms var(--ease);
  display: flex;
  flex-direction: column;
  padding: 32px;
}
.nav-drawer.open {
  transform: translateX(0);
}
.nav-drawer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 56px;
}
.nav-drawer__close {
  color: var(--pure);
  font-size: 28px;
  cursor: pointer;
}
.nav-drawer__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-drawer__link {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--pure);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: color 200ms;
}
.nav-drawer__link:hover,
.nav-drawer__link.active {
  color: var(--site-gold);
}
.nav-drawer__actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============================================================
   SERVICE DETAIL ROWS (services.html)
   ============================================================ */
.service-rows {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.service-row--reverse .service-row__photo {
  order: 2;
}
@media (max-width: 900px) {
  .service-row,
  .service-row--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-row--reverse .service-row__photo {
    order: 0;
  }
}
.service-row__photo {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--site-bg-dark);
}
.service-row__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-row__icon {
  width: 40px;
  height: 40px;
  color: var(--site-gold);
  margin-bottom: 4px;
}
.service-row__icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.25;
}
.service-row__name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.service-row__desc {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--graphite);
  margin: 0;
}
.service-row__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--bone);
  padding-top: 20px;
}
.service-row__bullets li {
  display: flex;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}
.service-row__bullets svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--site-gold);
  margin-top: 2px;
}
.service-row__price {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 20px;
  border-top: 1px solid var(--bone);
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.about-story__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-story__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-story__photo {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  background-color: var(--site-bg-dark);
}
.about-story__photo--lg {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 720px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.stat {
  padding: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat:last-child {
  border-right: 0;
}
@media (max-width: 720px) {
  .stat:nth-child(2n) {
    border-right: 0;
  }
  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--site-gold);
}
.stat__unit {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.stat__label {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 8px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--bone);
  border-bottom: 1px solid var(--bone);
}
@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}
.value {
  padding: 40px 32px;
  border-right: 1px solid var(--bone);
  border-bottom: 1px solid var(--bone);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.value:nth-child(3n) {
  border-right: 0;
}
.value:nth-last-child(-n + 3) {
  border-bottom: 0;
}
@media (max-width: 900px) {
  .value {
    border-right: 1px solid var(--bone) !important;
    border-bottom: 1px solid var(--bone) !important;
  }
  .value:nth-child(2n) {
    border-right: 0 !important;
  }
  .value:nth-last-child(-n + 2) {
    border-bottom: 0 !important;
  }
}
@media (max-width: 560px) {
  .value {
    border-right: 0 !important;
  }
  .value:last-child {
    border-bottom: 0 !important;
  }
}
.value__icon {
  width: 32px;
  height: 32px;
  color: var(--site-gold);
  margin-bottom: 4px;
}
.value__icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.25;
}
.value__title {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}
.value__desc {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--graphite);
  margin: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}
.contact-grid__info {
  display: flex;
  flex-direction: column;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 8px 0 32px;
  border-top: 1px solid var(--bone);
}
.contact-method {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--bone);
  transition: padding 220ms var(--ease);
  text-decoration: none;
}
.contact-method:hover {
  padding-left: 12px;
  background: rgba(201, 160, 78, 0.04);
}
.contact-method__icon {
  width: 24px;
  height: 24px;
  color: var(--site-gold);
  flex-shrink: 0;
}
.contact-method__icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.25;
}
.contact-method__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-method__label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
}
.contact-method__strong {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  line-height: 1.2;
}
.contact-method__weak {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--graphite);
}

.contact-hours {
  padding-top: 24px;
  border-top: 1px solid var(--bone);
}
.contact-form-wrap {
  background: var(--obsidian);
  padding: 48px 40px;
  color: var(--pure);
  display: flex;
  flex-direction: column;
}
@media (max-width: 560px) {
  .contact-form-wrap {
    padding: 32px 24px;
  }
}
.contact-form-wrap .section__eyebrow {
  color: var(--site-gold);
}
.contact-form-wrap h3 {
  color: var(--pure) !important;
}
.contact-form-wrap p {
  color: rgba(255, 255, 255, 0.72) !important;
}
.contact-form-wrap .field__label {
  color: rgba(255, 255, 255, 0.7);
}
.contact-form-wrap .field__input {
  color: var(--pure);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.contact-form-wrap .field__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.contact-form-wrap .confirm-card {
  background: var(--obsidian);
  color: var(--pure);
  border-color: var(--site-gold);
}
.contact-form-wrap .confirm-card__title {
  color: var(--pure);
}
.contact-form-wrap .confirm-card__body {
  color: rgba(255, 255, 255, 0.78);
}

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
  position: relative;
  color: var(--pure);
  background: var(--site-bg-dark);
  display: flex;
  align-items: center;
  padding: 100px 0 64px;
}
.page-header__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) saturate(0.85);
}
.page-header__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.4) 0%,
    rgba(10, 22, 40, 0.65) 100%
  );
}
.page-header__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.page-header__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--site-gold);
  margin-bottom: 24px;
}
.page-header__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--site-gold);
}
.page-header__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(30px, 5vw, 70px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.page-header__title em {
  font-style: italic;
  color: var(--site-gold);
}
.page-header__lede {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0 0 32px;
}
.page-header__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.page-header {
  position: relative;
  padding: 1rem 0;
  overflow: hidden;
  background: #0a1628;
}

.page-header__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 4rem;
  min-height: 520px;
}

.page-header__content {
  max-width: 640px;
  order: 1;
}

.page-header__eyebrow {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.7;
}

.page-header__title {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.page-header__title em {
  font-style: italic;
  font-weight: 400;
}

.page-header__lede {
  margin-top: 2rem;
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.8;
}

.page-header__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.page-header__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  order: 2;
}

.page-header__media img {
  width: 100%;
  max-width: 760px;
  height: auto;
  object-fit: contain;
}

/* TABLET */
@media (max-width: 1024px) {
  .page-header {
    padding: 5rem 0;
  }

  .page-header__grid {
    gap: 3rem;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .page-header {
    padding: 2rem 0;
  }

  .page-header__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .page-header__content {
    max-width: 100%;
    order: 2;
  }

  .page-header__media {
    order: 1;
  }

  .page-header__actions {
    justify-content: center;
  }

  .page-header__media img {
    max-width: 100%;
  }
}

/* ============================================================
   HERO — cinematic, centered, single-statement
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(640px, 92vh, 920px);
  color: var(--pure);
  background: var(--site-bg-dark);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

.hero__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.62) saturate(0.78) contrast(1.02);
  transform: scale(1.02);
}
/* Desktop default */
.hero__photo {
  background-image: url("./assets/imagery/hero-333.png");
  background-size: cover;
  background-position: center 40%;
  /* keep your existing filters, etc. */
}

/* Mobile override – adjust breakpoint as needed (768px, 600px, etc.) */
@media (max-width: 768px) {
  .hero__photo {
    background-image: url("./assets/imagery/hero-11111.jpeg");
    background-position: center center; /* adjust for mobile composition */
  }
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      120% 70% at 50% 35%,
      rgba(10, 22, 40, 0) 0%,
      rgba(10, 22, 40, 0.35) 60%,
      rgba(10, 22, 40, 0.85) 100%
    ),
    linear-gradient(
      180deg,
      rgba(10, 22, 40, 0.55) 0%,
      rgba(10, 22, 40, 0.18) 35%,
      rgba(10, 22, 40, 0.55) 70%,
      rgba(11, 11, 12, 0.95) 100%
    );
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 26px;
}
.hero__rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--site-gold);
  opacity: 0.85;
}
.hero__eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--site-gold);
  white-space: nowrap;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 7vw, 132px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  color: var(--pure);
  text-wrap: balance;
  /* Allow extreme-narrow viewports to break the longest word ("intention.")
     instead of pushing the layout sideways. */
  overflow-wrap: break-word;
  word-break: normal;
  max-width: 100%;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--site-gold-soft);
}

.hero__lede {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  margin: 0 auto 44px;
  text-wrap: pretty;
}

.hero__cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Pill CTA — exception to the brand's sharp-corner default, reserved for affordances */
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 38px 18px 42px;
  background: var(--pure);
  color: var(--obsidian);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--pure);
  transition:
    background var(--dur-hover) var(--ease),
    color var(--dur-hover) var(--ease),
    border-color var(--dur-hover) var(--ease),
    padding-right var(--dur-hover) var(--ease);
  cursor: pointer;
}
.hero__cta svg {
  width: 18px;
  height: 18px;
  transition: transform var(--dur-hover) var(--ease);
}
.hero__cta:hover {
  background: transparent;
  color: var(--pure);
  border-color: var(--pure);
}
.hero__cta:hover svg {
  transform: translateX(4px);
}

.hero__call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 4px;
  transition: color var(--dur-hover) var(--ease);
}
.hero__call svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}
.hero__call:hover {
  color: var(--site-gold);
}
.hero__call:hover svg {
  opacity: 1;
}

/* Lower plate — three discreet metadata columns */
.hero__plate {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 1280px;
  width: calc(100% - 128px);
  margin: 0 auto;
  padding: 28px 0 36px;
}
.hero__plate-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 24px;
}
.hero__plate-col--mid {
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.hero__plate-col:last-child {
  text-align: right;
}
.hero__plate-label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.hero__plate-value {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.01em;
}
.hero__plate-stars {
  color: var(--site-gold);
  letter-spacing: 2px;
  margin-right: 6px;
  font-size: 14px;
}

/* Scroll cue */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 3;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 9.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--dur-hover) var(--ease);
}
.hero__scroll svg {
  width: 14px;
  height: 14px;
  animation: hero-bob 2.4s var(--ease) infinite;
}
.hero__scroll:hover {
  color: var(--site-gold);
}

@keyframes hero-bob {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(4px);
    opacity: 1;
  }
}

@media (min-width: 1100px) {
  .hero__scroll {
    display: flex;
  }
}

/* Tablet — collapse to a single column of plate items, soften the type scale */
@media (max-width: 980px) {
  .hero {
    min-height: clamp(620px, 86vh, 760px);
  }
  .hero__photo {
    background-position: center center;
    transform: none;
  }
  .hero__vignette {
    background:
      radial-gradient(
        140% 80% at 50% 40%,
        rgba(10, 22, 40, 0) 0%,
        rgba(10, 22, 40, 0.4) 60%,
        rgba(10, 22, 40, 0.92) 100%
      ),
      linear-gradient(
        180deg,
        rgba(10, 22, 40, 0.6) 0%,
        rgba(10, 22, 40, 0.25) 35%,
        rgba(10, 22, 40, 0.7) 75%,
        rgba(11, 11, 12, 0.95) 100%
      );
  }
  .hero__inner {
    padding: 96px 24px 48px;
  }
  .hero__eyebrow-wrap {
    margin-bottom: 28px;
    gap: 12px;
  }
  .hero__rule {
    width: 28px;
  }
  .hero__eyebrow {
    font-size: 10px;
    letter-spacing: 0.28em;
  }
  .hero__title {
    font-size: clamp(46px, 11vw, 78px);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
  }
  .hero__lede {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 34px;
    max-width: 460px;
  }
  .hero__cta-stack {
    gap: 18px;
    width: 100%;
  }
  .hero__cta {
    padding: 16px 30px 16px 34px;
    font-size: 12px;
    letter-spacing: 0.22em;
  }
  .hero__call {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-align: center;
  }

  .hero__plate {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
    padding: 18px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .hero__plate-col {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center !important;
    align-items: center;
  }
  .hero__plate-col:first-child {
    border-top: 0;
  }
  .hero__plate-col--mid {
    border-left: 0;
    border-right: 0;
  }
  .hero__plate-value {
    font-size: 16px;
  }
}

/* Phone — tighter padding, smaller title ceiling, single-line eyebrow stacks */
@media (max-width: 600px) {
  .hero {
    min-height: 600px;
  }
  .hero__inner {
    padding: 72px 20px 40px;
  }
  .hero__eyebrow-wrap {
    margin-bottom: 24px;
    gap: 10px;
  }
  .hero__rule {
    width: 20px;
  }
  .hero__eyebrow {
    font-size: 9.5px;
    letter-spacing: 0.24em;
  }
  .hero__title {
    font-size: clamp(40px, 13vw, 60px);
    margin-bottom: 18px;
  }
  .hero__lede {
    font-size: 13.5px;
    line-height: 1.65;
    margin-bottom: 28px;
  }
  .hero__lede br {
    display: none;
  }
  .hero__cta {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 16px 28px;
    font-size: 11.5px;
    letter-spacing: 0.2em;
  }
  .hero__call {
    font-size: 10.5px;
    letter-spacing: 0.14em;
    flex-wrap: wrap;
    justify-content: center;
    padding: 6px 0;
  }
  .hero__plate {
    width: calc(100% - 32px);
    padding: 14px 0 24px;
  }
  .hero__plate-col {
    padding: 12px 0;
    gap: 4px;
  }
  .hero__plate-label {
    font-size: 9px;
    letter-spacing: 0.28em;
  }
  .hero__plate-value {
    font-size: 15px;
  }
}

/* Very small — keep the eyebrow on one line by allowing wrap and tightening rules */
@media (max-width: 380px) {
  .hero__inner {
    padding: 64px 16px 32px;
  }
  .hero__title {
    font-size: clamp(36px, 13vw, 48px);
  }
  .hero__rule {
    width: 14px;
  }
  .hero__eyebrow {
    letter-spacing: 0.2em;
  }
}

/* Short landscape phones — don't lock to 92vh, the user can't see anything */
@media (max-height: 560px) and (orientation: landscape) {
  .hero {
    min-height: 560px;
  }
  .hero__inner {
    padding: 56px 24px 32px;
  }
  .hero__title {
    font-size: clamp(40px, 7vw, 64px);
  }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--obsidian);
  color: var(--pure);
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 720px) {
  .trust-strip__inner {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-item:last-child {
  border-right: 0;
}
@media (max-width: 720px) {
  .trust-item:nth-child(2n) {
    border-right: 0;
  }
}
.trust-item__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--site-gold);
}
.trust-item__icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.25;
}
.trust-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}
.trust-item__strong {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--pure);
}
.trust-item__weak {
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 32px;
  border: 1px solid var(--site-gold);
  background: var(--site-gold);
  color: var(--obsidian);
  transition: all 220ms var(--ease);
  cursor: pointer;
  border-radius: 0;
  white-space: nowrap;
}
.btn:hover {
  background: var(--site-gold-soft);
  border-color: var(--site-gold-soft);
}
.btn--dark {
  background: var(--obsidian);
  color: var(--pure);
  border-color: var(--obsidian);
}
.btn--dark:hover {
  background: var(--site-gold);
  border-color: var(--site-gold);
  color: var(--obsidian);
}
.btn--ghost {
  background: transparent;
  color: var(--pure);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--ghost:hover {
  background: var(--pure);
  color: var(--obsidian);
  border-color: var(--pure);
}
.btn--ghost-dark {
  background: transparent;
  color: var(--obsidian);
  border-color: var(--obsidian);
}
.btn--ghost-dark:hover {
  background: var(--obsidian);
  color: var(--pure);
}
.btn--small {
  padding: 12px 22px;
  font-size: 11px;
  letter-spacing: 0.18em;
}
.btn--block {
  width: 100%;
}
.btn--icon-left svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.5;
}

/* ============================================================
   SECTION
   ============================================================ */
.section {
  padding: 120px 0;
  background: var(--ivory);
}
.section--paper {
  background: var(--paper);
}
.section--dark {
  background: var(--site-bg-dark);
  color: var(--pure);
}
.section--obsidian {
  background: var(--obsidian);
  color: var(--pure);
}
@media (max-width: 720px) {
  .section {
    padding: 72px 0;
  }
}

.section__head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 64px;
  max-width: 760px;
}
.section__head--centered {
  text-align: center;
  margin: 0 auto 64px;
  align-items: center;
}
.section__eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--site-gold);
}
.section__main__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}
.section__main__title em {
  font-style: italic;
  color: var(--site-bg-dark);
}
.section--dark .section__main__title,
.section--obsidian .section__main__title {
  color: var(--pure);
}
.section__main__title--services {
  color: #0a1628;
}
.section__lede {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--graphite);
  max-width: 580px;
  margin: 0;
}
.section--dark .section__lede,
.section--obsidian .section__lede {
  color: rgba(255, 255, 255, 0.72);
}
.section__rule {
  width: 56px;
  height: 1px;
  background: var(--site-gold);
  border: 0;
  margin: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--bone);
  border-bottom: 1px solid var(--bone);
}
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.service {
  padding: 32px 32px;
  border-right: 1px solid var(--bone);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
  background: var(--paper);
  transition: background 280ms var(--ease);
  cursor: pointer;
  position: relative;
}
.service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--site-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--ease);
}
.service:hover::before {
  transform: scaleX(1);
}
.service:hover {
  background: var(--ivory);
}
.service:last-child {
  border-right: 0;
}
@media (max-width: 900px) {
  .service:nth-child(2n) {
    border-right: 0;
  }
  .service:nth-child(-n + 2) {
    border-bottom: 1px solid var(--bone);
  }
}
@media (max-width: 560px) {
  .service {
    border-right: 0 !important;
    border-bottom: 1px solid var(--bone) !important;
  }
  .service:last-child {
    border-bottom: 0 !important;
  }
}
.service__icon {
  width: 28px;
  height: 28px;
  color: var(--site-gold);
  margin-bottom: 4px;
}
.service__icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.25;
}
.service__name {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}
.icon__name__wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.service__desc {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--graphite);
  margin: 0;
}
.service__cta {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--site-gold);
  margin-top: auto;
}

.service__image {
  position: relative;
  height: 160px;
  overflow: hidden;
  border-radius: 15px;
}

.service__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.015)
  );
}

.service__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

/* ============================================================
   FLEET / PRICING
   ============================================================ */
.fleet {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 900px) {
  .fleet {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.v-card {
  background: transparent;
  border: 1px solid var(--bone);
  display: flex;
  flex-direction: column;
  transition:
    border-color 280ms var(--ease),
    transform 320ms var(--ease);
}
.v-card:hover {
  border-color: var(--ink);
}
/* ── Carousel wrapper (replaces .v-card__photo) ─────────────────── */
.v-card__carousel {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  /* background: var(--site-bg-dark, #0b0b0c); */
}

/* Slides */
.v-card__slides {
  display: flex;
  width: 100%;
  height: 100%;
}
.v-card__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 420ms var(--ease, ease);
  pointer-events: none;
  user-select: none;
}
.v-card__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Badge (unchanged position, now sits inside carousel) */
.v-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
  background: var(--site-gold);
  color: var(--obsidian);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 10px;
}

/* Prev / Next arrows */
.v-card__arrow {
  position: absolute;
  top: 90%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  opacity: 1;
  transition:
    opacity 220ms var(--ease, ease),
    background 180ms var(--ease, ease);
  padding: 0;
}
.v-card__arrow svg {
  width: 16px;
  height: 16px;
  pointer-events: none;
}
.v-card__arrow--prev {
  left: 10px;
}
.v-card__arrow--next {
  right: 10px;
}
.v-card__arrow:hover {
  background: rgba(11, 11, 12, 0.8);
}

/* Show arrows on card hover */
.v-card:hover .v-card__arrow {
  opacity: 1;
}

/* Dot indicators */
.v-card__dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 6px;
  align-items: center;
}
.v-card__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  transition:
    background 220ms var(--ease, ease),
    transform 220ms var(--ease, ease);
}
.v-card__dot.is-active {
  background: var(--site-gold);
  transform: scale(1.35);
}
.v-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--site-gold);
  color: var(--obsidian);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 10px;
}
.v-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.v-card__cat {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--site-gold);
}
.v-card__name {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}
.v-card__meta {
  display: flex;
  gap: 20px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--mist);
  padding: 16px 0;
  border-top: 1px solid var(--bone);
  border-bottom: 1px solid var(--bone);
}
.v-card__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.v-card__meta-item svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.25;
  color: var(--mist);
}
.v-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}
.v-card__price-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
}
.v-card__price {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: var(--ink);
}
.v-card__price em {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 13px;
  color: var(--graphite);
  letter-spacing: 0.04em;
}

/* ============================================================
   BOOKING FORM
   ============================================================ */
.booking {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
}
@media (max-width: 980px) {
  .booking {
    grid-template-columns: 1fr;
  }
}
.booking__copy {
  background: var(--site-bg-dark);
  color: var(--pure);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (max-width: 720px) {
  .booking__copy {
    padding: 56px 24px;
  }
}
.booking__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--pure);
}
.booking__title em {
  font-style: italic;
  color: var(--site-gold);
}
.booking__points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 16px 0 24px;
}
.booking__point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.booking__point-icon {
  width: 22px;
  height: 22px;
  color: var(--site-gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.booking__point-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.25;
}
.booking__point span {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}
.booking__call {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.booking__call-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.booking__call-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--site-gold);
  letter-spacing: 0.02em;
}

.booking__form {
  background: var(--paper);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 720px) {
  .booking__form {
    padding: 56px 24px;
  }
}
.booking__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 560px) {
  .booking__form-grid {
    grid-template-columns: 1fr;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field__label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--graphite);
}
.field__input,
.field__select {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--bone);
  padding: 12px 0;
  outline: none;
  border-radius: 0;
  transition: border-color 220ms var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.field__input:focus,
.field__select:focus {
  border-bottom-color: var(--site-gold);
}
.field__input::placeholder {
  color: var(--mist);
}
.field__select {
  background: transparent;
}

.confirm-card {
  background: var(--paper);
  padding: 56px 40px;
  text-align: center;
  border: 1px solid var(--site-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: fadeUp 480ms var(--ease);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.confirm-card__check {
  width: 56px;
  height: 56px;
  border: 1px solid var(--site-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--site-gold);
}
.confirm-card__check svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}
.confirm-card__title {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  margin: 0;
  color: var(--ink);
}
.confirm-card__body {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--graphite);
  line-height: 1.6;
  margin: 0;
  max-width: 360px;
}
.confirm-card__ref {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--site-gold);
  margin-top: 8px;
}

/* ============================================================
   GOOGLE REVIEWS
   ============================================================ */
.reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}
.reviews-rating {
  display: flex;
  align-items: center;
  gap: 18px;
}
.reviews-rating__num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--ink);
}
.reviews-rating__details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stars {
  display: flex;
  gap: 3px;
  color: var(--site-gold);
  font-size: 18px;
  letter-spacing: 2px;
}
.stars--small {
  font-size: 13px;
  letter-spacing: 1px;
}
.reviews-rating__count {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--graphite);
}
.reviews-rating__count strong {
  color: var(--ink);
}
.reviews-google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--graphite);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
.review {
  background: var(--paper);
  border: 1px solid var(--bone);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 240ms var(--ease);
}
.review:hover {
  border-color: var(--ink);
}
.review__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--site-bg-dark);
  color: var(--site-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
}
.review__name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
}
.review__when {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--mist);
  letter-spacing: 0.04em;
}
.review__body {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.65;
  color: var(--graphite);
  margin: 0;
}
.review__google {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
  padding-top: 16px;
  border-top: 1px solid var(--bone);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

/* ============================================================
   AREAS
   ============================================================ */
.areas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 900px) {
  .areas {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .areas {
    grid-template-columns: 1fr;
  }
}
.area {
  padding: 40px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 240ms var(--ease);
}
.area:last-child {
  border-right: 0;
}
@media (max-width: 900px) {
  .area:nth-child(2n) {
    border-right: 0;
  }
  .area:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 560px) {
  .area {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }
  .area:last-child {
    border-bottom: 0 !important;
  }
}
.area:hover {
  background: rgba(201, 160, 78, 0.05);
}
.area__pin {
  width: 22px;
  height: 22px;
  color: var(--site-gold);
  margin-bottom: 8px;
}
.area__pin svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.25;
}
.area__name {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.05;
  margin: 0;
  color: var(--pure);
}
.area__cities {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--obsidian);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 900px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 560px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
}
.footer__brand-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.92);
  margin: 20px 0 0;
  max-width: 360px;
  line-height: 1.3;
}
.footer__phone {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 28px;
}
.footer__phone-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.footer__phone-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--site-gold);
}
.footer__col h5 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--site-gold);
  margin: 0 0 22px;
}
.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col a {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: color 200ms;
}
.footer__col a:hover {
  color: var(--site-gold);
}
.footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
}
.footer__legal a {
  transition: color 200ms;
}
.footer__legal a:hover {
  color: var(--site-gold);
}

/* ============================================================
   STICKY MOBILE ACTION BAR
   ============================================================ */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: none;
  background: var(--obsidian);
  border-top: 1px solid rgba(201, 160, 78, 0.3);
  padding: 8px;
  gap: 6px;
  box-shadow: 0 -8px 24px rgba(11, 11, 12, 0.3);
}
.mobile-bar__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 4px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pure);
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: color 200ms;
}
.mobile-bar__btn svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}
.mobile-bar__btn:hover {
  color: var(--site-gold);
}
.mobile-bar__btn--primary {
  background: var(--site-gold);
  color: var(--obsidian);
}
.mobile-bar__btn--primary:hover {
  background: var(--site-gold-soft);
  color: var(--obsidian);
}
@media (max-width: 720px) {
  .mobile-bar {
    display: flex;
  }
  body {
    padding-bottom: 84px;
  }
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  padding: 100px 0;
  text-align: center;
  background: var(--site-bg-dark);
  color: var(--pure);
  position: relative;
  overflow: hidden;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  filter: brightness(0.7);
}
.cta-band__inner {
  position: relative;
  z-index: 2;
}
.cta-band__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--pure);
  text-wrap: balance;
}
.cta-band__title em {
  font-style: italic;
  color: var(--site-gold);
}
.cta-band__lede {
  font-family: var(--font-sans);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.cta-band__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   GALLERY (interior shots)
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery__cell {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  background-color: var(--site-bg-dark);
  position: relative;
  overflow: hidden;
  transition: transform 360ms var(--ease);
  cursor: zoom-in;
}
.gallery__cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(11, 11, 12, 0.4) 100%
  );
}
.gallery__cell:hover {
  transform: scale(0.99);
}
