/* ==========================================================================
   Nirmal Homes — Luxury site stylesheet
   Built on the design-system tokens (../styles.css).
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; overflow-x: clip; width: 100%; }
body {
  margin: 0;
  overflow-x: clip;
  max-width: 100vw;
  background: var(--cream);
  color: var(--ink-80);
  font-family: var(--font-text);
  font-size: var(--t-body-size);
  line-height: var(--t-body-lh);
  font-weight: var(--fw-regular);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); color: var(--ink); font-weight: var(--fw-regular); }
p { margin: 0; }
::selection { background: var(--gold); color: #fff; }

/* ---- Layout primitives ---- */
.wrap { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--page-pad); }
.wrap-text { width: 100%; max-width: var(--container-text); margin: 0 auto; padding: 0 var(--page-pad); }
.wrap-wide { width: 100%; max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--page-pad); }
.section { padding: var(--space-section) 0; }
.section--tight { padding: var(--space-3xl) 0; }
.bg-cream-deep { background: rgba(241,237,229,0.55); }
.bg-mist { background: rgba(217,248,249,0.6); }
.bg-white { background: var(--white); }
.bg-charcoal { background: var(--charcoal); color: var(--on-dark); }
.bg-charcoal h1, .bg-charcoal h2, .bg-charcoal h3 { color: var(--on-dark); }

/* ---- Type helpers ---- */
.eyebrow {
  font-family: var(--font-text);
  font-size: var(--t-eyebrow-size);
  letter-spacing: var(--t-eyebrow-ls);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow--center { justify-content: center; }
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--eyebrow-dash, var(--gold));
}
.eyebrow--noline::before { display: none; }

.h-hero { font-size: var(--t-hero-size); line-height: var(--t-hero-lh); letter-spacing: var(--t-hero-ls); }
.h-xl { font-size: var(--t-display-xl-size); line-height: var(--t-display-xl-lh); letter-spacing: var(--t-display-xl-ls); }
.h-lg { font-size: var(--t-display-lg-size); line-height: var(--t-display-lg-lh); letter-spacing: var(--t-display-lg-ls); }
.h-md { font-size: var(--t-display-lg-size); line-height: var(--t-display-lg-lh); font-weight: var(--fw-regular); }
.h-sm { font-size: var(--t-display-sm-size); line-height: var(--t-display-sm-lh); font-weight: var(--fw-medium); }
.lead { font-size: var(--t-lead-size); line-height: var(--t-lead-lh); font-weight: var(--fw-light); color: var(--ink-80); }
.body-lg { font-size: var(--t-body-lg-size); line-height: var(--t-body-lg-lh); }
.muted { color: var(--ink-55); }
.serif-italic { font-family: var(--font-display); font-style: italic; }
.gold { color: var(--gold-deep); }

.section-head { max-width: 720px; }
.section-head--center { max-width: 760px; margin: 0 auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head h2 { margin-bottom: 0; }
.section-head .lead { margin-top: 24px; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-text);
  font-size: var(--t-button-size);
  letter-spacing: var(--t-button-ls);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  padding: 17px 34px;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background var(--dur-fast) var(--ease-standard),
              color var(--dur-fast) var(--ease-standard),
              border-color var(--dur-fast) var(--ease-standard),
              transform var(--dur-fast) var(--ease-standard);
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--gold); color: var(--on-gold); }
.btn--primary:hover { background: var(--gold-deep); }
.btn--dark { background: var(--charcoal); color: var(--on-dark); }
.btn--dark:hover { background: #000; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--hairline-strong); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--cream-deep); }
.btn--block { width: 100%; }
.btn-arrow { display: inline-flex; }
.btn-arrow svg { width: 16px; height: 16px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-text);
  font-size: 13px; letter-spacing: 1.5px; font-weight: var(--fw-medium);
  text-transform: uppercase; color: var(--ink);
  transition: gap var(--dur-base) var(--ease-out), color var(--dur-fast) var(--ease-standard);
}
.link-arrow svg { transition: transform var(--dur-base) var(--ease-out); }
.link-arrow:hover { color: var(--gold-deep); gap: 16px; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-height);
  display: flex; align-items: center;
  transition: background var(--dur-base) var(--ease-standard),
              box-shadow var(--dur-base) var(--ease-standard),
              height var(--dur-base) var(--ease-standard);
}
.nav__inner { width: 100%; max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--page-pad);
  display: flex; align-items: center; justify-content: space-between; }
.nav__brand { display: flex; flex-direction: row; align-items: center; gap: 13px; line-height: 1; }
.nav__logo { width: 44px; height: 46px; object-fit: contain; display: block; flex: none; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav__brand .mark {
  font-family: var(--font-display); font-size: 26px; font-weight: var(--fw-semibold);
  letter-spacing: 0.5px; color: #fff;
}
.nav__brand .sub {
  font-family: var(--font-text); font-size: 9.5px; letter-spacing: 5px;
  text-transform: uppercase; color: #fff; margin-top: 5px; font-weight: var(--fw-semibold);
  padding-left: 2px;
}
.nav__links { display: flex; align-items: center; gap: 38px; }
.nav__link {
  position: relative;
  font-family: var(--font-text); font-size: var(--t-nav-size); font-weight: var(--fw-semibold);
  letter-spacing: var(--t-nav-ls); font-weight: var(--fw-medium);
  text-transform: uppercase; color: #fff; padding: 6px 0;
  transition: color var(--dur-fast) var(--ease-standard);
  display: inline-flex; align-items: center; gap: 6px;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width var(--dur-base) var(--ease-out);
}
.nav__link:hover, .nav__link.is-active { color: var(--gold-soft); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__cta { margin-left: 8px; }
.nav__cta.btn { padding: 14px 26px; }

/* Dropdown */
.nav__item { position: relative; }
.nav__item .caret { transition: transform var(--dur-fast) var(--ease-standard); }
.nav__item:hover .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 0);
  min-width: 230px; background: var(--white); padding: 10px; margin-top: 14px;
  box-shadow: var(--shadow-card); opacity: 0; visibility: hidden;
  transition: opacity var(--dur-base) var(--ease-out), visibility var(--dur-base);
  border-top: 2px solid var(--gold);
}
.dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.nav__item:hover .dropdown, .nav__item.is-open .dropdown { opacity: 1; visibility: visible; }
.dropdown__link { display: block; padding: 14px 16px; color: var(--ink); transition: background var(--dur-fast); }
.dropdown__link:hover { background: var(--cream-deep); }
.dropdown__link .name { font-family: var(--font-display); font-size: 20px; font-weight: var(--fw-medium); display: block; }
.dropdown__link .loc { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-55); margin-top: 2px; }

/* Scrolled / solid nav */
.nav.is-solid { background: var(--cream); height: 72px; box-shadow: 0 1px 0 var(--hairline); }
.nav.is-solid .nav__brand .mark { color: var(--ink); }
.nav.is-solid .nav__brand .sub { color: var(--gold-deep); }
.nav.is-solid .nav__link { color: var(--ink); }
.nav.is-solid .nav__link:hover, .nav.is-solid .nav__link.is-active { color: var(--gold-deep); }
/* Pages without a dark hero use solid nav from the start */
.nav--light { background: var(--cream); box-shadow: 0 1px 0 var(--hairline); }
.nav--light .nav__brand .mark { color: var(--ink); }
.nav--light .nav__brand .sub { color: var(--gold-deep); }
.nav--light .nav__link { color: var(--ink); }
.nav--light .nav__link:hover { color: var(--gold-deep); }

/* Mobile menu */
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav__burger span { width: 24px; height: 1.5px; background: currentColor; color: #fff; transition: transform var(--dur-base), opacity var(--dur-base); }
.nav.is-solid .nav__burger span, .nav--light .nav__burger span { background: var(--ink); }
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--cream);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: 0 40px; transform: translateY(-100%); transition: transform var(--dur-slow) var(--ease-out);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__close { position: absolute; top: 22px; right: 22px; width: 44px; height: 44px;
  background: none; border: 0; display: flex; align-items: center; justify-content: center; }
