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

html {
  scroll-behavior: smooth;
}

:root {
  --gold: #7A520F;
  --gold-light: #8A601A;
  --gold-pale: #F0D9A8;
  --gold-subtle: #FBF4E4;
  --cream: #FDFAF4;
  --cream-mid: #F5EDD8;
  --cream-dark: #EAD9BB;
  --brown-deep: #3B2910;
  --brown-mid: #5A4020;
  --text-mid: #6B4E27;
  --text-light: #6F552E;
  --white: #FFFFFF;
  --border: rgba(184, 134, 42, 0.18);
  --border-strong: rgba(184, 134, 42, 0.38);
  --shadow: 0 12px 48px rgba(184, 134, 42, 0.13);
}

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--brown-deep);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

/* ══ PRELOADER ══ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.pre-content {
  text-align: center;
}

.pre-logo {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  letter-spacing: .4em;
  color: var(--brown-deep);
  margin-bottom: 20px;
  animation: prePulse 2s ease-in-out infinite;
}

.pre-bar {
  width: 140px;
  height: 2px;
  background: var(--border);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.pre-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: preLoad 1.5s infinite;
}

@keyframes prePulse {

  0%,
  100% {
    opacity: .5;
    transform: scale(.98);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes preLoad {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* ══ POPUP OVERLAY ══ */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(30, 15, 5, 0.75);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.popup-overlay.active {
  display: flex;
}

.popup-box {
  background: var(--white);
  border: 1px solid var(--border-strong);
  max-width: 480px;
  width: 100%;
  padding: 40px 36px 36px;
  position: relative;
  animation: popIn .35s cubic-bezier(.34, 1.56, .64, 1) both;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(.9) translateY(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 22px;
  cursor: pointer;
  color: var(--text-mid);
  background: none;
  border: none;
  line-height: 1;
  transition: color .2s;
}

.popup-close:hover {
  color: var(--gold);
}

.popup-title {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: .25em;
  color: var(--brown-deep);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.popup-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 6px;
  font-weight: 600;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  background: var(--cream);
  color: var(--brown-deep);
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 134, 42, .1);
}

.req {
  color: var(--gold);
}

.form-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--brown-deep);
}

.popup-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.popup-success .ps-icon {
  font-size: 48px;
  margin-bottom: 12px;
  display: block;
}

.popup-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--brown-deep);
  margin-bottom: 8px;
}

.popup-success p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

.wa-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
}

.wa-divider::before,
.wa-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.wa-divider span {
  font-size: 11px;
  color: var(--text-mid);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.btn-wa-full {
  display: block;
  width: 100%;
  padding: 13px;
  background: #0F7A3A;
  color: var(--white);
  border: none;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: background .3s;
}

.btn-wa-full:hover {
  background: #0B5F2D;
}

/* ══ NAV ══ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px clamp(20px, 5vw, 60px);
  background: rgba(253, 250, 244, 0.97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: padding .3s, box-shadow .3s;
}

nav.scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0 4px 30px rgba(184, 134, 42, .1);
}

.nav-brand {
  font-family: 'Cinzel', serif;
  font-size: clamp(11px, 1.5vw, 14px);
  letter-spacing: .28em;
  color: var(--brown-deep);
  line-height: 1.4;
}

.nav-brand em {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  font-style: italic;
  color: var(--gold);
  letter-spacing: .38em;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1001;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--brown-deep);
  border-radius: 2px;
  transition: all .3s;
  display: block;
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.nav-links a {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 700;
  transition: color .2s;
}

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

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  transition: background .3s !important;
}

.nav-cta:hover {
  background: var(--brown-deep) !important;
}

/* ══ BREADCRUMB ══ */
.breadcrumb-bar {
  background: var(--cream-mid);
  padding: 12px clamp(20px, 5vw, 60px);
  margin-top: 74px;
  /* offset for fixed nav */
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  display: flex;
  list-style: none;
  gap: 10px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-mid);
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  font-size: 10px;
  color: var(--border-strong);
}

.breadcrumb a {
  color: var(--text-mid);
  transition: color .2s;
}

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

