/* =====================================================================
   styles.css — the ONLY stylesheet on the Luxx Villas staging site.

   WHAT THIS SKINS
   The markup in tools/build.js mirrors limitlessvillasmiami.com section
   for section (the operator's named reference, instructed twice). This
   file gives that structure OUR skin: the operator's standing black/gold
   ruling and the Playfair Display + Manrope pairing he approved on the
   sibling chauffeur site.

   Reference shape language, kept because it is what he pointed at:
     - very large corner radii on photographic cards (32-40px), medium on
       controls (14-16px), full pills on primary CTAs
     - image-forward cards: a 4:3 photo occupying the top half of the card
     - hairline 1px rules at rgba(255,255,255,.05-.14) instead of borders
     - tiny 9-10px uppercase labels at wide tracking above every value
     - a big display figure for the rate, a whisper-sized unit beside it
   Their palette (near-black + champagne) is NOT copied; ours is the
   ruled #0A0A0A / #141414 / #C9A24B.

   Measured contrast on the ruled palette (WCAG AA: 4.5:1 normal text,
   3:1 large text):
     #FFFFFF on #0A0A0A ......... 20.0:1   body/display
     #B3B3B3 on #0A0A0A .........  9.4:1   secondary prose
     #C9A24B on #0A0A0A .........  7.7:1   gold accents, links
     #8A8A8A on #0A0A0A .........  5.1:1   the faintest label used
     #0A0A0A on #C9A24B .........  7.7:1   gold-filled buttons
   Nothing lighter than #8A8A8A carries text anywhere in this file.

   ONE DELIBERATE DEPARTURE FROM THE REFERENCE'S TYPE TREATMENT: their
   sans headings are set in synthetic italic. Manrope ships no italic
   cut, so faux-obliquing it would be a rendering artefact rather than a
   design. Italic is used only on Playfair, which has a real italic in
   the loaded subset — same contrast, honest glyphs.
   ===================================================================== */

/* ---------------------------------------------------------------------
   tokens
   --------------------------------------------------------------------- */
:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-2: #191919;
  --gold: #c9a24b;
  --text: #ffffff;
  --muted: #b3b3b3;
  --faint: #8a8a8a;
  --line: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.05);
  --line-strong: rgba(255, 255, 255, 0.14);

  --display: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --body: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;

  --wrap: 1280px;
  --pad: clamp(1.15rem, 4vw, 3rem);
  --r-card: 2rem;
  --r-shot: 1.5rem;
  --r-ctl: 0.875rem;
  --mast-h: 74px;

  /* the reference's most-repeated typographic unit */
  --label-size: 0.625rem;
  --label-track: 0.18em;
}

@media (min-width: 900px) {
  :root {
    --r-card: 2.25rem;
    --mast-h: 86px;
  }
}

/* ---------------------------------------------------------------------
   reset + base
   --------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* the fixed masthead must not cover an in-page anchor target */
  scroll-padding-top: calc(var(--mast-h) + 1rem);
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  /* belt and braces against a stray wide child producing a sideways
     scrollbar — every wide element below is also individually
     constrained or given its own overflow container */
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
p,
dl,
dd,
figure {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.vh {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--gold);
  color: #0a0a0a;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  border-radius: 0 0 var(--r-ctl) 0;
}
.skip-link:focus {
  left: 0;
}

.ic {
  flex: none;
  vertical-align: middle;
}

.gold {
  color: var(--gold);
}

/* ---------------------------------------------------------------------
   shared layout primitives
   --------------------------------------------------------------------- */
.band {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: clamp(3rem, 8vw, 6rem) var(--pad);
}

.band--featured,
.band--dest,
.band--guides {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.band--trust {
  border-top: 1px solid var(--line-soft);
}

/* their section header: ruled kicker, big title, controls pushed to the
   far right on the same baseline */
.bandhead {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.bandhead__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.75rem, 4.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
}

.bandfoot {
  margin-top: 1.75rem;
}

.kicker {
  font-size: var(--label-size);
  font-weight: 700;
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.4;
}

/* the reference prefixes its kickers with a short gold rule */
.kicker--rule::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: var(--gold);
  flex: none;
}

