/* ══════════════════════════════════════════════════════
   Villa KRAVE — Main Stylesheet (Light Edition)
   villakrave.com / villakrave.de
   ══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Brand */
  --navy:        #132257;
  --navy-dark:   #0d1a42;
  --navy-mid:    #1e3270;
  --gold:        #c9a84c;
  --gold-light:  #fdf5e0;
  --gold-mid:    #f0d98a;
  --gold-dark:   #a8880f;

  /* Light surfaces */
  --white:       #ffffff;
  --surface:     #f7f8fc;
  --surface-2:   #eef1f9;
  --border:      #e4e8f2;
  --border-soft: #eff1f8;

  /* Text */
  --text-1:      #0f172a;
  --text-2:      #334155;
  --text-3:      #64748b;
  --text-4:      #94a3b8;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Layout */
  --max-w:        1160px;
  --nav-h:        70px;
  --section-gap:  100px;
  --card-r:       16px;

  /* Shadows — light and soft */
  --shadow-xs: 0 1px 3px rgba(15,23,42,0.04);
  --shadow-sm: 0 2px 8px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.03);
  --shadow-md: 0 6px 20px rgba(15,23,42,0.07), 0 2px 8px rgba(15,23,42,0.04);
  --shadow-lg: 0 20px 48px rgba(15,23,42,0.09), 0 8px 16px rgba(15,23,42,0.04);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.22);
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-1);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ── Container ───────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

/* ── Typography ──────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text-1);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { color: var(--text-2); line-height: 1.75; }

.section-label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.gold-line {
  display: block;
  width: 40px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-mid));
  border-radius: 2px;
  margin-top: 14px;
}
.section-title { margin-bottom: 14px; }
.section-subtitle {
  font-size: 1.05rem; color: var(--text-3);
  max-width: 540px; line-height: 1.75;
  margin-bottom: 44px;
}

/* ── Announcement Bar ────────────────────────────────── */
.announce-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 10px 48px;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.02em;
  position: relative; z-index: 101;
}
.announce-bar a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.announce-close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,0.45);
  font-size: 0.9rem; padding: 4px 8px; border-radius: 4px;
  transition: color 150ms;
}
.announce-close:hover { color: #fff; }

/* ── Navigation ──────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 280ms, box-shadow 280ms, top 280ms;
}
.site-header.has-bar { top: 36px; }

/* On hero — frosted white */
.site-header.at-hero {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border-soft);
}
/* When scrolled — solid white */
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-xs);
}

.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: var(--nav-h); gap: 16px;
}

/* Logo */
.logo {
  display: flex; align-items: center;
  white-space: nowrap;
}
.logo-img {
  height: 38px; width: auto;
  display: block;
}
.logo-villa { color: var(--navy); }
.logo-krave { color: var(--gold-dark); }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 8px 14px; border-radius: 8px;
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-2);
  transition: all 150ms;
}
.nav-links a:hover { background: var(--surface-2); color: var(--navy); }
.nav-links a.nav-active {
  background: var(--navy);
  color: #fff !important;
  font-weight: 600;
}
.nav-links a.nav-active:hover { background: var(--navy-mid); color: #fff !important; }
.nav-links .nav-cta {
  background: transparent !important;
  color: var(--navy) !important;
  border: 1.5px solid var(--navy) !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
  margin-left: 6px;
  border-radius: 8px;
}
.nav-links .nav-cta:hover { background: var(--navy) !important; color: #fff !important; transform: translateY(-1px); box-shadow: var(--shadow-sm); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column;
  justify-content: center; gap: 5px;
  background: none; border: none;
  padding: 8px; border-radius: 8px;
  width: 40px; height: 40px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all 200ms;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 8px 0 16px;
  box-shadow: var(--shadow-md);
}
.mobile-nav a {
  padding: 13px 28px; font-size: 0.95rem; font-weight: 500;
  color: var(--text-1); border-bottom: 1px solid var(--border-soft);
  transition: background 150ms;
}
.mobile-nav a:hover { background: var(--surface); }
.mobile-nav a:last-child {
  border-bottom: none;
  margin: 12px 20px 0;
  background: var(--navy); color: #fff;
  font-weight: 600; border-radius: 10px;
  text-align: center; padding: 13px 20px;
}
.mobile-nav.open { display: flex; }

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: 10px;
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 700;
  cursor: pointer; border: none; transition: all 200ms;
  white-space: nowrap; line-height: 1;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--navy); background: var(--surface); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; border-radius: 8px; }