/* ══ BUTTONS ══ */
.btn {
  display: inline-block;
  appearance: none;
  font-family: 'Cinzel', serif;
  font-size: clamp(10px, 1.2vw, 11px);
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 14px clamp(20px, 3vw, 32px);
  transition: all .3s;
  cursor: pointer;
  border: none;
  text-align: center;
}

.image-popup-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.why-section button:not(.btn):not(.map-btn) {
  border: 0;
  background: transparent;
  cursor: pointer;
}

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

.btn-gold:hover {
  background: var(--brown-deep);
  color: var(--white);
  border-color: var(--brown-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .45);
}

.btn-ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--brown-mid);
  border: 1.5px solid var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-wa {
  background: #0F7A3A;
  color: var(--white);
  border: 1.5px solid #0F7A3A;
}

.btn-wa:hover {
  background: #0B5F2D;
  border-color: #0B5F2D;
}

/* ══ HERO ══ */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=1800&q=80&fit=crop') center/cover no-repeat;
  filter: brightness(.17) saturate(.6);
}

.hero-left {
  padding: clamp(100px, 14vw, 160px) clamp(24px, 5vw, 60px) 80px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeUp .9s ease both;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: .5em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-light);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  line-height: 1;
}

.hero-title .namaste {
  display: block;
  font-size: clamp(46px, 7vw, 90px);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

.hero-title .mamurdi {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: clamp(30px, 4.5vw, 58px);
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--white);
  margin-top: 6px;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 1.8vw, 19px);
  font-style: italic;
  color: rgba(255, 255, 255, .65);
  line-height: 1.8;
  max-width: 440px;
  margin: 26px 0 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(100px, 14vw, 160px) clamp(24px, 4vw, 50px) 80px;
  gap: 20px;
  animation: fadeIn 1.2s ease both;
}

.hero-form-card {
  background: rgba(253, 250, 244, .08);
  border: 1px solid rgba(184, 134, 42, .4);
  backdrop-filter: blur(20px);
  padding: 32px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.hform-title {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  letter-spacing: .2em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hform-title em {
  color: var(--gold-light);
  font-style: italic;
}

.hform-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 24px;
}

.form-note {
  font-size: 10px;
  color: rgba(255, 255, 255, .4);
  text-align: center;
  margin-top: 12px;
}

.hero-form-card .form-group label {
  color: rgba(255, 255, 255, .6);
}

.hero-form-card .form-group input,
.hero-form-card .form-group select {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(184, 134, 42, .3);
  color: var(--white);
}

.hero-form-card .form-group input::placeholder {
  color: rgba(255, 255, 255, .3);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 0;
  animation: fadeIn .5s both;
}

.check-icon {
  width: 60px;
  height: 60px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-family: 'Cinzel', serif;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.form-success p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: rgba(255, 255, 255, .8);
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: .3em;
  color: rgba(255, 255, 255, .3);
  text-transform: uppercase;
  animation: fadeIn 2s ease both;
}

.scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, rgba(184, 134, 42, .7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ══ SECTION COMMON ══ */
.section-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::after {
  content: '';
  height: 1px;
  width: 36px;
  background: var(--gold-light);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--brown-deep);
  line-height: 1.1;
}

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

/* ══ ABOUT ══ */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  overflow: hidden;
}

.about-img {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.about-img:hover img {
  transform: scale(1.04);
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 41, 16, .3), transparent);
}

.about-content {
  background: var(--white);
  padding: clamp(44px, 6vw, 80px) clamp(24px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--border);
}

.about-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 1.8vw, 18px);
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.8;
  margin-top: 18px;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.pill {
  background: var(--gold-subtle);
  border: 1px solid var(--border-strong);
  padding: 7px 14px;
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brown-mid);
}

/* ══ GALLERY ══ */
.gallery-section {
  padding: clamp(50px, 7vw, 80px) clamp(24px, 5vw, 60px);
  background: var(--cream-mid);
  border-top: 1px solid var(--border);
}

.gallery-label {
  text-align: center;
  margin-bottom: 36px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 6px;
}

.gal-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.gal-item:hover img {
  transform: scale(1.06);
}

