/* =========================================================
   Venswa Infra — Luxury Residential Website
   styles.css  ·  Charcoal + Gold design system
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --bg:          #121212;
  --bg-alt:      #161511;
  --bg-deep:     #100F0D;
  --card:        #191917;
  --card-2:      #1A1915;
  --card-3:      #171613;

  --gold:        #C8A452;
  --gold-light:  #E6C87A;
  --gold-grad:   linear-gradient(135deg, #B08D3E, #E3C878 55%, #C8A452);
  --line:        rgba(200,164,82,.14);
  --line-2:      rgba(200,164,82,.20);

  --cream:       #F5F2EA;
  --text:        #EFECE5;
  --text-dim:    #A8A296;
  --text-mute:   #8F8A7E;
  --text-faint:  #6F6B61;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Manrope', system-ui, -apple-system, sans-serif;

  --maxw: 1240px;
  --ease: cubic-bezier(.16,1,.3,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: rgba(200,164,82,.35); color: #fff; }
h1, h2, h3, p { margin: 0; }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--maxw); margin: 0 auto; }
.section   { padding: clamp(90px, 11vw, 150px) 6vw; }
.section--tight { padding: clamp(70px, 8vw, 110px) 6vw; }
.section--alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.eyebrow {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.15;
  color: var(--cream);
  text-wrap: balance;
}
.lead {
  color: var(--text-dim);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.85;
  text-wrap: pretty;
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(44px, 6vw, 64px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 17px 34px;
  border-radius: 3px;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s, background .3s;
}
.btn--gold { color: #121212; background: var(--gold-grad); border: none; }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(200,164,82,.3); }
.btn--ghost {
  color: var(--gold-light);
  border: 1px solid rgba(200,164,82,.55);
  background: transparent;
  font-weight: 600;
  padding: 16px 34px;
}
.btn--ghost:hover { background: rgba(200,164,82,.12); transform: translateY(-2px); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-row--center { justify-content: center; }
.textlink {
  color: var(--gold-light);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid rgba(200,164,82,.45);
  padding-bottom: 6px;
  transition: color .3s, border-color .3s;
}
.textlink:hover { color: #F0D690; border-bottom-color: var(--gold-light); }
.inline-gold { color: var(--gold-light); text-decoration: none; border-bottom: 1px solid rgba(200,164,82,.4); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 5vw;
  background: transparent;
  transition: background .5s, padding .5s, box-shadow .5s, backdrop-filter .5s;
  animation: fadeDown .9s ease both;
}
.nav.is-scrolled {
  background: rgba(14,14,13,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 5vw;
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
}
.nav__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav__logo img { height: 46px; width: auto; border-radius: 6px; transition: height .4s; }
.nav.is-scrolled .nav__logo img { height: 40px; }
.nav__links { display: flex; align-items: center; gap: 40px; }
.nav__link {
  color: #C4BFB4; text-decoration: none;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
  transition: color .3s;
}
.nav__link:hover { color: var(--gold-light); }
.nav__link.is-active { color: var(--gold); }
.nav__cta {
  color: #121212; background: var(--gold-grad); text-decoration: none;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700;
  padding: 13px 26px; border-radius: 3px; transition: transform .3s, box-shadow .3s;
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(200,164,82,.25); }
.burger {
  display: none; background: none;
  border: 1px solid rgba(200,164,82,.4); border-radius: 3px;
  width: 46px; height: 46px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span { display: block; width: 20px; height: 1px; background: var(--gold); }
.burger span:last-child { width: 12px; align-self: center; margin-left: 8px; }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 95;
  background: rgba(14,14,14,.98);
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 34px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a { color: var(--text); text-decoration: none; font-family: var(--serif); font-size: 32px; }
.mobile-menu a.is-active { color: var(--gold-light); }
.mobile-menu__close {
  position: absolute; top: 26px; right: 5vw; background: none; border: none;
  color: var(--gold); font-size: 30px; cursor: pointer; font-family: var(--sans);
}
.mobile-menu__rule { width: 60px; height: 1px; background: rgba(200,164,82,.4); }
.mobile-menu__phone { color: var(--gold); text-decoration: none; font-size: 13px; letter-spacing: .2em; }

/* ---------- Hero ---------- */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 16s var(--ease) both; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,12,12,.62) 0%, rgba(12,12,12,.45) 45%, var(--bg) 100%);
}
.hero__content { position: relative; max-width: 900px; padding: 0 24px; margin-top: 20px; }
.hero__eyebrow { color: var(--gold); font-size: 12px; letter-spacing: .38em; text-transform: uppercase; font-weight: 500; margin-bottom: 26px; }
.display {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(42px, 6.4vw, 88px); line-height: 1.08;
  margin-bottom: 26px; color: var(--cream); text-wrap: balance;
}
.hero__sub { color: #B7B2A6; font-size: clamp(15px, 1.4vw, 18px); line-height: 1.7; max-width: 560px; margin: 0 auto 44px; text-wrap: pretty; }
.scroll-ind { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.scroll-ind span { color: var(--text-mute); font-size: 10px; letter-spacing: .3em; text-transform: uppercase; }
.scroll-ind__track { width: 1px; height: 52px; background: rgba(200,164,82,.2); overflow: hidden; position: relative; }
.scroll-ind__track::after { content:""; position: absolute; inset: 0; background: linear-gradient(#E3C878, #C8A452); animation: scrollPulse 2.4s ease-in-out infinite; }

/* Page hero (interior pages) */
.page-hero { position: relative; padding: clamp(170px, 20vw, 240px) 6vw clamp(60px, 8vw, 100px); text-align: center; overflow: hidden; }
.page-hero__glow { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(200,164,82,.08), transparent 70%); }
.page-hero__content { position: relative; max-width: 800px; margin: 0 auto; }
.page-hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(40px, 5.6vw, 72px); line-height: 1.1; margin-bottom: 24px; color: var(--cream); text-wrap: balance; }

/* ---------- Two-column feature ---------- */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(40px, 6vw, 90px); align-items: center; }
.prose p { color: var(--text-dim); font-size: 16px; line-height: 1.9; margin-bottom: 18px; text-wrap: pretty; }
.prose p:last-child { margin-bottom: 0; }
.frame { position: relative; }
.frame::before { content:""; position: absolute; top: -18px; right: -18px; bottom: 18px; left: 18px; border: 1px solid rgba(200,164,82,.25); border-radius: 6px; }
.frame--left::before { right: 18px; left: -18px; }
.frame img { position: relative; width: 100%; height: clamp(320px, 34vw, 480px); object-fit: cover; border-radius: 6px; filter: saturate(.85); }
.frame__badge {
  position: absolute; left: 24px; bottom: 24px;
  background: rgba(14,14,14,.82); backdrop-filter: blur(8px);
  border: 1px solid rgba(200,164,82,.3); border-radius: 4px; padding: 18px 24px;
}
.frame__badge b { display: block; font-family: var(--serif); font-weight: 500; font-size: 26px; color: var(--gold-light); line-height: 1; }
.frame__badge small { display: block; margin-top: 6px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-mute); }

