/* =================================================================
   The Aspen Residence — Single-Property Showcase Template
   Plain CSS3. No frameworks. No build step.

   ┌──────────────────────────────────────────────────────────────┐
   │  TO REBRAND: edit the CSS variables in :root below.           │
   │  Change --ink / --gold to recolor the whole site instantly.   │
   └──────────────────────────────────────────────────────────────┘
   ================================================================= */

:root {
  /* ---- Brand colors (edit these to rebrand) ---- */
  --ink: #14130f;            /* near-black primary */
  --ink-deep: #0c0b08;       /* darker charcoal for gradients */
  --charcoal: #26241e;       /* soft charcoal panels */
  --gold: #b08d57;           /* refined bronze/gold accent */
  --gold-soft: #c9a877;      /* lighter gold for hovers */
  --gold-deep: #8a6d3f;      /* deep gold for active */

  /* ---- Neutrals ---- */
  --ivory: #f7f4ee;          /* page background / light */
  --ivory-soft: #efeae0;     /* alternating soft background */
  --white: #ffffff;
  --text: #2b2a26;           /* body text on light */
  --muted: #7a766c;          /* secondary text */
  --line: #e2dcd0;           /* borders / dividers */
  --line-dark: rgba(255, 255, 255, 0.14);

  /* ---- Typography ---- */
  --font-head: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* ---- Effects & layout ---- */
  --radius: 4px;
  --radius-sm: 3px;
  --shadow-sm: 0 6px 20px rgba(20, 19, 15, 0.08);
  --shadow-md: 0 18px 44px rgba(20, 19, 15, 0.14);
  --shadow-lg: 0 30px 70px rgba(20, 19, 15, 0.24);
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================= RESET ============================= */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 0.4em;
  font-weight: 600;
  letter-spacing: 0.01em;
}

p { margin: 0 0 1em; }

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

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

/* ============================= LAYOUT HELPERS ============================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 110px 0; }

.section-alt { background: var(--ivory-soft); }

.section-head {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-head h2 { font-size: clamp(2.4rem, 5vw, 3.6rem); }

.section-sub { color: var(--muted); font-size: 1.08rem; margin: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}

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

/* Decorative rule */
.rule {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 18px auto 0;
}
.rule-left { margin: 18px 0 0; }

/* ============================= BUTTONS ============================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
    box-shadow 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(176, 141, 87, 0.32);
}
.btn-primary:hover { background: var(--gold-soft); }

.btn-dark {
  background: var(--ink);
  color: var(--ivory);
}
.btn-dark:hover { background: var(--charcoal); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--ivory); }

.btn-light { background: var(--ivory); color: var(--ink); }
.btn-light:hover { box-shadow: var(--shadow-md); }

.btn-outline-light {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(247, 244, 238, 0.5);
}
.btn-outline-light:hover { background: rgba(247, 244, 238, 0.12); border-color: var(--ivory); }

/* ============================= HEADER ============================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 19, 15, 0.9);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-dark);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(12, 11, 8, 0.97);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--ivory);
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.logo-text { letter-spacing: 0.04em; line-height: 1; }
.logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.main-nav ul {
  display: flex;
  gap: 34px;
}

.main-nav a {
  font-weight: 500;
  color: rgba(247, 244, 238, 0.82);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}

.main-nav ul a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.main-nav ul a:hover { color: var(--ivory); }
.main-nav ul a:hover::after { width: 100%; }

.main-nav ul a.active { color: var(--gold-soft); }
.main-nav ul a.active::after { width: 100%; }

.nav-cta { padding: 12px 26px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--ivory);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================= HERO ============================= */
.hero {
  position: relative;
  color: var(--ivory);
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 11, 8, 0.45) 0%, rgba(12, 11, 8, 0.2) 40%, rgba(12, 11, 8, 0.88) 100%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding: 0 0 72px; }
.hero-content { max-width: 760px; }
.hero .eyebrow { color: var(--gold-soft); }
.hero h1 {
  color: var(--ivory);
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  margin-bottom: 0.2em;
}
.hero-address {
  color: rgba(247, 244, 238, 0.86);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  margin-bottom: 34px;
}