.btn-lg { padding: 16px 36px; font-size: 0.95rem; border-radius: 12px; }

/* ── Sections ────────────────────────────────────────── */
.section { padding: var(--section-gap) 0; }
.section-alt { background: var(--surface); }
.section-header { margin-bottom: 52px; }
.section-header-flex {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--white);
}

/* Decorative background shapes */
.hero-bg-shape-1 {
  position: absolute; top: -120px; right: -80px;
  width: 640px; height: 640px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light) 0%, #e8f0ff 100%);
  opacity: 0.6; z-index: 0;
}
.hero-bg-shape-2 {
  position: absolute; bottom: -60px; left: -100px;
  width: 440px; height: 440px; border-radius: 50%;
  background: linear-gradient(135deg, #e8f0ff 0%, var(--surface) 100%);
  opacity: 0.7; z-index: 0;
}
.hero-bg-dot-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, #c5cfe0 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.25;
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: 140px 0 100px; width: 100%;
}
.hero-text { }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-light);
  border: 1px solid var(--gold-mid);
  color: var(--gold-dark);
  padding: 7px 16px; border-radius: 100px;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 { color: var(--navy); max-width: 580px; margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--gold-dark); }
.hero-sub {
  font-size: 1.05rem; color: var(--text-3);
  max-width: 460px; margin-bottom: 40px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual {
  position: relative;
}
.hero-card-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  background-image: url('images/villa-krave/External/external-01.jpg');
  background-size: cover;
  background-position: center top;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.hero-card-main::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(19,34,87,0.12) 100%);
}
.hero-card-float {
  position: absolute; bottom: -16px; left: -20px;
  background: var(--white); border-radius: 16px;
  padding: 16px 20px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  min-width: 200px;
}
.hero-card-float-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.hero-card-float-label { font-size: 0.72rem; color: var(--text-4); font-weight: 500; }
.hero-card-float-value { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--navy); }

/* ── Stats Bar ───────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: 0;
}
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center; padding: 32px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 800;
  color: var(--gold); line-height: 1; margin-bottom: 6px;
}
.stat-label {
  font-size: 0.76rem; font-weight: 500;
  color: rgba(255,255,255,0.5); letter-spacing: 0.05em;
}

/* ── Cards ───────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--card-r);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 260ms, box-shadow 260ms, border-color 260ms;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border); }

.card-img {
  width: 100%; aspect-ratio: 4/3;
  overflow: hidden; border-radius: 12px 12px 0 0;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; display: block; image-orientation: from-image; }
.card-body { padding: 24px 26px; }
.card-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-dark); background: var(--gold-light);
  padding: 4px 10px; border-radius: 100px; margin-bottom: 12px;
}
.card-title {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--text-1); margin-bottom: 6px;
}
.card-price {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 12px;
}
.card-price sub { font-size: 0.78rem; font-weight: 400; color: var(--text-4); }
.card-desc { font-size: 0.875rem; color: var(--text-3); line-height: 1.7; margin-bottom: 20px; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 700; color: var(--navy);
  transition: gap 200ms, color 150ms;
}
.card-link:hover { color: var(--gold-dark); gap: 10px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ── About section ───────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-visual {
  aspect-ratio: 1; border-radius: 24px; overflow: hidden; position: relative;
  background-image: url('images/the-riverside-loft/updated-06.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}
.about-ring {
  position: absolute; inset: -16px;
  border-radius: 30px;
  border: 1px solid rgba(201,168,76,0.25);
  transform: rotate(2deg);
  pointer-events: none;
}
.about-swim-badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 38%; aspect-ratio: 1;
  border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
}
.about-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.about-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-light); border: 1px solid var(--gold-mid);
  color: var(--gold-dark); padding: 8px 16px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600;
}

/* ── Feature Row (property/swim detail) ─────────────── */
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center; margin-bottom: 88px;
}
.feature-grid:last-of-type { margin-bottom: 0; }
.feature-grid.flip { direction: rtl; }
.feature-grid.flip > * { direction: ltr; }