/* ---------- Project cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 34px; }
.card {
  background: var(--card); border: 1px solid rgba(200,164,82,.16); border-radius: 8px;
  overflow: hidden; text-decoration: none; display: block;
  transition: transform .45s var(--ease), border-color .45s, box-shadow .45s;
}
.card:hover { transform: translateY(-8px); border-color: rgba(200,164,82,.5); box-shadow: 0 30px 60px rgba(0,0,0,.5); }
.card__media { position: relative; height: 280px; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__media--empty {
  background: repeating-linear-gradient(-45deg, #1C1B18 0 14px, #191917 14px 28px);
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.card__ph-title { font-family: var(--serif); font-size: 30px; color: rgba(230,200,122,.5); }
.card__ph-note { font-family: monospace; font-size: 11px; color: var(--text-faint); margin-top: 10px; letter-spacing: .08em; }
.tag {
  position: absolute; top: 18px; left: 18px;
  background: rgba(14,14,14,.85); backdrop-filter: blur(6px);
  border: 1px solid rgba(200,164,82,.4); color: var(--gold-light);
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase; font-weight: 600;
  padding: 8px 14px; border-radius: 3px;
}
.tag--r { left: auto; right: 18px; border-color: rgba(200,164,82,.25); color: #B7B2A6; }
.card__body { padding: 32px 32px 36px; }
.card__title { font-family: var(--serif); font-weight: 500; font-size: 34px; color: var(--cream); margin-bottom: 8px; }
.card__meta { color: var(--gold); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 18px; }
.card__desc { color: var(--text-dim); font-size: 15px; line-height: 1.75; margin-bottom: 24px; text-wrap: pretty; }
.card__stats { display: flex; gap: 26px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 22px; margin-bottom: 24px; }
.stat b { display: block; font-family: var(--serif); font-size: 24px; color: var(--gold-light); font-weight: 500; }
.stat small { display: block; margin-top: 4px; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: #7E7A70; }
.card__cta { color: var(--gold-light); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; }

/* ---------- Why / value grids ---------- */
.grid-6 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.why-card {
  background: var(--card-2); border: 1px solid var(--line); border-radius: 6px;
  padding: 38px 34px; transition: transform .4s, border-color .4s;
}
.why-card:hover { transform: translateY(-6px); border-color: rgba(200,164,82,.45); }
.why-num {
  width: 44px; height: 44px; border: 1px solid rgba(200,164,82,.5); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
  color: var(--gold-light); font-family: var(--serif); font-size: 20px;
}
.why-card h3, .value h3 { font-family: var(--serif); font-weight: 500; font-size: 26px; color: var(--cream); margin-bottom: 12px; }
.why-card p, .value p { color: var(--text-dim); font-size: 15px; line-height: 1.75; text-wrap: pretty; }

