/* ============================================================
   Karyan Group – Main Stylesheet
   Design: Deep Charcoal + Aged Gold + Warm White
   Font: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

/* ── Reset & Variables ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #C9A84C;
  --gold-light: #E5C97C;
  --gold-pale:  #F5EDD4;
  --charcoal:   #1A1A1A;
  --charcoal-2: #2C2C2C;
  --charcoal-3: #3D3D3D;
  --off-white:  #F9F6F0;
  --white:      #FFFFFF;
  --text-body:  #4A4A4A;
  --text-muted: #7A7A7A;
  --border:     rgba(201,168,76,.2);
  --shadow-sm:  0 2px 12px rgba(0,0,0,.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.18);
  --radius:     4px;
  --transition: .3s ease;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
  --max-w:      1280px;
  --section-py: 96px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

/* ── Typography ──────────────────────────────────────────────── */
.serif { font-family: var(--font-serif); }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; color: var(--charcoal); }
h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); font-weight: 300; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }

p { line-height: 1.75; font-size: 0.96rem; }

.section-label {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .6rem;
}

.section-title { margin-bottom: 1rem; }
.section-desc { color: var(--text-muted); max-width: 640px; }

/* ── Layout ──────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-py) 0; }
.section-alt { background: var(--white); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2.2rem;
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius);
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.35); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--white); }

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover { background: var(--charcoal-3); transform: translateY(-2px); }

.btn-white {
  background: var(--white);
  color: var(--charcoal);
}
.btn-white:hover { background: var(--gold-pale); }

/* ── Gold Divider ────────────────────────────────────────────── */
.gold-line {
  width: 52px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem 0 2rem;
}
.gold-line-center { margin: 1.2rem auto 2rem; }

/* ── Floating CTAs ───────────────────────────────────────────── */
.float-cta {
  position: fixed;
  right: 20px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 500;
}
.float-call, .float-wa {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: transform var(--transition);
}
.float-call { background: var(--gold); }
.float-wa { background: #25D366; }
.float-call:hover, .float-wa:hover { transform: scale(1.1); }

/* ── Navbar ──────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 1.4rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(26,26,26,.97);
  backdrop-filter: blur(12px);
  padding: .9rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--white);
}
.logo-icon { font-size: 1.5rem; color: var(--gold); }
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.logo-text em { font-style: normal; color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .04em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold)!important;
  color: var(--white)!important;
  padding: .5rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 500!important;
}
.nav-cta:hover { background: var(--gold-light)!important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ── Hero Slider ─────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  display: flex;
  align-items: center;
}
.hero-slide.active { opacity: 1; }

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(26,26,26,.82) 0%, rgba(26,26,26,.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  color: var(--white);
}

.hero-label {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all .8s ease .4s;
}
.hero-slide.active .hero-label { opacity: 1; transform: translateY(0); }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all .8s ease .6s;
  color: var(--white);
}
.hero-slide.active .hero-title { opacity: 1; transform: translateY(0); }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2.4rem;
  max-width: 520px;
  opacity: 1;
  transform: translateY(20px);
  transition: all .8s ease .8s;
}
.hero-slide.active .hero-sub { opacity: 1; transform: translateY(0); }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: all .8s ease 1s;
}
.hero-slide.active .hero-actions { opacity: 1; transform: translateY(0); }

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.slider-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--gold);
}

.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
  pointer-events: none;
}
.slider-arrow {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: background var(--transition);
  font-size: 1.2rem;
}
.slider-arrow:hover { background: var(--gold); }

/* ── Stats Strip ─────────────────────────────────────────────── */
.stats-strip {
  background: var(--charcoal);
  padding: 2.4rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
}
.stat-item {
  background: var(--charcoal);
  padding: 1.8rem 2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: .4rem; letter-spacing: .06em; }

/* ── About Section ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  height: 520px;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 140px;
  height: 140px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}
.about-badge-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; line-height: 1; }
.about-badge-txt { font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; margin-top: .2rem; }

/* ── Projects Section ────────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 3rem;
}
.project-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.project-card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.project-card:hover .project-card-img img { transform: scale(1.06); }

.project-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 2px;
}

.project-card-body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.project-card-type { font-size: .7rem; color: var(--gold); letter-spacing: .12em; text-transform: uppercase; font-weight: 600; margin-bottom: .5rem; }
.project-card h3 { font-size: 1.35rem; margin-bottom: .6rem; }
.project-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; flex: 1; }
.project-card-price { font-family: var(--font-serif); font-size: 1.2rem; color: var(--charcoal); font-weight: 600; margin: 1rem 0; }
.project-card-links {
  display: flex;
  gap: .8rem;
  margin-top: 1rem;
}
.project-card-links a { flex: 1; text-align: center; /*padding: .65rem .8rem;*/ font-size: .82rem; }

