/* ============================================================
   BLACK KEY COLLECTIVE — MAIN STYLESHEET
   Luxury access. Elevated living.
   ============================================================ */

:root {
  --black: #0D0D0D;
  --black-2: #1C1C1C;
  --black-3: #050505;
  --gold: #D4AF37;
  --gold-soft: #B89530;
  --gold-bright: #E8C657;
  --ivory: #F5F5F5;
  --gray: #8E8E8E;
  --gray-2: #B5B5B5;
  --gray-line: #2A2A2A;
  --display: 'Cormorant Garamond', serif;
  --body: 'Inter', sans-serif;
  --max-w: 1400px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--ivory);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.03) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce {
  background: var(--black-3);
  border-bottom: 1px solid var(--gray-line);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
}

.announce a { color: var(--ivory); text-decoration: none; border-bottom: 1px solid var(--gray-line); padding-bottom: 1px; transition: border-color .3s; }
.announce a:hover { border-color: var(--gold); }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 33px; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-line);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  cursor: pointer;
}

.nav-logo img { height: 48px; width: auto; }

.nav-logo-text {
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  color: var(--ivory);
  text-transform: uppercase;
}

.nav-logo-text em { color: var(--gold); font-style: italic; }

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--ivory);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding: 0.5rem 0;
  cursor: pointer;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 0.6rem 1.2rem !important;
  transition: all 0.3s !important;
}

.nav-cta:hover { background: var(--gold); color: var(--black) !important; }
.nav-cta::after { display: none !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Body offset to clear fixed announce + nav */
body { padding-top: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  box-sizing: border-box;
  padding: 132px 0 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.3) saturate(0.7);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,13,13,0.5) 0%, rgba(13,13,13,0.9) 100%),
    radial-gradient(ellipse at center, transparent 0%, var(--black) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-logo {
  width: auto;
  height: auto;
  max-width: min(340px, 60vw);
  max-height: 42vh;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: rise 1s 0.1s ease forwards;
  filter: drop-shadow(0 20px 45px rgba(0,0,0,0.65));
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: rise 1s 0.3s ease forwards;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: rise 1.2s 0.5s ease forwards;
}

.hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }

.hero-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 3rem;
  opacity: 0;
  animation: rise 1s 0.8s ease forwards;
}

.hero-cta {
  display: inline-flex;
  gap: 1rem;
  opacity: 0;
  animation: rise 1s 1.1s ease forwards;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 1.05rem 2.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  font-family: var(--body);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.4s ease;
  z-index: -1;
}

.btn:hover { color: var(--black); }
.btn:hover::before { transform: translateY(0); }

.btn-solid { background: var(--gold); color: var(--black); }
.btn-solid::before { background: var(--ivory); }
.btn-solid:hover { color: var(--black); }

.btn-ghost {
  border-color: var(--gray-line);
  color: var(--ivory);
}
.btn-ghost::before { background: var(--ivory); }
.btn-ghost:hover { color: var(--black); border-color: var(--ivory); }

/* ============================================================
   SECTION BASE
   ============================================================ */
section {
  padding: 7rem 3rem;
  position: relative;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::before {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}

.section-label.centered { justify-content: center; }
.section-label.centered::after {
  content: '';
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  max-width: 700px;
}

.section-title em { font-style: italic; color: var(--gold); }

.section-header {
  max-width: var(--max-w);
  margin: 0 auto 4rem;
  text-align: center;
}

.section-header .section-title { margin: 0 auto 1.5rem; text-align: center; }

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray);
  line-height: 1.8;
}

/* ============================================================
   PHILOSOPHY GRID
   ============================================================ */
