:root {
  --brass: #A8895C;
  --bg: #0B0A08;
  --bg-alt: #161210;
  --bg-dark: #080706;
  --text: #F3EEE3;
  --text-muted: #C6BCAC;
  --text-dim: #A99C88;
  --text-faint: #877D6E;
  --text-faintest: #6E6455;
  --nav-link: #C9BFAF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  /* overflow-x lives on <html> only (above) — setting it here too is
     redundant and silently breaks position:sticky everywhere on the site
     (a well-known browser quirk: overflow-x set with no overflow-y forces
     overflow-y to a non-"visible" computed value, which stops body from
     acting as the true viewport scroller that sticky elements need). */
  position: relative;
}
body.nav-open { overflow: hidden; }

::selection { background: var(--brass); color: var(--bg); }

a { color: inherit; }
img { display: block; }

@keyframes frlPulse {
  0%   { box-shadow: 0 0 0 0 rgba(168,137,92,.45); }
  70%  { box-shadow: 0 0 0 16px rgba(168,137,92,0); }
  100% { box-shadow: 0 0 0 0 rgba(168,137,92,0); }
}
@keyframes frlSonar {
  0%   { transform: translate(-50%,-50%) scale(.3); opacity: .95; }
  60%  { opacity: .35; }
  100% { transform: translate(-50%,-50%) scale(2.6); opacity: 0; }
}

.eyebrow {
  font-size: 11px;
  letter-spacing: .34em;
  color: var(--brass);
  text-transform: uppercase;
  font-weight: 500;
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 3.4vw, 48px);
  line-height: 1.1;
  margin: 18px 0 22px;
  text-wrap: balance;
}

.section-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
  max-width: 560px;
}
.section-desc--narrow { max-width: 460px; }

.btn {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: .24em;
  font-weight: 500;
  text-decoration: none;
  padding: 17px 36px;
  transition: filter .3s, background .3s, color .3s;
}
.btn--solid { background: var(--brass); color: #14100B; }
.btn--solid:hover { filter: brightness(1.1); }
.btn--outline { border: 1px solid rgba(168,137,92,.6); color: var(--brass); padding: 16px 35px; }
.btn--outline:hover { background: var(--brass); color: #14100B; }
.btn--outline-alt:hover { background: rgba(168,137,92,.1); color: var(--brass); }
.btn--nav {
  font-size: 11px;
  padding: 12px 24px;
  border: 1px solid var(--brass);
  background: var(--brass);
  color: #0B0A08;
  text-decoration: none;
  transition: filter .3s;
}
.btn--nav:hover { filter: brightness(1.1); }

.link-underline {
  font-size: 11.5px;
  letter-spacing: .24em;
  font-weight: 400;
  color: var(--nav-link);
  text-decoration: none;
  border-bottom: 1px solid rgba(168,137,92,.4);
  padding-bottom: 6px;
  transition: color .3s;
}
.link-underline:hover { color: var(--brass); }
.link-underline--brass {
  color: var(--brass);
  font-weight: 500;
  transition: filter .3s;
}
.link-underline--brass:hover { filter: brightness(1.2); }

/* ============ NAV ============ */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 26px 44px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
  white-space: nowrap;
  flex: none;
  margin-right: auto;
}
.nav__mark { height: 56px; width: auto; }
.nav__links {
  display: flex;
  gap: 34px;
  align-items: center;
  flex: none;
}
.nav__link {
  font-size: 11.5px;
  letter-spacing: .22em;
  color: var(--nav-link);
  text-decoration: none;
  font-weight: 400;
  white-space: nowrap;
  transition: color .2s;
}
.nav__link:hover { color: var(--brass); }
.nav__link--active { color: var(--brass); }

/* Click-driven (not hover-only) so it behaves identically on touch and
   mouse — the map and Partners cards elsewhere on this site both had to
   learn this lesson the hard way. */
.nav__dropdown { position: relative; }
.nav__dropdown-trigger {
  background: none;
  border: none;
  font-family: inherit;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
}
.nav__dropdown-caret {
  width: 7px; height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .25s;
}
.nav__dropdown.is-open .nav__dropdown-caret { transform: translateY(1px) rotate(225deg); }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 232px;
  background: #0F0C09;
  border: 1px solid rgba(168,137,92,.25);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 30;
}
.nav__dropdown.is-open .nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-link {
  display: block;
  padding: 11px 16px;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--nav-link);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.nav__dropdown-link:hover { color: var(--brass); background: rgba(168,137,92,.08); }
.nav__dropdown-link--active { color: var(--brass); }