/* Values — bordered tile grid */
.tile-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  border-radius: 8px; overflow: hidden;
}
.value { background: var(--card-3); padding: 42px 36px; transition: background .4s; }
.value:hover { background: #1D1B16; }
.value__num { font-family: var(--serif); font-size: 40px; color: rgba(200,164,82,.4); margin-bottom: 14px; line-height: 1; }
.value h3 { font-size: 25px; margin-bottom: 10px; }
.value p { color: #98937F; font-size: 14.5px; }

/* ---------- Process timeline (horizontal) ---------- */
.timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); position: relative; }
.timeline__line {
  position: absolute; top: 21px; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,164,82,.35) 15%, rgba(200,164,82,.35) 85%, transparent);
}
.timeline__step { position: relative; text-align: center; padding: 0 14px 10px; }
.timeline__dot {
  width: 42px; height: 42px; margin: 0 auto 22px; border-radius: 50%;
  background: var(--bg); border: 1px solid rgba(200,164,82,.55);
  display: flex; align-items: center; justify-content: center;
}
.timeline__dot i { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-grad); }
.timeline__step h3 { font-family: var(--serif); font-weight: 500; font-size: 23px; color: var(--cream); margin-bottom: 10px; }
.timeline__step p { color: var(--text-mute); font-size: 13.5px; line-height: 1.65; text-wrap: pretty; }

