/* ==============================
   ROOT & RESET
============================== */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9B7B2E;
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --text-dark: #1A1209;
  --text-mid: #3D2F10;
  --text-muted: #7A6845;
  --bg-light: #FAF7F2;
  --bg-subtle: #F3EDE2;
  --border: #E5D9C0;
  --shadow-gold: 0 8px 40px rgba(201,168,76,0.15);
  --shadow-card: 0 4px 30px rgba(26,18,9,0.08);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 16px;
  --radius-sm: 8px;
}

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

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

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ==============================
   TYPOGRAPHY
============================== */
.cormorant { font-family: 'Cormorant Garamond', serif; }

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; }

/* ==============================
   NAVBAR
============================== */
.navbar {
  position: fixed!important;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 20px 60px!important;
  display: flex!important;
  align-items: center!important;
  justify-content: space-between!important;
  transition: var(--transition);
}

/* When NOT scrolled, navbar is on the dark hero image */
.navbar .nav-links a { color: rgba(255,255,255,0.85); }
.navbar .nav-links a:hover { color: var(--gold-light); }
.navbar .hamburger span { background: var(--white); }
.navbar .nav-logo-img { filter: brightness(0) invert(1); }

.navbar.scrolled {
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 60px!important;
  box-shadow: 0 2px 20px rgba(26,18,9,0.08);
  border-bottom: 1px solid var(--border);
}

/* Reset colors when scrolled (back to dark text on light bg) */
.navbar.scrolled .nav-links a { color: var(--text-mid); }
.navbar.scrolled .nav-links a:hover { color: var(--gold); }
.navbar.scrolled .nav-links .nav-cta { color: var(--white); }
.navbar.scrolled .hamburger span { background: var(--text-dark); }
.navbar.scrolled .nav-logo-img { filter: none; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}

.nav-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.navbar.scrolled .nav-logo-img {
  height: 32px;
}

.logo-eoe {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.3em;
  padding: 3px 8px;
  border: 1.5px solid var(--gold);
  border-radius: 3px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--gold); }

.nav-links .nav-cta {
  padding: 10px 28px;
  background: var(--gold);
  color: var(--white);
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: var(--transition);
}

.nav-links .nav-cta:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==============================
   HERO
============================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26,18,9,0.88) 0%, rgba(26,18,9,0.65) 40%, rgba(26,18,9,0.45) 100%);
  z-index: 1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image:
    linear-gradient(rgba(201,168,76,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.08) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-content {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-title .title-thin { display: block; font-weight: 300; font-style: normal; color: rgba(255,255,255,0.7); }
.hero-title .title-bold { display: block; font-weight: 700; color: var(--white); }
.hero-title .title-italic { display: block; font-style: italic; font-weight: 300; color: rgba(255,255,255,0.7); }
.hero-title .gold { color: var(--gold-light); }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-highlights {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  overflow: hidden;
  backdrop-filter: blur(10px);
  width: fit-content;
}

.highlight-card {
  padding: 16px 28px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}

.h-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
}

.h-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.highlight-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
  flex-wrap: wrap;
}

.price-from {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.price-plan {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  letter-spacing: 0.05em;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.3);
}

/* HERO FORM */
.hero-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 20px 80px rgba(26,18,9,0.12), 0 2px 4px rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
}

.form-header { margin-bottom: 28px; }

.form-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.form-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-form, .contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-mid);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group textarea { min-height: 100px; resize: vertical; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #BFB49A; }

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 4px;
  box-shadow: 0 6px 24px rgba(201,168,76,0.35);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(201,168,76,0.5);
}

.form-submit svg { width: 18px; height: 18px; transition: transform 0.3s; }
.form-submit:hover svg { transform: translateX(4px); }

.form-disclaimer {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 5;
  opacity: 0.6;
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.3); opacity: 1; }
}

/* ==============================
   TRUST STRIP
============================== */
.trust-strip {
  background: linear-gradient(135deg, var(--text-dark) 0%, #2D1E06 100%);
  padding: 28px 60px;
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 60px;
  gap: 2px;
}

.ti-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.ti-text {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

.trust-sep {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.25);
}

/* ==============================
   SECTIONS - SHARED
============================== */
.section {
  padding: 100px 60px;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1.5px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-dark);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 50px;
}

/* ==============================
   OVERVIEW CARDS
============================== */
.overview { background: var(--bg-light); }

.overview-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ov-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.ov-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.ov-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.ov-card:hover::before { transform: scaleX(1); }

.ov-icon { font-size: 2rem; margin-bottom: 16px; }

.ov-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.ov-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ==============================
   PROJECT GALLERY