/* ── Why Us ──────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.why-card {
  padding: 2.4rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  position: relative;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.why-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon { font-size: 2rem; margin-bottom: 1.2rem; }
.why-card h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.why-card p { font-size: .88rem; color: var(--text-muted); }

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.15) 0%, transparent 60%);
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 80px 24px;
}
.cta-banner h2 { color: var(--white); margin-bottom: .8rem; }
.cta-banner p { color: rgba(255,255,255,.7); margin-bottom: 2.4rem; }
.cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Contact Section ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.4rem;
  align-items: flex-start;
}
.contact-detail-icon { font-size: 1.2rem; margin-top: .1rem; flex-shrink: 0; }
.contact-detail strong { display: block; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: .2rem; }
.contact-map { border-radius: var(--radius); overflow: hidden; height: 380px; background: #eee; }
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* ── Project Detail – Hero ───────────────────────────────────── */
.project-hero {
  height: 80vh;
  min-height: 560px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  background: var(--charcoal);
}
.project-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.project-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26,26,26,.9) 0%, rgba(26,26,26,.2) 60%);
}
.project-hero-content { position: relative; z-index: 2; color: var(--white); }
.project-hero-tag { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: .8rem; display: block; }
.project-hero h1 { color: var(--white); margin-bottom: 1rem; }
.project-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.8); margin-bottom: 1.6rem; }

/* ── Highlights Cards ────────────────────────────────────────── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 3rem;
}
.highlight-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  text-align: center;
  border-bottom: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.highlight-card .hc-icon { font-size: 2rem; margin-bottom: 1rem; }
.highlight-card .hc-num { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 600; color: var(--charcoal); }
.highlight-card .hc-label { font-size: .75rem; color: var(--text-muted); margin-top: .3rem; letter-spacing: .04em; }

/* ── Amenities ───────────────────────────────────────────────── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 2.4rem;
}
.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  padding: 1.4rem 1rem;
  background: var(--off-white);
  border-radius: var(--radius);
  text-align: center;
  font-size: .82rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: background var(--transition);
}
.amenity-item:hover { background: var(--gold-pale); }
.amenity-item span:first-child { font-size: 1.6rem; }

/* ── Unit Types Table ────────────────────────────────────────── */
.units-table-wrap { overflow-x: auto; margin-top: 2rem; }
.units-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.units-table th {
  background: var(--charcoal);
  color: var(--white);
  padding: 1rem 1.4rem;
  text-align: left;
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.units-table td { padding: 1rem 1.4rem; border-bottom: 1px solid var(--border); }
.units-table tr:hover td { background: var(--gold-pale); }
.units-table .price { color: var(--gold); font-weight: 600; font-family: var(--font-serif); font-size: 1.05rem; }

/* ── Video Section ───────────────────────────────────────────── */
.video-wrap {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-wrap video,
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
  object-fit: cover;
}

/* ── Payment Plan ────────────────────────────────────────────── */
.payment-grid {
  display: grid;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 2rem;
}
.payment-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 1.2rem 1.8rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.payment-row:last-child { border-bottom: none; }
.payment-row:hover { background: var(--gold-pale); }
.payment-row:nth-child(odd) { background: rgba(201,168,76,.04); }
.payment-row:nth-child(odd):hover { background: var(--gold-pale); }
.payment-pct { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; color: var(--gold); }

/* ── Gallery ─────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 2rem;
}
.gallery-item {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.0);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  opacity: 0;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,.4); opacity: 1; }

/* ── Lightbox ────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 24px; color: white; font-size: 2.2rem; cursor: pointer; background: none; border: none; line-height: 1; }

/* ── Lead Form (Modal) ───────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.72);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(6px);
}
.modal-overlay[hidden] { display: none!important; }

.modal-box {
  background: var(--white);
  border-radius: 8px;
  padding: 2.4rem;
  width: 100%;
  max-width: 460px;
  position: relative;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
}
.modal-close:hover { background: var(--off-white); }

.modal-header { margin-bottom: 1.6rem; }
.modal-badge {
  display: inline-block;
  background: rgba(201,168,76,.12);
  color: var(--gold);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 2px;
  border: 1px solid var(--gold);
  margin-bottom: .8rem;
}
.modal-header h2 { font-size: 1.6rem; margin-bottom: .3rem; }
.modal-header p { font-size: .88rem; color: var(--text-muted); }

.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .8rem; font-weight: 500; margin-bottom: .4rem; color: var(--charcoal); }
.form-group label .optional { font-weight: 400; color: var(--text-muted); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid #E0E0E0;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--charcoal);
  background: var(--off-white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 72px; }
.form-error { display: block; font-size: .76rem; color: #D32F2F; margin-top: .25rem; min-height: 1rem; }

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}
.btn-submit:hover { background: #B8943F; transform: translateY(-1px); }
.btn-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }

.form-privacy { font-size: .75rem; color: var(--text-muted); text-align: center; margin-top: .8rem; }

.modal-success { text-align: center; padding: 1.2rem 0; }
.modal-success[hidden] { display: none; }
.success-icon {
  width: 64px; height: 64px;
  background: #E8F5E9;
  color: #2E7D32;
  font-size: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.modal-success h3 { margin-bottom: .6rem; }
.modal-success p { color: var(--text-muted); font-size: .9rem; margin-bottom: 1.2rem; }
.success-call {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: .8rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
}

/* ── Sticky Bottom CTA (Mobile) ──────────────────────────────── */
.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--charcoal);
  padding: .8rem 16px;
  gap: .8rem;
  justify-content: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.sticky-cta-bar a { /*flex: 1;*/ text-align: center; font-size: .82rem; /*padding: .7rem .5rem;*/ }