.gal-item.tall {
  grid-row: span 2;
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(59, 41, 16, .75), transparent 55%);
  opacity: 0;
  transition: opacity .4s;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

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

.gal-lbl {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--white);
  text-transform: uppercase;
}

/* ══ WHY ══ */
.why-section {
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 60px);
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  margin-top: 48px;
  align-items: start;
}

.feature-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left .3s;
  cursor: default;
}

.feature-row:hover {
  padding-left: 6px;
}

.ficon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--gold-subtle);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.ftext h4 {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--brown-deep);
  margin-bottom: 4px;
}

.ftext p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
}

.dist-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.dist-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
}

.dist-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  transition: background .2s;
}

.dist-row:hover {
  background: var(--gold-subtle);
}

.dist-place {
  color: var(--text-mid);
}

.dist-time {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  color: var(--gold);
  font-weight: 600;
  background: var(--gold-subtle);
  padding: 3px 9px;
  border: 1px solid var(--border);
}

.map-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--gold);
  color: var(--white);
  padding: 14px;
  border: 0;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: background .3s;
  cursor: pointer;
}

.map-btn:hover {
  background: var(--brown-deep);
}

/* ══ PRICING ══ */
.pricing-section {
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 60px);
  background: var(--white);
  border-top: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.price-card {
  background: var(--cream);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  transition: all .35s;
}

.price-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.price-card.featured {
  border: 2px solid var(--gold);
}

.price-img {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.price-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.price-card:hover .price-img img {
  transform: scale(1.05);
}

.price-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(59, 41, 16, .5), transparent);
}

.price-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-size: 8px;
  letter-spacing: .2em;
  padding: 4px 10px;
  text-transform: uppercase;
}

.price-body {
  padding: 22px 20px 24px;
}

.price-type {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: .4em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.price-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5vw, 60px);
  font-weight: 300;
  color: var(--brown-deep);
  line-height: 1;
}

.price-bhk {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--text-light);
  margin-bottom: 14px;
}

.price-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
}

.pricing-cta {
  text-align: center;
  margin-top: 36px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══ FLOOR PLANS ══ */
.floorplan-section {
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 60px);
  background: var(--cream-mid);
  border-top: 1px solid var(--border);
}

.fp-tabs {
  display: flex;
  gap: 0;
  margin-top: 40px;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--border);
}

.fp-tab {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: pointer;
  color: var(--text-light);
  border: 1px solid transparent;
  border-bottom: none;
  transition: all .25s;
  background: none;
  margin-bottom: -2px;
}

.fp-tab:hover {
  color: var(--gold);
}

.fp-tab.active {
  color: var(--brown-deep);
  border-color: var(--border-strong);
  border-bottom: 2px solid var(--white);
  background: var(--white);
}

.fp-panels {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
}

.fp-panel {
  display: none;
  padding: clamp(24px, 4vw, 48px);
}

.fp-panel.active {
  display: block;
}

.fp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 50px);
  align-items: start;
}

.fp-img-wrap {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: zoom-in;
}

.fp-img-wrap img {
  width: 100%;
  height: auto;
  transition: transform .4s;
  display: block;
}

.fp-img-wrap:hover img {
  transform: scale(1.03);
}

.fp-zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(59, 41, 16, .7);
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: .15em;
  padding: 5px 10px;
  text-transform: uppercase;
  pointer-events: none;
}


.fp-variant-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: .4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.fp-variant-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 20px;
}

.fp-rooms {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}

.fp-room {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.fp-room-name {
  color: var(--text-mid);
  font-weight: 700;
}

.fp-room-size {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: .08em;
}

.fp-price-box {
  background: var(--gold-subtle);
  border: 1px solid var(--border-strong);
  padding: 18px 20px;
  margin-bottom: 20px;
}

.fp-price-label {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: .35em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.fp-price-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
}

/* sub-tabs for variants */
.fp-subtabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.fp-subtab {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 8px 16px;
  cursor: pointer;
  border: 1px solid var(--border-strong);
  background: none;
  color: var(--text-mid);
  transition: all .2s;
}

.fp-subtab.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.fp-subpanel {
  display: none;
}

.fp-subpanel.active {
  display: block;
}

/* ══ AMENITIES ══ */
.amenities-section {
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 60px);
  background: var(--white);
  border-top: 1px solid var(--border);
}