.philosophy {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.philosophy-text p {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.philosophy-text p:first-of-type {
  color: var(--ivory);
  font-size: 1.2rem;
  font-weight: 400;
}

.philosophy-visual {
  aspect-ratio: 4/5;
  background-image: url('../assets/bk-logo-poster.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--black);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-line);
}

.philosophy-visual::before {
  content: '';
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.5);
  z-index: 2;
}

.philosophy-visual::after { display: none; }

/* ============================================================
   STRIP SECTIONS
   ============================================================ */
.featured-strip {
  background: linear-gradient(180deg, var(--black) 0%, var(--black-2) 50%, var(--black) 100%);
}

/* ============================================================
   PROPERTY CARDS
   ============================================================ */
.property-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.property-card {
  background: var(--black-2);
  border: 1px solid var(--gray-line);
  overflow: hidden;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.property-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}

.property-img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.property-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13,13,13,0.4));
}

.property-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(8px);
  color: var(--gold);
  padding: 0.55rem 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  z-index: 3;
  font-weight: 500;
}

.property-content {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.property-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
  gap: 1rem;
}

.property-meta h3 {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.2;
}

.property-location {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.property-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1rem 0;
  margin: 1rem 0;
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
}

.property-spec {
  font-size: 0.8rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.property-spec strong {
  color: var(--ivory);
  font-weight: 500;
  font-size: 0.95rem;
}

.property-desc {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.property-booking {
  border-top: 1px solid var(--gray-line);
  padding-top: 1.5rem;
  margin-top: auto;
}

.property-booking-label {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.booking-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.booking-link {
  color: var(--ivory);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  padding: 0.55rem 1rem;
  border: 1px solid var(--gray-line);
  transition: all 0.3s;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  background: transparent;
  font-family: var(--body);
}

.booking-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

.booking-link.primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 500;
}

.booking-link.primary:hover { background: var(--ivory); border-color: var(--ivory); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  border: 1px solid var(--gray-line);
  background: rgba(28, 28, 28, 0.4);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  background: rgba(28, 28, 28, 0.8);
}

.service-photo {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.service-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,0.1) 0%, rgba(13,13,13,0.5) 100%);
}

.service-body {
  padding: 2rem 1.75rem;
  text-align: center;
  flex-grow: 1;
}

.service-card h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   SIGNATURE TOUCH
   ============================================================ */
.signature {
  background: var(--black-2);
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
}

.signature-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.signature-img {
  width: 100%;
  border: 1px solid var(--gray-line);
}

.signature-intro {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.9;
}

.signature-collage {
  max-width: var(--max-w);
  margin: 0 auto;
}

.signature-collage img {
  width: 100%;
  display: block;
  border: 1px solid var(--gray-line);
}

.signature-text h2 em { color: var(--gold); font-style: italic; }

.signature-text p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.signature-list { list-style: none; margin-top: 1.5rem; }

.signature-list li {
  color: var(--ivory);
  font-size: 0.9rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--gray-line);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.signature-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  flex-shrink: 0;
  transform: rotate(45deg);
}

/* ============================================================
   PROMISE / VALUES
   ============================================================ */
.promise {
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%),
    var(--black);
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
}

.promise-content { max-width: 900px; margin: 0 auto; }

.promise-quote {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  font-weight: 300;
  line-height: 1.4;
  font-style: italic;
  color: var(--ivory);
  margin-bottom: 2.5rem;
}

.promise-quote em { color: var(--gold); }

.promise-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}

.promise-attr {
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
}

.values-grid {
  max-width: var(--max-w);
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--gray-line);
  border: 1px solid var(--gray-line);
}

.value {
  background: var(--black);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: background 0.4s;
}

.value:hover { background: var(--black-2); }

.value-num {
  font-family: var(--display);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 1.25rem;
}

.value-name {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  padding: 12rem 3rem 5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--black-2) 0%, var(--black) 100%);
  border-bottom: 1px solid var(--gray-line);
}

.page-header h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.page-header h1 em { color: var(--gold); font-style: italic; }

.page-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.8;
}

.breadcrumb {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem 3rem 0;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
}

.breadcrumb a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { padding: 0 0.85rem; color: var(--gold); }
.breadcrumb .current { color: var(--ivory); }

/* ============================================================
   VEHICLES
   ============================================================ */
