/* ── Vista Royale Residences — Theme Stylesheet ───────────────────────────── */

:root {
  --cream:      #FAF0E6;
  --cream-dark: #F0E4D4;
  --dark:       #111111;
  --dark-mid:   #1E1E1E;
  --accent:     #C4845A;
  --gold:       #B8956A;
  --grey:       #888888;
  --grey-light: #CCCCCC;
  --white:      #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'DM Sans', system-ui, sans-serif;
  --font-script:  'Great Vibes', cursive;

  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography helpers ───────────────────────────────────────────────────── */
.t-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--grey);
}
.t-label--light { color: rgba(255,255,255,0.45); }

.t-display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.t-script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--accent);
  line-height: 1.2;
}
.t-body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.85;
  color: var(--grey);
}
.t-body--light { color: rgba(255,255,255,0.55); }

.accent-line {
  display: block;
  width: 40px;
  height: 1.5px;
  background: var(--accent);
  margin: 20px auto 0;
}
.accent-line--left { margin-left: 0; }

/* ── Scroll-reveal ────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ── Header ──────────────────────────────────────────────────────────────── */
#vrr-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 48px;
  transition: background 0.5s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s;
}
#vrr-header.scrolled {
  background: rgba(250,240,230,0.97);
  backdrop-filter: blur(8px);
  padding: 10px 48px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.vrr-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.vrr-logo-img { width: 38px; height: auto; display: block; transition: opacity 0.4s; }
.vrr-logo-img--light { display: none; }
.vrr-logo-img--dark  { display: block; }
.vrr-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.vrr-logo-text span:first-child {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--dark);
  transition: color 0.4s;
}
.vrr-logo-text span:last-child {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color 0.4s;
}

.vrr-nav { display: flex; align-items: center; gap: 36px; }
.vrr-nav a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.3s;
}
.vrr-nav a:hover { color: var(--accent); }

.vrr-burger { display: none; cursor: pointer; flex-direction: column; gap: 5px; background: none; border: none; padding: 0; }
.vrr-burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--dark); transition: background 0.4s;
}

/* Mobile nav */
.vrr-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.vrr-mobile-nav.open { display: flex; }
.vrr-mobile-nav a {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.05em;
}
.vrr-mobile-close {
  position: absolute; top: 28px; right: 36px;
  font-size: 28px; color: var(--white); cursor: pointer;
}

/* ── HERO ─────────────────────────────────────────────────────────────────── */
#vrr-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vrr-hero-bg {
  position: absolute;
  inset: 0;
}
.vrr-hero-bg img {
  object-position: center top;
  transform: scale(1.04);
  transition: transform 8s var(--ease);
}
.vrr-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
}
.vrr-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px 80px;
  color: var(--dark);
  margin-top: -80px;
}
.vrr-hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vrr-hero-logo {
  width: 56px;
  height: auto;
  object-fit: contain;
  margin-bottom: 8px;
}
.vrr-hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--dark);
  margin-bottom: 4px;
}
.vrr-hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: none;
  color: rgba(0,0,0,0.55);
  margin-bottom: 12px;
}
.vrr-hero-divider {
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(0,0,0,0.25);
  margin: 0 auto 12px;
}
.vrr-hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  margin-bottom: 48px;
}
.vrr-hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(0,0,0,0.4);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
}
.vrr-hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ── INTRODUCTION ─────────────────────────────────────────────────────────── */
#vrr-intro {
  background: var(--cream);
  padding: 64px 0 0;
  text-align: center;
}
.vrr-intro-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 48px 80px;
}
.vrr-intro-headline {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--dark);
  margin-bottom: 0;
}
.vrr-intro-body {
  margin-top: 36px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--grey);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.vrr-intro-coda {
  margin-top: 36px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--dark);
  letter-spacing: 0.02em;
}
.vrr-intro-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 0;
  padding: 20px 0 80px;
}
.vrr-intro-ctas .vrr-btn:first-child {
  justify-self: end;
  margin-right: 8px;
}
.vrr-intro-ctas .vrr-btn:last-child {
  justify-self: start;
  margin-left: 8px;
}