/* ── Admin ───────────────────────────────────────────────────── */
/* (Minimal – full styles in admin/admin.css) */

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { right: 16px; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }

  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--charcoal); padding: 1.4rem; gap: 1.2rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .projects-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .sticky-cta-bar { display: flex; }
  body { padding-bottom: 64px; }

  .modal-box { padding: 1.8rem 1.4rem; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: rgba(245, 240, 230, 0.65);
  border-top: 1px solid rgba(201, 163, 82, 0.15);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
}

/* Brand column */
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand .footer-logo .logo-icon {
  color: var(--gold);
  font-size: 1.1rem;
}

.footer-brand .footer-logo .logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-brand .footer-logo .logo-text em {
  color: var(--gold);
  font-style: normal;
}

.footer-brand > p {
  font-size: 0.83rem;
  line-height: 1.75;
  color: rgba(245, 240, 230, 0.5);
  margin-bottom: 1.5rem;
  max-width: 300px;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201, 163, 82, 0.25);
  border-radius: 50%;
  color: rgba(245, 240, 230, 0.5);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

/* Footer nav columns */
.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(201, 163, 82, 0.15);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.83rem;
  color: rgba(245, 240, 230, 0.55);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-col ul li a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
  opacity: 0.6;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

/* Contact column */
.footer-col address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col address p {
  font-size: 0.83rem;
  color: rgba(245, 240, 230, 0.55);
  line-height: 1.5;
}

.footer-col address p strong {
  color: rgba(245, 240, 230, 0.75);
  font-weight: 600;
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
}

.footer-col address a {
  color: rgba(245, 240, 230, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col address a:hover {
  color: var(--gold);
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(245, 240, 230, 0.35);
  line-height: 1.5;
}

.footer-bottom .footer-disclaimer {
  font-size: 0.7rem;
  color: rgba(245, 240, 230, 0.25);
  max-width: 600px;
  text-align: right;
}

/* Floating CTAs */
.floating-ctas {
  position: fixed;
  right: 1.2rem;
  bottom: 5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  z-index: 800;
}

.floating-ctas a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  font-size: 1.2rem;
}

.floating-ctas a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.floating-ctas .float-call {
  background: var(--gold);
  color: var(--charcoal);
}

.floating-ctas .float-whatsapp {
  background: #25d366;
  color: #fff;
}

/* Footer responsive */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand > p {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem 2rem;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 1.5rem;
    gap: 0.5rem;
  }

  .footer-bottom .footer-disclaimer {
    text-align: left;
    max-width: 100%;
  }
}

/* ── Utilities ───────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.hidden { display: none!important; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* @media prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms!important; transition-duration: .01ms!important; }
}
