/* ============================================================
   GRANDEST NUMÉRIQUE — Luxury Real Estate
   Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ---- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---- Design Tokens ---------------------------------------- */
:root {
  --black:      #09080a;
  --deep:       #1a1612;
  --warm-900:   #2d2722;
  --warm-700:   #5a4e42;
  --warm-500:   #8a7a6a;
  --warm-300:   #c4b5a4;
  --warm-100:   #ece5dc;
  --warm-50:    #f7f3ed;
  --white:      #fdfcfa;
  --off-white:  #f5f1eb;

  --gold-deep:  #8b6a1a;
  --gold:       #c4973e;
  --gold-mid:   #d4ad60;
  --gold-light: #e8cfa0;
  --gold-pale:  #f5ecdc;
  --gold-50:    #faf6ee;

  --text-primary:   #1a1612;
  --text-secondary: #5a4e42;
  --text-muted:     #8a7a6a;
  --border:         #e0d9d0;
  --surface:        #f5f1eb;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  --r-sm:   3px;
  --r-md:   8px;
  --r-lg:   14px;
  --r-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.15);

  --ease:      220ms cubic-bezier(.4,0,.2,1);
  --ease-slow: 450ms cubic-bezier(.4,0,.2,1);
}

/* ---- Typography ------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.35rem; }
h5 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

p  { color: var(--text-secondary); line-height: 1.78; }
a  { color: inherit; text-decoration: none; transition: color var(--ease); }
img { display: block; max-width: 100%; height: auto; }
ul  { list-style: none; }
button, input, select, textarea { font-family: var(--font-body); }

/* ---- Layout ----------------------------------------------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--sp-8);
}
.section     { padding-block: var(--sp-20); }
.section--sm { padding-block: var(--sp-12); }
.section--dark { background: var(--deep); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--warm { background: var(--warm-50); }

/* ---- Section header --------------------------------------- */
.section-header { text-align: center; max-width: 640px; margin-inline: auto; margin-bottom: var(--sp-12); }
.section-header h2 { margin-bottom: var(--sp-4); }
.section-header p  { font-size: 1.05rem; }

/* ---- Eyebrow label --------------------------------------- */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}
.eyebrow--light { color: var(--gold-light); }

/* ---- Divider line ----------------------------------------- */
.divider {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin: var(--sp-6) auto;
  max-width: 120px;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold-light);
}
.divider-gem {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ---- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--ease);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--deep);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(196,151,62,.35);
}
.btn--outline-dark {
  background: transparent;
  color: var(--deep);
  border-color: var(--deep);
}
.btn--outline-dark:hover {
  background: var(--deep);
  color: var(--white);
}
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--deep);
}
.btn--lg { padding: 1.1rem 2.8rem; font-size: 0.82rem; }

/* ---- Available badge -------------------------------------- */
.badge-avail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--gold-50);
  border: 1px solid var(--gold-light);
  padding: 0.32rem 0.85rem;
}
.badge-avail::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  transition: background var(--ease), box-shadow var(--ease);
}
.nav--transparent { background: transparent; }
.nav--solid {
  background: rgba(253,252,250,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  color: var(--white);
  transition: color var(--ease);
  flex-shrink: 0;
}
.nav--solid .nav__logo { color: var(--text-primary); }
.nav__logo .logo-dot { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.nav__links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: color var(--ease);
}
.nav--solid .nav__links a { color: var(--warm-700); }
.nav__links a:hover,
.nav__links a.active { color: var(--gold); }
.nav--solid .nav__links a:hover,
.nav--solid .nav__links a.active { color: var(--gold-deep); }

.nav__cta .btn {
  padding: 0.65rem 1.5rem;
  font-size: 0.72rem;
}
.nav--transparent .nav__cta .btn { border-color: rgba(255,255,255,.6); color: var(--white); }
.nav--transparent .nav__cta .btn:hover { background: rgba(255,255,255,.15); }
.nav--solid .nav__cta .btn { border-color: var(--gold); color: var(--gold-deep); }
.nav--solid .nav__cta .btn:hover { background: var(--gold); color: var(--deep); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--sp-2);
  background: none;
  border: none;
}
.nav__toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white);
  transition: all var(--ease);
}
.nav--solid .nav__toggle span { background: var(--text-primary); }
.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding-block: var(--sp-5);
  box-shadow: var(--shadow-md);
}
.nav__mobile a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.9rem var(--sp-6);
  transition: all var(--ease);
}
.nav__mobile a:hover { color: var(--gold-deep); background: var(--gold-50); }
.nav__mobile .btn { margin: var(--sp-3) var(--sp-6); }
.nav__mobile.is-open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
.hero:hover .hero__bg { transform: scale(1.04); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(9,8,10,.82) 0%,
    rgba(9,8,10,.38) 55%,
    rgba(9,8,10,.18) 100%
  );
}
.hero__content {
  position: relative;
  padding-bottom: var(--sp-16);
  max-width: 760px;
}
.hero__title {
  color: var(--white);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 1.04;
  margin-bottom: var(--sp-5);
}
.hero__title em { font-style: italic; color: var(--gold-mid); }
.hero__desc {
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: var(--sp-8);
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  right: var(--sp-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  color: rgba(255,255,255,.5);
  font-size: 0.68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* Hero — page variant (inner pages) */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,8,10,.75) 0%, rgba(9,8,10,.3) 100%);
}
.page-hero__content {
  position: relative;
  padding-bottom: var(--sp-12);
}
.page-hero__title { color: var(--white); font-size: clamp(2.4rem, 5vw, 4rem); }
.page-hero__subtitle {
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  font-weight: 300;
  margin-top: var(--sp-3);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--deep);
  padding-block: var(--sp-8);
}
.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--sp-6);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--gold-mid);
  line-height: 1;
  display: block;
}
.stat-lbl {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--warm-300);
  margin-top: var(--sp-2);
  display: block;
}

