/* =====================================================================
   Oasis Grandstand — shared stylesheet
   Extracted from the new design system; used by every .php page.
   ===================================================================== */

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

:root {
  --gold: #C8A96E;
  --gold-light: #E8D5A8;
  --gold-dark: #9A7B4F;
  --dark: #0D0D0D;
  --dark-card: #161616;
  --dark-surface: #1A1A1A;
  --cream: #F5F0E8;
  --cream-muted: #D9D0C2;
  --text: #A8A097;
  --white: #FEFDFB;
  --green: #6B8F71;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 38px;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ──────────────────────────────────────────────────────────── */
nav.site-nav {
  position: fixed; top: 38px; left: 0; right: 0; z-index: 1000;
  padding: 20px 0; transition: all .5s ease; background: transparent;
}
nav.site-nav.scrolled {
  background: rgba(13,13,13,.92); backdrop-filter: blur(20px);
  padding: 14px 0; border-bottom: 1px solid rgba(200,169,110,.1); top: 0;
}
nav.site-nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--cream-muted); text-decoration: none;
  font-size: .82rem; font-weight: 400; letter-spacing: .12em;
  text-transform: uppercase; transition: color .3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important; color: var(--dark) !important;
  padding: 10px 24px; border-radius: 2px;
  font-weight: 600 !important; letter-spacing: .08em !important;
  transition: all .3s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.mobile-toggle { display: none; cursor: pointer; background: none; border: none; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--cream); margin: 5px 0; transition: .3s; }

/* ── REGISTRY BANNER ──────────────────────────────────────────────── */
.registry-banner {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 10px 0; text-align: center;
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  overflow: hidden; transition: transform .4s ease;
}
.registry-banner.hidden { transform: translateY(-100%); }
.registry-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  animation: shimmer 3s infinite;
}
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.registry-banner p {
  font-family: var(--sans); font-size: .85rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--dark); position: relative; z-index: 1;
}

/* ── HERO (HOMEPAGE) ──────────────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/attachments/oasisbanner.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.65);
}
.hero-bg::after {
  content: ''; position: absolute; top: 10%; right: -5%;
  width: 700px; height: 700px;
  border: 1px solid rgba(200,169,110,.07); border-radius: 50%;
  animation: heroOrb 20s ease-in-out infinite;
}
@keyframes heroOrb {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-40px,30px) scale(1.05); }
}
.hero .container {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; padding-top: 100px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
  animation: fadeUp 1s ease .2s both;
}
.hero-tag::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: var(--serif); font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 300; color: var(--white); line-height: 1.08;
  letter-spacing: -0.02em; margin-bottom: 28px;
  animation: fadeUp 1s ease .4s both;
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 300; }
.hero-desc {
  font-size: 1.05rem; line-height: 1.7; color: var(--cream-muted);
  max-width: 480px; margin-bottom: 40px;
  animation: fadeUp 1s ease .6s both;
}
.hero-price {
  display: flex; align-items: baseline; gap: 12px; margin-bottom: 40px;
  animation: fadeUp 1s ease .7s both;
}
.hero-price .label { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text); }
.hero-price .amount { font-family: var(--serif); font-size: 2.4rem; font-weight: 600; color: var(--gold); }
.hero-price .unit { font-size: .9rem; color: var(--cream-muted); }
.hero-actions { display: flex; gap: 16px; animation: fadeUp 1s ease .8s both; }

.btn-primary, .btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; font-family: var(--sans);
  font-size: .82rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer; transition: all .4s ease;
}
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(200,169,110,.3); font-weight: 500;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-visual { position: relative; animation: fadeUp 1s ease .5s both; }
.stats-showcase {
  background: linear-gradient(135deg, rgba(180,145,85,.19),rgba(180,145,85,.09));
  border: 1px solid rgba(200,169,110,.12); border-radius: 8px;
  padding: 48px; position: relative; overflow: hidden;
}
.stats-showcase::before {
  content: ''; position: absolute; top: -1px; left: 40px; right: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.showcase-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(107,143,113,.15); color: var(--green);
  font-size: .72rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 2px;
  margin-bottom: 32px;
}
.showcase-badge::before {
  content: ''; width: 6px; height: 6px; background: var(--green);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.showcase-title { font-family: var(--serif); font-size: 2rem; font-weight: 400; color: var(--white); margin-bottom: 8px; }
.showcase-sub { font-size: .9rem; color: var(--text); margin-bottom: 36px; }
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.showcase-stat {
  background: rgba(13,13,13,.8); border: 1px solid rgba(200,169,110,.08);
  border-radius: 6px; padding: 20px; text-align: center; transition: border-color .3s;
}
.showcase-stat:hover { border-color: rgba(200,169,110,.25); }
.showcase-stat .num { font-family: var(--serif); font-size: 1.8rem; font-weight: 600; color: var(--gold); display: block; margin-bottom: 4px; }
.showcase-stat .lbl { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ── INNER-PAGE HERO (shorter banner for non-home pages) ──────────── */
.inner-hero {
  position: relative; padding: 140px 0 80px; overflow: hidden;
  border-bottom: 1px solid rgba(200,169,110,.08);
}
.inner-hero .hero-bg { position: absolute; inset: 0; z-index: 0; }
.inner-hero .container { position: relative; z-index: 2; text-align: center; }
.inner-hero .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.inner-hero .eyebrow::before, .inner-hero .eyebrow::after {
  content: ''; width: 28px; height: 1px; background: rgba(200,169,110,.3);
}
.inner-hero h1 {
  font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300; color: var(--white); line-height: 1.12;
  letter-spacing: -0.01em; margin-bottom: 16px;
}
.inner-hero h1 em { font-style: italic; color: var(--gold); font-weight: 300; }
.inner-hero .lead {
  font-size: 1.05rem; color: var(--cream-muted); line-height: 1.7;
  max-width: 680px; margin: 0 auto;
}
.breadcrumb {
  display: flex; justify-content: center; gap: 12px; margin-top: 28px;
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text);
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { color: var(--gold-dark); }