.nav__phone {
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--text-faint);
  text-decoration: none;
  white-space: nowrap;
  flex: none;
  transition: color .3s;
}
.nav__phone:hover { color: var(--brass); }
.nav__phones {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: none;
  color: var(--brass);
}
.nav__phone-icon { flex: none; }
.nav__phone-numbers {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.1;
}
.nav__phone-numbers .nav__phone { font-size: 13px; letter-spacing: .06em; color: #BFA06B; }
.nav__phone-numbers .nav__phone:hover { color: var(--brass); }

/* Mobile-only one-tap call button. On desktop the phone numbers already
   sit inline in the nav (.nav__phones above) and stay untouched — this
   exists only because .nav__phones lives inside .nav__links, which
   becomes an off-canvas drawer below 900px, so without this a mobile
   visitor would have to open the full menu just to call. */
.nav__call {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: none;
  border: 1px solid rgba(168,137,92,.5);
  color: var(--brass);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.nav__call:hover { background: var(--brass); color: #0B0A08; }

.nav__toggle {
  display: none;
  flex: none;
  width: 34px; height: 34px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 30;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: transform .3s, opacity .3s;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 114vh;
  display: flex;
  align-items: flex-end;
}
.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__scrim-x {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(11,10,8,.92) 0%, rgba(11,10,8,.506) 52%, rgba(11,10,8,.12) 100%);
}
.hero__scrim-y {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(11,10,8,.55) 0%, rgba(11,10,8,0) 22%, rgba(11,10,8,0) 55%, #0B0A08 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 180px 56px 120px;
  max-width: 780px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(46px, 5.2vw, 74px);
  line-height: 1.04;
  margin: 20px 0 24px;
  color: var(--text);
  text-wrap: balance;
}
.hero__cities {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 18px 0 26px;
}
.hero__desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
}
.hero__stats {
  margin-top: 64px;
  font-size: 11.5px;
  letter-spacing: .28em;
  color: var(--text-faint);
}

/* ============ GLOBAL REACH ============ */
.reach {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid rgba(168,137,92,.14);
  padding: 130px 56px;
}
.reach__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reach__scrim-y {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(9,8,6,.9) 0%, rgba(9,8,6,.5) 22%, rgba(9,8,6,.12) 44%, rgba(9,8,6,0) 60%, #0B0A08 100%);
}
.reach__scrim-x {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(9,8,6,.62) 0%, rgba(9,8,6,.3) 34%, rgba(9,8,6,.06) 58%, rgba(9,8,6,0) 100%);
}
.reach__scrim-radial {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 46% 30% at 24% 84%, rgba(9,8,6,.55) 0%, rgba(9,8,6,.2) 55%, rgba(9,8,6,0) 80%);
}
.reach__grid {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 90px;
  align-items: center;
}
.reach__desc { color: #D9D0C1; margin-bottom: 44px; }
.stats {
  border: 1px solid rgba(168,137,92,.3);
  border-radius: 3px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  background: rgba(9,8,6,.5);
  backdrop-filter: blur(2px);
}
.stats__item {
  padding: 30px 18px;
  text-align: center;
  border-right: 1px solid rgba(168,137,92,.22);
  color: var(--brass);
}
.stats__item:last-child { border-right: none; }
.stats__num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--text);
  margin-top: 14px;
}
.stats__label {
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--brass);
  text-transform: uppercase;
  margin-top: 6px;
}