/* pills — their primary CTA is a full-radius control that fills on hover */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 44px;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: rgba(201, 162, 75, 0.06);
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.pill:hover {
  background: var(--gold);
  color: #0a0a0a;
}
.pill--gold {
  background: var(--gold);
  color: #0a0a0a;
}
.pill--gold:hover {
  background: #ddb85f;
  border-color: #ddb85f;
}
.pill--ghost {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.pill--ghost:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
}

.tlink {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 162, 75, 0.35);
  padding-bottom: 0.2rem;
}
.tlink:hover {
  border-bottom-color: var(--gold);
}

/* the stat row under their hero: values divided by hairline verticals */
.stats {
  display: flex;
  flex-wrap: wrap;
  margin-top: clamp(1.5rem, 4vw, 2.25rem);
}
.stats > div {
  display: flex;
  flex-direction: column;
  padding-inline: 1.25rem;
  border-left: 1px solid var(--line);
}
.stats > div:first-child {
  padding-left: 0;
  border-left: 0;
}
.stats dt {
  font-size: var(--label-size);
  font-weight: 700;
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: var(--faint);
  order: 2;
  margin-top: 0.4rem;
}
.stats dd {
  font-family: var(--display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

/* ---------------------------------------------------------------------
   masthead — fixed, transparent at rest, condenses on scroll
   --------------------------------------------------------------------- */
.mast {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  padding-top: env(safe-area-inset-top);
  transition: background-color 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.mast.is-condensed {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}

.mast__in {
  max-width: var(--wrap);
  margin-inline: auto;
  min-height: var(--mast-h);
  padding-inline: var(--pad);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.mark {
  display: inline-flex;
  align-items: center;
  /* the wordmark is a link; give it a real target height rather than the
     18px its glyphs occupy */
  min-height: 44px;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1;
}
.mark--foot {
  min-height: 0;
}
/* Real crown mark (favicon-192.png crop, BRAND-KIT.md), added 2026-08-09
   in front of the text wordmark — fixed px, not em, so it stays crisp at
   the size it was cropped for instead of scaling with the surrounding
   type. Mirrors the chauffeur sibling's .wordmark__mark (read-only ref). */
.mark__crown {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.mark__a {
  color: var(--text);
}
.mark__b {
  color: var(--gold);
  font-style: italic;
}

.nav {
  margin-left: auto;
}
.nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}
.nav a {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav a:hover {
  color: var(--text);
}
.nav a[aria-current="page"] {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.mast__end {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.mast__cta {
  padding: 0.55rem 1.1rem;
  min-height: 40px;
  font-size: 0.625rem;
}

.burger {
  display: none;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}
.burger__label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.burger__bars {
  display: block;
  width: 16px;
}
.burger__bars i {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.25s ease;
}
.burger__bars i + i {
  margin-top: 4px;
}
[aria-expanded="true"] .burger__bars i:first-child {
  transform: translateY(3px) rotate(45deg);
}
[aria-expanded="true"] .burger__bars i:last-child {
  transform: translateY(-2.5px) rotate(-45deg);
}

/* below the desktop breakpoint the SAME <ul id="primary-nav-list">
   becomes the overlay panel — there is never a second nav in the DOM,
   which is also what tools/check-shared-chrome.mjs asserts */
@media (max-width: 899.98px) {
  .burger {
    display: inline-flex;
  }
  .mast__cta {
    display: none;
  }
  .nav {
    margin-left: 0;
  }
  .nav ul {
    position: fixed;
    inset: calc(var(--mast-h) + env(safe-area-inset-top)) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--pad) calc(1.5rem + env(safe-area-inset-bottom));
    max-height: calc(100dvh - var(--mast-h));
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    /* `visibility` is DELIBERATELY not in the transition list. Transitioned
       visibility holds its start value for the whole duration and only
       flips at the end, so a transition that never completes (a frozen or
       non-rendering tab, a dropped frame budget) leaves the overlay
       interactive and covering the page. Hiding it is a state change, not
       an animation; only the fade is animated. */
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  body.nav-open .nav ul {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .nav a {
    display: block;
    font-size: 0.9375rem;
    letter-spacing: 0.1em;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line-soft);
    color: var(--text);
  }
  .nav a[aria-current="page"] {
    color: var(--gold);
  }
  body.nav-open {
    overflow: hidden;
  }
}

/* ---------------------------------------------------------------------
   HERO — their treatment: full-bleed photograph, dark scrim, all copy
   bottom-left, ruled kicker above a three-line title, one pill CTA, and
   a divided stat row underneath
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero__shot {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      to top,
      rgba(10, 10, 10, 0.97) 0%,
      rgba(10, 10, 10, 0.72) 34%,
      rgba(10, 10, 10, 0.3) 62%,
      rgba(10, 10, 10, 0.55) 100%
    ),
    linear-gradient(to right, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0) 70%);
}
.hero__in {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding: calc(var(--mast-h) + 3rem) var(--pad) clamp(2.5rem, 7vw, 4.5rem);
}
.hero__title {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 1rem 0 0;
}
.hero__l1,
.hero__l2 {
  display: block;
  font-size: clamp(2.75rem, 10vw, 5.5rem);
}
.hero__l2 {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}
.hero__l3 {
  display: block;
  font-family: var(--body);
  font-size: clamp(0.75rem, 2vw, 1.0625rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-top: clamp(1rem, 2.5vw, 1.75rem);
}
.hero__lede {
  margin-top: 1.25rem;
  max-width: 46ch;
  color: var(--muted);
  font-size: clamp(0.9375rem, 1.6vw, 1.125rem);
}
.hero__act {
  margin-top: 1.75rem;
}

/* ---------------------------------------------------------------------
   VILLA CARD — their card, field for field: photo on top at 4:3 with a
   scrim and a pinned badge; then rate, kicker, name, spec grid, and a
   full-width control with a round arrow
   --------------------------------------------------------------------- */
.vgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .vgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .vgrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .vgrid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
/* the related strip stays at three across so it reads as a strip, not a
   second index */
@media (min-width: 1024px) {
  .vgrid--rel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.vcard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: border-color 0.35s ease;
}
.vcard:hover {
  border-color: rgba(201, 162, 75, 0.4);
}
.vcard[hidden] {
  display: none;
}
.vcard__link {
  display: block;
}
.vcard__shot {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-2);
}
.vcard__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.vcard:hover .vcard__shot img {
  transform: scale(1.06);
}
.vcard__scrim {
  position: absolute;
  inset: auto 0 -1px 0;
  height: 45%;
  background: linear-gradient(to top, var(--surface), rgba(20, 20, 20, 0));
  pointer-events: none;
}
.vcard__badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.62);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.vcard__badge .ic {
  color: var(--gold);
}

.vcard__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.4rem 1.4rem;
}
.vcard__rate {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.vcard__figure {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.vcard__figure--request {
  font-size: 1.125rem;
  color: var(--gold);
  letter-spacing: 0;
}
.vcard__unit {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}
.vcard__kicker {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
/* villa names print exactly as the data holds them — deliberately no
   text-transform here (see the casing note in tools/build.js) */
.vcard__name {
  font-family: var(--body);
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-top: 0.3rem;
  overflow-wrap: anywhere;
}
.vcard__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-soft);
}
.vcard__specs dt {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}
.vcard__specs dd {
  font-size: 0.9375rem;
  font-weight: 800;
  margin-top: 0.15rem;
  font-variant-numeric: tabular-nums;
}
.vcard__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding: 0.9rem 0.9rem 0.9rem 1.1rem;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: var(--r-ctl);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.vcard__specs + .vcard__cta {
  margin-top: 1.35rem;
}
.vcard__cta:hover {
  background: #fff;
  border-color: #fff;
  color: #0a0a0a;
}
.vcard__arrow {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--gold);
  color: #0a0a0a;
  flex: none;
}

/* ---------------------------------------------------------------------
   FEATURED CAROUSEL — their 6-slide rail with an NN / NN counter and a
   pair of round arrow buttons in the section header. Built on native
   scroll-snap so it still works with the script blocked.
   --------------------------------------------------------------------- */
.carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  /* the rail bleeds to the viewport edge like theirs, while the section
     around it keeps the page gutter */
  margin-inline: calc(var(--pad) * -1);
  padding-inline: var(--pad);
  /* without this the first slide's snap position IS the padding, so the
     rail rests at scrollLeft = <pad> and every index computed from
     scrollLeft is off by a fraction of a card */
  scroll-padding-inline: var(--pad);
}
.carousel::-webkit-scrollbar {
  display: none;
}
/* The track widths are DEFINITE, not minmax(). With `minmax(0, X)` the
   track-sizing algorithm caps growth at the free space available, so six
   slides silently shrank to fit the rail (measured 175px each at 1280px)
   and there was nothing left to scroll. A definite width makes the track
   overflow its scroll container, which is the whole point of a rail. */
.carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(82vw, 21rem);
  gap: 1.25rem;
  padding-bottom: 0.25rem;
}
@media (min-width: 640px) {
  .carousel__track {
    grid-auto-columns: calc((100% - 1.5rem) / 2);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .carousel__track {
    grid-auto-columns: calc((100% - 3rem) / 3);
  }
}
@media (min-width: 1280px) {
  .carousel__track {
    grid-auto-columns: calc((100% - 4.5rem) / 4);
  }
}
.carousel__track > .vcard {
  scroll-snap-align: start;
}
.carousel__ctl {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.carousel__count {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--faint);
  font-variant-numeric: tabular-nums;
  margin-right: 0.25rem;
}
.carousel__count span:first-child {
  color: var(--gold);
}
.cbtn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.cbtn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
}
.cbtn[disabled] {
  opacity: 0.35;
  cursor: default;
}
.cbtn[disabled]:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line-strong);
  color: inherit;
}