.mobile-menu__close span { position: absolute; width: 22px; height: 1.5px; background: var(--ink); }
.mobile-menu__close span:nth-child(1) { transform: rotate(45deg); }
.mobile-menu__close span:nth-child(2) { transform: rotate(-45deg); }
.mobile-menu a { font-family: var(--font-display); font-size: 40px; color: var(--ink); padding: 10px 0; border-bottom: 1px solid var(--hairline); }
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu a.mobile-menu__sub { font-family: var(--font-display); font-size: 22px; font-weight: var(--fw-regular);
  letter-spacing: 0.2px; text-transform: none; color: var(--gold-deep); padding: 10px 0 10px 4px; border-bottom: 0; }
.mobile-menu__group { border-bottom: 1px solid var(--hairline); }
.mobile-menu__toggle { display: flex; align-items: center; justify-content: space-between; width: 100%;
  font-family: var(--font-display); font-size: 40px; color: var(--ink); background: none; border: 0; padding: 10px 0; text-align: left; }
.mobile-menu__toggle .caret { display: flex; transition: transform var(--dur-base) var(--ease-standard); width: 20px; height: 20px; }
.mobile-menu__group.is-expanded .mobile-menu__toggle .caret { transform: rotate(180deg); }
.mobile-menu__panel { max-height: 0; overflow: hidden; transition: max-height var(--dur-base) var(--ease-out); }
.mobile-menu__group.is-expanded .mobile-menu__panel { max-height: 200px; }
.mobile-menu__panel .mobile-menu__sub { display: block; }
.mobile-menu .btn { margin-top: 28px; font-family: var(--font-text); font-size: 13px; font-weight: var(--fw-semibold);
  letter-spacing: 0.8px; text-transform: uppercase; border-bottom: 0; padding: 18px 24px; border-radius: var(--radius-sm);
  width: 100%; text-align: center; }
@media (max-width: 600px) {
  .mobile-menu { padding: 0 24px; gap: 4px; }
  .mobile-menu a { font-size: 30px; padding: 8px 0; }
  .mobile-menu a.mobile-menu__sub { font-size: 22px; }
  .mobile-menu__toggle { font-size: 30px; }
}

/* ==========================================================================
   Floor plan cards + download modal
   ========================================================================== */
.floorplan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 8px; max-width: 920px; margin-inline: auto; }
.floorplan-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); }
.floorplan-card:hover { transform: translateY(-6px); box-shadow: 0 40px 70px -30px rgba(20,18,16,0.28); }
.floorplan-card__head { display: flex; align-items: baseline; justify-content: center; gap: 8px; padding: 28px 0 8px;
  background: var(--cream-deep); }
.floorplan-card__bhk { font-family: var(--font-display); font-size: 48px; font-weight: var(--fw-regular); color: var(--gold-deep); line-height: 1; }
.floorplan-card__unit { font-family: var(--font-text); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink); }
.floorplan-card__area { text-align: center; font-family: var(--font-text); font-size: 12px; letter-spacing: 0.4px;
  color: var(--ink-55); background: var(--cream-deep); padding: 0 16px 22px; }
.floorplan-card__img { aspect-ratio: 4/3.2; overflow: hidden; position: relative; background: var(--cream-deep); padding: 14px; }
.floorplan-card__img img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px;
  filter: blur(7px) saturate(0.9); transform: scale(1.1); transition: filter var(--dur-base) var(--ease-out); }
.floorplan-card:hover .floorplan-card__img img { filter: blur(4px) saturate(1); }
.floorplan-card__img::after { content: ""; position: absolute; inset: 16px; border-radius: 6px; background: rgba(248,246,242,0.18); }
.floorplan-card__cta { display: flex; align-items: center; justify-content: center; gap: 12px; width: 100%;
  padding: 20px 24px; border: none; background: var(--gold); color: var(--on-gold); font-family: var(--font-text);
  font-size: 13px; font-weight: var(--fw-semibold); letter-spacing: 0.8px; text-transform: uppercase; cursor: pointer;
  transition: background var(--dur-fast), gap var(--dur-fast); }
.floorplan-card__cta-ic { display: flex; width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.25);
  align-items: center; justify-content: center; flex: none; }
.floorplan-card__cta-ic svg { width: 14px; height: 14px; }
.floorplan-card__cta:hover { background: var(--gold-deep); gap: 16px; }
@media (max-width: 900px) { .floorplan-grid { grid-template-columns: 1fr; } }

.fp-modal { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; padding: 24px; }
.fp-modal.is-open { display: flex; }
.fp-modal__backdrop { position: absolute; inset: 0; background: rgba(10,9,8,0.72); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.fp-modal__panel { position: relative; z-index: 1; width: 100%; max-width: 880px; max-height: 90vh; overflow: auto;
  background: #1c1a17; border-radius: var(--radius-lg); display: grid; grid-template-columns: 1fr 1fr;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.6); }
.fp-modal__media { position: relative; min-height: 320px; }
.fp-modal__media img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; inset: 0; }
.fp-modal__form-wrap { padding: 44px 40px; display: flex; align-items: center; }
.fp-modal__close { position: absolute; top: 16px; right: 16px; z-index: 2; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3); background: rgba(0,0,0,0.3); color: #fff; display: flex; align-items: center;
  justify-content: center; cursor: pointer; transition: background var(--dur-fast); }
.fp-modal__close:hover { background: rgba(255,255,255,0.15); }
.fp-modal__close svg { width: 16px; height: 16px; }
.evara-form--modal { max-width: none; background: transparent; border: none; box-shadow: none; padding: 0; -webkit-backdrop-filter: none; backdrop-filter: none; }
@media (max-width: 760px) {
  .fp-modal__panel { grid-template-columns: 1fr; }
  .fp-modal__media { min-height: 180px; }
  .fp-modal__form-wrap { padding: 32px 24px; }
}

/* ==========================================================================
   Lead popup (timed enquiry modal)
   ========================================================================== */
.lead-popup { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; padding: 24px; }
.lead-popup.is-open { display: flex; }
.lead-popup__backdrop { position: absolute; inset: 0; background: rgba(10,9,8,0.72); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.lead-popup__panel { position: relative; z-index: 1; width: 100%; max-width: 460px; max-height: 90vh; overflow: auto;
  background: #1c1a17; border-radius: var(--radius-lg); box-shadow: 0 40px 100px -20px rgba(0,0,0,0.6);
  animation: leadPopupIn 0.4s var(--ease-out); }
@keyframes leadPopupIn { from { opacity: 0; transform: translateY(18px) scale(0.98); } to { opacity: 1; transform: none; } }
.lead-popup__close { position: absolute; top: 16px; right: 16px; z-index: 2; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3); background: rgba(0,0,0,0.3); color: #fff; display: flex; align-items: center;
  justify-content: center; cursor: pointer; transition: background var(--dur-fast); }