/* Hero spec strip */
.hero-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 36px;
}
.hero-spec {
  padding: 22px 40px 22px 0;
  margin-right: 40px;
  border-right: 1px solid var(--line-dark);
}
.hero-spec:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hero-spec .num {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--ivory);
  line-height: 1;
}
.hero-spec .label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.hero-spec.price .num { color: var(--gold-soft); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(247, 244, 238, 0.7);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-cue::after {
  content: '';
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--gold), transparent);
}

/* ============================= INTRO / NARRATIVE ============================= */
.intro { text-align: center; }
.intro p {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  max-width: 880px;
  margin: 0 auto;
}
.intro p .accent { font-style: italic; }

/* ============================= HIGHLIGHTS ============================= */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.highlight-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 44px 36px;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
}
.highlight-card h3 { font-size: 1.6rem; margin-bottom: 8px; }
.highlight-card p { color: var(--muted); margin: 0; font-size: 0.98rem; }

/* ============================= SPLIT FEATURE (img + text) ============================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.split-media:hover img { transform: scale(1.04); }
.split-text h2 { font-size: clamp(2rem, 4vw, 3rem); }
.split-text p { color: var(--muted); }
.split-list { margin-top: 22px; }
.split-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text);
}
.split-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 1px;
  background: var(--gold);
}

/* ============================= GALLERY TEASER + GRID ============================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  cursor: pointer;
  border: 0;
  padding: 0;
  margin: 0;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 19, 15, 0);
  transition: background 0.4s var(--ease);
}
.gallery-item:hover::after { background: rgba(20, 19, 15, 0.18); }
.gallery-item .zoom-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(20, 19, 15, 0.55);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.gallery-item:hover .zoom-badge { opacity: 1; transform: translateY(0); }
.gallery-item:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Span helpers for editorial gallery rhythm */
.span-2-col { grid-column: span 2; }
.span-2-row { grid-row: span 2; }

.gallery-caption {
  text-align: center;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 7, 5, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-figure { margin: 0; max-width: 1100px; width: 100%; text-align: center; }
.lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  margin: 0 auto;
  object-fit: contain;
  box-shadow: var(--shadow-lg);
}
.lightbox-caption {
  color: rgba(247, 244, 238, 0.8);
  margin-top: 18px;
  font-family: var(--font-head);
  font-size: 1.3rem;
  letter-spacing: 0.03em;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(247, 244, 238, 0.08);
  border: 1px solid var(--line-dark);
  color: var(--ivory);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.lightbox-close:hover,
.lightbox-nav:hover { background: var(--gold); color: var(--ink); }
.lightbox-close { top: 28px; right: 28px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-nav:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-prev { left: 28px; }
.lightbox-next { right: 28px; }

/* ============================= SPECS / DETAILS ============================= */
.specs-table {
  width: 100%;
  border-collapse: collapse;
}
.specs-table tr { border-bottom: 1px solid var(--line); }
.specs-table th,
.specs-table td {
  text-align: left;
  padding: 18px 8px;
  font-size: 1rem;
}
.specs-table th {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--muted);
  width: 42%;
}
.specs-table td { color: var(--ink); font-weight: 500; }

.feature-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 48px;
}
.feature-columns li {
  position: relative;
  padding: 14px 0 14px 30px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
.feature-columns li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

/* Finishes cards */
.finish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.finish-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}
.finish-card img { width: 100%; height: 220px; object-fit: cover; }
.finish-body { padding: 24px 26px 28px; }
.finish-body h3 { font-size: 1.45rem; margin-bottom: 6px; }
.finish-body p { color: var(--muted); margin: 0; font-size: 0.96rem; }

/* Floor plan style images */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.plan-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}
.plan-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  filter: grayscale(0.15);
}
.plan-card figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 18px 8px 6px;
}
.plan-card figcaption h3 { font-size: 1.4rem; margin: 0; }
.plan-card figcaption span { color: var(--gold-deep); font-size: 0.84rem; letter-spacing: 0.12em; text-transform: uppercase; }

/* ============================= NEIGHBORHOOD ============================= */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.amenity-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.amenity-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.amenity-media { position: relative; height: 230px; overflow: hidden; }
.amenity-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.amenity-card:hover .amenity-media img { transform: scale(1.06); }
.amenity-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(20, 19, 15, 0.78);
  color: var(--ivory);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--radius);
}
.amenity-body { padding: 26px 28px 30px; }
.amenity-body h3 { font-size: 1.5rem; margin-bottom: 6px; }
.amenity-body p { color: var(--muted); margin: 0 0 12px; font-size: 0.96rem; }
.amenity-meta { color: var(--gold-deep); font-size: 0.85rem; letter-spacing: 0.05em; }