/* ---------- Journey timeline (vertical) ---------- */
.journey { position: relative; padding-left: 34px; border-left: 1px solid rgba(200,164,82,.25); display: flex; flex-direction: column; gap: 52px; max-width: 900px; margin: 0 auto; }
.journey__item { position: relative; }
.journey__dot { position: absolute; left: -40px; top: 6px; width: 11px; height: 11px; border-radius: 50%; background: var(--gold-grad); box-shadow: 0 0 0 5px rgba(200,164,82,.12); }
.journey__when { color: var(--gold); font-size: 11px; letter-spacing: .26em; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
.journey__item h3 { font-family: var(--serif); font-weight: 500; font-size: 26px; color: var(--cream); margin-bottom: 8px; }
.journey__item p { color: #98937F; font-size: 15px; line-height: 1.75; max-width: 560px; text-wrap: pretty; }

/* ---------- Vision / Mission ---------- */
.vm-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.vm-card { background: var(--card-2); border: 1px solid rgba(200,164,82,.16); border-radius: 8px; padding: clamp(38px, 5vw, 60px); }
.vm-card p { font-family: var(--serif); font-size: clamp(24px, 2.4vw, 32px); line-height: 1.4; color: #E9E5DA; text-wrap: balance; }

/* ---------- Leadership ---------- */
.lead-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.lead-card { background: var(--card); border: 1px solid rgba(200,164,82,.18); border-radius: 8px; padding: clamp(32px, 4vw, 48px); }
.lead-card__head { display: flex; align-items: center; gap: 20px; margin-bottom: 26px; }
.lead-card__avatar {
  width: 76px; height: 76px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid rgba(200,164,82,.5);
  background: linear-gradient(150deg, #201E19, #16150F);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 30px; color: var(--gold-light);
  overflow: hidden;
}
.lead-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.lead-card__name { font-family: var(--serif); font-weight: 500; font-size: 27px; color: var(--cream); margin-bottom: 4px; }
.lead-card__role { color: var(--gold); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; }
.lead-card p { color: var(--text-dim); font-size: 15px; line-height: 1.85; margin-bottom: 18px; text-wrap: pretty; }
.lead-card p:last-child { margin-bottom: 0; color: #98937F; font-size: 14.5px; }

/* ---------- Quote / philosophy ---------- */
.quote { font-family: var(--serif); font-style: italic; font-size: clamp(24px, 3vw, 36px); line-height: 1.5; color: #D8D3C6; text-wrap: balance; }
.rule { width: 48px; height: 1px; background: rgba(200,164,82,.5); margin: 0 auto; }

/* ---------- Testimonial ---------- */
.testimonial {
  max-width: 760px; margin: 0 auto; text-align: center;
  background: var(--card); border: 1px solid rgba(200,164,82,.18); border-radius: 8px;
  padding: clamp(44px, 6vw, 70px) clamp(28px, 5vw, 70px);
}
.testimonial__mark { font-family: var(--serif); font-size: 64px; line-height: 1; color: rgba(200,164,82,.45); margin-bottom: 8px; }
.testimonial p { font-family: var(--serif); font-size: clamp(22px, 2.4vw, 28px); font-style: italic; color: #D8D3C6; line-height: 1.5; margin-bottom: 28px; text-wrap: balance; }
.testimonial small { color: var(--text-mute); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; }

/* ---------- CTA ---------- */
.cta { position: relative; overflow: hidden; border-top: 1px solid var(--line); }
.cta__bg { position: absolute; inset: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; filter: blur(2px) brightness(.4) saturate(.7); }
.cta__bg::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--bg) 0%, rgba(18,18,18,.65) 30%, rgba(18,18,18,.75) 70%, var(--bg) 100%); }
.cta__content { position: relative; max-width: 780px; margin: 0 auto; text-align: center; padding: clamp(100px, 13vw, 170px) 24px; }
.cta__content h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(34px, 4.4vw, 60px); color: var(--cream); margin-bottom: 22px; text-wrap: balance; }

/* ---------- Stats bar ---------- */
.stats-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; background: rgba(200,164,82,.12); }
.stats-bar__cell { background: var(--bg-alt); text-align: center; padding: 36px 16px; }
.stats-bar__cell b { display: block; font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); color: var(--gold-light); line-height: 1; font-weight: 500; }
.stats-bar__cell small { display: block; margin-top: 10px; font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--text-mute); }

/* ---------- Locale cards ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; }
.locale-card { background: var(--card-2); border: 1px solid var(--line); border-radius: 6px; padding: 36px 32px; transition: transform .4s, border-color .4s; }
.locale-card:hover { transform: translateY(-6px); border-color: rgba(200,164,82,.45); }
.locale-card__num { font-family: var(--serif); font-size: 36px; color: rgba(200,164,82,.45); margin-bottom: 16px; line-height: 1; }
.locale-card h3 { font-family: var(--serif); font-weight: 500; font-size: 24px; color: var(--cream); margin-bottom: 10px; }
.locale-card p { color: #98937F; font-size: 14.5px; line-height: 1.75; text-wrap: pretty; }

/* ---------- Map ---------- */
.map-frame { border: 1px solid var(--line-2); border-radius: 8px; overflow: hidden; }
.map-frame iframe { display: block; width: 100%; height: 380px; border: 0; filter: grayscale(.85) invert(.9) contrast(.9); }

