/* ==========================================================================
   TARC Ishva — Pixel-perfect landing page styles
   Palette + type derived from tarc.in raw CSS (see DESIGN-GUIDE.md)
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

:root {
  /* Stone + brass palette */
  --stone:          #e1d3bb;
  --stone-light:    #ba9a616e;
  --stone-tint:     #ece0cb;
  --ivory:          #f7f6f2;
  --white:          #ffffff;

  /* Brass family */
  --brass-deep:     #a16e20;
  --brass:          #ac772a;
  --brass-soft:     #c99958;
  --brass-mist:     #d0ba94;
  --brass-border:   #b29f6a;
  --amber-focus:    #e19864;

  /* Neutrals */
  --ink:            #0d0d0c;
  --text:           #1a1a1a;
  --text-muted:     #555;
  --divider:        rgba(0,0,0,0.18);
  --hairline:       #dcdcdc;

  /* Shadows */
  --shadow-card:    0 1rem 3rem rgba(0,0,0,0.175);
  --shadow-soft:    0 6px 24px rgba(0,0,0,0.08);
  --scrim:          linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.82) 100%);

  /* Type */
  --font-display:   'Cinzel', 'Trajan Pro', Georgia, serif;
  --font-editorial: 'Cormorant Garamond', Georgia, serif;
  --font-body:      'Inter', 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Motion */
  --ease-luxe:      cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-reveal:    cubic-bezier(0.75, 0, 0.125, 1);
  --dur-fast:       200ms;
  --dur-base:       300ms;
  --dur-slow:       500ms;

  /* Radii — sharp everywhere except tabs/hero tiles */
  --r-tab:          4px;
  --r-tile:         8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: var(--text);
  background: var(--stone);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--dur-base) var(--ease-luxe); }
a:hover { color: var(--brass-deep); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 95%; margin: 0 auto; }
.container-tight { max-width: 880px; margin: 0 auto; padding: 0 32px; }

/* ---------- Typography ---------- */
.display-xl { font-family: var(--font-display); font-size: clamp(40px, 6vw, 72px); font-weight: 400; letter-spacing: 0.06em; line-height: 1.15; }
.display-lg { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 400; letter-spacing: 0.08em; line-height: 1.2; }
.display-md { font-family: var(--font-display); font-size: clamp(26px, 2.8vw, 34px); font-weight: 400; letter-spacing: 3px; line-height: 1.4; }
.display-sm { font-family: var(--font-display); font-size: 24px; font-weight: 400; letter-spacing: 3px; line-height: 1.3; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 18px;
}
.eyebrow--light { color: var(--brass-soft); }

.prose p + p { margin-top: 16px; }
.prose p { font-size: 15px; line-height: 1.75; color: var(--text-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 32px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.35s var(--ease-luxe), color 0.35s var(--ease-luxe), border-color 0.35s var(--ease-luxe), transform 0.35s var(--ease-luxe), box-shadow 0.35s var(--ease-luxe);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  min-width: 44px;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 2px solid var(--brass-deep); outline-offset: 3px; }
.btn--brass { background: var(--brass-deep); color: #fff; }
.btn--brass:hover { background: var(--brass); color: #fff; }
.btn--outline { background: transparent; color: var(--text); border: 2px solid var(--brass-border); }
.btn--outline:hover { background: var(--brass-border); color: #fff; }
.btn--outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.8); }
.btn--outline-light:hover { background: #fff; color: var(--brass-deep); border-color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--brass-deep); }
.btn--full { width: 100%; }
.btn--sm { height: 40px; padding: 0 20px; font-size: 11px; letter-spacing: 3px; }

/* ---------- Header ---------- */
.lux-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: transparent;
  transition: background var(--dur-base), box-shadow var(--dur-base), padding var(--dur-base);
}
.lux-header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 10px 0;
}
.lux-header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.lux-logo { display: flex; flex-direction: column; line-height: 1.1; }
.lux-logo__eyebrow {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-soft);
}
.lux-header.scrolled .lux-logo__eyebrow { color: var(--brass-deep); }
.lux-logo__name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.16em;
  color: #fff;
  margin-top: 4px;
}
.lux-header.scrolled .lux-logo__name { color: var(--ink); }