/* ── OVERVIEW ─────────────────────────────────────────────────────────────── */
#vrr-overview {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}
.vrr-overview-image { position: relative; overflow: hidden; min-height: 500px; }
.vrr-overview-image img { object-position: center; }
.vrr-overview-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  color: var(--white);
}
.vrr-overview-headline {
  font-size: clamp(40px, 4.5vw, 68px);
  color: var(--white);
  line-height: 1.05;
  margin: 20px 0 8px;
}
.vrr-overview-script {
  font-size: 52px;
  display: block;
  margin-bottom: 36px;
}
.vrr-overview-body { max-width: 400px; margin-bottom: 48px; }
.vrr-overview-traits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  margin-bottom: 48px;
}
.vrr-overview-trait {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.vrr-overview-trait::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.vrr-overview-units { display: flex; gap: 32px; }
.vrr-unit-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.vrr-unit-pill::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── EXTERIORS ────────────────────────────────────────────────────────────── */
#vrr-exteriors {
  background: var(--cream);
  padding: 120px 48px;
}
.vrr-exteriors-inner { max-width: 1280px; margin: 0 auto; }
.vrr-exteriors-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 48px;
}
.vrr-exteriors-title { font-size: clamp(40px, 5vw, 72px); color: var(--dark); }
.vrr-exteriors-desc { max-width: 360px; text-align: right; }
.vrr-exteriors-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.vrr-ext-main {
  grid-row: 1 / 3;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.vrr-ext-main img,
.vrr-ext-sm img { transition: transform 0.8s var(--ease); }
.vrr-ext-main:hover img,
.vrr-ext-sm:hover img { transform: scale(1.04); }
.vrr-ext-sm { aspect-ratio: 4/3; overflow: hidden; }
.vrr-ext-caption {
  margin-top: 20px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
}
.vrr-ext-script {
  font-size: 40px;
  margin-top: 8px;
  display: block;
}

/* ── ARRIVAL ──────────────────────────────────────────────────────────────── */
#vrr-arrival {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.vrr-arrival-bg { position: absolute; inset: 0; }
.vrr-arrival-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
}
.vrr-arrival-content {
  position: relative;
  z-index: 2;
  padding: 72px 80px;
  color: var(--white);
}
.vrr-arrival-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin-top: 14px;
}

/* ── AMENITIES ────────────────────────────────────────────────────────────── */
#vrr-amenities {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.vrr-amenities-bg {
  position: absolute;
  inset: 0;
  opacity: 0.25;
}
.vrr-amenities-inner {
  position: relative;
  z-index: 2;
  padding: 120px 80px;
  max-width: 1280px;
  margin: 0 auto;
}
.vrr-amenities-header { margin-bottom: 72px; }
.vrr-amenities-headline {
  font-size: clamp(38px, 4.5vw, 64px);
  color: var(--white);
  margin-top: 16px;
}
.vrr-amenities-script { font-size: 48px; display: block; }
.vrr-amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
}
.vrr-amenity {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vrr-amenity-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.vrr-amenity-icon svg { width: 20px; height: 20px; }
.vrr-amenity-name {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ── ROOFTOP ──────────────────────────────────────────────────────────────── */
#vrr-rooftop {
  position: relative;
  height: 85vh;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.vrr-rooftop-bg { position: absolute; inset: 0; }
.vrr-rooftop-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}
.vrr-rooftop-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 48px;
  max-width: 700px;
}
.vrr-rooftop-headline {
  font-size: clamp(38px, 5vw, 68px);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-top: 16px;
  margin-bottom: 20px;
}
.vrr-rooftop-body { font-size: 15px; line-height: 1.85; color: var(--white); }
.vrr-rooftop-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.vrr-rooftop-feature {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  display: flex; align-items: center; gap: 10px;
}
.vrr-rooftop-feature::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--accent);
}