.feature-img {
  aspect-ratio: 16/11;
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-md);
  /* Replace with real image */
}
.feature-content .section-label { display: block; margin-bottom: 6px; }
.feature-content h3 { font-size: clamp(1.5rem, 2.5vw, 1.9rem); margin-bottom: 6px; }
.feature-content p { margin-bottom: 14px; }
.feature-price {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 800;
  color: var(--navy); line-height: 1; margin: 20px 0 24px;
}
.feature-price span { font-size: 0.9rem; font-weight: 400; color: var(--text-4); }
.feature-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.feature-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--text-2); padding: 6px 12px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 500;
}

/* ── Page Hero (inner pages) ────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: var(--surface);
  position: relative; overflow: hidden;
  text-align: center;
}
.page-hero-shape {
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light) 0%, #e4ecff 100%);
  opacity: 0.5; z-index: 0;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--navy); margin-bottom: 16px; }
.page-hero p {
  color: var(--text-3); font-size: 1.05rem;
  max-width: 520px; margin: 0 auto; line-height: 1.75;
}

/* ── Testimonials ────────────────────────────────────── */
.testimonial {
  background: var(--white); border-radius: var(--card-r);
  padding: 28px; border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 250ms, border-color 250ms;
}
.testimonial:hover { box-shadow: var(--shadow-md); border-color: var(--border); }
.testimonial-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text {
  font-size: 0.925rem; color: var(--text-2);
  line-height: 1.8; font-style: italic; margin-bottom: 20px;
}
.testimonial-author { font-family: var(--font-display); font-weight: 700; font-size: 0.875rem; color: var(--text-1); }
.testimonial-role { font-size: 0.78rem; color: var(--text-4); margin-top: 2px; }

/* ── CTA Band ────────────────────────────────────────── */
.cta-band {
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  padding: 88px 0; text-align: center;
}
.cta-band h2 { color: var(--navy); margin-bottom: 14px; }
.cta-band p { color: var(--text-3); max-width: 460px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Contact Form ─────────────────────────────────────── */
.contact-form {
  max-width: 560px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 14px;
  text-align: left;
}
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border-soft);
  border-radius: 10px; font-size: 0.9rem;
  font-family: inherit; color: var(--text-1);
  background: var(--white);
  transition: border-color 150ms;
  box-sizing: border-box;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--navy);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 4px; }
.contact-form .form-msg {
  padding: 12px 16px; border-radius: 10px;
  font-size: 0.875rem; font-weight: 500; display: none;
}
.contact-form .form-msg.success { background: #e8f5e9; color: #2e7d32; display: block; }
.contact-form .form-msg.error   { background: #fdecea; color: #c62828; display: block; }
@media (max-width: 540px) { .contact-form .form-row { grid-template-columns: 1fr; } }

/* ── CTA Band (dark variant for swim page) ───────────── */
.cta-band-dark {
  background: var(--navy);
  padding: 88px 0; text-align: center;
}
.cta-band-dark h2 { color: #fff; margin-bottom: 14px; }
.cta-band-dark p { color: rgba(255,255,255,0.65); max-width: 460px; margin: 0 auto 36px; }
.cta-band-dark .section-label { color: var(--gold); }

/* ── Includes/Features ───────────────────────────────── */
.includes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.include-card {
  background: var(--white); border-radius: 14px;
  padding: 28px 24px; text-align: center;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
  transition: box-shadow 220ms, transform 220ms, border-color 220ms;
}
.include-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--border); }
.include-icon { font-size: 1.8rem; margin-bottom: 14px; }
.include-title { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; color: var(--navy); }
.include-desc { font-size: 0.825rem; color: var(--text-3); line-height: 1.65; }

/* ── Footer ──────────────────────────────────────────── */
.site-footer { background: var(--navy); padding: 60px 0 28px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px; margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 800;
  letter-spacing: -0.04em; color: #fff; margin-bottom: 12px;
}
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 0.84rem; color: rgba(255,255,255,0.42); line-height: 1.7; max-width: 240px; }
.footer-col h4 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 18px;
}
.footer-col a {
  display: block; font-size: 0.875rem;
  color: rgba(255,255,255,0.55); margin-bottom: 11px;
  transition: color 150ms;
}
.footer-col a:hover { color: var(--gold); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin-bottom: 24px; }
.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.footer-domains { display: flex; gap: 20px; }
.footer-domains a { font-size: 0.78rem; color: rgba(255,255,255,0.28); transition: color 150ms; }
.footer-domains a:hover { color: var(--gold); }