.vehicles-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.vehicle-card {
  background: var(--black-2);
  border: 1px solid var(--gray-line);
  overflow: hidden;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
}

.vehicle-card:hover { border-color: var(--gold); transform: translateY(-6px); }

.vehicle-gallery {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.vehicle-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vehicle-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 4px;
  background: var(--black);
}

.vehicle-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.vehicle-thumb:hover, .vehicle-thumb.active { opacity: 1; }
.vehicle-thumb img { width: 100%; height: 100%; object-fit: cover; }

.vehicle-content { padding: 2rem; flex-grow: 1; display: flex; flex-direction: column; }

.vehicle-content h3 {
  font-family: var(--display);
  font-size: 1.65rem;
  color: var(--ivory);
  margin-bottom: 0.25rem;
}

.vehicle-content > p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.vehicle-coming {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  flex-direction: column;
}

.vehicle-coming svg { width: 60px; height: 60px; opacity: 0.3; margin-bottom: 1rem; }

.vehicle-coming-text {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

/* ============================================================
   ABOUT / STORY
   ============================================================ */
.about-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 7rem 3rem 3rem;
}

.about-intro p {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  line-height: 1.7;
  font-weight: 300;
  color: var(--ivory);
  font-style: italic;
}

.about-intro p em { color: var(--gold); }

.story {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 3rem 7rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.story-block .section-label { margin-bottom: 1rem; }

.story-block h2 {
  font-family: var(--display);
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 1.75rem;
  line-height: 1.2;
}

.story-block h2 em { color: var(--gold); font-style: italic; }

.story-block p {
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
}

.brand-assets {
  background: var(--black-2);
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
}

.brand-grid {
  max-width: var(--max-w);
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.brand-item {
  aspect-ratio: 4/3;
  background: var(--black);
  border: 1px solid var(--gray-line);
  overflow: hidden;
  position: relative;
}

.brand-item img { width: 100%; height: 100%; object-fit: cover; }

.brand-item-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
}

.vision {
  background: var(--black);
  padding: 7rem 3rem;
}

.vision-content { max-width: 1100px; margin: 0 auto; text-align: center; }

.vision-quote {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.8vw, 2.15rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--ivory);
  margin-bottom: 2.5rem;
}

.vision-quote em { color: var(--gold); font-style: italic; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 3rem 7rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
}

.contact-info h2 {
  font-family: var(--display);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.contact-info h2 em { color: var(--gold); font-style: italic; }

.contact-info > p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-method {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--gray-line);
}

.contact-method:last-child { border: none; }

.contact-method-label {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.contact-method-value {
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--ivory);
}

.contact-method-value a {
  color: var(--ivory);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-method-value a:hover { color: var(--gold); }

.contact-form {
  background: var(--black-2);
  padding: 2.5rem;
  border: 1px solid var(--gray-line);
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gray-line);
  padding: 0.65rem 0;
  color: var(--ivory);
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select option { background: var(--black); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--black-3);
  padding: 4rem 3rem 2rem;
  border-top: 1px solid var(--gray-line);
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--gray-line);
}

.footer-brand img { height: 80px; margin-bottom: 1.25rem; }

.footer-brand p {
  color: var(--gray);
  font-size: 0.9rem;
  max-width: 350px;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gray-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.65rem; }

.footer-col a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
  cursor: pointer;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 0.1em;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: linear-gradient(180deg, var(--black) 0%, var(--black-2) 50%, var(--black) 100%);
}

.testimonial-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.testimonial {
  background: rgba(28, 28, 28, 0.6);
  border: 1px solid var(--gray-line);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.4s;
}

.testimonial:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.testimonial::before {
  content: '"';
  font-family: var(--display);
  font-size: 5rem;
  color: var(--gold);
  position: absolute;
  top: -0.5rem;
  left: 1.25rem;
  line-height: 1;
  opacity: 0.5;
}

