/* ELMA Real Estate — Landing */
:root {
  --navy: #0f2745;
  --navy-deep: #0a1c33;
  --navy-soft: #16345b;
  --gold: #c9a55c;
  --gold-soft: #d9bb7a;
  --gold-deep: #a8853d;
  --bone: #f5f0e6;
  --paper: #faf7f1;
  --ink: #0a1c33;
  --muted: rgba(255,255,255,0.72);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Tajawal', 'Cairo', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  direction: rtl;
  text-align: right;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Tajawal', 'Cairo', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(15, 39, 69, 0);
  backdrop-filter: blur(0);
  transition: background 0.3s, padding 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(10, 28, 51, 0.92);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 165, 92, 0.18);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.nav-logo .mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--gold);
  border-radius: 4px;
}
.nav-logo .mark svg { width: 22px; height: 22px; }
.nav-logo .word { font-size: 22px; font-weight: 800; letter-spacing: 0.08em; }
.nav-logo .sub { font-size: 9px; letter-spacing: 0.22em; opacity: 0.7; display: block; margin-top: 2px; }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; right: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold-soft); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold);
  color: var(--navy-deep);
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--gold-soft); transform: translateY(-1px); }

.nav-toggle { display: none; color: #fff; font-size: 24px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('images/hero.jpg') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 12s ease-out;
}
.hero.in .hero-bg { transform: scale(1); }
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,28,51,0.45) 0%, rgba(10,28,51,0) 30%, rgba(10,28,51,0) 60%, rgba(10,28,51,0.92) 100%),
    linear-gradient(270deg, rgba(10,28,51,0.5), rgba(10,28,51,0));
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 160px 0 80px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gold-soft);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-eyebrow::before {
  content: '';
  width: 48px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(44px, 6.5vw, 92px);
  font-weight: 800;
  margin-bottom: 28px;
  max-width: 14ch;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.hero h1 .accent {
  color: var(--gold);
  display: block;
}
.hero-lead {
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 58ch;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn svg { width: 16px; height: 16px; }

.hero-stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 32px;
}
.hero-stat { padding: 0 16px; }
.hero-stat:not(:last-child) { border-left: 1px solid rgba(255,255,255,0.12); }
.hero-stat .num {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  color: var(--gold);
  font-feature-settings: 'tnum';
}
.hero-stat .lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  letter-spacing: 0.2em;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll .line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scroll-pulse 2s infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* ============ SECTIONS ============ */
section { position: relative; }

.section-intro {
  padding: 120px 0 80px;
  background: var(--paper);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.intro-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}
.intro-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.intro-img:hover img { transform: scale(1.04); }
.intro-img::before {
  content: '';
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.intro-img-wrap { position: relative; padding: 16px 16px 0 0; }

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.2;
}
.section-title .gold { color: var(--gold-deep); }
.section-lead {
  font-size: 17px;
  color: rgba(10,28,51,0.75);
  margin-bottom: 28px;
  max-width: 56ch;
}
.signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(10,28,51,0.12);
  display: flex;
  align-items: center;
  gap: 16px;
}
.signature .avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  display: grid; place-items: center;
  color: var(--gold);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.05em;
}
.signature .who .name { font-weight: 700; color: var(--navy); }
.signature .who .role { font-size: 13px; color: rgba(10,28,51,0.6); }

/* ============ FEATURES ============ */
.section-features {
  padding: 120px 0;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-features::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/features.jpg') center/cover no-repeat;
  opacity: 0.18;
  filter: blur(2px);
}
.section-features::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--navy) 0%, rgba(15,39,69,0.88) 50%, var(--navy) 100%);
}
.features-inner { position: relative; z-index: 2; }
.features-head {
  text-align: center;
  margin-bottom: 72px;
}
.features-head .eyebrow { color: var(--gold-soft); justify-content: center; }
.features-head .eyebrow::before { background: var(--gold-soft); }
.features-head h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  color: #fff;
}
.features-head h2 .gold { color: var(--gold); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.feature {
  padding: 36px 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
  cursor: default;
  position: relative;
}
.feature:hover {
  background: rgba(201, 165, 92, 0.08);
  border-color: rgba(201, 165, 92, 0.35);
  transform: translateY(-4px);
}
.feature-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  color: var(--gold);
  margin-bottom: 24px;
  background: rgba(201, 165, 92, 0.08);
  border: 1px solid rgba(201, 165, 92, 0.25);
  border-radius: 2px;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.feature p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ============ NATURE ============ */
.section-nature {
  padding: 140px 0;
  background: var(--paper);
  position: relative;
}
.nature-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.nature-img {
  position: relative;
  aspect-ratio: 5/6;
  overflow: hidden;
}
.nature-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.nature-img .badge {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.nature-list {
  list-style: none;
  margin-top: 32px;
}
.nature-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(10,28,51,0.1);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: var(--navy);
}
.nature-list li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============ GALLERY ============ */
.section-gallery {
  padding: 120px 0;
  background: var(--navy-deep);
  color: #fff;
}
.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.gallery-head h2 { color: #fff; font-size: clamp(34px, 4vw, 52px); }
.gallery-head .eyebrow { color: var(--gold-soft); }
.gallery-head .eyebrow::before { background: var(--gold-soft); }
.gallery-controls { display: flex; gap: 8px; }
.gctrl {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  transition: background 0.2s, border-color 0.2s;
  border-radius: 2px;
}
.gctrl:hover { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.gctrl svg { width: 18px; height: 18px; }

.gallery-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 16px;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gcard {
  flex: 0 0 auto;
  width: 380px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gcard .img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s;
}
.gcard:hover .img { transform: scale(1.06); }
.gcard .meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px 24px;
  background: linear-gradient(180deg, transparent, rgba(10,28,51,0.95));
}
.gcard .tag {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
  margin-bottom: 6px;
}
.gcard h3 { font-size: 22px; color: #fff; font-weight: 700; }
.gcard .price {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

/* ============ LUXURY DETAILS ============ */
.section-luxury {
  padding: 140px 0;
  background: var(--paper);
}
.luxury-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.luxury-head .section-title { color: var(--navy); }
.spec-list {
  list-style: none;
  margin-top: 40px;
  display: grid;
  gap: 4px;
}
.spec-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(10,28,51,0.1);
  cursor: pointer;
  transition: padding-right 0.3s;
}
.spec-item:hover { padding-right: 12px; }
.spec-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
}
.spec-body h4 { font-size: 18px; color: var(--navy); margin-bottom: 4px; }
.spec-body p { font-size: 14px; color: rgba(10,28,51,0.65); }
.spec-arrow { color: var(--gold-deep); font-size: 20px; transition: transform 0.3s; }
.spec-item:hover .spec-arrow { transform: translateX(-6px); }

.luxury-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.luxury-img img { width: 100%; height: 100%; object-fit: cover; }
.luxury-img .corner-tag {
  position: absolute;
  top: 0; left: 0;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 14px 22px;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 14px;
}

/* ============ CTA / CONTACT ============ */
.section-cta {
  padding: 0;
  position: relative;
  background: var(--navy-deep);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.cta-visual {
  background: url('images/hero.jpg') center/cover no-repeat;
  position: relative;
}
.cta-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,28,51,0.55), rgba(10,28,51,0.75));
}
.cta-visual .quote {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px;
  color: #fff;
  z-index: 2;
}
.cta-visual .quote-mark {
  font-size: 96px;
  font-family: serif;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 32px;
}
.cta-visual .quote-text {
  font-size: 26px;
  line-height: 1.45;
  font-weight: 600;
  margin-bottom: 32px;
  max-width: 18ch;
}
.cta-visual .quote-who { font-size: 14px; color: var(--gold-soft); letter-spacing: 0.1em; }