/* ---------- Residences (unit mix) ---------- */
.units-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 900px; margin: 0 auto; }
.unit-card { background: var(--card); border: 1px solid rgba(200,164,82,.18); border-radius: 8px; padding: 40px 38px; display: flex; flex-direction: column; }
.unit-card__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 26px; }
.unit-card__head h3 { font-family: var(--serif); font-weight: 500; font-size: 34px; color: var(--gold-light); }
.unit-card__head small { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--text-mute); }
.unit-row { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid rgba(200,164,82,.1); }
.unit-row span:first-child { color: #B7B2A6; font-size: 14.5px; }
.unit-row span:last-child { color: #E9E5DA; font-size: 14.5px; font-weight: 500; }
.unit-card__foot { margin-top: auto; padding-top: 28px; }

/* ---------- Floor plan ---------- */
.floorplan {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  text-decoration: none; min-height: clamp(320px, 40vw, 460px);
  background: repeating-linear-gradient(-45deg, #1C1B18 0 14px, #191917 14px 28px);
  border: 1px solid rgba(200,164,82,.3); border-radius: 8px; padding: 40px 30px;
  transition: border-color .4s; text-align: center;
}
.floorplan:hover { border-color: rgba(200,164,82,.6); }
.floorplan b { font-family: var(--serif); font-weight: 500; font-size: 26px; color: var(--gold-light); }
.floorplan small { font-family: monospace; font-size: 12px; color: var(--text-faint); letter-spacing: .06em; }

/* ---------- Amenities ---------- */
.amenity { background: var(--card-3); padding: 40px 34px; transition: background .4s; }
.amenity:hover { background: #1D1B16; }
.amenity__icon { width: 40px; height: 40px; border: 1px solid rgba(200,164,82,.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.amenity__icon i { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-grad); }
.amenity h3 { font-family: var(--serif); font-weight: 500; font-size: 24px; color: var(--cream); margin-bottom: 8px; }
.amenity p { color: #98937F; font-size: 14.5px; line-height: 1.75; text-wrap: pretty; }

/* ---------- Specifications ---------- */
.specs { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 0 clamp(40px, 6vw, 80px); max-width: 1100px; margin: 0 auto; }
.spec-row { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid rgba(200,164,82,.12); }
.spec-row dt { min-width: 110px; color: var(--gold); font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; padding-top: 3px; margin: 0; }
.spec-row dd { margin: 0; color: #B7B2A6; font-size: 14.5px; line-height: 1.7; text-wrap: pretty; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 4px; color: #E9E5DA; font-size: 16.5px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { color: var(--gold); font-size: 20px; font-style: normal; transition: transform .3s; flex-shrink: 0; }
.faq details[open] summary i { transform: rotate(45deg); }
.faq p { color: #98937F; font-size: 15px; line-height: 1.8; padding: 0 4px 24px; text-wrap: pretty; }

/* ---------- Forms ---------- */
.form { background: var(--card); border: 1px solid rgba(200,164,82,.18); border-radius: 8px; padding: clamp(32px, 4vw, 48px); display: flex; flex-direction: column; gap: 18px; }
.form--flat { background: transparent; border: none; padding: 0; }
.field { display: flex; flex-direction: column; gap: 8px; color: var(--text-mute); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; }
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.field input, .field select, .field textarea {
  background: #121211; border: 1px solid var(--line-2); border-radius: 4px;
  padding: 15px 16px; color: var(--text); font-family: var(--sans); font-size: 15px;
  outline: none; transition: border-color .3s;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(200,164,82,.6); }
.form__note { color: var(--text-faint); font-size: 12px; line-height: 1.6; }
.contact-line { color: #E9E5DA; text-decoration: none; font-size: 15px; display: flex; align-items: center; gap: 14px; }
.contact-line span { color: var(--gold); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; min-width: 72px; }

/* Contact channel cards */
.channel { background: var(--card); border: 1px solid rgba(200,164,82,.16); border-radius: 8px; padding: 36px 32px; text-decoration: none; display: block; transition: transform .4s, border-color .4s; }
.channel:hover { transform: translateY(-6px); border-color: rgba(200,164,82,.5); }
.channel small { color: var(--gold); font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; font-weight: 600; display: block; margin-bottom: 14px; }
.channel b { font-family: var(--serif); font-weight: 500; font-size: 26px; color: var(--cream); display: block; margin-bottom: 8px; }
.channel p { color: var(--text-mute); font-size: 13.5px; line-height: 1.6; }
.hours-card { background: var(--card); border: 1px solid rgba(200,164,82,.16); border-radius: 8px; padding: 32px 34px; }
.hours-card b { color: var(--gold); font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; font-weight: 600; display: block; margin-bottom: 18px; }
.hours-row { display: flex; justify-content: space-between; gap: 20px; padding: 5px 0; }
.hours-row span:first-child { color: #B7B2A6; font-size: 14.5px; }
.hours-row span:last-child { color: #E9E5DA; font-size: 14.5px; }
.hours-row--sep { border-top: 1px solid rgba(200,164,82,.12); padding-top: 12px; margin-top: 6px; }

/* ---------- Filters ---------- */
.filters { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; padding: 0 6vw 56px; }
.filter-btn {
  background: none; cursor: pointer; font-family: var(--sans);
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  padding: 12px 24px; border-radius: 3px;
  border: 1px solid rgba(200,164,82,.28); color: #B7B2A6; transition: all .3s;
}
.filter-btn:hover { border-color: rgba(200,164,82,.7); color: var(--gold-light); }
.filter-btn.is-active { border-color: rgba(200,164,82,.75); color: #121212; background: var(--gold-grad); }
.empty-state { grid-column: 1 / -1; text-align: center; border: 1px dashed rgba(200,164,82,.3); border-radius: 8px; padding: 90px 30px; }
.empty-state b { font-family: var(--serif); font-size: 28px; color: #D8D3C6; display: block; margin-bottom: 12px; font-weight: 500; }
.empty-state p { color: var(--text-mute); font-size: 15px; }
.is-hidden { display: none !important; }

/* ---------- Related banner ---------- */
.related { border: 1px solid var(--line-2); border-radius: 8px; background: var(--card); padding: clamp(36px, 5vw, 56px); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.related h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 3vw, 36px); color: var(--cream); margin-bottom: 8px; }
.related p { color: var(--text-dim); font-size: 15px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid rgba(200,164,82,.16); background: var(--bg-deep); padding: clamp(64px, 8vw, 100px) 6vw 0; }
.footer__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 48px; padding-bottom: 64px; }
.footer__logo { height: 52px; border-radius: 6px; margin-bottom: 20px; }
.footer__about { color: var(--text-mute); font-size: 14px; line-height: 1.8; max-width: 280px; text-wrap: pretty; }
.footer__title { color: var(--gold-light); font-size: 11px; letter-spacing: .26em; text-transform: uppercase; font-weight: 600; margin-bottom: 22px; }
.footer__links { display: flex; flex-direction: column; gap: 13px; }
.footer__links a, .footer__addr { color: var(--text-dim); text-decoration: none; font-size: 14px; transition: color .3s; }
.footer__links a:hover { color: var(--gold-light); }
.footer__addr { line-height: 1.7; }
.footer__bottom { max-width: var(--maxw); margin: 0 auto; border-top: 1px solid rgba(200,164,82,.12); padding: 26px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__bottom p { color: var(--text-faint); font-size: 12.5px; }

/* ---------- Floating action buttons ---------- */
.fab { position: fixed; z-index: 80; width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 10px 30px rgba(0,0,0,.5); transition: transform .3s, background .3s; cursor: pointer; }
.fab-wa { right: 26px; bottom: 26px; background: #1E1D19; border: 1px solid rgba(200,164,82,.5); }
.fab-wa:hover { transform: translateY(-3px); background: #26241E; }
.fab-top { right: 26px; bottom: 92px; background: rgba(24,23,20,.92); border: 1px solid rgba(200,164,82,.3); color: var(--gold); font-size: 18px; display: none; }
.fab-top:hover { transform: translateY(-3px); }
.fab-call { left: 26px; bottom: 26px; background: var(--gold-grad); border: none; display: none; }

/* Sticky enquire pill (project page) */
.sticky-enquire {
  position: fixed; left: 50%; bottom: 22px; z-index: 85;
  transform: translateX(-50%) translateY(90px);
  color: #121212; background: var(--gold-grad); text-decoration: none;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700;
  padding: 15px 34px; border-radius: 30px; box-shadow: 0 16px 40px rgba(0,0,0,.5);
  transition: transform .45s var(--ease); opacity: .97;
}
.sticky-enquire.is-visible { transform: translateX(-50%) translateY(0); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Keyframes ---------- */
@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }
@keyframes scrollPulse { 0% { transform: translateY(-100%); } 55%,100% { transform: translateY(100%); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .burger { display: flex; }
}
@media (max-width: 760px) {
  .timeline__line { display: none; }
  .timeline { gap: 40px; }
}
@media (max-width: 640px) {
  .fab-call { display: flex; }
  .sticky-enquire { bottom: 90px; padding: 13px 26px; font-size: 11px; }
  .hero { min-height: 560px; }
  .frame::before { display: none; }
  .footer__bottom { flex-direction: column; }
  .section { padding: 72px 6vw; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