============================== */
.gallery-sec {
  background: linear-gradient(160deg, var(--text-dark) 0%, #2D1E06 100%);
}

.gallery-sec .section-label { color: var(--gold-light); }
.gallery-sec .section-title { color: var(--white); }
.gallery-sec .section-title em { color: var(--gold-light); }
.gallery-sec .section-desc { color: rgba(255,255,255,0.55); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,9,0.6) 0%, transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.7);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-zoom {
  transform: scale(1);
}

.gallery-zoom svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

/* ==============================
   LIGHTBOX
============================== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 6, 2, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}

.lightbox-close svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}

.lightbox-nav svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.lightbox-nav:hover {
  background: rgba(201,168,76,0.3);
  border-color: var(--gold);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-img-wrap {
  max-width: 85vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
  animation: lightboxIn 0.4s ease;
}

@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em;
}

/* ==============================
   LOCATION
============================== */
.location-sec { background: var(--bg-subtle); }

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
}

.loc-points { display: flex; flex-direction: column; gap: 16px; }

.loc-point {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.loc-point:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateX(6px);
}

.lp-icon { font-size: 1.4rem; }

.lp-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lp-info strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.lp-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Map Visual */
.loc-visual { display: flex; justify-content: center; }

.loc-map-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.loc-map-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 1;
}

.loc-map-embed {
  width: 100%;
  height: 380px;
}

.loc-map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.map-info-bar {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-light);
}

.map-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
}

.map-info-item span:first-child {
  font-size: 1.1rem;
}

/* ==============================
   PRICING
============================== */
.pricing-sec { background: var(--bg-light); }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-gold); }

.pricing-card.featured {
  background: linear-gradient(160deg, #1A1209 0%, #2D1E06 100%);
  border-color: var(--gold);
  box-shadow: 0 12px 50px rgba(26,18,9,0.25);
}

.pc-ribbon {
  position: absolute;
  top: 20px; right: -28px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 40px;
  transform: rotate(45deg);
  text-transform: uppercase;
}

.pc-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.pc-size {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-card.featured .pc-size { color: var(--white); }

.pc-size span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card.featured .pc-size span { color: rgba(255,255,255,0.5); }

.pc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
}

.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pc-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-card.featured .pc-features li { color: rgba(255,255,255,0.65); }

.pc-btn {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-sm);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: var(--transition);
}

.pc-btn:hover, .pricing-card.featured .pc-btn {
  background: var(--gold);
  color: var(--white);
}

.pricing-card.featured .pc-btn:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* Payment Plan */
.payment-plan {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 50px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.payment-plan h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.pp-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.pp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pp-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.06);
}

.pp-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pp-arrow {
  font-size: 1.4rem;
  color: var(--gold);
  margin-top: -16px;
}

.pp-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pp-note strong { color: var(--gold-dark); }

/* ==============================
   AMENITIES (IMAGE-BASED)
============================== */
.amenities-sec {
  background: linear-gradient(160deg, var(--text-dark) 0%, #2D1E06 100%);
}

.amenities-sec .section-label { color: var(--gold-light); }
.amenities-sec .section-title { color: var(--white); }
.amenities-sec .section-title em { color: var(--gold-light); }
.amenities-sec .section-desc { color: rgba(255,255,255,0.55); }

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

.amenity-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  transition: var(--transition);
}

.amenity-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 12px 40px rgba(201,168,76,0.15);
}

.amenity-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.amenity-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,9,0.3) 0%, transparent 50%);
}

.amenity-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.amenity-card:hover .amenity-img-wrap img {
  transform: scale(1.1);
}

.amenity-info {
  padding: 22px 24px 26px;
}

.amenity-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.amenity-info p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  font-weight: 300;
}

/* ==============================
   WHY INVEST
============================== */
.why-sec { background: var(--bg-subtle); }

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

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light));
  transform: scaleY(0);
  transition: var(--transition);
  transform-origin: top;
}

.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.why-card:hover::after { transform: scaleY(1); }

.wc-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  margin-bottom: 12px;
}

.why-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ==============================
   CONTACT
============================== */
.contact-sec {
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.ci-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
}

.ci-item a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.ci-item a:hover { color: var(--gold); }
.ci-item span:first-child { font-size: 1.2rem; }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.contact-form h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ==============================
   FOOTER
============================== */
.footer {
  background: var(--text-dark);
  padding: 60px 60px 40px;
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer .logo-eoe {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.3em;
  padding: 2px 7px;
  border: 1px solid var(--gold);
  border-radius: 3px;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.footer-address {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 16px;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ==============================
   FLOATING BUTTONS
============================== */
.floating-btns {
  position: fixed;
  right: 24px;
  bottom: 40px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.float-btn svg { width: 24px; height: 24px; }

.phone-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
}

.whatsapp-btn {
  background: #25D366;
  color: var(--white);
}

.float-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.25);
}

.float-tooltip {
  position: absolute;
  right: 64px;
  white-space: nowrap;
  background: var(--text-dark);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  transform: translateX(6px);
  letter-spacing: 0.05em;
}

.float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--text-dark);
  border-right: none;
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==============================
   OTP MODAL