/* ── Property Photo Carousel ────────────────────────── */
.prop-carousel {
  position: relative;
  aspect-ratio: 16/11;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--surface-2);
}
.prop-carousel-track {
  position: relative; width: 100%; height: 100%;
}
.prop-carousel-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.45s ease;
  z-index: 0;
}
.prop-carousel-slide.active { opacity: 1; z-index: 1; }
.prop-carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  image-orientation: from-image;
  display: block;
}
.prop-carousel-caption {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(10,20,50,0.55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.9);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 6px;
  z-index: 2; pointer-events: none;
}
.prop-carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3; background: rgba(255,255,255,0.93);
  border: none; width: 40px; height: 40px; border-radius: 50%;
  font-size: 1.5rem; line-height: 1; color: var(--navy);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  transition: all 160ms;
}
.prop-carousel-btn.prev { left: 12px; }
.prop-carousel-btn.next { right: 12px; }
.prop-carousel-btn:hover {
  background: #fff; box-shadow: 0 4px 18px rgba(0,0,0,0.22);
  transform: translateY(-50%) scale(1.07);
}
.prop-carousel-dots {
  position: absolute; bottom: 14px; right: 14px;
  display: flex; gap: 5px; z-index: 2;
}
.prop-carousel-dots .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer; transition: all 200ms; border: none;
}
.prop-carousel-dots .dot.active {
  background: #fff; transform: scale(1.35);
}
.prop-carousel-count {
  position: absolute; top: 14px; right: 14px;
  background: rgba(10,20,50,0.55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.85);
  font-size: 0.7rem; font-weight: 600;
  padding: 4px 10px; border-radius: 6px;
  z-index: 2; pointer-events: none;
}

/* ── Room Tier Cards (shared living) ────────────────── */
.room-tiers {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin: 22px 0 28px;
}
.room-tier {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 12px; text-align: center;
  transition: border-color 200ms, box-shadow 200ms;
}
.room-tier:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.room-tier.tier-highlight {
  background: var(--navy); border-color: var(--navy);
}
.tier-name {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-4); margin-bottom: 8px;
}
.room-tier.tier-highlight .tier-name { color: rgba(255,255,255,0.55); }
.tier-price {
  font-family: var(--font-display); font-size: 1.05rem;
  font-weight: 800; color: var(--navy); line-height: 1;
}
.room-tier.tier-highlight .tier-price { color: var(--gold); }
.tier-sub {
  font-size: 0.68rem; color: var(--text-4); margin-top: 4px;
}
.room-tier.tier-highlight .tier-sub { color: rgba(255,255,255,0.35); }

/* ── Section Divider Band ────────────────────────────── */
.section-divider {
  background: var(--navy); padding: 64px 0; text-align: center;
}
.section-divider .section-label { color: var(--gold); }
.section-divider h2 { color: #fff; margin-bottom: 12px; }
.section-divider p { color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto; font-size: 1rem; }

/* ── Area Intro (sub-region heading within page) ─────── */
.area-intro { margin-bottom: 52px; }
.area-intro h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); margin-bottom: 8px; }
.area-intro p { max-width: 520px; }

/* ── Fade-up animation ───────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.in { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .feature-grid { gap: 48px; }
  .about-grid { gap: 48px; }
}

@media (max-width: 768px) {
  :root { --section-gap: 68px; --nav-h: 62px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 26px 16px; }
  .feature-grid, .feature-grid.flip { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-visual { aspect-ratio: 16/10; }
  .includes-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .page-hero { padding: 130px 0 60px; }
  .cta-band, .cta-band-dark { padding: 64px 0; }
}

@media (max-width: 540px) {
  .container { padding: 0 18px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .btn-lg { width: 100%; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }
}