/* ============================================================
   PROPERTY CARDS
   ============================================================ */
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.property-grid--2 { grid-template-columns: repeat(2, 1fr); }

.prop-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--ease-slow), transform var(--ease-slow);
}
.prop-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.prop-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.prop-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.prop-card:hover .prop-card__img img { transform: scale(1.06); }
.prop-card__badge {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
}
.prop-card__body {
  padding: var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prop-card__location {
  font-size: 0.72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-2);
  font-weight: 500;
}
.prop-card__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: var(--sp-4);
  line-height: 1.2;
}
.prop-card__specs {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
}
.prop-card__spec {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}
.prop-card__price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--sp-4);
}
.prop-card__price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.prop-card__cta {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  transition: gap var(--ease);
}
.prop-card:hover .prop-card__cta { gap: var(--sp-3); }

/* ============================================================
   PROPERTY DETAIL
   ============================================================ */
.prop-detail-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}
.prop-detail-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.prop-detail-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,8,10,.7) 0%, transparent 55%);
}
.prop-detail-hero__badge {
  position: absolute;
  top: calc(80px + var(--sp-6));
  right: var(--sp-8);
}

.prop-overview {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.prop-overview__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-8);
  padding-block: var(--sp-10);
  flex-wrap: wrap;
}
.prop-overview__left { flex: 1; min-width: 280px; }
.prop-overview__location {
  font-size: 0.72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: var(--sp-3);
}
.prop-overview__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  margin-bottom: var(--sp-6);
}
.prop-overview__specs {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
}
.prop-spec-item { text-align: center; }
.prop-spec-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1;
}
.prop-spec-key {
  display: block;
  font-size: 0.7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: var(--sp-1);
}

.prop-overview__right { text-align: right; flex-shrink: 0; }
.prop-price-label {
  font-size: 0.72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-2);
}
.prop-price-value {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.gallery-grid__main {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item {
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-grid__main { aspect-ratio: auto; }
.gallery-grid__main .gallery-item { aspect-ratio: auto; height: 100%; }

.gallery-full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 4px;
}
.gallery-full .gallery-item { aspect-ratio: 4/3; }

/* ============================================================
   FEATURES / WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
.why-card {
  padding: var(--sp-8) var(--sp-6);
  border: 1px solid var(--border);
  background: var(--white);
  transition: all var(--ease-slow);
  text-align: center;
}
.why-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.why-icon {
  font-size: 1.8rem;
  margin-bottom: var(--sp-5);
  display: block;
}
.why-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: var(--sp-3);
}
.why-card p { font-size: 0.88rem; }

/* ============================================================
   TEAM / AGENTS
   ============================================================ */
.agent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
.agent-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--ease-slow);
}
.agent-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.agent-card__avatar {
  aspect-ratio: 3/4;
  background: var(--warm-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  overflow: hidden;
}
.agent-card__body { padding: var(--sp-5); }
.agent-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: var(--sp-1);
}
.agent-card__title {
  font-size: 0.72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: var(--sp-3);
}
.agent-card__info {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   SHOWROOM / OFFLINE STORE
   ============================================================ */
.showroom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.showroom-img {
  aspect-ratio: 1;
  overflow: hidden;
}
.showroom-img img { width: 100%; height: 100%; object-fit: cover; }
.showroom-body {
  padding: var(--sp-16);
  background: var(--deep);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.showroom-body h2 { color: var(--white); margin-bottom: var(--sp-5); }
.showroom-body p { color: rgba(255,255,255,.7); line-height: 1.8; }
.showroom-hours {
  margin-top: var(--sp-8);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4) var(--sp-8);
}
.showroom-hour-label {
  font-size: 0.72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.showroom-hour-val {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-top: var(--sp-1);
}

.location-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}
.location-card {
  padding: var(--sp-8) var(--sp-6);
  border: 1px solid var(--border);
  background: var(--white);
}
.location-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border);
}
.location-detail {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-2);
}
.location-label {
  font-size: 0.68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: var(--sp-1);
  display: block;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group  { margin-bottom: var(--sp-5); }
.form-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom-width: 2px;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: border-color var(--ease), background var(--ease);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: var(--gold-50);
}
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.65; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238a7a6a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 16px; height: 16px;
  border: 1px solid var(--border);
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 3px;
}
.form-check-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.form-check-label a { color: var(--gold-deep); text-decoration: underline; }
.form-success {
  background: var(--gold-50);
  border: 1px solid var(--gold-light);
  color: var(--gold-deep);
  padding: var(--sp-5);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--sp-6);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