============================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(10, 6, 2, 0.7);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 44px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 100px rgba(26,18,9,0.3);
  border: 1px solid var(--border);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.modal-overlay.active .modal-box {
  transform: scale(1) translateY(0);
}

.modal-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}

.modal-close svg {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

.modal-close:hover {
  background: var(--border);
  transform: rotate(90deg);
}

.modal-step {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: modalStepIn 0.5s ease;
}

.modal-step.active {
  display: flex;
}

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

.modal-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.otp-icon {
  background: rgba(201,168,76,0.1);
  border: 2px solid rgba(201,168,76,0.3);
}

.otp-icon svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.thankyou-icon {
  background: transparent;
}

.modal-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.modal-desc strong {
  color: var(--text-dark);
}

/* OTP Inputs */
.otp-inputs {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.otp-digit {
  width: 56px;
  height: 64px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  background: var(--bg-light);
  outline: none;
  transition: var(--transition);
  caret-color: var(--gold);
}

.otp-digit:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  background: var(--white);
}

.otp-digit.error {
  border-color: #E53E3E;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
  animation: shake 0.5s;
}

.otp-digit.success {
  border-color: #38A169;
  color: #38A169;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

.otp-error {
  font-size: 0.8rem;
  color: #E53E3E;
  min-height: 20px;
  margin-bottom: 8px;
}

.modal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(201,168,76,0.35);
}

.modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(201,168,76,0.5);
}

.modal-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.modal-btn svg {
  width: 18px;
  height: 18px;
}

.otp-resend {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.resend-btn {
  background: none;
  border: none;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.3s;
}

.resend-btn:hover {
  color: var(--gold-dark);
}

/* Checkmark Animation */
.checkmark-circle {
  width: 72px;
  height: 72px;
}

.checkmark-svg {
  width: 72px;
  height: 72px;
}

.checkmark-circle-bg {
  stroke: #38A169;
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: checkStroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  stroke: #38A169;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: checkStroke 0.4s 0.4s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

@keyframes checkStroke {
  to { stroke-dashoffset: 0; }
}

/* Thank You Details */
.thankyou-details {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  width: 100%;
  margin-bottom: 24px;
  text-align: left;
}

.thankyou-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.85rem;
}

.thankyou-detail-row:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.thankyou-detail-row .td-label {
  color: var(--text-muted);
  font-weight: 500;
}

.thankyou-detail-row .td-value {
  color: var(--text-dark);
  font-weight: 600;
}

/* ==============================
   SCROLL REVEAL
============================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-form-wrap { max-width: 560px; }
  .overview-cards { grid-template-columns: repeat(2, 1fr); }
  .loc-grid { grid-template-columns: 1fr; }
  .loc-visual { order: -1; }
  .amenities-showcase { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-large { grid-column: span 2; grid-row: span 1; }
  .gallery-wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .navbar { padding: 18px 24px; }
  .navbar.scrolled { padding: 14px 24px!important; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 100px 24px 70px; }
  .hero-highlights { flex-direction: column; width: 100%; }
  .highlight-divider { width: 100%; height: 1px; }
  .highlight-card { padding: 14px; text-align: left; flex-direction: row; align-items: center; justify-content: space-between; }
  .hero-price-badge { flex-direction: column; align-items: flex-start; gap: 6px; }
  .price-plan { border-left: none; padding-left: 0; }

  .trust-strip { padding: 24px; }
  .trust-inner { gap: 20px; }
  .trust-item { padding: 8px 20px; }
  .trust-sep { display: none; }

  .section { padding: 70px 24px; }
  .overview-cards { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .amenities-showcase { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pp-steps { gap: 10px; }
  .pp-arrow { display: none; }
  .contact-form-wrap { padding: 28px 20px; }
  .hero-form-wrap { padding: 28px 20px; }
  .payment-plan { padding: 28px 20px; }
  .footer { padding: 40px 24px; }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-large { grid-column: span 1; grid-row: span 1; }
  .gallery-wide { grid-column: span 1; }

  .modal-box { padding: 36px 24px; }
  .otp-digit { width: 50px; height: 56px; font-size: 1.5rem; }

  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-close { top: 16px; right: 16px; width: 40px; height: 40px; }
}

@media (max-width: 480px) {
  .hero-highlights { display: none; }
  .otp-inputs { gap: 8px; }
  .otp-digit { width: 46px; height: 52px; font-size: 1.4rem; }
}