.lux-nav { display: flex; gap: 28px; }
.lux-nav a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  position: relative;
  padding: 4px 0;
}
.lux-header.scrolled .lux-nav a { color: var(--text); }
.lux-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--brass);
  transition: width var(--dur-base) var(--ease-luxe);
}
.lux-nav a:hover::after { width: 100%; }
.lux-nav a:hover { color: var(--brass-soft); }
.lux-header.scrolled .lux-nav a:hover { color: var(--brass-deep); }
.lux-nav a.is-active { color: var(--brass-soft); }
.lux-nav a.is-active::after { width: 100%; }
.lux-header.scrolled .lux-nav a.is-active { color: var(--brass-deep); }

.lux-header__cta { display: flex; align-items: center; gap: 16px; }
.lux-header__phone {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.lux-header__phone i {
  color: var(--brass-soft);
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lux-header.scrolled .lux-header__phone { color: var(--ink); }
.lux-header.scrolled .lux-header__phone i { color: var(--brass-deep); }

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
}
.lux-header.scrolled .mobile-menu-toggle { color: var(--ink); }

@media (max-width: 1100px) { .lux-nav { display: none; } .mobile-menu-toggle { display: block; } }
@media (max-width: 560px) {
  .lux-header__phone { display: none; }
  .lux-header__inner { padding: 0 20px; }
  .lux-logo__name { font-size: 17px; letter-spacing: 0.12em; }
  .lux-logo__eyebrow { font-size: 8px; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 320px; max-width: 90vw;
  height: 100vh;
  background: var(--stone);
  z-index: 200;
  padding: 80px 32px 32px;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-luxe);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--divider);
}
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--ink);
  cursor: pointer;
}
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base);
}
.mobile-menu-overlay.open { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--ink);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: #0a0a09 url('../assets/hero.jpg') center/cover no-repeat;
  z-index: 0;
  transform: scale(1.04);
  animation: heroZoom 18s var(--ease-luxe) forwards;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,9,0.55) 0%, rgba(10,10,9,0.25) 30%, rgba(10,10,9,0.55) 60%, rgba(10,10,9,0.92) 100%),
    linear-gradient(90deg, rgba(10,10,9,0.6) 0%, rgba(10,10,9,0) 55%);
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
@media (max-width: 768px) {
  .hero__bg { background-image: url('../assets/hero-mobile.jpg'); }
  .hero__bg::after {
    background: linear-gradient(180deg, rgba(10,10,9,0.4) 0%, rgba(10,10,9,0.35) 40%, rgba(10,10,9,0.9) 100%);
  }
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: end;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}
.hero__copy { color: #fff; padding-bottom: 8px; max-width: 720px; }
.hero__copy .eyebrow { color: var(--brass-soft); margin-bottom: 20px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.6vw, 56px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero h1 .hero-accent { color: var(--brass-soft); display: block; font-size: 0.48em; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px; font-weight: 500; font-family: var(--font-body); }
.hero__sub {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  line-height: 2;
}
.hero__sub span { color: var(--brass-soft); }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.65);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  z-index: 2;
  text-align: center;
  pointer-events: none;
}
.hero__scroll::before {
  content: '';
  display: block;
  width: 1px; height: 34px;
  background: linear-gradient(180deg, transparent, var(--brass-soft));
  margin: 0 auto 10px;
  animation: scrollTick 2s ease-in-out infinite;
}
@keyframes scrollTick {
  0%,100% { opacity: 0.35; transform: scaleY(0.7); transform-origin: bottom; }
  50%     { opacity: 1;    transform: scaleY(1); }
}

/* Hero entrance animation */
.hero__copy > * { opacity: 0; transform: translateY(22px); animation: heroRise 0.9s var(--ease-luxe) forwards; }
.hero__copy > *:nth-child(1) { animation-delay: 0.15s; }
.hero__copy > *:nth-child(2) { animation-delay: 0.30s; }
.hero__copy > *:nth-child(3) { animation-delay: 0.45s; }
.hero__copy > *:nth-child(4) { animation-delay: 0.60s; }
.hero__form-wrap { opacity: 0; transform: translateY(22px); animation: heroRise 0.9s var(--ease-luxe) 0.75s forwards; }
@keyframes heroRise { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .hero__bg { animation: none; transform: none; }
  .hero__copy > *, .hero__form-wrap { opacity: 1; transform: none; animation: none; }
  .hero__scroll::before { animation: none; }
}