/* Contact layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}
.contact-info h2 { font-size: 2.8rem; margin-bottom: var(--sp-5); }
.contact-info p  { font-size: 0.95rem; line-height: 1.85; }
.contact-details { margin-top: var(--sp-10); display: flex; flex-direction: column; gap: var(--sp-5); }
.contact-detail-label {
  font-size: 0.68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  display: block;
  margin-bottom: var(--sp-1);
}
.contact-detail-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-primary);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(196,151,62,.12) 0%, transparent 70%);
}
.cta-banner .container { position: relative; }
.cta-banner h2 { color: var(--white); margin-bottom: var(--sp-4); }
.cta-banner p  { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 560px; margin-inline: auto; }
.cta-banner__actions {
  margin-top: var(--sp-8);
  display: flex;
  justify-content: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
}

/* ============================================================
   PROSE
   ============================================================ */
.prose { max-width: 800px; margin-inline: auto; }
.prose h2 {
  font-size: 2rem;
  margin-top: var(--sp-12);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border);
}
.prose h3 { font-size: 1.3rem; margin-top: var(--sp-6); margin-bottom: var(--sp-3); }
.prose p  { font-size: 0.96rem; line-height: 1.85; margin-bottom: var(--sp-4); }
.prose ul { list-style: disc; padding-left: var(--sp-8); margin-bottom: var(--sp-4); }
.prose li { font-size: 0.96rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: var(--sp-2); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.about-story--rev { direction: rtl; }
.about-story--rev > * { direction: ltr; }
.about-story__img { overflow: hidden; aspect-ratio: 4/3; }
.about-story__img img { width: 100%; height: 100%; object-fit: cover; }
.about-story__text h2 { margin-bottom: var(--sp-5); }
.about-story__text p + p { margin-top: var(--sp-4); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,.5);
  padding-block: var(--sp-16) var(--sp-8);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: .03em;
  margin-bottom: var(--sp-4);
}
.footer__logo .logo-dot { color: var(--gold-mid); }
.footer__tagline { font-size: 0.85rem; line-height: 1.7; max-width: 260px; }
.footer__col-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: var(--sp-5);
}
.footer__links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__links a { font-size: 0.84rem; color: rgba(255,255,255,.45); transition: color var(--ease); }
.footer__links a:hover { color: var(--gold-mid); }
.footer__gold-line {
  width: 32px; height: 1px;
  background: var(--gold);
  margin-bottom: var(--sp-4);
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-8);
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.mt-8  { margin-top: var(--sp-8);  }
.mt-12 { margin-top: var(--sp-12); }
.pt-0  { padding-top: 0; }

[data-fade] { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
[data-fade].visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .property-grid   { grid-template-columns: repeat(2, 1fr); }
  .why-grid        { grid-template-columns: repeat(2, 1fr); }
  .agent-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer__grid    { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .contact-layout  { grid-template-columns: 1fr; }
  .about-story     { grid-template-columns: 1fr; gap: var(--sp-8); }
  .about-story--rev { direction: ltr; }
  .showroom-grid   { grid-template-columns: 1fr; }
  .location-list   { grid-template-columns: repeat(2, 1fr); }
  .gallery-full    { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle            { display: flex; }
  .nav__inner             { height: 68px; }

  .hero__title { font-size: clamp(2.4rem, 10vw, 4rem); }
  .hero__scroll { display: none; }

  .property-grid   { grid-template-columns: 1fr; }
  .agent-grid      { grid-template-columns: 1fr 1fr; }
  .form-row        { grid-template-columns: 1fr; }
  .footer__grid    { grid-template-columns: 1fr; }
  .footer__bottom  { flex-direction: column; text-align: center; }
  .showroom-body   { padding: var(--sp-10) var(--sp-6); }
  .gallery-grid    { grid-template-columns: 1fr; }
  .gallery-grid__main { grid-column: auto; grid-row: auto; }
  .gallery-full    { grid-template-columns: 1fr 1fr; }
  .prop-overview__inner { flex-direction: column; }
  .prop-overview__right { text-align: left; }
  .location-list   { grid-template-columns: 1fr; }
  .stats-bar__inner { gap: var(--sp-8); }
  .cta-banner__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .container { padding-inline: var(--sp-5); }
  .agent-grid { grid-template-columns: 1fr; }
  .why-grid   { grid-template-columns: 1fr; }
  .gallery-full { grid-template-columns: 1fr; }
}