.amenities-hero {
  position: relative;
  height: clamp(220px, 30vw, 340px);
  overflow: hidden;
  margin-bottom: 40px;
}

.amenities-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.amenities-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 41, 16, .78), rgba(59, 41, 16, .2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 5vw, 60px);
}

.ah-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 4vw, 48px);
  font-style: italic;
  color: var(--white);
  margin-bottom: 8px;
}

.ah-sub {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: .4em;
  color: var(--gold-light);
  text-transform: uppercase;
}

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

.am-card {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 24px 14px;
  text-align: center;
  transition: all .3s;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}

.am-card:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.am-card:hover .am-name {
  color: var(--white);
}

.am-emoji {
  font-size: 24px;
}

.am-name {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: .14em;
  color: var(--text-mid);
  text-transform: uppercase;
  line-height: 1.5;
  transition: color .3s;
}

.am-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 4px;
}

.am-photo {
  position: relative;
  height: clamp(160px, 18vw, 240px);
  overflow: hidden;
}

.am-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.am-photo:hover img {
  transform: scale(1.06);
}

.am-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(59, 41, 16, .75), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.am-photo-lbl {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--white);
  text-transform: uppercase;
}

/* ══ SPECS ══ */
.specs-strip {
  background: var(--gold-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(36px, 5vw, 60px) clamp(24px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.spec-col {
  padding: 18px 20px;
  border-right: 1px solid var(--border-strong);
  text-align: center;
}

.spec-col:last-child {
  border-right: none;
}

.spec-icon {
  font-size: 26px;
  margin-bottom: 10px;
  display: block;
}

.spec-name {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-bottom: 6px;
  font-weight: 600;
}

.spec-detail {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ══ TOKEN ══ */
.token-section {
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 60px);
  background: var(--cream-mid);
  text-align: center;
  border-top: 1px solid var(--border);
}

.token-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.tok-card {
  border: 1px solid;
  padding: 36px 22px;
  transition: transform .3s, box-shadow .3s;
  background: var(--white);
}

.tok-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.tok-card.bronze {
  border-color: #C49A6C;
}

.tok-card.silver {
  border-color: #A8A8A8;
}

.tok-card.gold-t {
  border-color: var(--gold);
}

.tok-medal {
  font-size: 42px;
  margin-bottom: 12px;
  display: block;
}

.tok-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  color: var(--brown-deep);
  display: block;
  margin-bottom: 6px;
}

.tok-label {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-light);
}

.tok-type {
  font-size: 11px;
  color: var(--gold);
  margin-top: 12px;
  font-weight: 700;
  line-height: 1.6;
}

/* ══ FAQ ══ */
.faq-section {
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 60px);
  background: var(--white);
  border-top: 1px solid var(--border);
}

.faq-header {
  margin-bottom: 48px;
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  background: var(--cream);
  transition: all .3s;
}

.faq-item.active {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.faq-q {
  padding: 20px 24px;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: .05em;
  color: var(--brown-deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  font-weight: 600;
}

.faq-icon {
  font-size: 18px;
  color: var(--gold);
  transition: transform .3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  transition: all .35s ease;
}

.faq-item.active .faq-a {
  max-height: 200px;
}

/* ══ BLOG PAGE ══ */
.blog-hero {
  height: clamp(300px, 40vw, 460px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 60px;
}

.blog-hero .hero-bg {
  filter: brightness(.4);
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.blog-main {
  padding: 0 clamp(20px, 5vw, 60px) 100px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  transition: all .35s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}

.blog-card-img {
  height: 220px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.08);
}

.blog-card-body {
  padding: 24px;
}

.blog-meta {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: .2em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--brown-deep);
  line-height: 1.3;
  margin-bottom: 14px;
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  transition: color .2s;
}

.blog-read-more:hover {
  color: var(--brown-deep);
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {}


/* ══ ARTICLE PAGE ══ */
.article-container {
  max-width: 900px;
  margin: 60px auto 100px;
  padding: 0 clamp(24px, 10vw, 100px);
  /* Responsive horizontal spacing */
}

.article-header {
  text-align: center;
  margin-bottom: 40px;
}

.article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 48px);
  color: var(--brown-deep);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 700;
}

.article-meta {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: .15em;
  color: var(--text-light);
  text-transform: uppercase;
}

.article-featured-img {
  width: 100%;
  aspect-ratio: 21/9;
  overflow: hidden;
  margin-bottom: 60px;
  border: 1px solid var(--border);
}

.article-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.85;
}