/* Hero glass form */
.glass-form {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-card);
  border-top: 2px solid var(--brass);
}
.glass-form h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--ink);
}
.glass-form p.form-sub {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.glass-form input, .glass-form select, .glass-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  border: 1px solid var(--hairline);
  background: #fff;
  color: var(--text);
  border-radius: 0;
  transition: border-color var(--dur-base);
}
.glass-form input:focus, .glass-form select:focus, .glass-form textarea:focus {
  outline: none;
  border-color: var(--brass);
}
.form-eyebrow {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 10px;
}
.form-rera {
  margin-top: 14px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 24px; align-items: stretch; padding: 0 24px; }
  .hero { padding: 110px 0 40px; }
  .hero__copy { max-width: 100%; }
  .hero__scroll { display: none; }
  .hero h1 { font-size: 30px; letter-spacing: 0.02em; }
  .hero__sub { font-size: 11px; letter-spacing: 0.14em; line-height: 1.9; margin-bottom: 26px; }
  .hero__cta { gap: 10px; }
  .hero__cta .btn { height: 48px; padding: 0 22px; font-size: 11px; letter-spacing: 3px; flex: 1 1 auto; }
}
@media (max-width: 600px) {
  /* Hide the heavy inline form on smallest screens; use the final CTA + floating call/WA instead */
  .hero__form-wrap { display: none; }
  .hero { min-height: auto; padding: 110px 0 60px; }
  .hero h1 { font-size: 26px; line-height: 1.2; }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--ink);
  color: #fff;
  padding: 18px 0;
}
.trust-strip__row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 36px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.84);
}
.trust-strip__row span { display: inline-flex; align-items: center; }
.trust-strip__row span + span::before {
  content: '';
  display: inline-block;
  width: 1px; height: 14px;
  background: var(--brass);
  margin-right: 36px;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .trust-strip__row span + span::before { display: none; }
  .trust-strip__row { gap: 8px 20px; font-size: 10px; letter-spacing: 0.18em; }
}

/* ---------- Section base ---------- */
.section { padding: clamp(64px, 9vw, 104px) 0; position: relative; }
.section--tight { padding: clamp(40px, 6vw, 64px) 0; }
.section--stone-light { background: linear-gradient(180deg, var(--stone) 0%, var(--stone-tint) 100%); }
.section--ivory { background: var(--ivory); }
.section--dark { background: var(--ink); color: #fff; }
.section--dark .eyebrow { color: var(--brass-soft); }
.section--dark .prose p { color: rgba(255,255,255,0.75); }

.section__head { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); padding: 0 16px; }
.section__head h2 { margin-bottom: 16px; }
.section__head p { max-width: 720px; margin: 0 auto; color: var(--text-muted); font-size: 15px; line-height: 1.75; }