/* ── INTERIORS ────────────────────────────────────────────────────────────── */
#vrr-interiors {
  background: var(--cream);
  padding: 120px 48px;
}
.vrr-interiors-inner { max-width: 1280px; margin: 0 auto; }
.vrr-interiors-header { text-align: center; margin-bottom: 64px; }
.vrr-interiors-headline { font-size: clamp(36px, 4.5vw, 62px); color: var(--dark); margin-top: 16px; }
.vrr-interiors-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--cream-dark);
}
.vrr-tab-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey-light);
  padding: 14px 28px;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}
.vrr-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.vrr-tab-btn.active { color: var(--dark); }
.vrr-tab-btn.active::after { transform: scaleX(1); }
.vrr-interiors-panel { display: none; }
.vrr-interiors-panel.active { display: block; }
.vrr-interiors-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}
.vrr-gallery-item {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: zoom-in;
}
.vrr-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.vrr-gallery-item:hover img { transform: scale(1.05); }
.vrr-gallery-item--single {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}
.vrr-interior-caption {
  font-size: 14px;
  line-height: 1.9;
  color: var(--grey);
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* ── FLOOR PLANS ──────────────────────────────────────────────────────────── */
#vrr-plans {
  background: var(--dark);
  padding: 120px 48px;
}
.vrr-plans-inner { max-width: 1280px; margin: 0 auto; }
.vrr-plans-header { text-align: center; margin-bottom: 72px; color: var(--white); }
.vrr-plans-headline { font-size: clamp(36px, 4.5vw, 60px); color: var(--white); margin-top: 16px; }
.vrr-plans-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.vrr-plan-card { background: rgba(255,255,255,0.04); padding: 48px; }
.vrr-plan-tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.vrr-plan-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}
.vrr-plan-size {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 32px;
}
.vrr-plan-desc { font-size: 14px; line-height: 1.85; color: rgba(255,255,255,0.45); }
.vrr-plan-render {
  display: block;
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 16/9;
  margin-bottom: 32px;
}
.vrr-plan-render img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.vrr-plan-render:hover img { transform: scale(1.04); }
.vrr-plan-image {
  display: block;
  overflow: hidden;
  background: #f5f0e8;
  cursor: zoom-in;
  padding: 24px 32px;
  margin-bottom: 28px;
}
.vrr-plan-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s ease;
}
.vrr-plan-image:hover img { transform: scale(1.02); }

/* ── GALLERY ──────────────────────────────────────────────────────────────── */
#vrr-gallery {
  background: var(--dark);
  padding: 120px 0 80px;
}
.vrr-gallery-header {
  text-align: center;
  padding: 0 48px 72px;
}
.vrr-gallery-headline { color: var(--white); margin: 20px 0 8px; }
.vrr-gallery-script   { font-size: 52px; display: block; margin-bottom: 0; }

.vrr-gallery-album { margin-bottom: 80px; }
.vrr-gallery-album:last-child { margin-bottom: 0; }
.vrr-gallery-album-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 0 0 16px 64px;
}

/* Viewer row */
.vrr-gallery-viewer {
  display: flex;
  align-items: stretch;
}
.vrr-gallery-prev,
.vrr-gallery-next {
  flex: 0 0 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
}
.vrr-gallery-prev:hover,
.vrr-gallery-next:hover { color: var(--white); }

.vrr-gallery-stage {
  flex: 1;
  position: relative;
  aspect-ratio: 16/8;
  overflow: hidden;
  background: #111;
}
.vrr-gallery-stage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: opacity 0.2s ease;
}
.vrr-gallery-counter {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.5);
  padding: 4px 12px;
  pointer-events: none;
}