.lead-popup__close:hover { background: rgba(255,255,255,0.15); }
.lead-popup__close svg { width: 16px; height: 16px; }
.lead-popup__body { padding: 20px 30px; }
.lead-popup__body h3 { font-family: var(--font-display); font-size: 20px; font-weight: var(--fw-regular); color: #fff; margin: 0 0 4px; }
.lead-popup__body p.muted { font-size: 12.5px !important; color: rgba(255,255,255,0.6) !important; margin-bottom: 12px; }
.lead-popup .field { margin-bottom: 8px; }
.lead-popup .field label { margin-bottom: 4px; }
@media (max-width: 600px) {
  .lead-popup__body { padding: 20px 20px; }
}

/* ==========================================================================
   Evara — marquee strip
   ========================================================================== */
.marquee { background: var(--gold); overflow: hidden; padding: 18px 0; white-space: nowrap; width: 100%; }
.marquee__track { display: inline-flex; align-items: center; gap: 20px; width: max-content;
  animation: marqueeScroll 20s linear infinite; will-change: transform; }
.marquee__item { flex: none; font-family: var(--font-display); font-size: clamp(18px, 2vw, 26px); font-weight: var(--fw-regular);
  color: #fff; letter-spacing: 0.2px; }
.marquee__dot { flex: none; color: #fff; font-size: 10px; opacity: 0.7; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ==========================================================================
   Evara hero — split content + glass enquiry form
   ========================================================================== */
.evara-hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.evara-hero__bg { position: absolute; inset: 0; }
.evara-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.evara-hero__bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(10,9,8,0.9) 0%, rgba(10,9,8,0.74) 48%, rgba(10,9,8,0.88) 100%); }
.evara-hero__grid { position: relative; z-index: 2; width: 100%; padding: calc(var(--nav-height) + 60px) var(--page-pad) 60px;
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.evara-hero__content .eyebrow::before { background: var(--gold-soft); }
.evara-hero h1 { color: #fff; font-size: clamp(34px, 5.6vw, 78px); line-height: 1.06; letter-spacing: -0.02em; }
.evara-hero__subheading { font-family: var(--font-text); font-size: clamp(16px, 1.6vw, 20px); font-weight: var(--fw-medium);
  color: var(--gold-soft) !important; letter-spacing: 0.3px; margin: 18px 0 24px; }
.evara-hero__form-cta { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.35); color: #fff; margin-top: 34px;
  transition: background var(--dur-fast), transform var(--dur-base) var(--ease-out), border-color var(--dur-fast); }
.evara-hero__form-cta:hover { background: var(--gold); border-color: var(--gold); transform: translateY(4px); }
.evara-hero__form-cta-arrow { display: flex; transform: rotate(90deg); }
.evara-hero__form-cta-arrow svg { width: 22px; height: 22px; }
.evara-hero__form-wrap { display: flex; justify-content: center; }
.evara-form { width: 100%; max-width: 460px; background: rgba(255,255,255,0.32); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.42); border-radius: var(--radius-lg); padding: 32px 34px; box-shadow: 0 30px 60px -24px rgba(0,0,0,0.5); }
.evara-form h3 { font-family: var(--font-display); font-size: 22px; font-weight: var(--fw-regular); color: #fff; margin: 0 0 16px; }
.evara-form .field { margin-bottom: 14px; }
.evara-form .field label { color: rgba(255,255,255,0.75); }
.evara-form .field input, .evara-form .field textarea, .evara-form .field select { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.28); color: #fff; }
.evara-form .field select { color-scheme: dark; }
.evara-form .field select option { background: var(--ink); color: #fff; }
.evara-form .field input::placeholder, .evara-form .field textarea::placeholder { color: rgba(255,255,255,0.45); }
.evara-form .field input:focus, .evara-form .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.evara-form .btn--block { width: 100%; }
.evara-form .field textarea { min-height: 70px; }
.evara-form .muted { color: rgba(255,255,255,0.55) !important; }
@media (min-width: 860px) {
  .evara-hero__grid { grid-template-columns: 1.15fr 0.85fr; gap: 64px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden; }
.hero--page { min-height: 100vh; align-items: center; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: var(--overlay-hero); }
.hero--page .hero__bg::after { background: linear-gradient(180deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.5) 38%, rgba(0,0,0,0.86) 100%); }
.hero__content { position: relative; z-index: 2; width: 100%; padding-bottom: 8vh; }
.hero--page .hero__content { padding-bottom: 0; }
.hero h1 { color: #fff; max-width: 16ch; }
.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow::before { background: var(--gold-soft); }
.hero__sub { color: #fff !important; max-width: 52ch; margin-top: 28px; }
.hero__support { color: rgba(255,255,255,0.78); max-width: 60ch; margin-top: 20px; font-size: 15px; line-height: 1.8; }
.hero__cta { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.7);
  display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero__scroll .bar { width: 1px; height: 44px; background: linear-gradient(rgba(255,255,255,0.7), transparent); }

/* ==========================================================================
   Cinematic video hero
   ========================================================================== */
.liquid-glass {
  background: rgba(0, 0, 0, 0.4);
  background-blend-mode: luminosity;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1.4px;
  background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 20%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%, rgba(255,255,255,0.1) 80%, rgba(255,255,255,0.3) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.hero-cine { position: relative; height: 100vh; min-height: 600px; overflow: hidden; background: #000; color: #fff; }
.hero-cine__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-cine__inner { position: relative; z-index: 2; height: 100%; max-width: var(--container-wide); margin: 0 auto;
  padding: 0 var(--page-pad) 64px; display: flex; flex-direction: column; justify-content: flex-end; gap: 32px; }
.hero-cine__heading { font-family: var(--font-display); font-weight: var(--fw-regular); color: #fff;
  line-height: 1.06; letter-spacing: -0.02em; font-size: clamp(34px, 5.6vw, 78px); margin: 0 0 8px; white-space: nowrap;
  text-shadow: 0 2px 36px rgba(0,0,0,0.28); }
.hero-cine__heading .line { display: block; }
.hero-cine__heading .ch { display: inline-block; opacity: 0; transform: translateX(-18px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out); }
.hero-cine__heading.is-in .ch { opacity: 1; transform: none; }
.hero-cine__sub { font-size: clamp(16px, 1.3vw, 19px); color: rgba(255,255,255,0.85); max-width: 46ch;
  line-height: 1.6; margin: 22px 0 30px; text-shadow: 0 1px 18px rgba(0,0,0,0.32); }
.hero-cine__cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-cine__glass-btn { color: #fff; border-radius: 0; }
.hero-cine__glass-btn:hover { background: #fff; color: var(--ink); }
.hero-cine__right { display: flex; align-items: flex-end; justify-content: flex-start; }
.hero-cine__tag { padding: 16px 28px; border-radius: var(--radius-lg); font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px); font-weight: var(--fw-light); color: #fff; letter-spacing: 0.3px; }
.fadein { opacity: 1; }
.fadein.is-in { animation: heroFadeIn 0.9s var(--ease-out) both; }
@keyframes heroFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (min-width: 1024px) {
  .hero-cine__left { max-width: 880px; }
}
@media (max-width: 640px) {
  .hero-cine__heading { white-space: normal; font-size: clamp(30px, 9vw, 46px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-cine__heading .ch { opacity: 1; transform: none; transition: none; }
  .fadein, .fadein.is-in { opacity: 1; animation: none; }
}

/* ==========================================================================
   Reference hero (home — headline over edge-bleed shaped media)
   ========================================================================== */
.hero-ref { position: relative; background: var(--cream); padding: calc(var(--nav-height) + 28px) 0 48px; overflow: hidden; }
.hero-ref__frame { position: relative; z-index: 2; }

.hero-ref__title { position: relative; z-index: 2; font-family: var(--font-display); font-weight: var(--fw-regular);
  color: var(--ink); line-height: 0.98; letter-spacing: -0.02em; font-size: clamp(52px, 7.6vw, 112px); margin: 0; }
.hero-ref__title .line { display: block; }
.hero-ref__title .line--mut { color: var(--ink-35); font-style: italic; }
.hero-ref__title .ch { display: inline-block; }
.hero-ref__title.is-in .ch { animation: heroCharIn 0.5s var(--ease-out) both; }
@keyframes heroCharIn { from { opacity: 0; transform: translateX(-18px); } to { opacity: 1; transform: none; } }

/* shaped media: bleeds to the right + bottom edge with a large rounded top-left corner */
.hero-ref__media { position: relative; margin-top: 28px; aspect-ratio: 16/11; border-radius: 60px 22px 22px 22px;
  overflow: hidden; box-shadow: var(--shadow-photo); will-change: transform; z-index: 1; }
.hero-ref__video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* left panel: pills + search + quote */
.hero-ref__panel { position: relative; z-index: 2; margin-top: 36px; max-width: 480px; }
.hero-ref__pills { display: flex; gap: 10px; }
.hero-ref__pill { font-family: var(--font-text); font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  padding: 10px 22px; border-radius: 999px; border: 1px solid var(--hairline-strong); background: var(--white);
  color: var(--ink-55); cursor: pointer; transition: all var(--dur-fast); }
.hero-ref__pill:hover { border-color: var(--ink-35); color: var(--ink); }
.hero-ref__pill.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
.hero-ref__search { display: flex; align-items: center; gap: 10px; margin-top: 16px; background: var(--white);
  border: 1px solid var(--hairline-strong); border-radius: 999px; padding: 7px 7px 7px 20px; max-width: 460px; }
.hero-ref__search-ic { color: var(--gold-deep); display: flex; }
.hero-ref__search-ic svg { width: 18px; height: 18px; }
.hero-ref__search-in { flex: 1; border: none; outline: none; background: transparent; font-family: var(--font-text);
  font-size: 14px; color: var(--ink); min-width: 0; }
.hero-ref__search-in::placeholder { color: var(--ink-35); }
.hero-ref__search-btn { width: 46px; height: 46px; flex: none; border-radius: 50%; border: none; background: var(--gold);
  color: var(--on-gold); display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background var(--dur-fast); }
.hero-ref__search-btn:hover { background: var(--gold-deep); }
.hero-ref__search-btn svg { width: 18px; height: 18px; }
.hero-ref__quote { margin-top: 28px; padding-left: 20px; border-left: 2px solid var(--gold);
  font-family: var(--font-display); font-style: italic; font-size: 17px; line-height: 1.5; color: var(--ink-55); max-width: 38ch; }
.hero-ref__quote .qmark { color: var(--gold); font-size: 26px; margin-right: 3px; }

@media (min-width: 980px) {
  .hero-ref__frame { min-height: 620px; }
  .hero-ref__title { max-width: 60%; }
  .hero-ref__media { position: absolute; top: calc(var(--nav-height) + 56px); right: 0; bottom: 48px; width: 47vw;
    margin-top: 0; aspect-ratio: auto; border-radius: 90px 0 0 90px; }
  .hero-ref__panel { margin-top: 48px; }
}
@media (min-width: 1280px) {
  .hero-ref__media { width: 44vw; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-ref__title.is-in .ch { animation: none; }
}

/* ==========================================================================
   Intro / two-column editorial
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split__media .tag {
  position: absolute; background: var(--white); padding: 26px 30px; box-shadow: var(--shadow-card);
}
.split__media .tag--br { right: -28px; bottom: 40px; }
.split__media .tag .num { font-family: var(--font-display); font-size: 44px; color: var(--gold-deep); line-height: 1; }
.split__media .tag .lbl { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-55); margin-top: 6px; }
.stat-row { display: flex; gap: 48px; margin-top: 44px; padding-top: 36px; border-top: 1px solid var(--hairline); }
.stat .num { font-family: var(--font-display); font-size: 40px; color: var(--ink); line-height: 1; }
.stat .lbl { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-55); margin-top: 8px; }
.prose p + p { margin-top: 22px; }

/* ==========================================================================
   Feature cards (Why / Services)
   ========================================================================== */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 64px;
  border-top: 1px solid var(--hairline); border-left: 1px solid var(--hairline); }
.feature {
  padding: 44px 36px 48px; border-right: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  background: transparent; transition: background var(--dur-base) var(--ease-standard);
  position: relative;
}
.feature:hover { background: var(--white); }
.feature__icon { color: var(--gold-deep); margin-bottom: 28px; transition: transform var(--dur-base) var(--ease-out); }
.feature:hover .feature__icon { transform: translateY(-4px); }
.feature__icon svg { width: 34px; height: 34px; }
.feature h3 { font-size: 23px; font-weight: var(--fw-medium); margin-bottom: 14px; }
.feature p { font-size: 14.5px; line-height: 1.7; color: var(--ink-55); }
.feature__num { position: absolute; top: 36px; right: 36px; font-family: var(--font-display);
  font-size: 15px; color: var(--gold); opacity: 0.6; }

/* Services variant (cards with hover lift, on cream) */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 64px; }
.service {
  background: var(--white); padding: 44px 32px 40px; border: 1px solid var(--hairline);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base);
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--hairline-gold); }
.service__icon { color: var(--gold-deep); margin-bottom: 26px; }
.service__icon svg { width: 36px; height: 36px; }
.service h3 { font-size: 24px; font-weight: var(--fw-medium); margin-bottom: 12px; }
.service p { font-size: 14px; line-height: 1.7; color: var(--ink-55); margin-bottom: 22px; }
.service .link-arrow { font-size: 11px; }

/* FIND-style image-band services section */
.mega { background: rgba(0,180,196,0.9); color: var(--on-dark); padding: var(--space-2xl) 0 0; }
.mega__intro { position: relative; padding-bottom: var(--space-2xl); text-align: center; }
.mega__eyebrow { position: absolute; left: var(--page-pad); top: 6px; color: #fff; }
.mega__title { font-family: var(--font-display); font-size: var(--t-display-lg-size); line-height: 1.12;
  font-weight: var(--fw-regular); color: #fff; }
.mega__title .mut { color: rgba(255,255,255,0.7); }
.mega__bands { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.band {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 480px; padding: 30px 24px 30px; overflow: hidden;
  text-decoration: none; color: #fff;
}
.band::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: var(--img);
  background-size: cover; background-position: center;
  transform: scale(1.04); transition: transform 1.1s var(--ease-out), filter 0.7s var(--ease-out);
  filter: saturate(0.85) brightness(0.7);
}
.band::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(180deg, rgba(20,18,16,0.12) 0%, rgba(20,18,16,0.4) 48%, rgba(20,18,16,0.9) 100%);
  transition: opacity 0.7s var(--ease-out); opacity: 1;
}
.band:hover::before { transform: scale(1.1); filter: saturate(1.05) brightness(0.95); }
.band:hover::after { opacity: 0.78; }
.band > * { position: relative; z-index: 1; }
.band__num { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-text);
  font-size: 12px; color: #fff; position: absolute; left: 24px; top: 30px; }
.band__desc { order: 2; font-family: var(--font-text); font-size: 12.5px; line-height: 1.65; color: #fff;
  margin-top: 12px; }
.band__word { order: 1; position: relative; font-family: var(--font-display); font-size: clamp(34px, 3.1vw, 52px); line-height: 1;
  font-weight: var(--fw-regular); color: #fff; text-align: left; letter-spacing: -0.5px; display: inline-block; align-self: flex-start; }
.band__word::after { content: ""; position: absolute; left: 0; right: 0; bottom: -0.06em; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-out); }
.band:hover .band__word::after { transform: scaleX(1); }
.band__arrow { order: 3; color: #fff; display: flex; align-items: center; margin-top: 22px; transition: transform 0.45s var(--ease-out); }
.band__arrow svg { width: 42px; height: 32px; stroke-width: 1; }
.band:hover .band__arrow { transform: translateX(14px); }

/* staggered reveal for the 5 columns */
.band.reveal { opacity: 0; transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 1s var(--ease-out); }
.band.reveal.is-in { opacity: 1; transform: none; }
.mega__bands .band.reveal:nth-child(1) { transition-delay: 0s; }
.mega__bands .band.reveal:nth-child(2) { transition-delay: 0.09s; }
.mega__bands .band.reveal:nth-child(3) { transition-delay: 0.18s; }
.mega__bands .band.reveal:nth-child(4) { transition-delay: 0.27s; }
@media (prefers-reduced-motion: reduce) {
  .band.reveal { opacity: 1; transform: none; transition: none; }
}
@media (max-width: 1100px) {
  .mega__bands { grid-template-columns: repeat(2, 1fr); }
  .band { min-height: 400px; }
}
@media (max-width: 900px) {
  .mega__eyebrow { position: static; display: block; margin-bottom: 16px; }
  .mega__intro { text-align: left; }
}
@media (max-width: 600px) {
  .mega__bands { grid-template-columns: 1fr; }
  .band { min-height: 320px; }
}
.mega__outro { padding: var(--space-2xl) var(--page-pad) var(--space-3xl); }
.mega__outro-title { font-family: var(--font-display); font-size: var(--t-display-md-size); line-height: 1.25;
  font-weight: var(--fw-regular); color: #fff; max-width: 22ch; margin-bottom: 36px; }
.mega__outro .btn { border-color: #fff; color: #fff; }
.mega__outro .btn:hover { color: var(--ink); }
.mega__outro-title .mut { color: rgba(255,255,255,0.7); }

/* ==========================================================================
   Gallery strip — 3-at-a-time carousel with arrow scroll
   ========================================================================== */
.gallery-strip { position: relative; display: flex; align-items: center; gap: 16px; padding: 0 4px; }
.gallery-strip__viewport { flex: 1; overflow: hidden; }
.gallery-strip__track { display: flex; gap: 20px; transition: transform 0.6s var(--ease-out); }
.gallery-strip__item { flex: 0 0 calc((100% - 40px) / 3); aspect-ratio: 4/3; border-radius: 10px; overflow: hidden; }
.gallery-strip__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gs-arrow { flex: none; width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--hairline-strong);
  background: var(--white); color: var(--ink); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background var(--dur-fast), border-color var(--dur-fast); }
.gs-arrow:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.gs-arrow svg { width: 20px; height: 18px; }
.gs-arrow--prev svg { transform: scaleX(-1); }
@media (max-width: 760px) {
  .gallery-strip__item { flex: 0 0 calc((100% - 20px) / 2); }
  .gs-arrow { width: 42px; height: 42px; }
}
@media (max-width: 480px) {
  .gallery-strip__item { flex: 0 0 100%; }
  .nav__brand .sub { display: none; }
  .nav__logo { width: 36px; height: 38px; }
}

/* ==========================================================================
   Featured project — coverflow gallery (light)
   ========================================================================== */
.featured { background: var(--white); }
.featured__head { text-align: center; max-width: 720px; margin-inline: auto; }
.featured__head .eyebrow { justify-content: center; }
.featured__head .h-lg { margin-top: 14px; }
.featured__intro { font-family: var(--font-text); font-size: 15px; line-height: 1.8; color: #818589;
  max-width: 56ch; margin: 22px auto 0; }
.coverflow { position: relative; max-width: var(--container); margin: 52px auto 0; padding: 0 var(--page-pad);
  perspective: 1700px; perspective-origin: 50% 50%; }
.cf-stage { position: relative; height: 400px; width: 100%; transform-style: preserve-3d; }
.cf-card { position: absolute; top: 50%; left: 50%; width: 480px; height: 340px; margin: -170px 0 0 -240px;
  border-radius: 14px; overflow: hidden; background: var(--cream-deep);
  box-shadow: 0 30px 60px -28px rgba(20,18,16,0.5); cursor: pointer;
  transition: transform 0.7s var(--ease-out), opacity 0.7s var(--ease-out), box-shadow 0.7s var(--ease-out);
  will-change: transform, opacity; }
.cf-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cf-card::after { content: ""; position: absolute; inset: 0; transition: background 0.7s var(--ease-out);
  background: rgba(20,18,16,0); }
.cf-card[data-side]::after { background: rgba(20,18,16,0.28); }
.cf-card[data-active]::after { background: rgba(20,18,16,0); }
.cf-card[data-active] { box-shadow: 0 40px 80px -30px rgba(20,18,16,0.62); }
.cf-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 20;
  width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--hairline-strong);
  background: var(--white); color: var(--ink); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background var(--dur-fast), border-color var(--dur-fast), transform var(--dur-fast); }
.cf-arrow:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.cf-arrow svg { width: 20px; height: 18px; }
.cf-arrow--prev { left: 6px; }
.cf-arrow--prev svg { transform: scaleX(-1); }
.cf-arrow--next { right: 6px; }
.featured__foot { text-align: center; margin-top: 44px; }
.featured__name { font-family: var(--font-display); font-size: clamp(30px, 3.4vw, 46px); color: var(--ink); line-height: 1.05; }
.featured__meta { font-family: var(--font-text); font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase;
  color: #818589; margin-top: 12px; }
.featured__desc { font-family: var(--font-text); font-size: 15px; line-height: 1.75; color: #818589;
  max-width: 70ch; margin: 16px auto 0; }
@media (max-width: 760px) {
  .coverflow { padding: 0 var(--page-pad); }
  .cf-stage { height: 300px; }
  .cf-card { width: 300px; height: 220px; margin: -110px 0 0 -150px; }
  .cf-arrow { width: 42px; height: 42px; }
}
@media (prefers-reduced-motion: reduce) {
  .cf-card { transition: none; }
}

/* ==========================================================================
   Projects filmstrip carousel (dark)
   ========================================================================== */
.projects-show { text-align: center; }
.projects-show__title { font-family: var(--font-display); font-size: clamp(40px, 5vw, 72px); line-height: 1.08;
  font-weight: var(--fw-regular); color: #fff; text-transform: uppercase; letter-spacing: 2px; }
.projects-show__title .mut { color: var(--gold-soft); }
.projects-show__sub { color: var(--on-dark-muted); font-size: 14px; line-height: 1.7; max-width: 46ch; margin: 22px auto 0; }
.filmstrip { margin-top: 56px; }
.filmstrip__row { display: grid; grid-template-columns: 1fr 2.5fr 1fr; gap: 16px; height: 470px; }
.film-cell { position: relative; overflow: hidden; display: block; }
.film-cell img { width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform var(--dur-slow) var(--ease-out), opacity var(--dur-base); }
.film-cell--side { opacity: 0.5; }
.film-cell--side::after { content: ""; position: absolute; inset: 0; background: rgba(20,18,16,0.35); }
.film-cell--center { text-decoration: none; }
.film-cell--center::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.7) 100%); }
.film-cell--center:hover img { transform: scale(1.04); }
.film-cell__cap { position: absolute; left: 32px; bottom: 28px; z-index: 1; text-align: left; }
.film-cell__cap .nm { display: block; font-family: var(--font-display); font-size: clamp(26px, 2.6vw, 38px); font-weight: var(--fw-regular); color: #fff; letter-spacing: 1px; text-transform: uppercase; }
.film-cell__cap .lc { display: block; font-family: var(--font-text); font-size: 12px; letter-spacing: 1px; color: rgba(255,255,255,0.78); margin-top: 6px; }
.filmstrip__nav { display: flex; justify-content: center; gap: 14px; margin-top: 40px; }
.film-arrow { width: 52px; height: 44px; border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.04);
  color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background var(--dur-fast), border-color var(--dur-fast); }
.film-arrow:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.5); }
.film-arrow svg { width: 22px; height: 18px; }
.film-arrow--prev svg { transform: scaleX(-1); }
@media (max-width: 820px) {
  .filmstrip__row { grid-template-columns: 0.3fr 3fr 0.3fr; height: 360px; gap: 8px; }
  .film-cell__cap { left: 20px; bottom: 20px; }
}

/* ==========================================================================
   Development showcase (Evara editorial)
   ========================================================================== */
.devshow { position: relative; background: var(--cream); overflow: hidden; }
.devshow__bg { position: absolute; inset: -12% 0; background-image: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?auto=format&fit=crop&w=2000&q=80');
  background-size: cover; background-position: center; filter: grayscale(0.25) sepia(0.12) contrast(1.02); pointer-events: none; }
.devshow .devshow__bg.reveal { opacity: 0; transition: opacity 1.3s var(--ease-out); }
.devshow .devshow__bg.reveal.is-in { opacity: 0.22; }
.devshow--soft .devshow__bg { opacity: 0 !important; }
.devshow--soft .devshow__bg.reveal.is-in { opacity: 0.08 !important; }
.devshow--soft .devshow__bg::after { content: ""; position: absolute; inset: 0; background: rgba(248,246,242,0.65); }
.devshow__single { max-width: 74ch; margin: 40px auto 0; text-align: center; }
.devshow__single p { font-size: 16px; line-height: 1.9; color: var(--ink-80) !important; }
.highlight-head { text-align: center; margin: 72px 0 8px; }
.highlight-head h3 { font-family: var(--font-display); font-size: clamp(26px, 2.4vw, 34px); font-weight: var(--fw-regular); color: var(--ink); }
.highlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 32px; margin-top: 40px; }
.highlight { display: flex; gap: 16px; align-items: flex-start; padding: 22px 4px; border-top: 1px solid var(--hairline-strong); }
.highlight__icon { flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--gold-wash);
  color: var(--gold-deep); display: flex; align-items: center; justify-content: center; }
.highlight__icon svg { width: 19px; height: 19px; }
.highlight p { font-size: 14px !important; line-height: 1.65; color: #818589 !important; margin: 0; }
.highlight p strong { color: var(--ink); font-weight: var(--fw-medium); }
@media (max-width: 900px) { .highlight-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .highlight-grid { grid-template-columns: 1fr; } }
.devshow__inner { position: relative; z-index: 1; }
.devshow__top { text-align: center; }
.devshow__top .eyebrow { justify-content: center; }
.devshow__title { font-family: var(--font-display); font-size: clamp(48px, 6.4vw, 88px); line-height: 1.02;
  font-weight: var(--fw-regular); color: var(--ink); margin-top: 20px; letter-spacing: -0.5px; }
.devshow__title .mut { color: var(--gold-deep); }
.devshow__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 48px; }
.devshow__cols p { font-size: 16px; line-height: 1.85; color: #818589; max-width: 36ch; }
.devshow__cols .right { justify-self: end; text-align: left; }
.devshow__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px 40px; margin-top: 80px;
  padding-top: 44px; border-top: 1px solid var(--hairline-strong); }
.dstat__l { display: block; font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--ink-55); margin-bottom: 10px; }
.dstat__v { font-family: var(--font-display); font-size: clamp(24px, 2.2vw, 30px); font-weight: var(--fw-medium); color: var(--ink); line-height: 1.1; }
.devshow__cta { margin-top: 56px; text-align: center; }
@media (max-width: 820px) {
  .devshow__cols { grid-template-columns: 1fr; gap: 28px; }
  .devshow__cols .right { justify-self: start; }
  .devshow__stats { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ==========================================================================
   Process — FIND-style two-column steps
   ========================================================================== */
.process { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: start; }
.process__title { font-family: var(--font-display); font-size: var(--t-display-lg-size); line-height: 1.05;
  font-weight: var(--fw-regular); color: var(--ink); margin-bottom: 36px; }
.process__title .mut { color: var(--gold-deep); }
.process__intro { font-family: var(--font-text); font-size: 14px; line-height: 1.75; color: #818589;
  max-width: 40ch; margin-bottom: 32px; }
.process__label { font-size: 14px; color: var(--ink); font-weight: var(--fw-medium); padding-bottom: 22px;
  border-bottom: 1px solid var(--hairline-strong); margin-bottom: 8px; }
.pstep { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start;
  padding: 30px 0; border-bottom: 1px solid var(--hairline); }
.pstep__n { font-family: var(--font-text); font-size: 11px; letter-spacing: 1px; color: #818589; padding-top: 7px; }
.pstep__t { font-family: var(--font-display); font-size: clamp(22px, 2vw, 28px) !important; line-height: 1.35; color: #818589; font-weight: var(--fw-regular) !important; }
.pstep__t strong { color: var(--ink); font-weight: var(--fw-medium); }
@media (max-width: 820px) {
  .process { grid-template-columns: 1fr; gap: 44px; }
}

/* ==========================================================================
   Process timeline
   ========================================================================== */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 72px; position: relative; }
.timeline::before { content: ""; position: absolute; top: 26px; left: 8%; right: 8%; height: 1px; background: var(--hairline-strong); }
.step { padding: 0 30px; position: relative; text-align: left; }
.step__dot { width: 53px; height: 53px; border-radius: 50%; background: var(--cream); border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; margin-bottom: 30px;
  font-family: var(--font-display); font-size: 19px; color: var(--gold-deep); transition: background var(--dur-base), color var(--dur-base); }
.step:hover .step__dot { background: var(--gold); color: #fff; }
.bg-charcoal .step__dot { background: var(--charcoal); }
.bg-charcoal .timeline::before { background: var(--hairline-dark); }
.step .num { font-family: var(--font-display); font-size: 13px; letter-spacing: 2px; color: var(--gold-deep); margin-bottom: 12px; }
.step h3 { font-size: 26px; font-weight: var(--fw-medium); margin-bottom: 14px; }
.step p { font-size: 14.5px; line-height: 1.7; color: var(--ink-55); max-width: 30ch; }
.bg-charcoal .step p { color: var(--on-dark-muted); }

/* ==========================================================================
   Featured project showcase
   ========================================================================== */
.showcase__gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; margin-top: 56px; }
.showcase__gallery .main img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/11; }
.showcase__col { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
.showcase__col img { width: 100%; height: 100%; object-fit: cover; }
.showcase__body { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; margin-top: 64px; align-items: start; }
.spec-list { list-style: none; padding: 0; margin: 32px 0 0; }
.spec-list li { display: flex; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--hairline); font-size: 14px; }
.spec-list .k { color: var(--ink-55); letter-spacing: 0.3px; }
.spec-list .v { color: var(--ink); font-weight: var(--fw-medium); }
.amenity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin-top: 28px; }
.amenity { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--ink-80); }
.amenity svg { width: 18px; height: 18px; color: var(--gold-deep); flex-shrink: 0; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testi { max-width: 860px; margin: 0 auto; text-align: center; }
.testi__track { position: relative; min-height: 280px; }
.testi__slide { position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity var(--dur-slow) var(--ease-out); display: flex; flex-direction: column; align-items: center; }
.testi__slide.is-active { opacity: 1; visibility: visible; position: relative; }
.testi__stars { display: flex; gap: 5px; color: var(--gold); margin-bottom: 28px; }
.testi__quote { font-family: var(--font-display); font-size: 30px; line-height: 1.45; color: var(--ink);
  font-weight: var(--fw-light); font-style: italic; max-width: 22ch; }
.bg-charcoal .testi__quote { color: var(--on-dark); }
.testi__who { margin-top: 32px; }
.testi__who .name { font-family: var(--font-text); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: var(--fw-semibold); color: var(--ink); }
.bg-charcoal .testi__who .name { color: var(--on-dark); }
.testi__who .role { font-size: 12px; color: var(--ink-55); margin-top: 6px; letter-spacing: 0.5px; }
.bg-charcoal .testi__who .role { color: var(--on-dark-muted); }
.testi__dots { display: flex; gap: 10px; justify-content: center; margin-top: 44px; }
.testi__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--hairline-strong); border: 0; padding: 0; transition: background var(--dur-fast), transform var(--dur-fast); }
.bg-charcoal .testi__dot { background: rgba(255,255,255,0.25); }
.testi__dot.is-active { background: var(--gold); transform: scale(1.3); }

/* FIND-style reviews layout */
.reviews__head { margin-bottom: 56px; }
.reviews__head-mut { color: var(--gold-deep); }
.reviews__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.reviews__media { position: relative; aspect-ratio: 5/5.2; overflow: hidden; }
.reviews__media img { width: 100%; height: 100%; object-fit: cover; transition: opacity var(--dur-base) var(--ease-out); }
.reviews__body { padding-top: 8px; }
.reviews__top { display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding-bottom: 40px; border-bottom: 1px solid var(--hairline-strong); margin-bottom: 44px; }
.reviews__nav { display: flex; gap: 12px; }
.reviews__num { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--hairline-strong);
  background: transparent; font-family: var(--font-text); font-size: 14px; color: var(--ink-55);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: border-color var(--dur-fast), color var(--dur-fast), background var(--dur-fast); }
.reviews__num:hover { border-color: var(--ink); color: var(--ink); }
.reviews__num.is-active { background: var(--charcoal); border-color: var(--charcoal); color: #fff; }
.reviews__qmark { font-family: var(--font-display); font-size: 96px; line-height: 0.6; color: var(--ink); font-weight: var(--fw-bold); align-self: flex-start; }
.reviews__track { position: relative; }
.reviews__slide { margin: 0; display: none; }
.reviews__slide.is-active { display: block; animation: reviewFade var(--dur-base) var(--ease-out); }
@keyframes reviewFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.reviews__quote { font-family: var(--font-display); font-size: clamp(24px, 2.4vw, 34px) !important; line-height: 1.35;
  font-weight: var(--fw-regular) !important; color: #818589 !important; margin-bottom: 40px; }
.reviews__who { display: flex; align-items: center; gap: 18px; }
.reviews__who .name { font-family: var(--font-text); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: var(--fw-semibold); color: var(--ink); }
.reviews__who .sep { color: var(--ink-35); }
.reviews__who .stars { display: inline-flex; gap: 3px; color: var(--gold); }
.reviews__who .stars span { display: inline-flex; width: 16px; height: 16px; }
@media (max-width: 820px) {
  .reviews__grid { grid-template-columns: 1fr; gap: 40px; }
  .reviews__media { aspect-ratio: 4/3; }
}

/* ==========================================================================
   Big CTA band
   ========================================================================== */
.cta-band { position: relative; z-index: 2; height: 100vh; min-height: 620px; display: flex; align-items: center; color: #fff; overflow: hidden; }
.cta-band__bg { position: absolute; inset: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: var(--overlay-cta); }
.cta-band__inner { position: relative; z-index: 2; text-align: center; width: 100%; padding: 0; transform-origin: center center; will-change: transform, opacity; }
.cta-band h2 { color: #fff; max-width: 18ch; margin: 0 auto; font-size: var(--t-display-lg-size); line-height: var(--t-display-lg-lh); }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 56ch; margin: 26px auto 0; }
.cta-band .btn { margin-top: 40px; }

/* ==========================================================================
   Project cards (Projects page)
   ========================================================================== */
.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 64px; }
.project-card { background: var(--white); border: 1px solid var(--hairline); overflow: hidden;
  transition: box-shadow var(--dur-base) var(--ease-out); display: flex; flex-direction: column; }
.project-card:hover { box-shadow: var(--shadow-card); }
.project-card__img { position: relative; overflow: hidden; aspect-ratio: 3/2; }
.project-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.project-card:hover .project-card__img img { transform: scale(1.05); }
.project-card__badge { position: absolute; top: 20px; left: 20px; background: var(--white); color: var(--gold-deep);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: var(--fw-semibold); padding: 8px 14px; }
.project-card__body { padding: 36px 36px 40px; flex: 1; display: flex; flex-direction: column; }
.project-card__loc { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-deep); display: flex; align-items: center; gap: 8px; }
.project-card h3 { font-size: 32px; font-weight: var(--fw-regular); margin: 14px 0 14px; }
.project-card p { font-size: 14.5px; color: var(--ink-55); line-height: 1.7; margin-bottom: 28px; }
.project-card .link-arrow { margin-top: auto; }
.project-card--soon { display: flex; align-items: center; justify-content: center; text-align: center;
  border: 1px dashed var(--hairline-strong); background: transparent; min-height: 320px; }
.project-card--soon .inner { color: var(--ink-55); }
.project-card--soon .num { font-family: var(--font-display); font-size: 30px; color: var(--ink-35); margin-bottom: 14px; }

/* ==========================================================================
   Values / approach grids (About)
   ========================================================================== */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); margin-top: 56px; }
.value { background: var(--cream); padding: 48px 32px; text-align: center; transition: background var(--dur-base); }
.value:hover { background: var(--white); }
.value .idx { font-family: var(--font-display); font-size: 14px; color: var(--gold); letter-spacing: 2px; margin-bottom: 22px; }
.value h3 { font-size: 26px; font-weight: var(--fw-medium); margin-bottom: 14px; }
.value p { font-size: 13.5px; color: var(--ink-55); line-height: 1.7; }

.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); margin-top: 56px; }
.offer { background: var(--cream); padding: 40px 36px; transition: background var(--dur-base); }
.offer:hover { background: var(--white); }
.offer .idx { font-family: var(--font-display); font-size: 22px; color: var(--gold-deep); margin-bottom: 18px; }
.offer h3 { font-size: 21px; font-weight: var(--fw-medium); margin-bottom: 10px; }
.offer p { font-size: 13.5px; color: var(--ink-55); line-height: 1.7; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; }
.contact-info .info-item { display: flex; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--hairline); }
.contact-info .info-item:first-child { padding-top: 0; }
.contact-info .info-item__icon { color: var(--gold-deep); flex-shrink: 0; margin-top: 4px; }
.contact-info .info-item__icon svg { width: 22px; height: 22px; }
.contact-info .lbl { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-55); margin-bottom: 8px; }
.contact-info .val { font-size: 17px; color: var(--ink); line-height: 1.5; }
.contact-info .val a:hover { color: var(--gold-deep); }