/* Scroll-reveal primitive (applied via JS IntersectionObserver) */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.85s var(--ease-luxe), transform 0.85s var(--ease-luxe); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--left { transform: translateX(-24px) translateY(0); }
.reveal--left.is-visible { transform: translateX(0); }
.reveal--right { transform: translateX(24px) translateY(0); }
.reveal--right.is-visible { transform: translateX(0); }
.reveal--delay-1 { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }
.reveal--delay-3 { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--left, .reveal--right { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- Overview ---------- */
.overview__body {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.overview__body p {
  font-family: var(--font-editorial);
  font-size: 19px;
  line-height: 1.75;
  color: var(--text);
  letter-spacing: 0.01em;
}
.overview__body strong { color: var(--brass-deep); font-weight: 500; }

/* ---------- Read more (<details>) ---------- */
details.read-more { margin-top: 28px; }
details.read-more > summary {
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-deep);
  padding: 8px 0;
  border-bottom: 1px solid var(--brass);
  transition: color var(--dur-base);
}
details.read-more > summary::-webkit-details-marker { display: none; }
details.read-more > summary::after {
  content: '+';
  font-size: 16px;
  line-height: 1;
  color: var(--brass);
  transition: transform var(--dur-base);
}
details.read-more[open] > summary::after { content: '−'; }
details.read-more > summary:hover { color: var(--brass); }
details.read-more .prose { margin-top: 20px; }

/* ---------- Key facts table ---------- */
.keyfacts { max-width: 760px; margin: 0 auto; padding: 0 16px; }
.keyfacts table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.keyfacts th, .keyfacts td {
  padding: 14px 18px;
  text-align: left;
  font-size: 14px;
  border: none;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.keyfacts tr { border-bottom: 1px solid var(--divider); }
.keyfacts tr:last-child { border-bottom: none; }
.keyfacts td:first-child {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  width: 38%;
}
.keyfacts td:last-child {
  font-family: var(--font-editorial);
  font-size: 18px;
  color: var(--ink);
  font-weight: 500;
}
@media (max-width: 560px) {
  .keyfacts td { padding: 12px 10px; font-size: 13px; }
  .keyfacts td:first-child { font-size: 10px; letter-spacing: 0.18em; width: 42%; }
  .keyfacts td:last-child { font-size: 14px; font-family: var(--font-body); font-weight: 500; }
}

/* ---------- Four Directions ---------- */
.directions { max-width: 1200px; margin: 0 auto; }
.directions__tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.directions__tab {
  padding: 14px 36px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--r-tab);
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-luxe);
}
.directions__tab:hover { color: var(--brass-deep); border-color: var(--brass-border); }
.directions__tab.active {
  background: var(--brass);
  color: #fff;
  border-color: var(--brass);
}
.directions__panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.directions__panel.active { display: grid; animation: fadeUp 0.6s var(--ease-luxe); }
.directions__image {
  aspect-ratio: 1;
  border-radius: 50%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.3), inset 0 0 0 1px rgba(255,255,255,0.5);
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  transition: transform 0.6s var(--ease-luxe);
}
.directions__image::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid var(--brass-border);
  border-radius: 50%;
  opacity: 0.4;
  animation: pulseRing 3.5s ease-in-out infinite;
}
@keyframes pulseRing { 0%,100% { transform: scale(1); opacity: 0.25; } 50% { transform: scale(1.04); opacity: 0.5; } }
.directions__panel.active .directions__image { animation: directionFade 0.8s var(--ease-luxe); }
@keyframes directionFade { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .directions__image::before, .directions__panel.active .directions__image { animation: none; }
}
.directions__content h3 { font-family: var(--font-display); font-size: 28px; letter-spacing: 3px; margin-bottom: 18px; color: var(--brass-deep); }
.directions__content p { color: var(--text-muted); line-height: 1.8; font-size: 15px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 900px) { .directions__panel { grid-template-columns: 1fr; } .directions__tab { padding: 10px 18px; font-size: 12px; letter-spacing: 3px; } }

/* ---------- Residences cards ---------- */
.residences__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.residence-card {
  background: #fff;
  padding: clamp(32px, 4vw, 48px);
  border-top: 2px solid var(--brass);
  box-shadow: var(--shadow-soft);
  transition: transform 0.45s var(--ease-luxe), box-shadow 0.45s var(--ease-luxe);
  position: relative;
  overflow: hidden;
}
.residence-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 70%, rgba(161,110,32,0.06));
  opacity: 0;
  transition: opacity 0.45s var(--ease-luxe);
  pointer-events: none;
}
.residence-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.residence-card:hover::before { opacity: 1; }
.residence-card .eyebrow { color: var(--brass-deep); }
.residence-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--ink);
  margin-bottom: 14px;
}
.residence-card .size {
  font-family: var(--font-editorial);
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.residence-card .price {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 2px;
  color: var(--brass-deep);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--divider);
}
.residence-card .price small { font-size: 12px; letter-spacing: 0.2em; color: var(--text-muted); display: block; margin-top: 4px; }
.residence-card ul { list-style: none; margin-bottom: 28px; }
.residence-card ul li {
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: 14px;
  color: var(--text);
}
.residence-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 10px; height: 1px;
  background: var(--brass);
}
@media (max-width: 768px) { .residences__grid { grid-template-columns: 1fr; } }