.article-lead {
  font-size: 20px;
  color: var(--brown-deep);
  font-weight: 500;
  margin-bottom: 32px;
}

.article-content h2 {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  color: var(--brown-deep);
  margin: 48px 0 20px;
  border-bottom: 1px solid var(--gold-subtle);
  padding-bottom: 12px;
}

.article-content p {
  margin-bottom: 24px;
}

.article-quote {
  margin: 40px 0;
  padding: 30px;
  background: var(--cream);
  border-left: 4px solid var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--brown-deep);
  line-height: 1.5;
}

.article-cta-box {
  margin-top: 60px;
  padding: 40px;
  background: var(--brown-deep);
  color: var(--white);
  text-align: center;
  border-radius: 2px;
}

.article-cta-box h3 {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  margin-bottom: 12px;
}

.article-cta-box p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  padding: 12px 28px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: all .3s;
}

.btn-gold:hover {
  background: var(--brown-deep);
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .article-container {
    margin: 40px auto 60px;
  }

  .article-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .article-featured-img {
    aspect-ratio: 16/9;
    margin-bottom: 30px;
  }

  .article-content {
    font-size: 16px;
  }

  .article-lead {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .article-quote {
    padding: 20px;
    font-size: 20px;
    margin: 30px 0;
  }

  .article-cta-box {
    padding: 30px 20px;
    margin-top: 40px;
  }
}

/* ══ LEAD FORM ══ */
.form-section {
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 60px);
  background: var(--cream-mid);
  border-top: 1px solid var(--border);
}

.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  max-width: 1100px;
  margin: 0 auto;
}

.form-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 1.8vw, 18px);
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.8;
  margin-top: 16px;
}

.form-contact-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-mid);
}

.form-contact-item .ci-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-subtle);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.lead-form {
  background: var(--white);
  border: 1px solid var(--border);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow);
}

.form-title {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: .25em;
  color: var(--brown-deep);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 7px;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  background: var(--cream);
  color: var(--brown-deep);
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
  border-radius: var(--radius);
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 134, 42, .1);
}

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

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

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s;
  margin-top: 6px;
}

.form-submit:hover {
  background: var(--brown-deep);
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: var(--gold-subtle);
  border: 1px solid var(--border-strong);
}

.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--brown-deep);
  margin-bottom: 6px;
}

.form-success p {
  font-size: 13px;
  color: var(--text-mid);
}


/* ══ CTA ══ */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 60px);
  text-align: center;
  border-top: 1px solid var(--border);
}

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

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.15) saturate(.5);
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 41, 16, .65), rgba(184, 134, 42, .15));
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-icon {
  font-size: 50px;
  display: block;
  margin-bottom: 18px;
  animation: floatUp 3s ease-in-out infinite;
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-bottom: 10px;
}