.form { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 24px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--ink-55); font-weight: var(--fw-medium); }
.field input, .field select, .field textarea {
  font-family: var(--font-text); font-size: 15px; color: var(--ink);
  background: var(--white); border: 1px solid var(--border-input); border-radius: 0;
  padding: 15px 16px; transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-35); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236f6a62' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form__submit { grid-column: 1 / -1; margin-top: 6px; }

.map-band { height: 460px; position: relative; background: var(--cream-deep); overflow: hidden; }
.map-band img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); }
.map-band__pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%); }
.map-band__card { position: absolute; top: 40px; left: 40px; background: var(--white); padding: 32px 36px; max-width: 320px; box-shadow: var(--shadow-card); }
.map-band__card .lbl { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 12px; }
.map-band__card h3 { font-size: 24px; font-weight: var(--fw-medium); margin-bottom: 10px; }
.map-band__card p { font-size: 14px; color: var(--ink-55); line-height: 1.6; }

/* ==========================================================================
   Global paragraph override
   ========================================================================== */
p { font-size: 16px !important; font-weight: 400 !important; color: var(--ink-80) !important; }
.cta-band p, .footer p, .values-grid p, .hero-cine__sub, .mega p, .band p { color: #fff !important; }

.wa-float { position: fixed; right: 24px; bottom: 24px; z-index: 150; width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px -8px rgba(0,0,0,0.4); transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out); }
.wa-float.is-clear { opacity: 0; pointer-events: none; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg, .wa-float img { width: 30px; height: 30px; }
@media (max-width: 600px) { .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; } .wa-float svg { width: 26px; height: 26px; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-reveal { position: relative; }
.footer-reveal #footer-root { position: sticky; bottom: 0; z-index: 1; }
@media (max-width: 700px) {
  .footer-reveal #footer-root { position: static; }
  .cta-band { height: auto; min-height: 0; padding: 90px 0; }
}
.footer { background: #161514; color: var(--on-dark-muted); padding: 56px 0 32px; overflow: hidden; position: relative; z-index: 1; }
.footer__wordmark { font-family: var(--font-display); font-weight: var(--fw-light); color: #fff;
  font-size: clamp(40px, 12vw, 200px); line-height: 0.9; letter-spacing: -2px; white-space: nowrap;
  padding-bottom: 56px; border-bottom: 1px solid var(--hairline-dark); margin-bottom: 64px; }
.footer__wordmark .dot { color: var(--gold); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--hairline-dark); }
.footer__brand .mark { font-family: var(--font-display); font-size: 30px; color: #fff; font-weight: var(--fw-semibold); letter-spacing: 0.5px; }
.footer__brand .sub { font-size: 9.5px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold-soft); margin-top: 6px; font-weight: var(--fw-medium); }
.footer__brand p { margin-top: 24px; font-size: 14px !important; line-height: 1.8; max-width: 42ch; color: var(--on-dark-muted) !important; }
.footer__col h4 { font-family: var(--font-text); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-soft); font-weight: var(--fw-semibold); margin-bottom: 24px; }
.footer__col a, .footer__col p { display: block; font-size: 14px !important; color: var(--on-dark-muted) !important; padding: 4px 0; transition: color var(--dur-fast); }
.footer__col a:hover { color: #fff !important; }
.footer__acc-toggle {
  display: block; background: none; border: 0; padding: 0; margin: 0 0 14px; text-align: left;
  width: auto; cursor: default; font-family: var(--font-text); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold-soft); font-weight: var(--fw-semibold);
}
.footer__acc-toggle .caret { display: none; }
.footer__brand .footer__acc-toggle { margin-bottom: 0; }
.footer__brand .footer__acc-toggle .mark { font-family: var(--font-display); font-size: 30px; color: #fff; font-weight: var(--fw-semibold); letter-spacing: 0.5px; display: block; }
.footer__brand .footer__acc-toggle .sub { font-size: 9.5px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold-soft); margin-top: 6px; font-weight: var(--fw-medium); display: block; }
.footer__acc-panel { display: block; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; flex-wrap: wrap; gap: 16px; }
.footer__bottom p { font-size: 14px !important; color: var(--on-dark-muted) !important; letter-spacing: 0.3px; }
.footer__social { display: flex; gap: 14px; }
.footer__social a { width: 38px; height: 38px; border: 1px solid var(--hairline-dark); display: flex; align-items: center; justify-content: center; color: var(--on-dark-muted); transition: border-color var(--dur-fast), color var(--dur-fast); }
.footer__social a:hover { border-color: var(--gold); color: var(--gold-soft); }
.footer__social svg, .footer__social img { width: 16px; height: 16px; }

/* Footer scroll-in animation */
.footer__wordmark .fl { display: inline-block; opacity: 0; transform: translateY(0.32em) rotate(2deg);
  transition: opacity 0.55s var(--ease-out), transform 0.7s var(--ease-out); will-change: opacity, transform; }
.footer.is-in .footer__wordmark .fl { opacity: 1; transform: none; }
.footer-rise { opacity: 0; transform: translateY(38px); will-change: opacity, transform;
  transition: opacity 0.9s var(--ease-out), transform 1s var(--ease-out); }
.footer.is-in .footer-rise { opacity: 1; transform: none; }
.footer.is-in .footer-rise:nth-child(1) { transition-delay: 0.42s; }
.footer.is-in .footer-rise:nth-child(2) { transition-delay: 0.52s; }
.footer.is-in .footer-rise:nth-child(3) { transition-delay: 0.62s; }
.footer.is-in .footer-rise:nth-child(4) { transition-delay: 0.72s; }
.footer.is-in .footer__bottom.footer-rise { transition-delay: 0.8s; }
@media (prefers-reduced-motion: reduce) {
  .footer__wordmark .fl, .footer-rise { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Scroll reveal + premium motion
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(40px); will-change: opacity, transform;
  transition: opacity 1.05s var(--ease-out), transform 1.15s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 110ms; }
.reveal[data-delay="2"] { transition-delay: 220ms; }
.reveal[data-delay="3"] { transition-delay: 330ms; }
.reveal[data-delay="4"] { transition-delay: 440ms; }

/* Staggered children — parent gets .stagger, children animate in sequence */
.stagger > * { opacity: 0; transform: translateY(34px); will-change: opacity, transform;
  transition: opacity 0.95s var(--ease-out), transform 1.05s var(--ease-out); }
.stagger.is-in > * { opacity: 1; transform: none; }
.stagger.is-in > *:nth-child(1) { transition-delay: 60ms; }
.stagger.is-in > *:nth-child(2) { transition-delay: 150ms; }
.stagger.is-in > *:nth-child(3) { transition-delay: 240ms; }
.stagger.is-in > *:nth-child(4) { transition-delay: 330ms; }
.stagger.is-in > *:nth-child(5) { transition-delay: 420ms; }
.stagger.is-in > *:nth-child(6) { transition-delay: 510ms; }

/* Image zoom-in on reveal */
.zoom-wrap { overflow: hidden; }
.zoom-wrap img { transform: scale(1.08); transition: transform 1.6s var(--ease-out); will-change: transform; }
.zoom-wrap.is-in img, .reveal.is-in .zoom-wrap img { transform: scale(1); }

/* Slim gold scroll-progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0%; z-index: 200;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold)); transition: width 80ms linear; pointer-events: none; }

/* Gentle parallax */
[data-parallax] { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > * { opacity: 1; transform: none; transition: none; }
  .zoom-wrap img { transform: none; }
  .scroll-progress { display: none; }
  html { scroll-behavior: auto; }
  [data-parallax] { transform: none !important; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  :root { --page-pad: 32px; --space-section: 88px; }
  .card-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .h-hero { font-size: 68px; }
  .h-xl { font-size: 48px; }
}
@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split--reverse .split__media { order: 0; }
  .split__media img { aspect-ratio: 16/11; }
  .split__media .tag--br { right: 16px; }
  .timeline { grid-template-columns: 1fr; gap: 44px; }
  .timeline::before { display: none; }
  .step { padding: 0; }
  .showcase__gallery { grid-template-columns: 1fr; }
  .showcase__col { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
  .showcase__body { grid-template-columns: 1fr; gap: 44px; }
  .project-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  :root { --page-pad: 22px; --space-section: 68px; --nav-height: 70px; }
  .h-hero { font-size: 48px; }
  .h-xl { font-size: 38px; }
  .h-lg { font-size: 36px; }
  .h-md { font-size: 36px; }
  .card-grid, .services-grid, .values-grid, .offer-grid, .amenity-grid, .form { grid-template-columns: 1fr; }
  .stat-row { gap: 28px; flex-wrap: wrap; }
  .hero__cta .btn { flex: 1; }
  .testi__quote { font-size: 23px; }
}
@media (max-width: 600px) {
  .footer__wordmark { font-size: 11vw; letter-spacing: -1px; padding-bottom: 40px; margin-bottom: 40px; }
  .footer { padding: 64px 0 32px; }
  .footer__top { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .footer__acc-toggle {
    display: flex; align-items: center; justify-content: space-between; width: 100%; cursor: pointer;
    padding: 18px 0; border-bottom: 1px solid var(--hairline-dark); margin-bottom: 0;
  }
  .footer__brand .footer__acc-toggle { align-items: flex-start; }
  .footer__brand .footer__acc-toggle .mark { font-family: var(--font-display); font-size: 30px; color: #fff; font-weight: var(--fw-semibold); letter-spacing: 0.5px; display: block; }
  .footer__brand .footer__acc-toggle .sub { font-size: 9.5px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold-soft); margin-top: 6px; font-weight: var(--fw-medium); display: block; }
  .footer__acc-toggle .caret { display: flex; width: 18px; height: 18px; color: var(--on-dark-muted); transition: transform var(--dur-base) var(--ease-standard); flex: none; margin-top: 4px; }
  .footer__acc.is-expanded .footer__acc-toggle .caret { transform: rotate(180deg); }
  .footer__acc-panel { max-height: 0; overflow: hidden; transition: max-height var(--dur-base) var(--ease-out); }
  .footer__acc.is-expanded .footer__acc-panel { max-height: 400px; padding: 16px 0 8px; }
}