/* ---------- Floor plans tabs ---------- */
.fp-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.fp-tab {
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--brass-border);
  color: var(--text);
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-luxe);
}
.fp-tab.active, .fp-tab:hover { background: var(--brass-deep); color: #fff; border-color: var(--brass-deep); }
.fp-panel { display: none; }
.fp-panel.active { display: block; animation: fadeUp 0.5s var(--ease-luxe); }
.fp-image {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 48px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.fp-image .fp-render {
  aspect-ratio: 16/10;
  background-color: var(--stone-tint);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--hairline);
}
.fp-image .fp-caption {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ---------- Amenities ---------- */
.amenities__hero {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.amenity-tile {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--r-tile);
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease-luxe), box-shadow 0.6s var(--ease-luxe);
  will-change: transform;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.amenity-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s var(--ease-luxe);
  z-index: 0;
}
.amenity-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.88) 100%);
  transition: background 0.45s var(--ease-luxe);
  z-index: 1;
}
.amenity-tile:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.18); }
.amenity-tile:hover::after {
  background: linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.82) 100%);
}
.amenity-tile__label { z-index: 2; }
.amenity-tile__label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
  z-index: 1;
}
.amenity-tile__label small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin-bottom: 6px;
}
.amenity-tile__label h4 {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: 400;
}
@media (max-width: 1024px) { .amenities__hero { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .amenities__hero { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

.amenities__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--divider);
}
.amenities__list li {
  list-style: none;
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: 14px;
}
.amenities__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 10px; height: 1px;
  background: var(--brass);
}
@media (max-width: 768px) { .amenities__list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .amenities__list { grid-template-columns: 1fr; } }

/* ---------- Lifestyle band ---------- */
.lifestyle {
  min-height: 560px;
  background: var(--ink) url('../assets/lifestyle.webp') center/cover;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  padding: 96px 0;
  color: #fff;
  position: relative;
}
.lifestyle::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,13,12,0.85) 0%, rgba(13,13,12,0.4) 60%, rgba(13,13,12,0.2) 100%);
}
.lifestyle__copy { position: relative; z-index: 1; max-width: 560px; }
.lifestyle h2 { font-family: var(--font-display); font-size: clamp(30px, 4vw, 44px); letter-spacing: 4px; line-height: 1.25; color: #fff; margin-bottom: 20px; }
.lifestyle p { font-family: var(--font-editorial); font-size: 18px; color: rgba(255,255,255,0.82); line-height: 1.7; }

/* ---------- Location ---------- */
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.location__map {
  aspect-ratio: 4/3;
  background: var(--stone-tint);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.location__map iframe { width: 100%; height: 100%; border: 0; }
.location__chips { display: flex; flex-direction: column; gap: 12px; }
.chip {
  padding: 16px 20px;
  background: #fff;
  border-left: 3px solid var(--brass);
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.chip strong {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--brass-deep);
  font-weight: 400;
  min-width: 70px;
}
.chip span { font-family: var(--font-body); font-size: 14px; color: var(--text); }
@media (max-width: 900px) { .location__grid { grid-template-columns: 1fr; } }

/* ---------- Payment plan timeline ---------- */
.payment {
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 24px;
}
.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--brass);
  z-index: 0;
}
.milestone {
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1;
}
.milestone__circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--brass-deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(161, 110, 32, 0.3);
}
.milestone h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
}
.milestone p { font-family: var(--font-editorial); font-size: 14px; color: var(--text-muted); }
@media (max-width: 700px) {
  .timeline { flex-direction: column; gap: 32px; align-items: center; }
  .timeline::before { top: 0; bottom: 0; left: 50%; right: auto; width: 2px; height: auto; }
  .milestone { max-width: 280px; }
}