/* Distance / quick stats list */
.distance-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 56px;
}
.distance-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.distance-list .place { color: var(--ink); font-weight: 500; }
.distance-list .dist {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--gold-deep);
  white-space: nowrap;
}

/* Map-style block */
.map-block {
  position: relative;
  min-height: 360px;
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    repeating-linear-gradient(0deg, var(--ivory-soft), var(--ivory-soft) 38px, #e9e2d4 38px, #e9e2d4 39px),
    repeating-linear-gradient(90deg, var(--ivory-soft), var(--ivory-soft) 38px, #e9e2d4 38px, #e9e2d4 39px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-roads::before,
.map-roads::after {
  content: '';
  position: absolute;
  background: #ddd3bf;
}
.map-roads::before { left: 0; right: 0; top: 46%; height: 12px; transform: rotate(-4deg); }
.map-roads::after { top: 0; bottom: 0; left: 38%; width: 12px; transform: rotate(3deg); }
.map-marker {
  position: relative;
  z-index: 2;
  text-align: center;
  background: var(--ink);
  color: var(--ivory);
  padding: 20px 28px;
  box-shadow: var(--shadow-md);
}
.map-marker .pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  margin-bottom: 10px;
}
.map-marker strong { display: block; font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; }
.map-marker span { font-size: 0.82rem; color: rgba(247, 244, 238, 0.7); }

/* ============================= CONTACT / TOUR FORM ============================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.tour-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 44px;
  box-shadow: var(--shadow-sm);
}
.tour-form-wrap h2 { font-size: 2.2rem; margin-bottom: 4px; }

.form-field { display: flex; flex-direction: column; text-align: left; margin-bottom: 20px; }
.form-field label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0 0 8px 0;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--ivory);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-field textarea { resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.18);
}
.form-field input.invalid,
.form-field textarea.invalid { border-color: #b3433a; box-shadow: 0 0 0 3px rgba(179, 67, 58, 0.14); }
.field-error { color: #b3433a; font-size: 0.82rem; margin-top: 6px; min-height: 1em; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-status { margin: 18px 0 0; font-weight: 500; min-height: 1.4em; }
.form-status.success { color: var(--gold-deep); }
.form-status.error { color: #b3433a; }

/* Agent card */
.agent-card {
  background: var(--ink);
  color: var(--ivory);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.agent-photo { width: 100%; height: 300px; object-fit: cover; }
.agent-body { padding: 30px 32px 36px; }
.agent-body .eyebrow { color: var(--gold-soft); }
.agent-body h3 { color: var(--ivory); font-size: 1.9rem; margin-bottom: 2px; }
.agent-role { color: var(--gold-soft); font-size: 0.9rem; letter-spacing: 0.06em; margin-bottom: 18px; }
.agent-bio { color: rgba(247, 244, 238, 0.74); font-size: 0.95rem; }
.agent-contact-info {
  border-top: 1px solid var(--line-dark);
  padding-top: 20px;
  margin-top: 20px;
}
.agent-contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: rgba(247, 244, 238, 0.9);
}
.agent-contact-info li:last-child { margin-bottom: 0; }
.agent-contact-info a { color: var(--ivory); transition: color 0.2s var(--ease); }
.agent-contact-info a:hover { color: var(--gold-soft); }
.agent-contact-info .ico { color: var(--gold-soft); display: inline-flex; }

/* Contact detail strip */
.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}
.contact-strip .info-card {
  background: var(--ivory-soft);
  border: 1px solid var(--line);
  padding: 28px;
  text-align: center;
}
.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.info-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.info-card p { margin: 0 0 2px; color: var(--ink); }
.info-card a { color: var(--gold-deep); font-weight: 600; }
.info-card a:hover { text-decoration: underline; }
.info-note { color: var(--muted); font-size: 0.86rem; }

/* ============================= PAGE BANNER ============================= */
.page-banner {
  position: relative;
  color: var(--ivory);
  overflow: hidden;
  padding: 130px 0 92px;
}
.page-banner-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 11, 8, 0.55), rgba(12, 11, 8, 0.82));
  z-index: 1;
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner .eyebrow { color: var(--gold-soft); }
.page-banner h1 {
  color: var(--ivory);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin: 0 0 0.2em;
}
.page-banner-sub {
  color: rgba(247, 244, 238, 0.84);
  font-size: 1.14rem;
  max-width: 640px;
  margin: 0 0 22px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(247, 244, 238, 0.7);
  text-transform: uppercase;
}
.breadcrumb a { color: rgba(247, 244, 238, 0.78); transition: color 0.2s var(--ease); }
.breadcrumb a:hover { color: var(--ivory); }
.breadcrumb span[aria-current] { color: var(--gold-soft); }
.breadcrumb span[aria-hidden] { color: rgba(247, 244, 238, 0.4); }