.testimonial-stars {
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.testimonial-quote {
  font-family: var(--display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.testimonial-attr {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-line);
}

.testimonial-name {
  font-size: 0.85rem;
  color: var(--ivory);
  letter-spacing: 0.05em;
}

.testimonial-where {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   REVIEWS (Turo-style)
   ============================================================ */
.reviews-summary {
  max-width: var(--max-w);
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  background: var(--black-2);
  border: 1px solid var(--gray-line);
}

.reviews-summary-score {
  text-align: center;
  border-right: 1px solid var(--gray-line);
  padding-right: 3rem;
}

.reviews-summary-big {
  font-family: var(--display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 300;
}

.reviews-summary-stars {
  color: var(--gold);
  letter-spacing: 0.25em;
  font-size: 1.1rem;
  margin: 0.5rem 0 1rem;
}

.reviews-summary-count {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
}

.reviews-bars { display: flex; flex-direction: column; gap: 0.65rem; }

.review-bar {
  display: grid;
  grid-template-columns: 130px 1fr 50px;
  gap: 1rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gray-2);
}

.review-bar-label { letter-spacing: 0.1em; }

.review-bar-track {
  height: 4px;
  background: var(--gray-line);
  position: relative;
  overflow: hidden;
}

.review-bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--gold);
}

.review-bar-val { font-family: var(--display); color: var(--gold); text-align: right; }

.review-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.review {
  background: var(--black-2);
  border: 1px solid var(--gray-line);
  padding: 2rem;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}

.review:hover { border-color: var(--gold); transform: translateY(-3px); }

.review-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 500;
  flex-shrink: 0;
}

.review-name {
  font-size: 0.95rem;
  color: var(--ivory);
  font-weight: 400;
}

.review-date {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.2rem;
}

.review-stars { color: var(--gold); letter-spacing: 0.2em; font-size: 0.85rem; flex-shrink: 0; }

.review-vehicle {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.35rem 0.75rem;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.review-body {
  color: var(--gray-2);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  flex-grow: 1;
}

.review-host-reply {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: rgba(212, 175, 55, 0.05);
  border-left: 2px solid var(--gold);
  font-size: 0.85rem;
  color: var(--gray-2);
  line-height: 1.7;
}

.review-host-reply strong {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.review-filters {
  max-width: var(--max-w);
  margin: 0 auto 2.5rem;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: center;
}

.review-filter {
  background: transparent;
  border: 1px solid var(--gray-line);
  color: var(--ivory);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.7rem 1.25rem;
  cursor: pointer;
  font-family: var(--body);
  transition: all 0.3s;
}

.review-filter:hover, .review-filter.active {
  border-color: var(--gold);
  color: var(--gold);
}

@media (max-width: 968px) {
  .reviews-summary { grid-template-columns: 1fr; padding: 2rem 1.5rem; gap: 2rem; }
  .reviews-summary-score { border-right: none; border-bottom: 1px solid var(--gray-line); padding-right: 0; padding-bottom: 2rem; }
  .review-grid { grid-template-columns: 1fr; }
  .review-bar { grid-template-columns: 110px 1fr 40px; gap: 0.65rem; font-size: 0.72rem; }
}

/* ============================================================
   PRESS / AS SEEN IN
   ============================================================ */
.press {
  background: var(--black-3);
  padding: 4rem 3rem;
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
}

.press-strip {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.press-label {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
}

.press-logo {
  font-family: var(--display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gray-2);
  letter-spacing: 0.05em;
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
}

.press-logo:hover { opacity: 1; color: var(--ivory); }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-line);
  border: 1px solid var(--gray-line);
}

.stat {
  background: var(--black);
  padding: 3rem 1.5rem;
  text-align: center;
}

.stat-num {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background:
    radial-gradient(ellipse at center, rgba(212,175,55,0.08) 0%, transparent 70%),
    var(--black);
  text-align: center;
  padding: 6rem 3rem;
  border-top: 1px solid var(--gray-line);
}

.newsletter-content { max-width: 700px; margin: 0 auto; }

.newsletter h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 1rem;
}