/* ---------- About TARC ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about__image {
  aspect-ratio: 4/5;
  background: #3d2e1f url('../assets/gallery/g4-elevation.webp') center/cover;
  border-top: 4px solid var(--brass);
}
.about__content h2 { color: var(--ink); margin-bottom: 24px; }
.about__content p { color: var(--text-muted); font-size: 16px; line-height: 1.8; }
@media (max-width: 768px) { .about__grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq details {
  background: #fff;
  margin-bottom: 10px;
  box-shadow: var(--shadow-soft);
  border-left: 2px solid transparent;
  transition: border-color var(--dur-base) var(--ease-luxe), box-shadow var(--dur-base) var(--ease-luxe);
}
.faq details:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.09); }
.faq details[open] { border-left-color: var(--brass); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(16px, 2.4vw, 22px) clamp(20px, 3vw, 28px);
  font-family: var(--font-editorial);
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding-right: 54px;
  line-height: 1.45;
  transition: color var(--dur-base);
}
.faq summary:hover { color: var(--brass-deep); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%) rotate(0deg);
  font-size: 22px;
  color: var(--brass);
  transition: transform 0.35s var(--ease-luxe), color var(--dur-base);
  line-height: 1;
  font-family: var(--font-body);
  font-weight: 300;
}
.faq details[open] summary::after { content: '+'; transform: translateY(-50%) rotate(45deg); }
.faq .faq-answer {
  padding: 0 clamp(20px, 3vw, 28px) clamp(18px, 2.4vw, 24px);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  animation: faqOpen 0.35s var(--ease-luxe);
}
@keyframes faqOpen { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .faq .faq-answer { animation: none; } }

/* ---------- SEO long-form ---------- */
.seo-block { max-width: 820px; margin: 0 auto; }
.seo-block p { font-size: 15px; line-height: 1.85; color: var(--text-muted); margin-bottom: 16px; }
.seo-block h3 { font-family: var(--font-display); font-size: 20px; letter-spacing: 2px; margin: 32px 0 14px; color: var(--ink); }
.seo-block ul { margin: 16px 0 16px 22px; }
.seo-block ul li { padding: 4px 0; font-size: 15px; color: var(--text-muted); }

/* ---------- Final CTA ---------- */
.final-cta { padding: 96px 0; background: var(--ink); color: #fff; }
.final-cta__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  align-items: center;
}
.final-cta h2 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 40px); letter-spacing: 3px; line-height: 1.3; margin-bottom: 20px; color: #fff; }
.final-cta p { color: rgba(255,255,255,0.75); font-size: 16px; line-height: 1.8; margin-bottom: 32px; }
.final-cta__channels { display: flex; flex-direction: column; gap: 16px; }
.channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--dur-base) var(--ease-luxe);
  text-decoration: none;
  color: inherit;
}
.channel:hover { background: rgba(255,255,255,0.08); border-color: var(--brass); }
.channel i {
  font-size: 22px;
  color: var(--brass-soft);
  width: 32px;
  min-width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.channel-label { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 2px; }
.channel-value { font-family: var(--font-display); font-size: 20px; letter-spacing: 2px; color: #fff; }

.final-cta .glass-form {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 2px solid var(--brass);
}
.final-cta .glass-form h3 { color: #fff; }
.final-cta .glass-form p.form-sub { color: rgba(255,255,255,0.6); }
.final-cta .glass-form input,
.final-cta .glass-form select,
.final-cta .glass-form textarea {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
}
.final-cta .glass-form input::placeholder,
.final-cta .glass-form textarea::placeholder { color: rgba(255,255,255,0.4); }
@media (max-width: 900px) { .final-cta__grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Footer ---------- */
.lux-footer {
  background: #0a0a09;
  color: #fff;
  padding: 72px 0 24px;
}
.lux-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.lux-footer__brand h3 { font-family: var(--font-display); font-size: 24px; letter-spacing: 3px; margin-bottom: 14px; color: #fff; }
.lux-footer h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin-bottom: 18px;
}
.lux-footer ul { list-style: none; }
.lux-footer ul li { margin-bottom: 10px; font-size: 14px; color: rgba(255,255,255,0.66); line-height: 1.7; }
.lux-footer ul li a { color: rgba(255,255,255,0.66); }
.lux-footer ul li a:hover { color: var(--brass-soft); }
.lux-footer__social { display: flex; gap: 12px; margin-top: 20px; }
.lux-footer__social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--dur-base);
}
.lux-footer__social a:hover { border-color: var(--brass); background: var(--brass); color: #fff; }
.lux-footer__legal { padding-top: 24px; }
.lux-footer__legal p { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 8px; }
.lux-footer__legal strong { color: rgba(255,255,255,0.85); font-weight: 500; }
.lux-footer__copy {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
@media (max-width: 900px) { .lux-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .lux-footer__grid { grid-template-columns: 1fr; } .lux-footer__copy { flex-direction: column; gap: 8px; } }

/* ---------- Floating FABs ---------- */
.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 90;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform var(--dur-base) var(--ease-luxe);
  text-decoration: none;
}
.float-btn > i,
.float-btn > svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-align: center;
}
.float-btn:hover { transform: scale(1.08); color: #fff; }
.float-btn--whatsapp { background: #25D366; }
.float-btn--call { background: var(--brass-deep); }
@media (max-width: 500px) { .float-btn { width: 50px; height: 50px; font-size: 20px; } }

/* ---------- Popup form ---------- */
#popup-form {
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  display: flex;
  padding: 20px;
}
#popup-form.hidden { display: none !important; }
#popup-form__overlay {
  position: absolute; inset: 0;
  background: rgba(13,13,12,0.78);
  backdrop-filter: blur(8px);
}
#popup-form .glass-form {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: #fff;
}
#close-popup {
  position: absolute;
  top: 14px; right: 14px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--brass-deep);
  cursor: pointer;
  z-index: 2;
}