/* ---------------------------------------------------------------------
   DESTINATION PICKER — their two big image cards side by side
   --------------------------------------------------------------------- */
.destgrid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .destgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.dcard {
  position: relative;
  display: block;
  min-height: 340px;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  isolation: isolate;
}
@media (min-width: 768px) {
  .dcard {
    min-height: 460px;
  }
}
.dcard__shot {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.dcard__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.dcard:hover .dcard__shot img {
  transform: scale(1.05);
}
.dcard__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(10, 10, 10, 0.6) 45%,
    rgba(10, 10, 10, 0.15) 100%
  );
}
.dcard__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(1.4rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.dcard__tag {
  font-size: var(--label-size);
  font-weight: 700;
  letter-spacing: var(--label-track);
  text-transform: uppercase;
  color: var(--gold);
}
.dcard__name {
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.dcard__copy {
  color: var(--muted);
  font-size: 0.9375rem;
  max-width: 42ch;
}
.dcard__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------------------------------------------------------------------
   GUIDES GRID — their three "browse by" editorial cards
   --------------------------------------------------------------------- */
.gguide {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .gguide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.gcard {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.gcard:hover {
  border-color: rgba(201, 162, 75, 0.4);
}
.gcard__shot {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-2);
}
.gcard__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gcard:hover .gcard__shot img {
  transform: scale(1.05);
}
.gcard__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
  padding: 1.5rem 1.4rem;
}
.gcard__kicker {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.gcard__name {
  font-family: var(--display);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.2;
}
.gcard__copy {
  color: var(--muted);
  font-size: 0.9375rem;
}
.gcard__cta {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--gold);
  margin-top: auto;
}

/* ---------------------------------------------------------------------
   ETHOS — their mission block: text + stats on the left, a 2x2 grid of
   hub links on the right
   --------------------------------------------------------------------- */
.ethos {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
}
@media (min-width: 1024px) {
  .ethos {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: start;
  }
}
.ethos__title {
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-top: 0.75rem;
}
.ethos__body {
  margin-top: 1.25rem;
  color: var(--muted);
  max-width: 62ch;
}
.stats--inline {
  margin-top: 1.75rem;
}
.ethos__links {
  display: grid;
  gap: 1rem;
}
@media (min-width: 560px) {
  .ethos__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.elink {
  position: relative;
  display: block;
  padding: 1.35rem 3rem 1.35rem 1.35rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-shot);
  background: var(--surface);
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.elink:hover {
  border-color: rgba(201, 162, 75, 0.4);
  background: var(--surface-2);
}
.elink .ic {
  position: absolute;
  top: 1.4rem;
  right: 1.2rem;
  color: var(--gold);
}
.elink__name {
  display: block;
  font-family: var(--display);
  font-size: 1.1875rem;
  font-weight: 600;
}
.elink__copy {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ---------------------------------------------------------------------
   TRUST / CONTACT BAND — their three-column contact row plus the claim
   strip underneath (ours carries facts, not their operational claims)
   --------------------------------------------------------------------- */
.trust {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.tcard {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  min-height: 76px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-shot);
  background: var(--surface);
  transition: border-color 0.3s ease;
}
.tcard:hover {
  border-color: rgba(201, 162, 75, 0.4);
}
.tcard__ic {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 75, 0.35);
  color: var(--gold);
}
.tcard__body {
  display: block;
  min-width: 0;
}
.tcard__label {
  display: block;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}
.tcard__value {
  display: block;
  margin-top: 0.2rem;
  font-weight: 700;
  font-size: 0.9375rem;
  overflow-wrap: anywhere;
}
.claims {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.75rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
}
.claims li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}
.claims li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
  flex: none;
}

/* ---------------------------------------------------------------------
   LISTING HEAD + FILTER BAR — their page title on the left, filter
   controls pushed right on the same row at desktop
   --------------------------------------------------------------------- */
.listhead {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: calc(var(--mast-h) + clamp(2rem, 6vw, 4rem)) var(--pad) 0;
}
.listhead__in {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.75rem;
  padding-bottom: clamp(1.5rem, 4vw, 2.25rem);
  border-bottom: 1px solid var(--line-soft);
}
.listhead__text {
  min-width: 0;
  flex: 1 1 22rem;
}
.listhead__title {
  font-family: var(--display);
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.025em;
  margin-top: 0.75rem;
}
.listhead__title .gold {
  font-style: italic;
}
.listhead__lede {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 62ch;
  font-size: 0.9375rem;
}
/* Occasion/area landers (2026-08-09) stack 2-3 <p> inside this same slot
   instead of the single sentence every other page has used it for. */
.listhead__lede p + p {
  margin-top: 0.85em;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.75rem;
}
.filters__lead {
  display: none;
}
.fsel {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
  flex: 1 1 9.5rem;
}
.fsel__label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}
.fsel__label .ic {
  color: var(--gold);
}
.fsel__cur {
  color: var(--gold);
  font-weight: 800;
}
.fsel select {
  width: 100%;
  min-height: 46px;
  padding: 0.6rem 2.2rem 0.6rem 0.9rem;
  border-radius: var(--r-ctl);
  border: 1px solid var(--line-strong);
  background-color: var(--surface);
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  appearance: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
}
.fsel select option {
  background: #141414;
  color: #fff;
}
.fclear {
  min-height: 46px;
  padding: 0.6rem 1.1rem;
  border-radius: var(--r-ctl);
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--gold);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}
.fclear:hover {
  border-color: var(--gold);
}