.newsletter h2 em { color: var(--gold); font-style: italic; }

.newsletter p {
  color: var(--gray);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
  border-bottom: 1px solid var(--gold);
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem 0.5rem;
  color: var(--ivory);
  font-family: var(--body);
  font-size: 0.95rem;
}

.newsletter-form input:focus { outline: none; }
.newsletter-form input::placeholder { color: var(--gray); letter-spacing: 0.05em; }

.newsletter-form button {
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0 1rem;
  cursor: pointer;
  font-family: var(--body);
  font-weight: 500;
  transition: color 0.3s;
}

.newsletter-form button:hover { color: var(--ivory); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.faq-cat {
  margin-bottom: 4rem;
}

.faq-cat-title {
  font-family: var(--display);
  font-size: 1.75rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-line);
}

.faq-item {
  border-bottom: 1px solid var(--gray-line);
}

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--ivory);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 400;
  text-align: left;
  padding: 1.5rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  transition: color 0.3s;
}

.faq-q:hover { color: var(--gold); }
.faq-q .plus { color: var(--gold); font-size: 1.5rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-a { max-height: 500px; }

.faq-a-inner {
  color: var(--gray);
  line-height: 1.9;
  padding: 0 0 1.5rem;
  font-size: 0.95rem;
}

/* ============================================================
   PROPERTY / VEHICLE DETAIL HERO
   ============================================================ */
.detail-hero {
  height: 70vh;
  min-height: 500px;
  position: relative;
  background-size: cover;
  background-position: center;
  margin-top: 90px;
}

.detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,0.4) 0%, rgba(13,13,13,0.9) 100%);
}

.detail-hero-content {
  position: absolute;
  bottom: 4rem;
  left: 0; right: 0;
  text-align: center;
  z-index: 2;
  padding: 0 2rem;
}

.detail-hero-content .property-tag {
  position: static;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.detail-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}

.detail-hero h1 em { color: var(--gold); font-style: italic; }

.detail-hero-loc {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Detail layout */
.detail-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.detail-main h2 {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.detail-main h2 em { color: var(--gold); font-style: italic; }

.detail-main p {
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.detail-main p strong { color: var(--ivory); font-weight: 400; }

.detail-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2rem 0;
  margin: 2rem 0;
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
}

.detail-spec { text-align: center; }

.detail-spec-num {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.detail-spec-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
}

.amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 2rem;
  margin: 1.5rem 0 3rem;
  list-style: none;
}

.amenities li {
  color: var(--ivory);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.5rem 0;
}

.amenities li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  flex-shrink: 0;
  transform: rotate(45deg);
}

.booking-sidebar {
  background: var(--black-2);
  border: 1px solid var(--gray-line);
  padding: 2.5rem 2rem;
  position: sticky;
  top: 130px;
}

.booking-sidebar h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.booking-sidebar > p {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.booking-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.booking-list a {
  display: block;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--gray-line);
  color: var(--ivory);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s;
  text-align: center;
}

.booking-list a:hover { border-color: var(--gold); color: var(--gold); }
.booking-list a.primary { background: var(--gold); color: var(--black); border-color: var(--gold); font-weight: 500; }
.booking-list a.primary:hover { background: var(--ivory); border-color: var(--ivory); }

/* Gallery (detail) */
.gallery {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 3rem 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: opacity 0.3s;
}

.gallery-item:hover { opacity: 0.85; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }

/* ============================================================
   JOURNAL / BLOG
   ============================================================ */
.journal-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.journal-card {
  background: var(--black-2);
  border: 1px solid var(--gray-line);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.5s;
}

.journal-card:hover { border-color: var(--gold); transform: translateY(-4px); }

.journal-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}

.journal-body { padding: 2rem; flex-grow: 1; display: flex; flex-direction: column; }

.journal-cat {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.journal-card h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ivory);
  margin-bottom: 0.85rem;
}

.journal-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  flex-grow: 1;
}

.journal-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 1.25rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--gray-line);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

/* Article body */
.article {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 3rem 7rem;
}