/* ── RERA ─────────────────────────────────────────────────────────── */
.rera-strip {
  border-top: 1px solid rgba(200,169,110,.08);
  border-bottom: 1px solid rgba(200,169,110,.08);
  padding: 16px 0; text-align: center;
  font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text);
}
.rera-strip span { color: var(--gold); }

/* ── SECTION HEADER ───────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.section-label::before, .section-label::after { content: ''; width: 30px; height: 1px; background: rgba(200,169,110,.3); }
.section-title {
  font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300; color: var(--white); line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-subtitle {
  margin-top: 16px; font-size: 1rem; color: var(--text);
  max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.6;
}

/* ── ABOUT ────────────────────────────────────────────────────────── */
.about { padding: 120px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-left .about-img {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(200,169,110,.12), rgba(200,169,110,.04));
  border: 1px solid rgba(200,169,110,.1); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-left .about-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }
.about-img-inner { font-family: var(--serif); font-size: 5rem; font-weight: 300; color: rgba(200,169,110,.15); letter-spacing: .1em; }
.about-highlight { display: flex; gap: 40px; margin-top: 24px; }
.about-highlight-item { display: flex; align-items: center; gap: 12px; }
.about-highlight-item .icon {
  width: 44px; height: 44px; border: 1px solid rgba(200,169,110,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.about-highlight-item .info .val { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--white); }
.about-highlight-item .info .desc { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text); }
.about-right p { font-size: 1.05rem; line-height: 1.8; color: var(--cream-muted); margin-bottom: 20px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-feat { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--cream-muted); }
.about-feat::before { content: '\2726'; color: var(--gold); font-size: .6rem; }