.map { position: relative; }
.map__canvas { width: 100%; display: block; box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.map__caption {
  margin-top: 20px;
  text-align: center;
  font-size: 11px;
  letter-spacing: .24em;
  color: #D8CDB9;
  text-shadow: 0 1px 8px rgba(0,0,0,.7);
  text-transform: uppercase;
}

.city {
  position: absolute;
  transform: translate(-50%,-50%);
  padding: 11px;
  cursor: pointer;
  z-index: 5;
}
.city__pulse {
  position: absolute;
  left: 50%; top: 50%;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(168,137,92,.95);
  box-shadow: 0 0 8px 1px rgba(168,137,92,.5);
  animation: frlSonar 2.4s ease-out infinite;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%,-50%) scale(.3);
}
.city--key .city__pulse { width: 34px; height: 34px; }
.city__pin {
  position: relative;
  z-index: 2;
  display: block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brass);
  border: 1px solid rgba(9,8,6,.45);
  box-shadow: 0 0 0 4px rgba(168,137,92,.22), 0 0 10px 2px rgba(168,137,92,.3);
  transition: transform .22s;
}
.city--key .city__pin { width: 9px; height: 9px; }
.city:hover .city__pin, .city.is-active .city__pin { transform: scale(1.3); }
.city__label {
  position: absolute;
  left: 50%; top: -18px;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--nav-link);
  display: none;
  pointer-events: none;
}
.city__tooltip {
  position: absolute;
  left: 50%; bottom: calc(100% + 7px);
  transform: translateX(-50%);
  background: var(--bg);
  border: 1px solid rgba(168,137,92,.4);
  padding: 11px 16px;
  z-index: 6;
  pointer-events: none;
  opacity: 0;
  transition: opacity .15s;
  white-space: nowrap;
}
.city:hover .city__tooltip, .city.is-active .city__tooltip { opacity: 1; }
.city__tooltip-name {
  font-size: 11.5px;
  letter-spacing: .2em;
  color: var(--text);
  text-transform: uppercase;
}
.city__tooltip-note {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ============ FLEET ============ */
.fleet { padding: 140px 56px; background: var(--bg); }
.fleet__head {
  max-width: 1280px;
  margin: 0 auto 64px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.fleet__head .section-desc { margin-top: -6px; }
.fleet__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 36px;
}
.car { cursor: pointer; text-decoration: none; display: block; }
.car__image { width: 100%; height: 430px; object-fit: cover; }
.car__line {
  display: block;
  height: 1px;
  margin-top: 18px;
  background: rgba(168,137,92,.28);
  width: 44px;
  transition: width .55s cubic-bezier(.25,.6,.2,1), background .35s;
}
.car:hover .car__line { width: 100%; background: var(--brass); }
.car__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}
.car__name {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  color: var(--text);
}
.car__link {
  flex: none;
  font-size: 11px;
  letter-spacing: .2em;
  font-weight: 500;
  color: var(--brass);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .35s, transform .35s;
}
.car:hover .car__link { opacity: 1; transform: translateX(0); }

/* ============ EXPERIENCE ============ */
.experience { padding: 150px 56px; background: var(--bg); }
.experience__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 80px;
  align-items: center;
}
.experience__grid .section-desc { margin-bottom: 44px; }
.experience__media-wrap {
  opacity: 0;
  transform: translateX(70px);
  transition: transform 1.3s cubic-bezier(.16,.84,.24,1), opacity 1.1s ease-out;
}
.experience__media-wrap.is-visible { opacity: 1; transform: translateX(0); }
.experience__media {
  width: 100%;
  height: 640px;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.25,.6,.2,1);
}
.experience__media-wrap:hover .experience__media { transform: scale(1.02); }

/* ============ WHY ============ */
.why {
  position: relative;
  overflow: hidden;
  padding: 140px 56px;
  background: var(--bg);
}
.why__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.why__scrim-y {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, #0B0A08 0%, rgba(11,10,8,.32) 16%, rgba(22,17,11,.12) 50%, rgba(11,10,8,.34) 86%, #0B0A08 100%);
}
.why__scrim-x {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(11,10,8,.8) 0%, rgba(11,10,8,.44) 46%, rgba(11,10,8,.1) 100%);
}
.why__grid {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.why__eyebrow { margin-bottom: 44px; }
.why__list {
  border: 1px solid rgba(168,137,92,.22);
  border-radius: 3px;
  padding: 8px 36px;
  background: rgba(11,10,8,.42);
}
.why__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(168,137,92,.18);
  color: var(--brass);
}
.why__item--last { border-bottom: none; }
.why__icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(168,137,92,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why__title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text);
}
.why__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}
.why__media {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  align-self: stretch;
  border: 1px solid rgba(168,137,92,.25);
}

/* ============ SERVICES ============ */
.services {
  padding: 140px 56px;
  background: var(--bg-alt);
  border-top: 1px solid rgba(168,137,92,.14);
}
.services__title { max-width: 1280px; margin: 18px auto 70px; }
.services > .eyebrow { max-width: 1280px; margin: 0 auto; display: block; }
.services__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 48px;
  row-gap: 64px;
}
.service {
  display: block;
  text-decoration: none;
  border-top: 1px solid rgba(168,137,92,.25);
  padding-top: 26px;
  transition: border-color .35s;
}
.service:hover { border-top-color: var(--brass); }
.service__image { width: 100%; height: 180px; object-fit: cover; margin-bottom: 20px; }
.service__title {
  font-size: 14px;
  letter-spacing: .16em;
  font-weight: 500;
  color: var(--text);
  text-transform: uppercase;
}
.service__text {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-dim);
  margin: 12px 0 0;
}