.cta-form {
  padding: 80px 64px;
  color: #fff;
}
.cta-form .eyebrow { color: var(--gold-soft); }
.cta-form .eyebrow::before { background: var(--gold-soft); }
.cta-form h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  color: #fff;
  margin-bottom: 16px;
}
.cta-form .lead {
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  font-size: 15px;
}

.form {
  display: grid;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
  text-align: right;
  direction: rtl;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201, 165, 92, 0.08);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.35); }
.field textarea { resize: vertical; min-height: 90px; }
.field.error input, .field.error select, .field.error textarea { border-color: #e07474; }
.field .err {
  font-size: 12px;
  color: #e07474;
  margin-top: 2px;
  display: none;
}
.field.error .err { display: block; }

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}
.consent input { margin-top: 3px; accent-color: var(--gold); }

.form-submit {
  background: var(--gold);
  color: var(--navy-deep);
  padding: 18px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover { background: var(--gold-soft); transform: translateY(-2px); }
.form-submit:disabled { opacity: 0.5; cursor: wait; transform: none; }
.form-submit svg { width: 16px; height: 16px; }

.form-whatsapp {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 14px 22px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.form-whatsapp:hover { background: #25D366; border-color: #25D366; color: #fff; }
.form-whatsapp svg { width: 18px; height: 18px; }

.form-success {
  background: rgba(201, 165, 92, 0.12);
  border: 1px solid var(--gold);
  padding: 32px;
  text-align: center;
  border-radius: 4px;
}
.form-success svg { width: 48px; height: 48px; color: var(--gold); margin: 0 auto 16px; display: block; }
.form-success h3 { color: #fff; font-size: 22px; margin-bottom: 8px; }
.form-success p { color: rgba(255,255,255,0.7); font-size: 14px; }

/* ============ FOOTER ============ */
.footer {
  background: #07142a;
  color: rgba(255,255,255,0.65);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(201, 165, 92, 0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .word { color: #fff; font-size: 26px; font-weight: 800; letter-spacing: 0.08em; margin-bottom: 6px; }
.footer-brand .sub { font-size: 10px; letter-spacing: 0.24em; color: var(--gold-soft); margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 38ch; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 18px; font-weight: 700; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-contact .row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 14px; }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}
.socials { display: flex; gap: 12px; }
.socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  display: grid; place-items: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.socials a:hover { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.socials svg { width: 16px; height: 16px; }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s, transform 0.8s; }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.6s, transform 0.6s; }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.3s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 0.35s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 0.4s; }
.reveal-stagger.in > *:nth-child(9) { transition-delay: 0.45s; }
.reveal-stagger.in > *:nth-child(10) { transition-delay: 0.5s; }
.reveal-stagger.in > *:nth-child(11) { transition-delay: 0.55s; }
.reveal-stagger.in > *:nth-child(12) { transition-delay: 0.6s; }

/* ============ MOBILE ============ */
@media (max-width: 960px) {
  .container { padding: 0 22px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; right: 0; left: 0;
    flex-direction: column;
    background: var(--navy-deep);
    padding: 24px;
    gap: 18px;
  }
  .hero-inner { padding: 130px 0 60px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hero-stat { padding: 16px 0; border-left: none !important; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 16px; }
  .intro-grid, .nature-grid, .luxury-grid { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; min-height: auto; }
  .cta-visual { min-height: 320px; }
  .cta-visual .quote { padding: 40px; }
  .cta-form { padding: 56px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
}