/* ── CONFIGURATIONS ───────────────────────────────────────────────── */
.configs { padding: 120px 0; background: var(--dark-surface); }
.configs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.config-card {
  background: var(--dark-card); border: 1px solid rgba(200,169,110,.08); border-radius: 8px;
  padding: 36px 28px; text-align: center; transition: all .4s ease;
  position: relative; overflow: hidden;
}
.config-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .4s;
}
.config-card:hover { border-color: rgba(200,169,110,.2); transform: translateY(-4px); }
.config-card:hover::before { opacity: 1; }
.config-card.featured {
  border-color: rgba(200,169,110,.25);
  background: linear-gradient(180deg, rgba(200,169,110,.06), var(--dark-card));
}
.config-card.featured::before { opacity: 1; }
.config-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(200,169,110,.15); color: var(--gold);
  font-size: .62rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 2px;
}
.config-type { font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.config-label { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text); margin-bottom: 24px; }
.config-area { font-size: 1.6rem; font-weight: 300; color: var(--cream); margin-bottom: 4px; }
.config-area-label { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text); margin-bottom: 24px; }
.config-divider { width: 40px; height: 1px; background: rgba(200,169,110,.2); margin: 0 auto 24px; }
.config-price { font-family: var(--serif); font-size: 1.1rem; color: var(--gold); margin-bottom: 24px; }
.config-btn {
  display: inline-block; width: 100%; padding: 12px;
  border: 1px solid rgba(200,169,110,.2); background: transparent;
  color: var(--cream-muted); font-family: var(--sans);
  font-size: .75rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; cursor: pointer; transition: all .3s;
  text-decoration: none; text-align: center;
}
.config-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* Floor-plan detail cards (with image) */
.plan-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.plan-card {
  background: var(--dark-card); border: 1px solid rgba(200,169,110,.08);
  border-radius: 8px; overflow: hidden; transition: all .3s;
}
.plan-card:hover { border-color: rgba(200,169,110,.2); transform: translateY(-3px); }
.plan-card .plan-img {
  width: 100%; aspect-ratio: 4/3; background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.plan-card .plan-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.plan-card .plan-body { padding: 24px 28px; text-align: center; }
.plan-card .plan-type { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.plan-card .plan-meta { font-size: .85rem; color: var(--cream-muted); margin-bottom: 18px; }

/* ── GALLERY ──────────────────────────────────────────────────────── */
.gallery { padding: 120px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 12px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 6px; cursor: pointer; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img, .gallery-item video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease, filter .6s ease; filter: brightness(.85);
}
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.08); filter: brightness(1); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  font-size: .78rem; font-weight: 500; color: var(--cream); letter-spacing: .04em;
  transform: translateY(100%); transition: transform .4s ease;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 64px; height: 64px; background: rgba(200,169,110,.85); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; transition: all .3s; z-index: 2;
}
.video-play::after {
  content: ''; width: 0; height: 0; border-style: solid;
  border-width: 10px 0 10px 18px; border-color: transparent transparent transparent var(--dark);
  margin-left: 3px;
}
.video-play:hover { background: var(--gold); transform: translate(-50%,-50%) scale(1.1); }

.lightbox {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,.92); backdrop-filter: blur(20px);
  align-items: center; justify-content: center; flex-direction: column;
}
.lightbox.active { display: flex; }
.lightbox img, .lightbox video { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: 4px; animation: lbFade .3s ease; }
@keyframes lbFade { from { opacity: 0; transform: scale(.95); } to { opacity: 1; transform: scale(1); } }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  background: none; border: none; color: var(--cream);
  font-size: 2rem; cursor: pointer; z-index: 10001; transition: color .3s; line-height: 1;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(200,169,110,.15); border: 1px solid rgba(200,169,110,.2);
  color: var(--cream); width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all .3s;
}
.lightbox-nav:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-counter { margin-top: 16px; font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text); }

/* ── AMENITIES ────────────────────────────────────────────────────── */
.amenities { padding: 120px 0; background: var(--dark-surface); }
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.amenity {
  background: var(--dark-card); border: 1px solid rgba(200,169,110,.06);
  border-radius: 6px; padding: 24px 16px; text-align: center; transition: all .4s ease;
}
.amenity:hover { border-color: rgba(200,169,110,.15); transform: translateY(-3px); }
.amenity-icon { width: 80px; height: 80px; margin: 0 auto 14px; border-radius: 8px; overflow: hidden; }
.amenity-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; filter: brightness(.9); transition: filter .3s, transform .3s; }
.amenity:hover .amenity-icon img { filter: brightness(1); transform: scale(1.05); }
.amenity-name { font-size: .85rem; font-weight: 500; color: var(--cream); letter-spacing: .04em; }

/* ── LOCATION ─────────────────────────────────────────────────────── */
.location { padding: 120px 0; }
.loc-map {
  width: 100%; aspect-ratio: 16/9;
  background: var(--dark-card); border: 1px solid rgba(200,169,110,.08);
  border-radius: 8px; overflow: hidden; margin-bottom: 40px;
}
.loc-map iframe { width: 100%; height: 100%; border: none; }
.loc-advantages { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.loc-card {
  background: var(--dark-card); border: 1px solid rgba(200,169,110,.08);
  border-radius: 6px; padding: 24px 20px; text-align: center; transition: all .3s;
}
.loc-card:hover { border-color: rgba(200,169,110,.2); transform: translateY(-3px); }
.loc-card .num { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--gold); line-height: 1; }
.loc-card .unit { font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 8px; display: block; }
.loc-card .name { font-size: .85rem; font-weight: 500; color: var(--cream); margin-bottom: 2px; }
.loc-card .detail { font-size: .72rem; color: var(--text); }