/* ============ PARTNERS (homepage teaser) ============ */
.partners {
  position: relative;
  padding: 150px 56px;
  background: #17120D;
  overflow: hidden;
}
.partners__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.partners__scrim-y {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, #0B0A08 0%, rgba(11,10,8,.42) 20%, rgba(28,21,14,.2) 50%, rgba(11,10,8,.5) 82%, #0B0A08 100%);
}
.partners__scrim-tint { position: absolute; inset: 0; pointer-events: none; background: rgba(20,15,10,.1); }
.partners__content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; }
.partners__head { text-align: center; max-width: 760px; margin: 0 auto 72px; }
.partners__title { margin: 18px 0 20px; }
.partners__desc { font-size: 16px; font-weight: 300; line-height: 1.75; color: #DAD1C2; margin: 0; }

.partners__grid { position: relative; height: 780px; margin-top: 20px; }
.partners__grid-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 89px, rgba(168,137,92,.13) 89px 90px),
    repeating-linear-gradient(-45deg, transparent 0 89px, rgba(168,137,92,.13) 89px 90px);
}
.partner {
  position: absolute;
  transform: translate(-50%,-50%);
  text-decoration: none;
  cursor: pointer;
  z-index: 3;
}
.partner--featured { z-index: 4; }
.partner:hover, .partner.is-active { z-index: 6; }
.partner__diamond {
  position: absolute;
  inset: 0;
  transform: rotate(45deg);
  background: rgba(9,8,6,.42);
  border: 1px solid rgba(168,137,92,.42);
  box-shadow: 0 10px 26px rgba(0,0,0,.34);
  transition: background .45s, border-color .4s, box-shadow .45s;
}
.partner--featured .partner__diamond {
  background: var(--brass);
  border-color: transparent;
  box-shadow: 0 26px 62px rgba(0,0,0,.55);
}
.partner:hover .partner__diamond,
.partner.is-active .partner__diamond {
  background: var(--brass);
  border-color: var(--brass);
  box-shadow: 0 26px 62px rgba(0,0,0,.55);
}
.partner__logo {
  position: absolute;
  left: 50%; top: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-50%,-50%) scale(1);
  filter: brightness(0) invert(1);
  opacity: .9;
  transition: transform .5s cubic-bezier(.16,.84,.24,1), opacity .4s;
  pointer-events: none;
}
.partner--featured .partner__logo { opacity: 1; }
.partner:hover .partner__logo,
.partner.is-active .partner__logo { opacity: 1; transform: translate(-50%,-50%) scale(1.06); }
.partner__plate {
  position: absolute;
  top: calc(100% - 6px); left: 50%;
  z-index: 8;
  transform: translateX(-50%) translateY(10px);
  white-space: nowrap;
  text-align: center;
  padding: 13px 26px 15px;
  background: rgba(9,8,6,.86);
  border: 1px solid rgba(168,137,92,.4);
  box-shadow: 0 20px 46px rgba(0,0,0,.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .38s ease, transform .48s cubic-bezier(.16,.84,.24,1);
}
.partner:hover .partner__plate,
.partner.is-active .partner__plate { opacity: 1; transform: translateX(-50%) translateY(0); }
.partner__plate-name {
  display: block;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
  color: var(--text);
}
.partner__plate-rule { display: block; width: 30px; height: 1px; background: var(--brass); margin: 9px auto 8px; }
.partner__plate-city { display: block; font-size: 9.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--brass); }