.cta-sub {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: .45em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-contact {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: rgba(255, 255, 255, .5);
  margin-top: 36px;
  font-style: italic;
  line-height: 2;
}

.cta-contact strong {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-style: normal;
  color: var(--gold-light);
  display: block;
  margin-top: 4px;
}

/* ══ FOOTER ══ */
footer {
  background: var(--brown-deep);
  padding: clamp(20px, 3vw, 28px) clamp(24px, 5vw, 60px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: clamp(11px, 1.5vw, 13px);
  color: var(--gold-light);
  letter-spacing: .28em;
}

.footer-brand em {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 9px;
  font-style: normal;
  color: rgba(212, 168, 75, .3);
  letter-spacing: .35em;
  margin-top: 3px;
  font-weight: 300;
}

.footer-disc {
  font-size: 9px;
  color: rgba(212, 168, 75, .25);
  max-width: 400px;
  line-height: 1.7;
}

/* ══ FLOATING CONTACT ══ */
.floating-contact {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.float-btn {
  min-width: 148px;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(35, 24, 10, .22);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  cursor: pointer;
}

.float-btn svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: currentColor;
}

.float-wa {
  background: #0F7A3A;
}

.float-call {
  background: var(--gold);
}

.float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(35, 24, 10, .28);
}

.float-wa:hover {
  background: #0B5F2D;
}

.float-call:hover {
  background: var(--brown-deep);
}

@media (max-width: 560px) {
  .floating-contact {
    left: 14px;
    right: 14px;
    bottom: 14px;
    flex-direction: row;
    align-items: stretch;
  }

  .float-btn {
    flex: 1;
    min-width: 0;
    min-height: 48px;
    padding: 0 10px;
    font-size: 10px;
    letter-spacing: .08em;
  }

  .float-btn svg {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }
}

/* ══ ANIMATIONS ══ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .5;
  }

  50% {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ══ LIGHTBOX ══ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, .92);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 0 60px rgba(0, 0, 0, .8);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  opacity: .7;
  transition: opacity .2s;
}

.lightbox-close:hover {
  opacity: 1;
}

/* ══ RESPONSIVE ══ */
@media (max-width:1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-right {
    padding: 20px 20px 80px;
  }

  .hero-left {
    padding: 120px 20px 40px;
  }

  .hero-form-card {
    max-width: 100%;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-img {
    min-height: 300px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }

  .gal-item.tall {
    grid-row: span 1;
  }

  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .am-photos {
    grid-template-columns: 1fr 1fr;
  }

  .am-photos .am-photo:last-child {
    display: none;
  }

  .specs-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .spec-col:nth-child(2) {
    border-right: none;
  }

  .spec-col:nth-child(3) {
    border-top: 1px solid var(--border-strong);
  }

  .spec-col:nth-child(4) {
    border-top: 1px solid var(--border-strong);
    border-right: none;
  }

  .token-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fp-inner {
    grid-template-columns: 1fr;
  }

  .form-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width:768px) {
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 250, 244, .98);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 18px;
    font-size: 13px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child a {
    border: none;
    margin-top: 12px;
  }

  .nav-cta {
    display: block;
    background: var(--gold) !important;
    padding: 16px !important;
  }

  .hero-left {
    padding: 100px 20px 60px;
  }

  .hero-actions .btn {
    font-size: 10px;
    padding: 12px 22px;
  }

  .about-content {
    padding: 40px 20px;
  }

  .about-pills {
    gap: 8px;
  }

  .pill {
    font-size: 8px;
    padding: 6px 12px;
  }

  .why-section,
  .pricing-section,
  .gallery-section,
  .amenities-section,
  .token-section,
  .floorplan-section {
    padding: 60px 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 4px;
  }

  .gal-item {
    height: 200px;
  }

  .gal-overlay {
    opacity: 1;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .price-img {
    height: 160px;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .am-photos {
    grid-template-columns: 1fr;
  }

  .am-photos .am-photo:last-child {
    display: block;
  }

  .specs-strip {
    grid-template-columns: 1fr 1fr;
    padding: 36px 20px;
  }

  .spec-col {
    padding: 16px 12px;
    border-right: none !important;
    border-bottom: 1px solid var(--border-strong);
  }

  .spec-col:nth-child(odd) {
    border-right: 1px solid var(--border-strong) !important;
  }

  .spec-col:nth-child(3),
  .spec-col:nth-child(4) {
    border-top: none;
  }

  .spec-col:last-child {
    border-bottom: none;
  }

  .token-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  footer {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .footer-disc {
    text-align: center;
  }

  .scroll-hint {
    display: none;
  }

  .fp-tabs {
    gap: 0;
  }

  .fp-tab {
    padding: 12px 16px;
    font-size: 10px;
  }

  .popup-box {
    padding: 28px 20px 24px;
  }

  .form-row2 {
    grid-template-columns: 1fr;
  }
}

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

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fp-subtabs {
    gap: 6px;
  }

  .fp-subtab {
    font-size: 8px;
    padding: 6px 12px;
  }
}