/* Thumbnail strip */
.vrr-gallery-thumbs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 64px 0;
  scrollbar-width: none;
}
.vrr-gallery-thumbs::-webkit-scrollbar { display: none; }
.vrr-gallery-thumb {
  flex: 0 0 160px;
  height: 108px;
  overflow: hidden;
  scroll-snap-align: start;
  padding: 0;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.vrr-gallery-thumb.is-active { border-color: var(--accent); }
.vrr-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.vrr-gallery-thumb:hover img,
.vrr-gallery-thumb.is-active img { opacity: 1; }

/* ── LOCATION ─────────────────────────────────────────────────────────────── */
#vrr-location {
  background: var(--cream);
  padding: 120px 48px;
}
.vrr-location-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.vrr-location-text { padding-top: 16px; }
.vrr-location-headline { font-size: clamp(36px, 4vw, 56px); color: var(--dark); margin: 16px 0 20px; }
.vrr-location-body { font-size: 15px; line-height: 1.9; color: var(--grey); margin-bottom: 48px; max-width: 400px; }
.vrr-location-list { display: flex; flex-direction: column; gap: 14px; }
.vrr-location-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 13px;
}
.vrr-location-item-name { color: var(--dark); letter-spacing: 0.05em; }
.vrr-location-item-dist { color: var(--accent); font-size: 11px; letter-spacing: 0.15em; }
.vrr-map { aspect-ratio: 1/1; overflow: hidden; }
.vrr-map iframe   { width: 100%; height: 100%; border: 0; }
#vrr-map-canvas   { width: 100%; height: 100%; }

/* ── CONTACT ──────────────────────────────────────────────────────────────── */
#vrr-contact {
  background: var(--dark);
  padding: 120px 48px;
}
.vrr-contact-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.vrr-contact-headline { font-size: clamp(38px, 5vw, 64px); color: var(--white); margin: 16px 0 12px; }
.vrr-contact-sub { font-size: 15px; color: rgba(255,255,255,0.45); margin-bottom: 56px; }
.vrr-form {
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.vrr-form-group { display: flex; flex-direction: column; gap: 8px; }
.vrr-form-group.full { grid-column: 1 / -1; }
.vrr-form label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.vrr-form input,
.vrr-form select,
.vrr-form textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  appearance: none;
}
.vrr-form input:focus,
.vrr-form select:focus,
.vrr-form textarea:focus { border-color: var(--accent); }
.vrr-form textarea { resize: vertical; min-height: 120px; }
.vrr-form select option { background: var(--dark); }
.vrr-form-submit {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 12px;
}
.vrr-btn {
  display: inline-block;
  padding: 17px 48px;
  background: var(--dark);
  border: 1px solid var(--dark);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.vrr-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
#vrr-form-status {
  grid-column: 1/-1;
  text-align: center;
  font-size: 13px;
  padding: 12px 0;
  min-height: 40px;
}

/* ── DELIVERY BANNER ──────────────────────────────────────────────────────── */
#vrr-delivery {
  background: var(--accent);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.vrr-delivery-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.vrr-delivery-text {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
}
.vrr-delivery-sep { width: 1px; height: 32px; background: rgba(255,255,255,0.3); }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
#vrr-footer {
  background: var(--dark);
  padding: 56px 48px 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.vrr-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.vrr-footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--white);
}
.vrr-footer-logo-img { width: 40px; height: auto; display: block; opacity: 0.85; }
.vrr-footer-logo span {
  display: block;
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 4px;
}
.vrr-footer-links { display: flex; gap: 32px; flex-wrap: wrap; }
.vrr-footer-links a {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: color 0.3s;
}
.vrr-footer-links a:hover { color: var(--white); }
.vrr-footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
  width: 100%;
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 20px;
}