.partners__footer { display: flex; flex-direction: column; align-items: center; gap: 26px; margin-top: 44px; }
.partners__footer-label { font-size: 11px; letter-spacing: .22em; color: #9A8F7C; text-transform: uppercase; }
.btn--partners {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  background: rgba(11,10,8,.42);
  backdrop-filter: blur(3px);
  border-color: rgba(168,137,92,.55);
}
.btn--partners:hover { background: var(--brass); border-color: var(--brass); color: #0B0A08; }
.btn--partners span { font-size: 14px; line-height: 1; }

/* ============ TESTIMONIALS ============ */
.testimonials {
  position: relative;
  padding: 150px 56px;
  background: var(--bg-dark);
  overflow: hidden;
}
.testimonials__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.testimonials__scrim-x {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(8,7,6,.94) 0%, rgba(8,7,6,.8) 34%, rgba(8,7,6,.55) 62%, rgba(8,7,6,.85) 100%);
}
.testimonials__scrim-y {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, #080706 0%, rgba(8,7,6,0) 16%, rgba(8,7,6,0) 78%, #080706 100%);
}
.testimonials__content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; }
.testimonials__title { max-width: 640px; margin: 18px 0 0; }
.testimonials__carousel { display: flex; align-items: center; gap: 20px; margin-top: 76px; }
.testimonials__track-wrap { flex: 1; overflow: hidden; min-width: 0; }
.testimonials__grid {
  display: flex;
  gap: 32px;
  transition: transform .5s cubic-bezier(.25,.7,.3,1);
}
.testimonial {
  flex: 0 0 calc((100% - 64px) / 3);
  min-width: 0;
  background: rgba(20,17,13,.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(168,137,92,.3);
  border-radius: 2px;
  padding: 40px 34px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  transition: border-color .35s;
}
.testimonial:hover { border-color: rgba(168,137,92,.65); }

.testimonials__nav {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(168,137,92,.4);
  background: transparent;
  color: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, opacity .25s;
}
.testimonials__nav:hover { background: var(--brass); color: #14100B; }
.testimonials__nav:disabled { opacity: .3; cursor: default; background: none; color: var(--brass); }
.testimonials__nav[hidden] { display: none; }

.testimonials__dots { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.testimonials__dots[hidden] { display: none; }
.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(168,137,92,.5);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background .25s, border-color .25s, transform .25s;
}
.testimonials__dot:hover { border-color: var(--brass); }
.testimonials__dot.is-active { background: var(--brass); border-color: var(--brass); transform: scale(1.2); }
.testimonial__quote {
  font-family: var(--serif);
  font-size: 60px;
  line-height: .4;
  color: var(--brass);
  text-shadow: 0 0 24px rgba(168,137,92,.5);
}
.testimonial__text {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.55;
  color: var(--text);
  margin: 26px 0 30px;
}
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(168,137,92,.35), rgba(168,137,92,.08));
  border: 1px solid rgba(168,137,92,.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 10.5px; letter-spacing: .1em; color: var(--text);
}
.testimonial__meta {
  font-size: 11.5px;
  letter-spacing: .18em;
  color: var(--nav-link);
  text-transform: uppercase;
  line-height: 1.7;
}
.testimonial__stars { display: flex; gap: 3px; margin-bottom: 4px; }

.testimonial--more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-decoration: none;
  text-align: center;
  border-style: dashed;
  transition: border-color .35s, background .35s;
}
.testimonial--more:hover { background: rgba(168,137,92,.06); border-color: rgba(168,137,92,.65); }
.testimonial--more__arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(168,137,92,.45);
  color: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, color .3s, border-color .3s;
}
.testimonial--more:hover .testimonial--more__arrow { background: var(--brass); color: #14100B; }
.testimonial--more__text {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  color: var(--text);
}
.testimonial--more__google {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.testimonial--more__g {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(168,137,92,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-dim);
  text-transform: none;
  letter-spacing: 0;
}
.testimonial__name {
  display: block;
  font-size: 12.5px;
  letter-spacing: .04em;
  color: var(--text);
  text-decoration: none;
  font-weight: 400;
  margin-bottom: 3px;
}
a.testimonial__name:hover { color: var(--brass); }
.testimonial__avatar--photo { object-fit: cover; background: rgba(168,137,92,.15); }

.testimonials__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.testimonials__rating-stars { display: flex; gap: 3px; }
.testimonials__rating-text {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .04em;
  color: var(--text-muted);
}
.testimonials__attribution {
  display: inline-block;
  margin-top: 40px;
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-decoration: none;
  border-bottom: 1px solid rgba(168,137,92,.3);
  padding-bottom: 3px;
  transition: color .2s;
}
.testimonials__attribution:hover { color: var(--brass); }

/* ============ RESERVE ============ */
.reserve {
  position: relative;
  padding: 150px 56px;
  text-align: center;
  background: linear-gradient(180deg,#080706 0%,#15100C 100%);
}
.reserve__line {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(620px,70%);
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(168,137,92,.55),transparent);
}
.reserve__title { margin: 22px auto 44px; max-width: 640px; }
.reserve__actions { display: flex; justify-content: center; gap: 20px; }
.reserve__contact {
  margin-top: 40px;
  font-size: 12.5px;
  font-weight: 300;
  letter-spacing: .06em;
  color: var(--text-faint);
}
.reserve__contact a { color: var(--nav-link); text-decoration: none; }

/* ============ CONCIERGE ============ */
.concierge { padding: 0 56px 90px; background: var(--bg-dark); }
.concierge__inner {
  max-width: 1280px;
  margin: 0 auto;
  border: 1px solid rgba(168,137,92,.28);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 40px;
}
.concierge__left { display: flex; align-items: center; gap: 22px; }
.concierge__icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(168,137,92,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex: none;
  color: var(--brass);
}
.concierge__title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--text); }
.concierge__text { font-size: 13px; font-weight: 300; color: var(--text-dim); margin-top: 4px; }