.article-meta {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

.article-meta .dot { padding: 0 0.85rem; opacity: 0.5; }

.article p {
  color: var(--gray-2);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.article h2 {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  margin: 3rem 0 1.5rem;
  color: var(--ivory);
}

.article h2 em { color: var(--gold); font-style: italic; }

.article h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 2rem 0 1rem;
  color: var(--ivory);
}

.article blockquote {
  border-left: 2px solid var(--gold);
  padding: 0.5rem 0 0.5rem 2rem;
  margin: 2rem 0;
  font-family: var(--display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.5;
}

.article ul, .article ol {
  margin: 0 0 1.5rem 1.5rem;
  color: var(--gray-2);
}

.article li { margin-bottom: 0.5rem; line-height: 1.8; }

.article-divider {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 3rem auto;
  border: none;
}

/* ============================================================
   WORLD CUP LANDING
   ============================================================ */
.wc-hero {
  min-height: 75vh;
  background:
    linear-gradient(135deg, rgba(13,13,13,0.85), rgba(13,13,13,0.65)),
    url('https://images.unsplash.com/photo-1518604666860-9ed391f76460?w=1600');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 11rem 2rem 5rem;
  position: relative;
}

.wc-hero-content { max-width: 900px; }

.wc-hero .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.wc-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.wc-hero h1 em { color: var(--gold); font-style: italic; }

.wc-hero p {
  color: var(--gray-2);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.countdown {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 2.5rem 0;
}

.countdown-block {
  border: 1px solid var(--gold);
  padding: 1.25rem 1.5rem;
  min-width: 90px;
}

.countdown-num {
  font-family: var(--display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.countdown-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-2);
}

/* ============================================================
   PARTNERS / OWNERS
   ============================================================ */
.partner-tiers {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.tier {
  background: var(--black-2);
  border: 1px solid var(--gray-line);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s;
}

.tier:hover { border-color: var(--gold); transform: translateY(-6px); }
.tier.featured { border-color: var(--gold); background: linear-gradient(180deg, rgba(212,175,55,0.05), var(--black-2)); }

.tier-label {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.tier h3 {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.tier-tag {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-line);
}

.tier-features {
  list-style: none;
  flex-grow: 1;
  margin-bottom: 2rem;
}

.tier-features li {
  color: var(--ivory);
  font-size: 0.9rem;
  padding: 0.65rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.tier-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 500;
  flex-shrink: 0;
}

.process-steps {
  max-width: var(--max-w);
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::before {
  counter-increment: step;
  content: counter(step, upper-roman);
  font-family: var(--display);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  display: block;
  margin-bottom: 1.5rem;
}

.process-step h4 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.85rem;
  color: var(--ivory);
}

.process-step p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   LEGAL pages
   ============================================================ */
.legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 3rem 7rem;
}

.legal h2 {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 400;
  margin: 2.5rem 0 1rem;
  color: var(--ivory);
}

.legal p {
  color: var(--gray-2);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
}

.legal ul {
  margin: 0 0 1.5rem 1.5rem;
  color: var(--gray-2);
}

.legal li { margin-bottom: 0.5rem; line-height: 1.8; }

/* ============================================================
   404
   ============================================================ */
.notfound {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
}

.notfound-num {
  font-family: var(--display);
  font-size: clamp(8rem, 20vw, 14rem);
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1rem;
  font-style: italic;
}

.notfound h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.notfound p {
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* ============================================================
   UTILS
   ============================================================ */
.center { text-align: center; }
.section-tight { padding-top: 4rem; padding-bottom: 4rem; }
.no-bottom { padding-bottom: 0 !important; }
.alt-bg { background: var(--black-2); }
.divider { width: 60px; height: 1px; background: var(--gold); margin: 0 auto 1.5rem; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 968px) {
  .announce { font-size: 0.55rem; padding: 0.5rem 0.5rem; }
  nav { padding: 0.85rem 1.25rem; top: 28px; }
  .nav-logo img { height: 40px; }
  .nav-logo-text { font-size: 1rem; }
  .nav-links {
    position: fixed;
    top: 88px;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--black);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--gray-line);
    transform: translateY(-150%);
    transition: transform 0.4s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .menu-toggle { display: block; }
  section { padding: 4.5rem 1.25rem; }
  .philosophy, .story, .contact-wrap, .signature-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid, .brand-grid, .testimonial-grid, .journal-grid, .partner-tiers { grid-template-columns: 1fr; }
  .vehicles-grid, .property-grid { grid-template-columns: 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-bottom-links { flex-direction: column; gap: 0.65rem; }
  .page-header { padding: 9rem 1.25rem 3.5rem; }
  .about-intro { padding: 5rem 1.25rem 2rem; }
  .hero-cta { flex-direction: column; }
  .property-content { padding: 1.75rem; }
  .hero-logo { height: 90px; }
  .detail-layout { grid-template-columns: 1fr; padding: 3rem 1.25rem; gap: 2.5rem; }
  .booking-sidebar { position: static; }
  .gallery { grid-template-columns: repeat(2, 1fr); padding: 0 1.25rem 3rem; }
  .gallery-item.wide { grid-column: span 2; }
  .countdown { gap: 0.85rem; flex-wrap: wrap; }
  .countdown-block { min-width: 70px; padding: 0.85rem 1rem; }
  .countdown-num { font-size: 1.85rem; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .detail-specs { grid-template-columns: repeat(2, 1fr); }
  .amenities { grid-template-columns: 1fr; }
  .breadcrumb { padding: 1rem 1.25rem 0; font-size: 0.55rem; }
  .press-strip { justify-content: center; }
}

/* ============================================================
   GALLERY LIGHTBOX — click a photo for a close-up + thumb strip
   ============================================================ */
.gallery-item { cursor: zoom-in; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  flex-direction: column;
  background: rgba(5, 5, 5, 0.96);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.lightbox.open { display: flex; opacity: 1; }

.lightbox-stage {
  flex: 1 1 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 4.5rem 4.5rem 1rem;
}
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lightbox-img.loaded { opacity: 1; }

.lightbox-close {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gray-line);
  background: rgba(28, 28, 28, 0.7);
  color: var(--ivory);
  font-size: 1.6rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease;
}
.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid var(--gray-line);
  background: rgba(28, 28, 28, 0.6);
  color: var(--ivory);
  font-size: 1.5rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-nav:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-nav.prev { left: 1.4rem; }
.lightbox-nav.next { right: 1.4rem; }

.lightbox-counter {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-2);
}

.lightbox-strip {
  flex: 0 0 auto;
  display: flex;
  gap: 0.6rem;
  padding: 1rem 1.5rem 1.6rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  justify-content: safe center;
  -webkit-overflow-scrolling: touch;
}
.lightbox-strip::-webkit-scrollbar { height: 6px; }
.lightbox-strip::-webkit-scrollbar-thumb { background: var(--gray-line); border-radius: 3px; }
.lightbox-strip::-webkit-scrollbar-track { background: transparent; }

.lightbox-thumb {
  flex: 0 0 auto;
  width: 96px;
  height: 64px;
  border-radius: 3px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  opacity: 0.45;
  outline: 2px solid transparent;
  outline-offset: -2px;
  transition: opacity 0.2s ease, outline-color 0.2s ease;
}
.lightbox-thumb:hover { opacity: 0.8; }
.lightbox-thumb.active { opacity: 1; outline-color: var(--gold); }

@media (max-width: 768px) {
  .lightbox-stage { padding: 3.5rem 0.75rem 0.75rem; }
  .lightbox-nav { width: 42px; height: 42px; font-size: 1.2rem; }
  .lightbox-nav.prev { left: 0.5rem; }
  .lightbox-nav.next { right: 0.5rem; }
  .lightbox-thumb { width: 76px; height: 52px; }
  .lightbox-strip { justify-content: safe flex-start; }
}