/* ── INNER PAGES (page.php) ──────────────────────────────────────────────── */
#vrr-page-main {
  background: var(--cream);
  padding-top: 140px;
  min-height: 60vh;
}
.vrr-page-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 48px 100px;
}
.vrr-page-header {
  margin-bottom: 48px;
}
.vrr-page-title {
  margin-top: 24px;
  font-size: clamp(36px, 5vw, 60px);
  color: var(--dark);
}
.vrr-page-content {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
.vrr-page-content h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--dark);
  margin: 48px 0 16px;
  letter-spacing: 0.02em;
}
.vrr-page-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--dark);
  margin: 36px 0 12px;
}
.vrr-page-content p { margin-bottom: 20px; }
.vrr-page-content a { color: var(--accent); text-decoration: underline; }
.vrr-page-content ul, .vrr-page-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.vrr-page-content li { margin-bottom: 8px; }
@media (max-width: 768px) {
  .vrr-page-inner { padding: 0 24px 72px; }
}

/* ── Parallax images ─────────────────────────────────────────────────────── */
.vrr-parallax {
  position: absolute !important;
  inset: auto !important;
  top: -15% !important;
  left: 0 !important;
  width: 100% !important;
  height: 130% !important;
  object-fit: cover !important;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .vrr-parallax { top: 0 !important; height: 100% !important; transform: none !important; will-change: auto; }
}

/* ── Admin bar offset ────────────────────────────────────────────────────── */
.admin-bar #vrr-header   { top: 32px; }
.admin-bar .vrr-mobile-nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar #vrr-header   { top: 46px; }
  .admin-bar .vrr-mobile-nav { top: 46px; }
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  #vrr-overview { grid-template-columns: 1fr; }
  .vrr-overview-image { min-height: 60vw; grid-row: auto; }
  .vrr-overview-content { padding: 60px 48px; }
  .vrr-exteriors-grid { grid-template-columns: 1fr; }
  .vrr-ext-main { grid-row: auto; aspect-ratio: 16/10; }
  .vrr-interiors-gallery { grid-template-columns: repeat(2, 1fr); }
  .vrr-gallery-item--single { aspect-ratio: 4/3; }
  .vrr-plans-grid { grid-template-columns: 1fr; }
  .vrr-location-inner { grid-template-columns: 1fr; }
  .vrr-amenities-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  #vrr-header { padding: 20px 24px; }
  #vrr-header.scrolled { padding: 14px 24px; }
  .vrr-nav { display: none; }
  .vrr-burger { display: flex; }
  #vrr-intro { padding: 80px 0 0; }
  .vrr-intro-inner { padding: 0 24px 60px; }
  .vrr-intro-ctas { grid-template-columns: 1fr; gap: 12px; padding: 0 24px 60px; }
  .vrr-intro-ctas .vrr-btn:first-child,
  .vrr-intro-ctas .vrr-btn:last-child { justify-self: center; margin: 0; }
  #vrr-exteriors, #vrr-interiors, #vrr-plans,
  #vrr-location, #vrr-contact { padding: 80px 24px; }
  .vrr-amenities-inner { padding: 80px 24px; }
  .vrr-arrival-content { padding: 48px 24px; }
  .vrr-amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .vrr-overview-content { padding: 60px 24px; }
  .vrr-overview-traits { grid-template-columns: 1fr; }
  .vrr-form { grid-template-columns: 1fr; }
  .vrr-form-group.full { grid-column: 1; }
  .vrr-form-submit { grid-column: 1; }
  .vrr-exteriors-header { flex-direction: column; align-items: flex-start; }
  .vrr-exteriors-desc { text-align: left; }
  .vrr-interiors-gallery { grid-template-columns: 1fr; }
  .vrr-interiors-tabs { gap: 0; overflow-x: auto; justify-content: flex-start; }
  .vrr-tab-btn { padding: 12px 18px; white-space: nowrap; }
  #vrr-footer { padding: 40px 24px 28px; }
  .vrr-footer-inner { flex-direction: column; align-items: flex-start; }
  #vrr-delivery { padding: 28px 24px; }
}