/* ============================= CTA BAND ============================= */
.cta-band {
  position: relative;
  color: var(--ivory);
  overflow: hidden;
  padding: 0;
}
.cta-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12, 11, 8, 0.9) 0%, rgba(12, 11, 8, 0.6) 100%);
  z-index: 1;
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 110px 0;
}
.cta-inner .eyebrow { color: var(--gold-soft); }
.cta-inner h2 { color: var(--ivory); font-size: clamp(2.4rem, 5vw, 3.6rem); }
.cta-inner p { color: rgba(247, 244, 238, 0.85); font-size: 1.14rem; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================= FOOTER ============================= */
.site-footer { background: var(--ink-deep); color: rgba(247, 244, 238, 0.66); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  padding: 80px 32px 54px;
}
.logo-footer { color: var(--ivory); margin-bottom: 18px; }
.footer-tagline { font-size: 0.96rem; max-width: 360px; }
.footer-contact li { margin-bottom: 8px; font-size: 0.95rem; }
.footer-contact a { color: rgba(247, 244, 238, 0.66); transition: color 0.2s var(--ease); }
.footer-contact a:hover { color: var(--gold-soft); }
.social { display: flex; gap: 12px; margin-top: 20px; }
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), color 0.25s var(--ease);
}
.social a:hover { background: var(--gold); color: var(--ink); transform: translateY(-3px); }
.footer-col h4 {
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { color: rgba(247, 244, 238, 0.66); font-size: 0.95rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom { border-top: 1px solid var(--line-dark); }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 26px 32px;
  font-size: 0.84rem;
}
.footer-bottom-inner p { margin: 0; }

/* ============================= SCROLL REVEAL ============================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

.highlights-grid .reveal.is-visible,
.gallery-grid .reveal.is-visible,
.amenity-grid .reveal.is-visible,
.finish-grid .reveal.is-visible { transition-delay: var(--reveal-delay, 0s); }

.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn:hover, .highlight-card:hover, .amenity-card:hover,
  .split-media:hover img, .gallery-item:hover img { transform: none; }
}

/* ============================= RESPONSIVE ============================= */
@media (max-width: 992px) {
  .highlights-grid { grid-template-columns: 1fr; gap: 24px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: 0; }
  .split-media img { min-height: 320px; }
  .finish-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-strip { grid-template-columns: 1fr; }
  .feature-columns { grid-template-columns: 1fr; }
  .distance-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .span-2-col { grid-column: span 1; }
  .span-2-row { grid-row: span 1; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(12, 11, 8, 0.98);
    border-bottom: 1px solid var(--line-dark);
    box-shadow: var(--shadow-md);
    padding: 14px 32px 28px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .main-nav ul { flex-direction: column; gap: 0; width: 100%; }
  .main-nav ul li { border-bottom: 1px solid var(--line-dark); }
  .main-nav ul a { display: block; padding: 16px 4px; }
  .main-nav ul a::after { display: none; }
  .nav-cta { margin-top: 16px; width: 100%; }

  .section { padding: 76px 0; }
  .hero-spec { padding: 18px 26px 18px 0; margin-right: 26px; }
  .hero-spec .num { font-size: 1.8rem; }
  .specs-table th { width: 50%; }
  .footer-bottom-inner { flex-direction: column; }
  .lightbox-nav { width: 44px; height: 44px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .amenity-grid { grid-template-columns: 1fr; }
  .finish-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .tour-form-wrap { padding: 28px; }
  .hero-specs { gap: 0; }
  .hero-spec { border-right: 0; padding: 12px 0; margin-right: 0; width: 50%; }
}