/* ============ FOOTER ============ */
.footer { background: var(--bg-dark); border-top: 1px solid rgba(168,137,92,.16); padding: 90px 56px 44px; }
.footer__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr .8fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer__lockup { width: 230px; display: block; }
.footer__tagline { font-size: 12.5px; font-weight: 300; color: var(--text-faint); letter-spacing: .06em; margin-top: 6px; }
.footer__heading {
  font-size: 10.5px;
  letter-spacing: .28em;
  color: var(--brass);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
}
.footer__links, .footer__contact { display: flex; flex-direction: column; gap: 12px; }
.footer__links a, .footer__contact a {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
  text-decoration: none;
  transition: color .2s;
}
.footer__links a:hover, .footer__contact a:hover { color: var(--text); }
.footer__contact { font-size: 13px; line-height: 1.6; }
.footer__hours { color: var(--text-faintest); }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.footer__social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(168,137,92,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: 10px;
  color: var(--brass);
  transition: background .3s, color .3s;
}
.footer__social a:hover { background: var(--brass); color: #14100B; }
.footer__bottom {
  max-width: 1280px;
  margin: 76px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-top: 26px;
  border-top: 1px solid rgba(243,238,227,.07);
}
.footer__copy { font-size: 11.5px; font-weight: 300; color: var(--text-faintest); letter-spacing: .06em; }
.footer__values { font-size: 10.5px; letter-spacing: .3em; color: var(--text-faint); text-transform: uppercase; }

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* ---- Tablet: tighten spacing, drop to 2-col grids ---- */
@media (max-width: 1024px) {
  .hero__content { padding: 160px 40px 100px; max-width: 640px; }
  .reach { padding: 100px 40px; }
  .reach__grid { gap: 56px; }
  .fleet, .experience, .why, .services, .partners, .testimonials, .reserve, .concierge, .footer {
    padding-left: 40px;
    padding-right: 40px;
  }
  .fleet { padding-top: 100px; padding-bottom: 100px; }
  .fleet__grid { gap: 24px; }
  .car__image { height: 340px; }
  .experience { padding-top: 110px; padding-bottom: 110px; }
  .experience__grid { gap: 48px; grid-template-columns: 0.9fr 1fr; }
  .experience__media { height: 480px; }
  .why { padding-top: 100px; padding-bottom: 100px; }
  .why__grid { gap: 48px; }
  .why__media { min-height: 400px; }
  .services { padding-top: 100px; padding-bottom: 100px; }
  .services__grid { grid-template-columns: repeat(2,1fr); row-gap: 48px; column-gap: 32px; }
  .partners { padding-top: 110px; padding-bottom: 110px; }
  .testimonials { padding: 110px 40px; }
  .testimonials__grid { gap: 24px; }
  .reserve { padding: 110px 40px; }
  .footer { padding: 70px 40px 36px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ---- Nav collapses to hamburger drawer ---- */
@media (max-width: 900px) {
  .nav { padding: 18px 20px; gap: 14px; }
  .nav__mark { height: 44px; }
  .nav__toggle { display: flex; }
  .nav__call { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(84vw, 360px);
    height: 100vh;
    background: #0F0C09;
    border-left: 1px solid rgba(168,137,92,.2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.16,.84,.24,1);
    overflow-y: auto;
    z-index: 25;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__link {
    font-size: 14px;
    padding: 16px 0;
    width: 100%;
    border-bottom: 1px solid rgba(168,137,92,.14);
  }
  .nav__phones {
    margin-top: 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .nav__phone-numbers .nav__phone { font-size: 15px; }
  .btn--nav { padding: 10px 18px; font-size: 10px; }

  /* Services becomes an inline accordion in the drawer instead of a
     floating panel — there's no room to float anything in a narrow
     off-canvas column. */
  .nav__dropdown-trigger { justify-content: space-between; text-align: left; }
  .nav__dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .nav__dropdown.is-open .nav__dropdown-menu { max-height: 320px; }
  .nav__dropdown-link {
    padding: 13px 0 13px 18px;
    font-size: 13px;
    border-bottom: 1px solid rgba(168,137,92,.1);
  }
}

/* ---- Mobile: single column, compact spacing ---- */
@media (max-width: 640px) {
  /* Logo + Reserve + call icon + hamburger were overflowing the header
     on narrow phones (~390px and below), pushing the hamburger off
     screen entirely. Shrink the logo and tighten everything else. */
  .nav { padding: 16px 12px; gap: 6px; }
  .nav__mark { height: 32px; }
  .btn--nav { padding: 9px 12px; font-size: 9px; letter-spacing: .12em; }
  .nav__call, .nav__toggle { width: 30px; height: 30px; }

  .eyebrow { font-size: 10px; letter-spacing: .26em; }
  .section-title { margin: 14px 0 16px; }
  .btn { padding: 15px 26px; font-size: 10.5px; }

  .hero { min-height: 100vh; }
  .hero__content { padding: 120px 22px 64px; max-width: 100%; }
  .hero__title { font-size: clamp(34px, 9vw, 48px); }
  .hero__cities { font-size: 10.5px; letter-spacing: .16em; margin: 14px 0 20px; }
  .hero__desc { font-size: 15.5px; max-width: 100%; }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: 18px; margin-top: 30px; }
  .hero__stats { margin-top: 40px; font-size: 10px; letter-spacing: .18em; }

  .reach { padding: 72px 22px; }
  .reach__grid { grid-template-columns: 1fr; gap: 40px; }
  .reach__desc { margin-bottom: 28px; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .stats__item { padding: 22px 12px; border-bottom: 1px solid rgba(168,137,92,.22); }
  .stats__item:nth-child(2n) { border-right: none; }
  .stats__item:nth-last-child(-n+2) { border-bottom: none; }
  .map__caption { font-size: 9.5px; letter-spacing: .16em; }
  .city__tooltip { padding: 9px 12px; }
  .city__tooltip-name { font-size: 10.5px; }
  .city__tooltip-note { font-size: 11px; }

  .fleet, .experience, .why, .services, .partners, .testimonials, .reserve, .concierge, .footer {
    padding-left: 22px;
    padding-right: 22px;
  }
  .fleet { padding-top: 76px; padding-bottom: 76px; }
  .fleet__head { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 40px; }
  .fleet__grid { grid-template-columns: 1fr; gap: 40px; }
  .car__image { height: 320px; }
  .car__link { opacity: 1; transform: none; }

  .experience { padding-top: 76px; padding-bottom: 76px; }
  .experience__grid { grid-template-columns: 1fr; gap: 36px; }
  .experience__grid .section-desc { margin-bottom: 30px; }
  .experience__media { height: 320px; }
  .experience__media-wrap { transform: translateY(30px); }
  .experience__media-wrap.is-visible { transform: translateY(0); }

  .why { padding-top: 76px; padding-bottom: 76px; }
  .why__grid { grid-template-columns: 1fr; gap: 32px; }
  .why__list { padding: 4px 22px; }
  .why__media { min-height: 260px; }

  .services { padding-top: 76px; padding-bottom: 76px; }
  .services__title { margin-bottom: 40px; }
  .services__grid { grid-template-columns: 1fr; row-gap: 40px; }
  .service__image { height: 200px; }

  .partners { padding-top: 76px; padding-bottom: 76px; }
  .partners__head { margin-bottom: 40px; }
  .partners__desc { font-size: 15px; }
  .partners__grid { position: static; height: auto; margin-top: 8px; }
  .partners__grid-pattern { display: none; }
  .partners__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .partner {
    position: relative;
    /* Each card also carries inline left/top percentages for the desktop
       diamond layout (e.g. left:70%). Those are inert under position:static
       but become live relative-offsets under position:relative, shoving
       cards sideways off-screen — reset them here. */
    left: auto !important;
    top: auto !important;
    width: auto !important;
    height: auto !important;
    transform: none;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 22px 10px;
  }
  /* Plaza no longer spans both columns — 8 equal cards make a clean 4-row
     grid instead of 7 cards + 1 oversized one leaving a lopsided last row.
     It keeps its permanent gold diamond (set outside this media query) as
     a quieter "featured" cue instead. */
  .partner--featured { grid-column: auto; }
  .partner--featured .partner__diamond { max-width: 160px; }
  .partner__diamond {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 160px;
    aspect-ratio: 1 / 1;
    transform: none;
    border-radius: 6px;
    overflow: hidden;
  }
  .partner__logo {
    grid-column: 1;
    grid-row: 1;
    position: static !important;
    align-self: center;
    justify-self: center;
    width: 60% !important;
    height: 60% !important;
    transform: none !important;
    transition: opacity .3s ease;
  }
  .partner:hover .partner__logo,
  .partner.is-active .partner__logo { transform: none !important; opacity: 0 !important; }
  /* The highlight is now an overlay filling the same square as the diamond
     (same grid cell) instead of a floating box below it, so revealing a
     card's name/city can never spill onto the row underneath — it just
     crossfades in over the logo, in place. */
  .partner__plate {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    /* The base rule (desktop) is position:absolute with left:50%/top:... and
       a translate transform, meant to anchor it below the diamond via
       absolute positioning. Under position:relative here, left/top/transform
       become live relative-offsets instead of absolute coordinates — same
       class of bug as .partner above — so all three must be reset. */
    left: auto;
    top: auto;
    transform: none;
    z-index: 3;
    width: 100%;
    height: 100%;
    max-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px;
    background: rgba(9,8,6,.9);
    border: 1px solid rgba(168,137,92,.4);
    border-radius: 6px;
    box-shadow: none;
    white-space: normal;
  }
  .partner:hover .partner__plate,
  .partner.is-active .partner__plate { transform: none; }
  .partner__plate-name { white-space: normal; font-size: 14.5px; line-height: 1.25; }
  .partner__plate-rule { margin: 7px auto 6px; }
  .partner__plate-city { font-size: 8.5px; }
  .partners__footer { margin-top: 36px; gap: 20px; }

  .testimonials { padding: 76px 22px; }
  .testimonials__carousel { gap: 10px; margin-top: 44px; }
  .testimonials__grid { gap: 16px; }
  .testimonial { flex-basis: 100%; padding: 32px 26px; }
  .testimonials__nav { width: 38px; height: 38px; }
  .testimonials__dots { margin-top: 28px; }

  .reserve { padding: 76px 22px; }
  .reserve__actions { flex-direction: column; gap: 16px; }
  .reserve__actions .btn { width: 100%; text-align: center; }
  .reserve__contact { font-size: 11.5px; line-height: 1.8; }

  .concierge { padding: 0 22px 60px; }
  .concierge__inner { flex-direction: column; align-items: flex-start; gap: 22px; padding: 26px 24px; }
  .concierge__inner .btn { width: 100%; text-align: center; }

  .footer { padding: 60px 22px 32px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__brand { grid-column: auto; }
  .footer__lockup { width: 190px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 14px; margin-top: 48px; }
}

/* ============ WHATSAPP WIDGET ============ */
.wa-widget { position: fixed; right: 26px; bottom: 26px; z-index: 500; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.wa-toggle {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #0B0A08;
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
  transition: transform .25s ease, box-shadow .25s ease;
}
.wa-toggle:hover { transform: scale(1.06); box-shadow: 0 14px 36px rgba(0,0,0,.5); }
.wa-toggle.is-open { background: var(--brass, #A8895C); color: #14100B; }

.wa-panel {
  width: 320px;
  max-width: calc(100vw - 52px);
  background: #14100B;
  border: 1px solid rgba(168,137,92,.28);
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
  overflow: hidden;
  font-family: var(--sans);
}
.wa-panel__head {
  background: #1C1714;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(168,137,92,.2);
}
.wa-panel__title { font-family: var(--serif); font-size: 16px; color: #F3EEE3; }
.wa-panel__subtitle { font-size: 11px; color: #25D366; margin-top: 3px; }
.wa-panel__close { background: none; border: none; color: #A99C88; font-size: 22px; line-height: 1; cursor: pointer; padding: 0; }
.wa-panel__close:hover { color: #F3EEE3; }
.wa-panel__body { padding: 18px; }
.wa-bubble {
  background: #22201A;
  color: #C6BCAC;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.6;
  padding: 12px 14px;
  border-radius: 2px 10px 10px 10px;
}
.wa-panel__form { display: flex; align-items: flex-end; gap: 10px; padding: 0 18px 16px; }
.wa-panel__input {
  flex: 1;
  resize: none;
  background: #0B0A08;
  border: 1px solid rgba(168,137,92,.25);
  border-radius: 2px;
  color: #F3EEE3;
  font-family: var(--sans);
  font-size: 13.5px;
  padding: 10px 12px;
}
.wa-panel__input:focus { outline: none; border-color: var(--brass, #A8895C); }
.wa-panel__send {
  width: 38px; height: 38px; flex: none;
  border-radius: 50%;
  background: #25D366;
  color: #0B0A08;
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.wa-panel__send:hover { filter: brightness(1.08); }
.wa-panel__fallback {
  display: block;
  text-align: center;
  font-size: 11.5px;
  color: #877D6E;
  text-decoration: none;
  border-top: 1px solid rgba(168,137,92,.14);
  margin: 0 18px;
  padding: 12px 0 16px;
}
.wa-panel__fallback:hover { color: #C6BCAC; }

@media (max-width: 640px) {
  .wa-widget { right: 16px; bottom: 16px; }
  .wa-toggle { width: 52px; height: 52px; }
  .wa-panel { width: calc(100vw - 32px); }
}