/* ── PRICE TABLE ──────────────────────────────────────────────────── */
.price-table { width: 100%; border-collapse: collapse; background: var(--dark-card); border: 1px solid rgba(200,169,110,.1); border-radius: 8px; overflow: hidden; }
.price-table th, .price-table td {
  padding: 18px 24px; text-align: left;
  border-bottom: 1px solid rgba(200,169,110,.06);
}
.price-table th {
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); background: rgba(200,169,110,.05); font-weight: 600;
}
.price-table td { color: var(--cream-muted); font-size: .95rem; }
.price-table td:first-child { color: var(--white); font-family: var(--serif); font-size: 1.05rem; }
.price-table tr:last-child td { border-bottom: none; }
.price-table .price-amt { color: var(--gold); font-weight: 500; }
.price-table .sold { color: var(--gold-dark); font-style: italic; }

/* ── ENQUIRY FORM ─────────────────────────────────────────────────── */
.enquiry-section { padding: 120px 0; background: var(--dark-surface); }
.enquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.enquiry-form {
  background: var(--dark-card); border: 1px solid rgba(200,169,110,.12);
  border-radius: 8px; padding: 48px; position: relative; overflow: hidden;
}
.enquiry-form::before {
  content: ''; position: absolute; top: -1px; left: 40px; right: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.enquiry-form h3 { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; color: var(--white); margin-bottom: 8px; }
.enquiry-form .form-sub { font-size: .88rem; color: var(--text); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cream-muted); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px;
  background: rgba(13,13,13,.5); border: 1px solid rgba(200,169,110,.12);
  border-radius: 4px; color: var(--cream);
  font-family: var(--sans); font-size: .92rem; transition: border-color .3s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(168,160,151,.5); }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C8A96E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.form-group select option { background: var(--dark-card); color: var(--cream); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%; padding: 16px;
  background: var(--gold); color: var(--dark);
  font-family: var(--sans); font-size: .82rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  border: none; border-radius: 4px; cursor: pointer; transition: all .3s; margin-top: 8px;
}
.form-submit:hover { background: var(--gold-light); }
.form-msg { text-align: center; padding: 12px; margin-top: 16px; border-radius: 4px; font-size: .85rem; display: none; }
.form-msg.success { display: block; background: rgba(107,143,113,.15); color: var(--green); border: 1px solid rgba(107,143,113,.3); }
.form-msg.error { display: block; background: rgba(200,60,60,.15); color: #e57373; border: 1px solid rgba(200,60,60,.3); }

/* ── CTA / CONTACT ────────────────────────────────────────────────── */
.cta-section { padding: 120px 0; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(200,169,110,.06), transparent); }
.cta-inner { position: relative; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-inner .section-title { margin-bottom: 16px; }
.cta-inner p { font-size: 1.05rem; color: var(--cream-muted); line-height: 1.7; margin-bottom: 40px; }
.cta-contact { display: flex; justify-content: center; gap: 48px; margin-top: 48px; }
.cta-contact-item { text-align: center; }
.cta-contact-item .lbl { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text); margin-bottom: 6px; }
.cta-contact-item .val { font-family: var(--serif); font-size: 1.2rem; color: var(--gold); }
.cta-contact-item a { color: var(--gold); text-decoration: none; transition: color .3s; }
.cta-contact-item a:hover { color: var(--gold-light); }

/* ── PROSE (about/why/specs/faq body copy) ────────────────────────── */
.prose { max-width: 880px; margin: 0 auto; }
.prose p { font-size: 1.02rem; line-height: 1.8; color: var(--cream-muted); margin-bottom: 20px; }
.prose h2, .prose h3 { font-family: var(--serif); color: var(--white); font-weight: 400; margin-top: 40px; margin-bottom: 16px; line-height: 1.2; }
.prose h2 { font-size: 1.9rem; }
.prose h2 em, .prose h3 em { font-style: italic; color: var(--gold); }
.prose h3 { font-size: 1.4rem; }
.prose ul { margin: 0 0 24px 0; padding: 0; list-style: none; }
.prose ul li { position: relative; padding-left: 24px; margin-bottom: 10px; font-size: .98rem; line-height: 1.7; color: var(--cream-muted); }
.prose ul li::before { content: '\2726'; position: absolute; left: 0; top: 2px; color: var(--gold); font-size: .7rem; }
.prose .highlight-box {
  background: rgba(200,169,110,.05); border-left: 3px solid var(--gold);
  padding: 20px 28px; margin: 28px 0; border-radius: 4px;
}
.prose .highlight-box p:last-child { margin-bottom: 0; }
.prose a { color: var(--gold); text-decoration: none; }
.prose a:hover { color: var(--gold-light); text-decoration: underline; }