.fcount {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 1.5rem;
}
.fempty {
  margin-top: 2rem;
  padding: 2rem 1.5rem;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-shot);
  text-align: center;
  color: var(--muted);
}
.fempty a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* the closing CTA band their listing page carries above the footer */
.ctaband {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  background: var(--surface);
}
.ctaband__title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.4vw, 2.25rem);
  font-weight: 600;
  line-height: 1.1;
  margin-top: 0.6rem;
}
.ctaband__copy {
  margin-top: 0.75rem;
  color: var(--muted);
  max-width: 56ch;
  font-size: 0.9375rem;
}

/* ---------------------------------------------------------------------
   OCCASION CARDS
   --------------------------------------------------------------------- */
.ogrid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .ogrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.ocard {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  overflow: hidden;
}
.ocard__shot {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface-2);
}
.ocard__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ocard__body {
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ocard__name {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
}
.ocard__copy {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.9375rem;
}
.ocard__meta {
  margin-top: 1rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}
.ocard__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 1.25rem;
  min-height: 44px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------------------------------------------------------------------
   VILLA DETAIL — breadcrumb, title block, gallery, spec tiles
   --------------------------------------------------------------------- */
.crumb {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: calc(var(--mast-h) + 1.5rem) var(--pad) 0;
}
.crumb a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.crumb a:hover {
  color: var(--gold);
}

.vhead {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 0 var(--pad) clamp(1.5rem, 4vw, 2.25rem);
}
.vhead__title {
  font-family: var(--display);
  font-size: clamp(2.125rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-top: 0.75rem;
  overflow-wrap: break-word;
}
.vhead__rate {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 1rem;
}
.vhead__figure {
  font-family: var(--display);
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 600;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.vhead__figure--request {
  font-size: clamp(1rem, 2vw, 1.25rem);
}
.vhead__unit {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}

.gallery {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 0 var(--pad);
}
.gallery__stage {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--line-soft);
}
.gallery__frames {
  position: absolute;
  inset: 0;
}
.gallery__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery__img.is-on {
  opacity: 1;
}
.gnav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.gnav:hover {
  background: var(--gold);
  color: #0a0a0a;
}
.gnav--prev {
  left: 0.75rem;
}
.gnav--next {
  right: 0.75rem;
}
.gallery__count {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-variant-numeric: tabular-nums;
}
.gallery__count span:first-child {
  color: var(--gold);
}
.gallery__strip {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.75rem;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 0.4rem;
}
.thumb {
  flex: none;
  width: 96px;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--surface-2);
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.25s ease, border-color 0.25s ease;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb:hover {
  opacity: 0.85;
}
.thumb.is-on {
  opacity: 1;
  border-color: var(--gold);
}
.gallery__note {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--faint);
}

.tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .tiles {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}
.tile {
  padding: 1.1rem 1rem;
  min-height: 96px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-shot);
  background: var(--surface);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
}
.tile__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}
.tile__label .ic {
  color: var(--gold);
}
.tile__value {
  font-family: var(--display);
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

/* ---------------------------------------------------------------------
   PANELS (reservation + contact form) — their centred max-w-4xl card
   --------------------------------------------------------------------- */
.panel {
  max-width: 56rem;
  margin-inline: auto;
  padding: clamp(1.4rem, 4vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--surface);
}
.panel__title {
  font-family: var(--display);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}

.fieldgrid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
  margin-bottom: 0.9rem;
}
@media (min-width: 560px) {
  .fieldgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
  margin-bottom: 0.9rem;
}
.fieldgrid .field {
  margin-bottom: 0;
}
.field__label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}
.field__label .ic {
  color: var(--gold);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.9rem;
  border-radius: var(--r-ctl);
  border: 1px solid var(--line);
  background: #0d0d0d;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: border-color 0.25s ease;
}
.field textarea {
  resize: vertical;
  line-height: 1.55;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #7a7a7a;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}
.field select {
  -webkit-appearance: none;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.2rem;
  cursor: pointer;
}
.field select option {
  background: #141414;
}
/* date inputs render a UA calendar glyph that is near-black on our dark
   field; invert it so it reads */
.field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.65;
  cursor: pointer;
}

.duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 0;
  margin: 0.5rem 0 1.25rem;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}
.duration .ic {
  color: var(--gold);
}
.duration.is-set {
  color: var(--text);
}

/* Long-stay discount tier note — dormant unless an operator sets a real
   pct on a DISCOUNT_TIERS entry in tools/build.js (see that file's
   comment block). Same small-caps gold-dot list idiom as .claims in the
   trust band, reused here rather than inventing a second pattern. */
.tiernote {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: -0.5rem 0 1.25rem;
  padding: 0;
  list-style: none;
}
.tiernote li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.tiernote li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
  flex: none;
}

/* the estimate block — their inner dark panel with the rate at the top
   and a very large total at the bottom */
.est {
  padding: clamp(1.15rem, 3vw, 1.75rem);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-shot);
  background: rgba(0, 0, 0, 0.45);
  margin-bottom: 1.5rem;
}
.est__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.est__row--minor {
  margin-top: 0.85rem;
}
.est__row--total {
  margin-top: 0.25rem;
}
/* .est__row is display:flex, which otherwise beats the UA default
   [hidden] rule (both are single-selector specificity; the later author
   rule wins) — same fix already applied to .vcard[hidden] below. */
.est__row[hidden] {
  display: none;
}
.est__label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}
.est__rate {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.est__fig {
  font-family: var(--display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.est__unit {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}
.est__minor {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.est__minor--discount {
  color: var(--gold);
}
.est__rule {
  height: 1px;
  background: var(--line);
  margin: 1.1rem 0;
}
.est__total {
  font-family: var(--display);
  font-size: clamp(1.75rem, 7vw, 3rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.est__total.is-empty {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}
.est__foot {
  margin-top: 1rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--muted);
}
.est--request .est__request {
  font-family: var(--display);
  font-size: clamp(1.375rem, 4vw, 1.75rem);
  font-weight: 600;
  color: var(--gold);
  margin-top: 0.35rem;
}

.deliver {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
}
.deliver__note {
  display: flex;
  gap: 0.6rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--muted);
}
.deliver__note .ic {
  color: var(--gold);
  margin-top: 0.28rem;
}
.deliver__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}
.deliver__acts .pill {
  flex: 1 1 12rem;
  justify-content: center;
}

/* ---------------------------------------------------------------------
   DETAIL SUBSECTIONS + TAG LINKS
   --------------------------------------------------------------------- */
.details {
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 768px) {
  .details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 3rem;
  }
}
.dsec__head {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.75rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid var(--line-soft);
}
.dsec p {
  color: var(--muted);
  font-size: 0.9375rem;
}
.dsec p + p {
  margin-top: 0.5rem;
}
.details__note {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.8125rem;
  color: var(--faint);
  max-width: 76ch;
}

.tags__head {
  font-family: var(--display);
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.tags {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .tags {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.tag {
  position: relative;
  display: block;
  padding: 1.15rem 2.75rem 1.15rem 1.15rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-shot);
  background: var(--surface);
  transition: border-color 0.3s ease;
}
.tag:hover {
  border-color: rgba(201, 162, 75, 0.4);
}
.tag .ic {
  position: absolute;
  top: 1.2rem;
  right: 1.1rem;
  color: var(--gold);
}
.tag__label {
  display: block;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}
.tag__name {
  display: block;
  margin-top: 0.3rem;
  font-weight: 700;
  font-size: 0.9375rem;
}

/* ---------------------------------------------------------------------
   COMPARISON TABLE — added 2026-08-09 for the /guides/miami-vs-fort-
   lauderdale page (stats-by-market and distance/mode). A real <table>
   rather than a card grid, per the task's "structured, extractable
   data" instruction — first new component this wave that isn't a
   straight reuse of an existing one, so it stays on the same tokens
   (surface/line/gold/muted) as everything else rather than introducing
   a new visual idiom.
   --------------------------------------------------------------------- */
.ftable-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-shot);
}
.ftable {
  width: 100%;
  min-width: 30rem;
  border-collapse: collapse;
  background: var(--surface);
  font-size: 0.9375rem;
}
.ftable th,
.ftable td {
  padding: 0.85rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
.ftable thead th {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--surface-2);
}
.ftable tbody th {
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}
.ftable tbody td {
  color: var(--muted);
}
.ftable tr:last-child th,
.ftable tr:last-child td {
  border-bottom: none;
}

/* ---------------------------------------------------------------------
   STICKY RATE BAR — the one deliberate improvement on the reference,
   which pins nothing but its top nav. Mobile: a fixed bottom bar that
   enters once the gallery has scrolled away. Desktop (>=1024px): a
   compact card parked bottom-right. ONE DOM node in both cases.
   --------------------------------------------------------------------- */
.ratebar {
  position: fixed;
  z-index: 70;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding: 0.75rem var(--pad) calc(0.75rem + env(safe-area-inset-bottom));
}
.ratebar__in {
  max-width: var(--wrap);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.ratebar__rate {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  min-width: 0;
}
.ratebar__figure {
  font-family: var(--display);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.ratebar__figure--request {
  font-size: 0.9375rem;
  color: var(--gold);
}
.ratebar__unit {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
}
.ratebar__acts {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: none;
}
.ratebar__acts .pill {
  padding: 0.6rem 1.05rem;
  font-size: 0.5625rem;
  min-height: 44px;
}
.ratebar__call {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--gold);
}
.ratebar__call:hover {
  border-color: var(--gold);
}

/* the bar is armed by site.js and slides in once; if the script never
   runs it is simply visible from the start, so the page's primary ask
   is never hidden by a scripting failure */
.ratebar.is-armed {
  transform: translateY(120%);
  transition: transform 0.35s ease;
}
.ratebar.is-armed.is-in {
  transform: none;
}

@media (min-width: 1024px) {
  .ratebar {
    left: auto;
    right: clamp(1rem, 3vw, 2.5rem);
    bottom: clamp(1rem, 3vw, 2rem);
    width: min(23rem, 34vw);
    border: 1px solid var(--line-strong);
    border-radius: var(--r-shot);
    padding: 1rem 1.15rem;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  }
  .ratebar__figure {
    font-size: 1.625rem;
  }
}

/* keep the last section clear of the fixed bar */
body.has-ratebar .band--related,
body.has-ratebar .band--tags {
  padding-bottom: clamp(5rem, 12vw, 7rem);
}

/* ---------------------------------------------------------------------
   FAQ ACCORDION — /faq (added 2026-08-09). Native <details>/<summary>,
   zero JS. Component shape mirrored from the chauffeur sibling's own
   FAQ accordion (read-only reference, luxx-chauffeur/styles.css) —
   bordered rows, a rotating plus-in-a-circle marker, first item open —
   restyled here on this site's own tokens (surface/line/gold/muted)
   rather than the sibling's palette.
   --------------------------------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  max-width: 74ch;
}
.faq-item {
  border-bottom: 1px solid var(--line-soft);
  padding: 1.375rem 0;
}
.faq-item:first-child {
  padding-top: 0;
}
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  cursor: pointer;
  list-style: none;
}
.faq-item__q::-webkit-details-marker {
  display: none;
}
.faq-item__q h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--text);
}
.faq-item__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1.5px solid rgba(201, 162, 75, 0.4);
  color: var(--gold);
  transition: transform 0.2s ease;
}
.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
}
.faq-item__a {
  margin-top: 0.875rem;
  max-width: 66ch;
}
.faq-item__a p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
}
.faq-item__a a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-item__a strong {
  color: var(--text);
  font-weight: 700;
}

/* ---------------------------------------------------------------------
   FOOTER
   --------------------------------------------------------------------- */
.foot {
  border-top: 1px solid var(--line-soft);
  background: #070707;
  padding: clamp(2.5rem, 6vw, 4rem) 0 calc(1.5rem + env(safe-area-inset-bottom));
}
.foot__in {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .foot__in {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .foot__in {
    /* Staging column removed 2026-08-17 for launch; back to 4 tracks
       (brand / villas / areas / connect). */
    grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
    gap: 2.5rem;
  }
}
/* Full transparent lockup (BRAND-KIT.md), added 2026-08-09 above the text
   wordmark in the brand column — sized to match the chauffeur sibling's
   own .footer-logo (read-only ref). */
.foot__logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}
.mark--foot {
  font-size: 1.25rem;
}
.foot__blurb {
  margin-top: 0.9rem;
  color: var(--faint);
  font-size: 0.8125rem;
  max-width: 40ch;
  line-height: 1.6;
}
.foot__head {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.foot__list li + li {
  margin-top: 0.15rem;
}
.foot__list a {
  display: inline-block;
  padding: 0.45rem 0;
  color: var(--muted);
  font-size: 0.875rem;
  overflow-wrap: anywhere;
}
.foot__list a:hover {
  color: var(--gold);
}
.foot__rule {
  max-width: var(--wrap);
  margin: clamp(2rem, 5vw, 3rem) auto 0;
  padding: 1.5rem var(--pad) 0;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}
/* Dormant until FAMILY_LINKS.enabled flips true in tools/build.js — see
   familyStrip(); styled now so it isn't undefined the day it's turned on.
   Mirrors the chauffeur sibling's .family-strip block (read-only ref). */
.family-strip {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 1rem var(--pad) 0;
  color: var(--faint);
  font-size: 0.75rem;
  text-align: center;
}
.family-strip a {
  color: var(--gold);
}
.family-strip a:hover {
  text-decoration: underline;
}
/* The fixed rate bar overlaps whatever is at the foot of the page at full
   scroll, so the footer buys back exactly the room the bar occupies.
   Phone: bar height (~69px) + its own bottom padding. Desktop (>=1024px):
   the bar is a floating card 78px tall parked 32px off the bottom edge —
   110px in all — so 8rem clears it with ~18px to spare. Measured at both
   widths, not guessed: at 7rem the desktop card landed 2px off the footer's
   bottom rule. */
body.has-ratebar .foot {
  padding-bottom: calc(5.5rem + env(safe-area-inset-bottom));
}
@media (min-width: 1024px) {
  body.has-ratebar .foot {
    padding-bottom: calc(8rem + env(safe-area-inset-bottom));
  }
}