/* ---------- Form field wrapper + inline errors ---------- */
.field { position: relative; margin-bottom: 12px; }
.field > input { margin-bottom: 0; }
.field-error {
  display: block;
  min-height: 16px;
  padding: 4px 2px 0;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #c0392b;
  transition: opacity var(--dur-base) var(--ease-luxe);
}
.field-error:empty { min-height: 0; padding: 0; }

.glass-form input.has-error,
.glass-form select.has-error,
.glass-form textarea.has-error,
.final-cta .glass-form input.has-error,
.final-cta .glass-form select.has-error,
.final-cta .glass-form textarea.has-error {
  border-color: #c0392b;
  box-shadow: 0 0 0 2px rgba(192,57,43,0.1);
}

/* Honeypot — visually hidden but still in DOM for bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  tab-index: -1;
}

/* Busy state */
.btn[aria-busy="true"] { opacity: 0.75; cursor: progress; }

/* ---------- Error + toast ---------- */
.error-message { color: #c33; font-size: 12px; margin-top: 4px; }
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--ink);
  color: #fff;
  padding: 14px 24px;
  border-left: 3px solid var(--brass);
  box-shadow: var(--shadow-card);
  font-size: 14px;
  z-index: 5000;
  transition: transform var(--dur-slow) var(--ease-luxe);
  max-width: 90%;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast--error { border-left-color: #c33; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery__tile {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--stone-tint);
  cursor: pointer;
  transition: transform 0.6s var(--ease-luxe), box-shadow 0.6s var(--ease-luxe);
  border-radius: var(--r-tile);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.gallery__tile::after {
  content: '+';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 300;
  opacity: 0;
  background: rgba(13,13,12,0);
  transition: opacity 0.4s var(--ease-luxe), transform 0.4s var(--ease-luxe);
}
.gallery__tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,13,12,0);
  transition: background 0.4s var(--ease-luxe);
}
.gallery__tile:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(0,0,0,0.18); }
.gallery__tile:hover::before { background: rgba(13,13,12,0.35); }
.gallery__tile:hover::after { opacity: 1; transform: translate(-50%, -50%) scale(1); }
@media (max-width: 600px) { .gallery { grid-template-columns: 1fr 1fr; gap: 10px; } }
@media (max-width: 768px) { .gallery { grid-template-columns: 1fr 1fr; } }

/* ---------- Misc ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

::selection { background: var(--brass); color: #fff; }