/* ── FAQ ──────────────────────────────────────────────────────────── */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--dark-card); border: 1px solid rgba(200,169,110,.08);
  border-radius: 6px; margin-bottom: 12px; overflow: hidden; transition: border-color .3s;
}
.faq-item:hover { border-color: rgba(200,169,110,.18); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer; font-size: 1rem; font-weight: 500;
  color: var(--cream); background: transparent; border: none;
  width: 100%; text-align: left; font-family: var(--sans); transition: color .3s;
}
.faq-q:hover { color: var(--gold); }
.faq-q .ico {
  width: 24px; height: 24px; flex-shrink: 0; color: var(--gold);
  transition: transform .3s; font-size: 1.2rem; display: flex;
  align-items: center; justify-content: center;
}
.faq-item.open .faq-q .ico { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease;
  padding: 0 24px; color: var(--cream-muted); font-size: .95rem; line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 22px; }

/* ── BLOG LISTING / POSTS ─────────────────────────────────────────── */
.blog-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.blog-card {
  background: var(--dark-card); border: 1px solid rgba(200,169,110,.08);
  border-radius: 8px; overflow: hidden; transition: all .4s ease; text-decoration: none; display: block;
}
.blog-card:hover { border-color: rgba(200,169,110,.22); transform: translateY(-4px); }
.blog-card .card-img { aspect-ratio: 16/9; background: #222; overflow: hidden; }
.blog-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .card-img img { transform: scale(1.05); }
.blog-card .card-body { padding: 28px; }
.blog-card .card-meta { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.blog-card .card-title { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; color: var(--white); line-height: 1.3; margin-bottom: 12px; }
.blog-card .card-excerpt { font-size: .94rem; color: var(--cream-muted); line-height: 1.65; margin-bottom: 18px; }
.blog-card .card-more { font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }

.post-hero-img { width: 100%; aspect-ratio: 16/7; border-radius: 8px; overflow: hidden; margin: 0 0 40px; border: 1px solid rgba(200,169,110,.1); }
.post-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── CONTACT CARDS ────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 60px; }
.contact-card {
  background: var(--dark-card); border: 1px solid rgba(200,169,110,.08);
  border-radius: 8px; padding: 32px 24px; text-align: center; transition: all .3s;
}
.contact-card:hover { border-color: rgba(200,169,110,.2); transform: translateY(-3px); }
.contact-card .ci-ico {
  width: 52px; height: 52px; margin: 0 auto 16px;
  border: 1px solid rgba(200,169,110,.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.contact-card .ci-lbl { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text); margin-bottom: 8px; }
.contact-card .ci-val { font-family: var(--serif); font-size: 1.15rem; color: var(--gold); }
.contact-card .ci-val a { color: var(--gold); text-decoration: none; transition: color .3s; }
.contact-card .ci-val a:hover { color: var(--gold-light); }

/* ── FOOTER ───────────────────────────────────────────────────────── */
footer.site-footer { border-top: 1px solid rgba(200,169,110,.08); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand .logo img { height: 32px; }
.footer-brand p { font-size: .88rem; color: var(--text); line-height: 1.6; max-width: 320px; margin-bottom: 18px; }
.footer-brand .social { display: flex; gap: 10px; }
.footer-brand .social a {
  width: 36px; height: 36px; border: 1px solid rgba(200,169,110,.18); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-muted); text-decoration: none; transition: all .3s; font-size: .85rem;
}
.footer-brand .social a:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.footer-qr { margin-top: 12px; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-qr img { width: 100%; max-width: 300px; height: auto; border-radius: 6px; border: 1px solid rgba(200,169,110,.2); }
.footer-qr span { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text); }
.footer-contact-info { margin-bottom: 16px; }
.footer-contact-info span { display: block; font-size: .88rem; color: var(--text); margin-bottom: 6px; }
.footer-col h4 { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--cream); margin-bottom: 20px; }
.footer-col a { display: block; font-size: .88rem; color: var(--text); text-decoration: none; margin-bottom: 10px; transition: color .3s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid rgba(200,169,110,.06);
  font-size: .78rem; color: var(--text);
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ── RESPONSIVE ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid, .enquiry-grid { grid-template-columns: 1fr; gap: 48px; }
  .configs-grid { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
  .loc-advantages { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
  .blog-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .configs-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .amenities-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-grid { grid-auto-rows: 180px; }
  .about-highlight { flex-direction: column; gap: 16px; }
  .about-features { grid-template-columns: 1fr; }
  .loc-advantages { grid-template-columns: 1fr 1fr; }
  .cta-contact { flex-direction: column; gap: 24px; }
  .hero-actions { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .price-table th, .price-table td { padding: 14px 12px; font-size: .85rem; }
  .inner-hero { padding: 120px 0 60px; }
}

.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
