/* ==========================================================================
   ARCHANA PROJECTS — Luxury Real Estate
   Design system: editorial, minimal, dark + gold
   ========================================================================== */

:root {
  --ink: #0B0F19;
  --ink-2: #111827;
  --gold: #C8A96A;
  --gold-soft: rgba(200, 169, 106, 0.14);
  --white: #FFFFFF;
  --gray: #F8F8F8;
  --text: #1B1B1B;
  --text-soft: #5A5F6A;
  --text-inverse: rgba(255, 255, 255, 0.82);
  --line: rgba(11, 15, 25, 0.1);
  --line-light: rgba(255, 255, 255, 0.14);

  --font-display: "Archivo", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-logo: "Marcellus", Georgia, serif;

  --container: 1440px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-pad: clamp(60px, 9vw, 120px);

  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.7s;
}

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

html { scroll-behavior: smooth; }
html.lenis { height: auto; scroll-behavior: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
address { font-style: normal; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 300;
  background: var(--ink); color: var(--white);
  padding: 10px 18px; font-size: 13px; letter-spacing: 0.04em;
  transition: top 0.3s var(--ease-lux);
}
.skip-link:focus { top: 16px; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

::selection { background: var(--gold); color: var(--ink); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 960px; }

.section { padding-block: var(--section-pad); }
.section--gray { background: var(--gray); }
.section--dark { background: var(--ink-2); color: var(--text-inverse); }
.section--black { background: var(--ink); color: var(--text-inverse); }

/* ---------- Type ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; color: inherit; letter-spacing: -0.005em; }
h1 em, h2 em, h3 em { font-weight: 500; }

.section-head { margin-bottom: clamp(48px, 6vw, 88px); position: relative; }
.section-head__index {
  font-family: var(--font-display);
  font-size: clamp(80px, 11vw, 160px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(11, 15, 25, 0.09);
  position: absolute;
  top: -0.28em; right: 0;
  user-select: none;
  pointer-events: none;
}
.section-head--light .section-head__index { -webkit-text-stroke-color: rgba(255, 255, 255, 0.1); }
.section-head__eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 16px;
}
.section-head__eyebrow::before {
  content: ""; width: 44px; height: 1px; background: var(--gold);
}
.section-head__title {
  font-size: clamp(34px, 4.6vw, 64px);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.section-head--light .section-head__title { color: var(--white); }
.section-head__title em { font-style: italic; color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--white);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 18px 40px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-bg);
  overflow: hidden;
  isolation: isolate;
  transition: color 0.45s var(--ease-lux), border-color 0.45s var(--ease-lux);
  will-change: transform;
}
.btn::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: var(--white);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s var(--ease-lux);
}
.btn:hover::before, .btn:focus-visible::before { transform: scaleY(1); transform-origin: top; }

.btn--gold { --btn-bg: var(--gold); --btn-fg: var(--ink); }
.btn--gold::before { background: var(--ink); }
.btn--gold:hover, .btn--gold:focus-visible { color: var(--gold); }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--ghost::before { background: var(--white); }
.btn--ghost:hover, .btn--ghost:focus-visible { color: var(--ink); border-color: var(--white); }

.contact .btn--ghost { --btn-fg: var(--ink); border-color: rgba(11, 15, 25, 0.3); }
.contact .btn--ghost::before { background: var(--ink); }
.contact .btn--ghost:hover, .contact .btn--ghost:focus-visible { color: var(--white); border-color: var(--ink); }

.btn--ghost-light {
  --btn-bg: transparent; --btn-fg: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost-light::before { background: var(--gold); }
.btn--ghost-light:hover, .btn--ghost-light:focus-visible { color: var(--ink); border-color: var(--gold); }

.btn--whatsapp { --btn-bg: transparent; --btn-fg: #1da851; border-color: rgba(29, 168, 81, 0.4); }
.btn--whatsapp::before { background: #1da851; }
.btn--whatsapp:hover, .btn--whatsapp:focus-visible { color: var(--white); border-color: #1da851; }

.btn--sm { padding: 13px 26px; font-size: 11.5px; }

/* ---------- Glass ---------- */
.glass {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 24px 64px rgba(11, 15, 25, 0.1);
}
.glass-dark {
  background: rgba(11, 15, 25, 0.62);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 500;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s var(--ease-lux), visibility 0.7s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.preloader__mark {
  font-family: var(--font-display);
  font-size: 64px; color: var(--gold); line-height: 1;
  animation: preloaderPulse 1.6s var(--ease-lux) infinite alternate;
}
.preloader__word {
  font-size: 11px; letter-spacing: 0.5em; text-indent: 0.5em;
  color: rgba(255, 255, 255, 0.55);
}
.preloader__bar { width: 160px; height: 1px; background: rgba(255, 255, 255, 0.14); overflow: hidden; }
.preloader__bar-fill {
  display: block; height: 100%; width: 100%;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  animation: preloaderFill 1.4s var(--ease-lux) forwards;
}
@keyframes preloaderFill { to { transform: scaleX(1); } }
@keyframes preloaderPulse { from { opacity: 0.55; } to { opacity: 1; } }

/* ---------- Cursor ---------- */
.cursor, .cursor-dot { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block;
    position: fixed; top: 0; left: 0; z-index: 400;
    width: 36px; height: 36px;
    border: 1px solid rgba(200, 169, 106, 0.75);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.35s var(--ease-lux), height 0.35s var(--ease-lux),
                background 0.35s var(--ease-lux), opacity 0.3s;
  }
  .cursor-dot {
    display: block;
    position: fixed; top: 0; left: 0; z-index: 401;
    width: 4px; height: 4px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
  }
  .cursor.is-hover { width: 64px; height: 64px; background: rgba(200, 169, 106, 0.1); }
}

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background 0.5s var(--ease-lux), box-shadow 0.5s var(--ease-lux),
              backdrop-filter 0.5s, transform 0.5s var(--ease-lux);
}
.header__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 22px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  transition: padding 0.5s var(--ease-lux);
}
.header.is-solid {
  background: rgba(11, 15, 25, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 40px rgba(11, 15, 25, 0.35);
}
.header.is-solid .header__inner { padding-block: 14px; }

.logo { display: flex; align-items: center; gap: 12px; color: var(--white); }
.logo__mark { color: var(--white); display: grid; place-items: center; }
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__name {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 600; letter-spacing: 0.14em;
}
.logo__sub { font-size: 8.5px; letter-spacing: 0.34em; color: var(--gold); font-weight: 600; }

.nav__list { display: flex; gap: clamp(18px, 2.4vw, 38px); }
.nav__link {
  position: relative;
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.78);
  padding: 6px 0;
  transition: color 0.3s;
}
.nav__link::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-lux);
}
.nav__link:hover, .nav__link.is-active { color: var(--white); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }

.header__right { display: flex; align-items: center; gap: 18px; }

.burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 7px;
  width: 44px; height: 44px; padding: 10px;
}
.burger span {
  display: block; height: 1.5px; width: 100%;
  background: var(--white);
  transition: transform 0.4s var(--ease-lux), opacity 0.3s;
}
.burger.is-open span:first-child { transform: translateY(4.25px) rotate(45deg); }
.burger.is-open span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 190;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px var(--gutter) 60px;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.65s var(--ease-lux);
  visibility: hidden;
}
.mobile-menu.is-open { clip-path: inset(0); visibility: visible; }
.mobile-menu__list li {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.mobile-menu__list a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(30px, 8vw, 44px);
  color: var(--white);
  padding: 14px 0;
  transform: translateY(110%);
  transition: transform 0.7s var(--ease-lux), color 0.3s;
  transition-delay: calc(var(--i) * 0.05s);
}
.mobile-menu.is-open .mobile-menu__list a { transform: translateY(0); }
.mobile-menu__list a:hover { color: var(--gold); }
.mobile-menu__foot {
  margin-top: 40px;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 14px; color: rgba(255, 255, 255, 0.55);
}
.mobile-menu__foot a:hover { color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero__media { position: absolute; inset: -12% 0; z-index: 0; }
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 14s var(--ease-lux) forwards;
}
@keyframes heroZoom { from { transform: scale(1.14); } to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(11, 15, 25, 0.55) 0%, rgba(11, 15, 25, 0.25) 45%, rgba(11, 15, 25, 0.78) 100%),
    linear-gradient(90deg, rgba(11, 15, 25, 0.55) 0%, rgba(11, 15, 25, 0.05) 65%);
}
.hero__content { position: relative; z-index: 2; padding-top: 80px; }

.hero__eyebrow {
  display: flex; align-items: center; gap: 18px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 34px;
}
.hero__eyebrow .rule { width: 56px; height: 1px; background: var(--gold); display: inline-block; }

.hero__title {
  font-size: clamp(46px, 8.4vw, 118px);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin-bottom: 30px;
}
.hero__title-line { display: block; overflow: hidden; }
.hero__title-line > span {
  display: block;
  transform: translateY(112%);
  animation: lineUp 1.2s var(--ease-lux) forwards;
}
.hero__title-line:nth-child(2) > span { animation-delay: 0.14s; }
.hero__title-line em { font-style: italic; color: var(--gold); }
@keyframes lineUp { to { transform: translateY(0); } }

.hero__sub {
  max-width: 560px;
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-lux) 0.55s forwards;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-lux) 0.75s forwards;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }

.reveal-line { opacity: 0; animation: fadeUp 1s var(--ease-lux) 0.1s forwards; }

.hero__scroll {
  position: absolute; bottom: 0; right: clamp(20px, 5vw, 72px); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.hero__scroll-text {
  font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px; height: 72px;
  background: rgba(255, 255, 255, 0.25);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 100%; height: 40%;
  background: var(--gold);
  animation: scrollDrop 2s var(--ease-lux) infinite;
}
@keyframes scrollDrop {
  0% { transform: translateY(-110%); }
  60%, 100% { transform: translateY(260%); }
}

/* ---------- Stats ---------- */
.stats {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-block: clamp(44px, 5vw, 72px);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 4vw, 56px);
}
.stat {
  text-align: center;
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute; left: calc(-1 * clamp(12px, 2vw, 28px)); top: 12%;
  height: 76%; width: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.6vw, 64px);
  color: var(--white);
  line-height: 1.05;
  display: block;
}
.stat__num sup { color: var(--gold); font-size: 0.5em; top: -0.7em; }
.stat__label {
  display: block; margin-top: 10px;
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Reveal (scroll) ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(42px) scale(0.995);
  filter: blur(7px);
  transition: opacity 0.95s var(--ease-lux), transform 0.95s var(--ease-lux), filter 0.95s var(--ease-lux);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].is-in { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

/* ---------- Image frame ---------- */
.img-frame {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ink-2);
}
.img-frame--tall { aspect-ratio: 3 / 4; }
.img-frame img {
  width: 100%; height: 112%;
  object-fit: cover;
  will-change: transform;
  transition: transform 1.1s var(--ease-lux);
}

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.about__media { position: relative; }
.about__badge {
  position: absolute; left: clamp(-28px, -2vw, -20px); bottom: 44px;
  padding: 22px 30px;
  display: flex; flex-direction: column; gap: 2px;
}
.about__badge-num {
  font-family: var(--font-display);
  font-size: 26px; color: var(--ink);
}
.about__badge-text {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-soft);
}
.about__lead {
  font-family: var(--font-display);
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 26px;
}
.about__text { color: var(--text-soft); max-width: 56ch; margin-bottom: 44px; }

.about__vm {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 44px);
  padding-block: 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 44px;
}
.about__vm-item h3 {
  font-size: 19px;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 12px;
}
.about__vm-item h3::before {
  content: ""; width: 22px; height: 1px; background: var(--gold);
}
.about__vm-item p { font-size: 14.5px; color: var(--text-soft); }

.about__quote { padding: clamp(28px, 3vw, 44px); position: relative; }
.about__quote-mark { color: var(--gold); margin-bottom: 18px; opacity: 0.8; }
.about__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 22px;
}
.about__quote footer { display: flex; flex-direction: column; }
.about__quote cite { font-style: normal; font-weight: 600; font-size: 14.5px; color: var(--ink); }
.about__quote footer span {
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-top: 3px;
}

/* ---------- Why ---------- */
.why__list { display: flex; flex-direction: column; }
.why__row {
  display: grid;
  grid-template-columns: minmax(70px, 1fr) minmax(0, 4fr) minmax(0, 6fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: center;
  padding-block: clamp(32px, 4vw, 56px);
  border-top: 1px solid var(--line);
  transition: background 0.5s var(--ease-lux);
}
.why__row:last-child { border-bottom: 1px solid var(--line); }
.why__num {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 52px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(11, 15, 25, 0.28);
  line-height: 1;
  transition: color 0.5s var(--ease-lux), -webkit-text-stroke-color 0.5s;
}
.why__row:hover .why__num { color: var(--gold); -webkit-text-stroke-color: var(--gold); }
.why__media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.why__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.35);
  transform: scale(1.02);
  transition: transform 1s var(--ease-lux), filter 0.7s var(--ease-lux);
}
.why__row:hover .why__media img { transform: scale(1.09); filter: grayscale(0); }
.why__body h3 {
  font-size: clamp(22px, 2.2vw, 32px);
  color: var(--ink);
  margin-bottom: 12px;
}
.why__body p { color: var(--text-soft); max-width: 52ch; font-size: 15px; }

/* ---------- Filters ---------- */
.filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: clamp(36px, 4vw, 56px);
}
.filter {
  padding: 11px 22px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: color 0.35s, border-color 0.35s, background 0.35s;
}
.filter:hover { border-color: var(--gold); color: var(--ink); }
.filter.is-active { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* ---------- Projects ---------- */
.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 36px);
}
.project {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ink-2);
  cursor: pointer;
  transition: opacity 0.5s var(--ease-lux), transform 0.5s var(--ease-lux);
}
.project.is-hidden { display: none; }
.project__media { position: absolute; inset: 0; }
.project__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-lux);
}
.project:hover .project__media img,
.project:focus-within .project__media img,
.project.is-open .project__media img { transform: scale(1.08); }

.project__status {
  position: absolute; top: 20px; left: 20px; z-index: 3;
  padding: 7px 16px;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white);
  background: rgba(11, 15, 25, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.project__status--completed { color: #9be3af; }
.project__status--ongoing { color: var(--gold); }
.project__status--upcoming { color: #9ec5ff; }

.project__overlay {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: clamp(22px, 2.4vw, 34px);
  display: flex; flex-direction: column; gap: 18px;
  transform: translateY(calc(100% - 108px));
  transition: transform 0.65s var(--ease-lux), background 0.5s;
}
.project:hover .project__overlay,
.project:focus-within .project__overlay,
.project.is-open .project__overlay { transform: translateY(0); }

.project__name {
  font-size: clamp(21px, 1.8vw, 26px);
  color: var(--white);
}
.project__loc {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
  margin-top: 5px;
}
.project__specs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  opacity: 0;
  transition: opacity 0.5s var(--ease-lux) 0.15s;
}
.project:hover .project__specs,
.project:focus-within .project__specs,
.project.is-open .project__specs { opacity: 1; }
.project__specs dt {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 3px;
}
.project__specs dd { font-size: 13.5px; color: rgba(255, 255, 255, 0.92); }
.project__price { color: var(--gold) !important; font-family: var(--font-display); font-size: 17px !important; }

.project__cta {
  align-self: flex-start;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 5px;
  opacity: 0;
  transition: opacity 0.5s var(--ease-lux) 0.22s, color 0.3s;
}
.project:hover .project__cta,
.project:focus-within .project__cta,
.project.is-open .project__cta { opacity: 1; }
.project__cta:hover { color: var(--gold); }
.project__cta span { display: inline-block; transition: transform 0.35s var(--ease-lux); }
.project__cta:hover span { transform: translateX(6px); }

/* ---------- Featured ---------- */
.featured__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.featured__media { position: relative; }
.featured__price {
  position: absolute; right: clamp(-16px, -1vw, -12px); bottom: 40px;
  padding: 20px 30px;
  display: flex; flex-direction: column;
}
.featured__price span {
  font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.featured__price strong {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 500;
  color: var(--gold);
}
.featured__price sup { font-size: 0.45em; }

.featured__lead {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 36px;
}
.featured__amenities {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px 28px;
  margin-bottom: 44px;
}
.featured__amenities li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px; color: var(--text-inverse);
}
.featured__amenities li::before {
  content: "";
  width: 7px; height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.featured__progress { margin-bottom: 40px; }
.featured__progress-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 12px;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.featured__progress-val {
  font-family: var(--font-display);
  font-size: 26px; color: var(--gold);
  letter-spacing: 0;
}
.progress-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.progress-bar__fill {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--gold), #e6cf9b);
  width: 0;
  transition: width 1.6s var(--ease-lux) 0.2s;
}
.featured__progress-note { margin-top: 12px; font-size: 13px; color: rgba(255, 255, 255, 0.45); }

.featured__facts {
  display: flex; flex-direction: column; gap: 14px;
  padding-block: 28px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  margin-bottom: 40px;
}
.featured__facts > div { display: grid; grid-template-columns: 130px 1fr; gap: 16px; }
.featured__facts dt {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  padding-top: 2px;
}
.featured__facts dd { font-size: 14.5px; color: var(--text-inverse); }

.featured__actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* ---------- Invest ---------- */
.invest__grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: stretch;
}
.invest__chart-wrap {
  border: 1px solid var(--line-light);
  padding: clamp(24px, 3vw, 44px);
  display: flex; flex-direction: column;
}
.invest__chart-title {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 36px;
}
.invest__chart {
  flex: 1;
  min-height: 300px;
  display: flex; align-items: flex-end; gap: clamp(8px, 1.4vw, 20px);
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 0;
}
.invest__bar {
  flex: 1;
  height: var(--h);
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 1.1s var(--ease-lux);
}
.invest__chart.is-in .invest__bar { transform: scaleY(1); }
.invest__chart.is-in .invest__bar:nth-child(2) { transition-delay: 0.08s; }
.invest__chart.is-in .invest__bar:nth-child(3) { transition-delay: 0.16s; }
.invest__chart.is-in .invest__bar:nth-child(4) { transition-delay: 0.24s; }
.invest__chart.is-in .invest__bar:nth-child(5) { transition-delay: 0.32s; }
.invest__chart.is-in .invest__bar:nth-child(6) { transition-delay: 0.4s; }
.invest__chart.is-in .invest__bar:nth-child(7) { transition-delay: 0.48s; }
.invest__chart.is-in .invest__bar:nth-child(8) { transition-delay: 0.56s; }
.invest__bar--gold { background: linear-gradient(180deg, #e6cf9b, var(--gold)); }
.invest__bar::before {
  content: attr(data-val);
  position: absolute; top: -26px; left: 50%;
  transform: translateX(-50%);
  font-size: 10.5px; color: var(--gold);
  white-space: nowrap;
  opacity: 0; transition: opacity 0.4s 0.9s;
}
.invest__chart.is-in .invest__bar--gold::before,
.invest__bar:hover::before { opacity: 1; }
.invest__bar::after {
  content: attr(data-year);
  position: absolute; bottom: -28px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px; color: rgba(255, 255, 255, 0.45);
}
.invest__chart-src {
  margin-top: 44px;
  font-size: 11.5px; color: rgba(255, 255, 255, 0.35);
}

.invest__cards { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 24px); }
.invest__card {
  border: 1px solid var(--line-light);
  padding: clamp(22px, 2.4vw, 34px);
  display: flex; flex-direction: column;
  transition: border-color 0.45s var(--ease-lux), background 0.45s var(--ease-lux), transform 0.45s var(--ease-lux);
}
.invest__card:hover {
  border-color: rgba(200, 169, 106, 0.5);
  background: rgba(200, 169, 106, 0.05);
  transform: translateY(-6px);
}
.invest__card-num {
  font-family: var(--font-display);
  font-size: clamp(30px, 2.6vw, 40px);
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 14px;
}
.invest__card h3 { font-size: 16px; color: var(--white); margin-bottom: 8px; font-family: var(--font-body); font-weight: 600; }
.invest__card p { font-size: 13.5px; color: rgba(255, 255, 255, 0.55); }

/* ---------- Services / Bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: clamp(16px, 2vw, 24px);
}
.bento__item {
  position: relative;
  overflow: hidden;
  background: var(--gray);
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease-lux), box-shadow 0.5s var(--ease-lux), border-color 0.5s;
}
.bento__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(11, 15, 25, 0.12);
  border-color: rgba(200, 169, 106, 0.5);
}
.bento__item--tall { grid-row: span 2; }
.bento__item--wide { grid-column: span 2; }
.bento__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease-lux);
}
.bento__item:hover .bento__bg { transform: scale(1.06); }
.bento__item--tall .bento__content,
.bento__item--wide .bento__content {
  background: linear-gradient(180deg, rgba(11, 15, 25, 0) 0%, rgba(11, 15, 25, 0.88) 62%);
  color: var(--white);
}
.bento__item.bento__item--tall h3, .bento__item.bento__item--wide h3 { color: var(--white); }
.bento__item.bento__item--tall p, .bento__item.bento__item--wide p { color: rgba(255, 255, 255, 0.75); }
.bento__content {
  position: absolute; inset: 0;
  padding: clamp(24px, 2.6vw, 38px);
  display: flex; flex-direction: column; justify-content: flex-end; gap: 10px;
}
.bento__icon {
  color: var(--gold);
  margin-bottom: auto;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border: 1px solid rgba(200, 169, 106, 0.4);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  transition: transform 0.5s var(--ease-lux), background 0.5s;
}
.bento__item:hover .bento__icon { transform: rotate(-8deg) scale(1.06); background: var(--gold-soft); }
.bento__item h3 { font-size: clamp(19px, 1.7vw, 24px); color: var(--ink); }
.bento__item p { font-size: 13.5px; color: var(--text-soft); max-width: 46ch; }

/* ---------- Gallery ---------- */
.masonry { columns: 3; column-gap: clamp(16px, 2vw, 24px); }
.masonry__item {
  position: relative;
  break-inside: avoid;
  margin-bottom: clamp(16px, 2vw, 24px);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--ink-2);
}
.masonry__item.is-hidden { display: none; }
.masonry__item img {
  width: 100%;
  transition: transform 1s var(--ease-lux), filter 0.6s;
}
.masonry__item:hover img { transform: scale(1.06); }
.masonry__item figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 40px 20px 16px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(11, 15, 25, 0.85));
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.5s var(--ease-lux), transform 0.5s var(--ease-lux);
}
.masonry__item:hover figcaption { opacity: 1; transform: translateY(0); }

.lightbox {
  position: fixed; inset: 0; z-index: 320;
  background: rgba(11, 15, 25, 0.94);
  backdrop-filter: blur(10px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: clamp(20px, 5vw, 64px);
  opacity: 0;
  transition: opacity 0.4s var(--ease-lux);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox__img { max-height: 78vh; max-width: 100%; object-fit: contain; box-shadow: 0 40px 120px rgba(0,0,0,0.6); }
.lightbox__caption {
  margin-top: 20px;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
}
.lightbox__close {
  position: absolute; top: 24px; right: 32px;
  font-size: 40px; font-weight: 200; line-height: 1;
  color: var(--white);
  width: 56px; height: 56px;
  transition: color 0.3s, transform 0.4s var(--ease-lux);
}
.lightbox__close:hover { color: var(--gold); transform: rotate(90deg); }

/* ---------- Timeline ---------- */
.timeline { overflow: hidden; }
.timeline__scroller {
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.timeline__scroller::-webkit-scrollbar { display: none; }
.timeline__scroller.is-dragging { cursor: grabbing; }
.timeline__track {
  display: flex;
  gap: clamp(24px, 3vw, 48px);
  padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  padding-block: 10px;
  width: max-content;
}
.timeline__item {
  width: clamp(280px, 30vw, 420px);
  flex-shrink: 0;
  border-top: 1px solid var(--line-light);
  padding-top: 32px;
  position: relative;
}
.timeline__item::before {
  content: "";
  position: absolute; top: -5px; left: 0;
  width: 9px; height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
}
.timeline__year {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 88px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  display: block;
  margin-bottom: 20px;
  transition: color 0.6s var(--ease-lux), -webkit-text-stroke-color 0.6s;
}
.timeline__item:hover .timeline__year { color: var(--gold); -webkit-text-stroke-color: var(--gold); }
.timeline__item h3 { font-size: 21px; color: var(--white); margin-bottom: 10px; }
.timeline__item p { font-size: 14px; color: rgba(255, 255, 255, 0.55); }
.timeline__hint {
  margin-top: 44px;
  display: flex; align-items: center; gap: 14px;
  font-size: 11.5px; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.timeline__hint-arrow { animation: hintSlide 2s var(--ease-lux) infinite; color: var(--gold); letter-spacing: 0; }
@keyframes hintSlide { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(12px); } }

/* ---------- Testimonials ---------- */
.testi__rating {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.testi__stars { color: var(--gold); font-size: 22px; letter-spacing: 6px; }
.testi__rating-text { font-size: 14px; color: var(--text-soft); }
.testi__rating-text strong { color: var(--ink); }

.testi__carousel { overflow: hidden; }
.testi__track {
  display: flex;
  transition: transform 0.85s var(--ease-lux);
}
.testi__slide {
  flex: 0 0 100%;
  min-width: 100%;
}
.testi__slide p {
  max-width: 900px;
  font-family: var(--font-display);
  font-size: clamp(21px, 2.4vw, 32px);
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 36px;
}
.testi__slide footer { display: flex; align-items: center; gap: 18px; }
.testi__slide footer img {
  width: 58px; height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testi__slide cite { display: block; font-style: normal; font-weight: 600; font-size: 15px; color: var(--ink); }
.testi__slide footer span {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-soft);
}

.testi__controls {
  margin-top: clamp(36px, 4vw, 56px);
  display: flex; align-items: center; gap: 26px;
}
.testi__btn {
  width: 54px; height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink);
  transition: background 0.4s var(--ease-lux), color 0.4s, border-color 0.4s, transform 0.4s var(--ease-lux);
}
.testi__btn:hover { background: var(--ink); color: var(--gold); border-color: var(--ink); transform: scale(1.06); }
.testi__dots { display: flex; gap: 10px; }
.testi__dot {
  width: 26px; height: 3px;
  background: var(--line);
  transition: background 0.4s, width 0.4s var(--ease-lux);
}
.testi__dot.is-active { background: var(--gold); width: 44px; }

/* ---------- FAQ ---------- */
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 4px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.7vw, 22px);
  color: var(--ink);
  transition: color 0.35s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold); }
.faq__icon {
  position: relative;
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.4s var(--ease-lux), border-color 0.4s, transform 0.5s var(--ease-lux);
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 12px; height: 1.4px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease-lux);
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon { background: var(--gold); border-color: var(--gold); transform: rotate(180deg); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__item[open] .faq__icon::before, .faq__item[open] .faq__icon::after { background: var(--ink); }
.faq__body {
  overflow: hidden;
}
.faq__body p {
  padding: 0 4px 28px;
  color: var(--text-soft);
  max-width: 68ch;
  font-size: 15px;
}

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.contact__map {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray);
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.6s var(--ease-lux);
}
.contact__map:hover { filter: grayscale(0); }
.contact__map iframe { width: 100%; height: 100%; border: 0; display: block; }

.contact__office { position: relative; margin-top: clamp(20px, 2.4vw, 32px); }
.contact__office > img { aspect-ratio: 16 / 9; width: 100%; object-fit: cover; }
.contact__office-info {
  position: absolute; left: 20px; bottom: 20px; right: 20px;
  padding: 22px 26px;
  color: var(--white);
}
.contact__office-info h3 { font-size: 17px; margin-bottom: 8px; color: var(--gold); }
.contact__office-info address, .contact__office-info p { font-size: 13.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.8); }
.contact__office-info p { margin-top: 10px; }
.contact__office-info a:hover { color: var(--gold); }

.form { display: flex; flex-direction: column; gap: 26px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.form__field { display: flex; flex-direction: column; gap: 9px; }
.form__field label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-soft);
}
.form__field input,
.form__field select,
.form__field textarea {
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(11, 15, 25, 0.22);
  padding: 10px 2px;
  border-radius: 0;
  transition: border-color 0.35s;
  -webkit-appearance: none;
  appearance: none;
}
.form__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8A96A' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  cursor: pointer;
}
.form__field input::placeholder, .form__field textarea::placeholder { color: rgba(27, 27, 27, 0.32); }
.form__field input:focus, .form__field select:focus, .form__field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.form__field textarea { resize: vertical; min-height: 90px; }
.form__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.form__success {
  font-size: 14.5px; color: #1a7f4b;
  border-left: 2px solid #1a7f4b;
  padding-left: 14px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.6);
  padding: clamp(64px, 7vw, 100px) 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 2fr) minmax(0, 2fr) minmax(0, 3fr);
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: clamp(48px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__logo {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 56px);
  letter-spacing: 0.1em;
  color: var(--white);
  line-height: 1;
}
.footer__tag {
  margin-top: 10px;
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold);
}
.footer__desc { margin-top: 22px; font-size: 14px; max-width: 40ch; line-height: 1.75; }

.footer__col h3 {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a {
  font-size: 14px;
  transition: color 0.3s, padding-left 0.35s var(--ease-lux);
}
.footer__col a:hover { color: var(--gold); padding-left: 6px; }
.footer__col address, .footer__col--contact p { font-size: 14px; line-height: 1.8; }
.footer__col--contact p { margin-top: 12px; }

.footer__news {
  margin-top: 26px;
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.footer__news input {
  flex: 1;
  background: transparent; border: 0;
  color: var(--white);
  font: inherit; font-size: 14px;
  padding: 10px 0;
}
.footer__news input::placeholder { color: rgba(255, 255, 255, 0.35); }
.footer__news input:focus { outline: none; }
.footer__news button {
  color: var(--gold);
  font-size: 20px;
  padding: 0 8px;
  transition: transform 0.35s var(--ease-lux);
}
.footer__news button:hover { transform: translateX(6px); }

.footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  padding-block: 28px;
  font-size: 12.5px;
}
.footer__social { display: flex; gap: 24px; }
.footer__social a {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  transition: color 0.3s;
}
.footer__social a:hover { color: var(--gold); }

/* ---------- Mobile CTA ---------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 180;
  display: none;
  grid-template-columns: 1fr 1fr 1.3fr;
  background: rgba(11, 15, 25, 0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-lux);
}
.mobile-cta.is-visible { transform: translateY(0); }
.mobile-cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 8px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  min-height: 48px;
}
.mobile-cta a + a { border-left: 1px solid rgba(255, 255, 255, 0.1); }
.mobile-cta__primary { background: var(--gold); color: var(--ink) !important; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1180px) {
  .nav__list { gap: 20px; }
  .projects__grid { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__item--wide { grid-column: span 2; }
}

@media (max-width: 1024px) {
  .nav { display: none; }
  .burger { display: flex; }
  .header__cta { display: none; }

  .about__grid, .featured__grid, .invest__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 620px; }
  .featured__media { max-width: 620px; }
  .masonry { columns: 2; }
  .why__row { grid-template-columns: minmax(56px, auto) 1fr; grid-template-rows: auto auto; }
  .why__num { grid-row: 1; }
  .why__media { grid-column: 2; grid-row: 1 / span 2; display: none; }
  .why__row { grid-template-columns: minmax(64px, auto) minmax(0, 3fr) minmax(0, 5fr); grid-template-rows: auto; }
  .why__media { display: block; grid-column: auto; grid-row: auto; }
}

@media (max-width: 820px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .stat:nth-child(3)::before { display: none; }

  .why__row { grid-template-columns: 1fr; gap: 18px; }
  .why__num { font-size: 40px; }
  .why__media { aspect-ratio: 16 / 8; max-width: 520px; }

  .projects__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .project { aspect-ratio: 4 / 4.6; }

  .invest__cards { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .bento__item--tall { grid-row: span 2; }
  .bento__item--wide { grid-column: span 1; }

  .form__row { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

  .mobile-cta { display: grid; }
  body { padding-bottom: 0; }
  .footer { padding-bottom: 70px; }
}

@media (max-width: 560px) {
  .masonry { columns: 1; }
  .invest__cards { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .btn { padding: 16px 28px; }
  .featured__amenities { grid-template-columns: 1fr; }
  .about__vm { grid-template-columns: 1fr; }
  .about__badge { left: 12px; bottom: 20px; padding: 16px 22px; }
  .featured__price { right: 12px; bottom: 20px; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__scroll { display: none; }
  .invest__bar::before { font-size: 8.5px; }
  .invest__bar:nth-child(odd)::after { display: none; }
  .testi__slide footer img { width: 48px; height: 48px; }
  .section-head__index { display: none; }
}

/* ==========================================================================
   V2 — multi-page components & hero refinements
   ========================================================================== */

/* ---------- Hero v2 ---------- */
.hero__title {
  font-size: clamp(50px, 9vw, 132px);
  line-height: 1.0;
  font-weight: 500;
}
.hero__title em { font-weight: 500; }

.hero__chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px 9px 14px;
  margin-bottom: 30px;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  animation: fadeUp 1s var(--ease-lux) 0.05s forwards;
  transition: border-color 0.35s, background 0.35s;
}
.hero__chip:hover { border-color: var(--gold); background: rgba(200, 169, 106, 0.12); }
.hero__chip::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(200, 169, 106, 0.6);
  animation: chipPulse 2.2s ease-out infinite;
}
.hero__chip strong { color: var(--gold); font-weight: 600; }
@keyframes chipPulse {
  0% { box-shadow: 0 0 0 0 rgba(200, 169, 106, 0.55); }
  70%, 100% { box-shadow: 0 0 0 9px rgba(200, 169, 106, 0); }
}
@media (max-width: 560px) {
  .hero__chip { font-size: 10px; padding: 8px 14px 8px 12px; letter-spacing: 0.1em; white-space: nowrap; }
}

.btn--underline {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 6px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white);
}
.btn--underline::after {
  content: "";
  position: absolute; left: 0; bottom: 10px;
  width: 100%; height: 1px;
  background: rgba(255, 255, 255, 0.4);
}
.btn--underline::before {
  content: "";
  position: absolute; left: 0; bottom: 10px; z-index: 1;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--ease-lux);
}
.btn--underline:hover::before, .btn--underline:focus-visible::before { transform: scaleX(1); transform-origin: left; }
.btn--underline .btn__arrow { transition: transform 0.4s var(--ease-lux); color: var(--gold); }
.btn--underline:hover .btn__arrow { transform: translateX(6px); }

.hero__rail {
  position: absolute; right: clamp(20px, 4.5vw, 64px); top: 50%; z-index: 2;
  transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: flex-end; gap: 22px;
  text-align: right;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-lux) 0.9s forwards;
}
.hero__rail-item { display: flex; flex-direction: column; gap: 3px; }
.hero__rail-item strong {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 600;
  color: var(--white); line-height: 1.1;
}
.hero__rail-item span {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.hero__rail-tick { width: 26px; height: 1px; background: rgba(200, 169, 106, 0.55); }
@media (max-width: 1180px) { .hero__rail { display: none; } }

.hero__scroll { right: auto; left: 50%; transform: translateX(-50%); }
@media (max-width: 560px) { .hero__scroll { display: none; } }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: clamp(150px, 20vw, 230px) 0 clamp(60px, 7vw, 100px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: clamp(400px, 58vh, 600px);
}
.page-hero .container { position: relative; z-index: 3; width: 100%; }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: bannerSettle 2.4s var(--ease-lux) forwards;
}
@keyframes bannerSettle { to { transform: scale(1); } }
.page-hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 15% 100%, rgba(11, 15, 25, 0.55), transparent 65%),
    linear-gradient(180deg, rgba(11, 15, 25, 0.88) 0%, rgba(11, 15, 25, 0.55) 45%, rgba(11, 15, 25, 0.94) 100%);
}
.page-hero::after {
  content: attr(data-index);
  position: absolute; right: clamp(8px, 3vw, 48px); bottom: -0.18em;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(140px, 22vw, 320px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.14);
  pointer-events: none; user-select: none;
}
.page-hero__crumb {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.page-hero__crumb::before { content: ""; width: 40px; height: 1px; background: var(--gold); }
.page-hero__crumb a { color: rgba(255, 255, 255, 0.55); transition: color 0.3s; }
.page-hero__crumb a:hover { color: var(--white); }
.page-hero__crumb span[aria-hidden] { color: rgba(255, 255, 255, 0.3); letter-spacing: 0; }
.page-hero h1 {
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.04;
  max-width: 14ch;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero__sub {
  margin-top: 22px;
  max-width: 58ch;
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.68);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 90% at 85% 110%, rgba(200, 169, 106, 0.16), transparent 60%);
}
.cta-band__inner {
  position: relative;
  padding-block: clamp(72px, 9vw, 130px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 36px;
}
.cta-band h2 {
  font-size: clamp(30px, 4vw, 56px);
  max-width: 18ch;
  line-height: 1.08;
}
.cta-band h2 em { font-style: italic; color: var(--gold); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* ---------- Teasers ---------- */
.section-cta {
  margin-top: clamp(40px, 5vw, 64px);
  display: flex; justify-content: center;
}
.teaser-quote {
  max-width: 900px;
}
.teaser-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(23px, 2.7vw, 36px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 30px;
}
.teaser-quote__footer { display: flex; align-items: center; gap: 18px; }
.teaser-quote__footer img {
  width: 58px; height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.teaser-quote__footer cite { display: block; font-style: normal; font-weight: 600; font-size: 15px; color: var(--ink); }
.teaser-quote__footer span {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-soft);
}

/* Cormorant Garamond refinements */
.logo__name { font-weight: 700; letter-spacing: 0.12em; }
.section-head__title { font-weight: 600; }
.about__lead, .featured__lead { font-weight: 500; }
.testi__slide p { font-weight: 500; }
.stat__num, .invest__card-num, .featured__price strong, .timeline__year { font-weight: 500; }
.about__quote p, .faq__item summary { font-weight: 500; }
.project__price { font-weight: 600; font-size: 19px !important; }

/* Home hero — richer cinematic overlay with a whisper of gold */
.hero__overlay {
  background:
    radial-gradient(ellipse 65% 55% at 80% 18%, rgba(200, 169, 106, 0.12), transparent 62%),
    linear-gradient(180deg, rgba(11, 15, 25, 0.58) 0%, rgba(11, 15, 25, 0.26) 45%, rgba(11, 15, 25, 0.94) 100%),
    linear-gradient(90deg, rgba(11, 15, 25, 0.58) 0%, rgba(11, 15, 25, 0.05) 65%);
}

/* ==========================================================================
   V3 — brand monogram, metallic accents, hero v3, iconography
   ========================================================================== */

/* Brand lockup — gold on dark, matching the supplied logo */
.logo__name { color: #D9BC85; letter-spacing: 0.16em; }
.logo__sub { color: rgba(200, 169, 106, 0.78); }
.logo__mark svg { display: block; filter: drop-shadow(0 2px 10px rgba(200, 169, 106, 0.25)); }

/* Metallic gradient for italic accents */
.hero__title em, .section-head__title em, .cta-band h2 em, .page-hero h1 em {
  background: linear-gradient(105deg, #EBD7A7 0%, #C8A96A 48%, #A5824A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Hero v3 — editorial, bottom-anchored, framed ---------- */
.hero { align-items: flex-end; }
.hero__content {
  padding-top: 140px;
  padding-bottom: clamp(120px, 15vh, 168px);
}
.hero__row {
  display: flex; align-items: flex-end; flex-wrap: wrap;
  gap: clamp(28px, 4vw, 72px);
}
.hero__row .hero__sub { margin-bottom: 6px; }

.hero__frame {
  position: absolute;
  inset: clamp(14px, 1.8vw, 26px);
  border: 1px solid rgba(200, 169, 106, 0.22);
  z-index: 2;
  pointer-events: none;
}
.hero__frame::before, .hero__frame::after {
  content: "";
  position: absolute;
  width: 26px; height: 26px;
  border-color: rgba(200, 169, 106, 0.65);
  border-style: solid;
}
.hero__frame::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.hero__frame::after { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }

.hero__scroll { display: none; } /* marquee + frame carry the scroll cue in hero v3 */
@media (min-width: 1121px) {
  .hero__row { max-width: calc(100% - 470px); } /* reserve space for the featured card */
}

/* Marquee ribbon */
.hero__marquee {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 15, 25, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero__marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 34s linear infinite;
}
.hero__marquee-seq {
  display: flex; align-items: center;
  gap: 44px;
  padding: 15px 22px 15px 44px;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}
.hero__marquee-seq i {
  font-style: normal;
  font-size: 9px;
  color: rgba(200, 169, 106, 0.75);
}
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* Featured mini-card */
.hero__card-body { display: flex; flex-direction: column; min-width: 0; }
.hero__card {
  position: absolute;
  right: clamp(24px, 3.5vw, 58px);
  bottom: 156px; /* clears the floating contact pills */
  z-index: 4;
  width: 378px;
  display: flex; align-items: center; gap: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0;
  animation: fadeUp 1s var(--ease-lux) 1.05s forwards;
  transition: border-color 0.4s, transform 0.45s var(--ease-lux);
}
.hero__card:hover { border-color: rgba(200, 169, 106, 0.7); transform: translateY(-4px); }
.hero__card img { width: 88px; height: 88px; object-fit: cover; flex-shrink: 0; }
.hero__card-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold);
}
.hero__card-label::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: chipPulse 2.2s ease-out infinite;
}
.hero__card-name {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 600;
  color: var(--white); line-height: 1.12;
  margin: 4px 0 3px;
}
.hero__card-meta { font-size: 12px; color: rgba(255, 255, 255, 0.62); }
.hero__card-meta strong { color: var(--gold); font-weight: 600; }
.hero__card-arrow {
  margin-left: auto;
  width: 42px; height: 42px; flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold);
  transition: background 0.4s, color 0.4s, border-color 0.4s, transform 0.45s var(--ease-lux);
}
.hero__card:hover .hero__card-arrow {
  background: var(--gold); color: var(--ink); border-color: var(--gold);
  transform: rotate(-45deg);
}
@media (max-width: 1120px) { .hero__card { display: none; } }
@media (max-width: 560px) {
  .hero__frame { display: none; }
  .hero__marquee-seq { font-size: 12px; gap: 26px; padding: 12px 14px 12px 26px; letter-spacing: 0.22em; }
  .hero__content { padding-bottom: 104px; }
}

/* ---------- Iconography ---------- */
.stat__icon { display: block; margin: 0 auto 14px; color: rgba(200, 169, 106, 0.85); }
.why__icon {
  width: 54px; height: 54px;
  border: 1px solid rgba(200, 169, 106, 0.4);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold);
  background: rgba(200, 169, 106, 0.07);
  margin-bottom: 18px;
  transition: background 0.4s, transform 0.5s var(--ease-lux);
}
.why__row:hover .why__icon { background: rgba(200, 169, 106, 0.16); transform: rotate(-8deg) scale(1.05); }
.featured__amenities li::before { content: none; }
.featured__amenities li svg { color: var(--gold); flex-shrink: 0; }
.preloader__mark svg { display: block; }

/* ---------- Floating contact (bottom right) ---------- */
.float-contact {
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2.5vw, 28px);
  z-index: 170;
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-lux) 0.5s forwards;
}
/* Icon-only circular FABs */
.float-btn {
  position: relative;
  display: grid; place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  box-shadow: 0 14px 36px rgba(11, 15, 25, 0.3);
  transition: transform 0.35s var(--ease-lux), box-shadow 0.35s var(--ease-lux), filter 0.3s;
}
.float-btn:hover, .float-btn:focus-visible {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 44px rgba(11, 15, 25, 0.36);
}
.float-btn svg { width: 24px; height: 24px; flex-shrink: 0; }
.float-btn--wa { background: #25d366; color: #fff; }
.float-btn--wa:hover { filter: brightness(1.06); }
.float-btn--call {
  background: var(--ink);
  color: var(--gold);
  border: 1px solid rgba(200, 169, 106, 0.5);
}
.float-btn--call:hover { background: #141a29; }
/* Number label hidden — icon-only; kept in DOM for screen readers via aria-label */
.float-btn__num { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
/* Tooltip on hover (desktop) */
.float-btn::after {
  content: attr(data-tip);
  position: absolute; right: calc(100% + 12px); top: 50%;
  transform: translateY(-50%) translateX(8px);
  padding: 8px 14px; border-radius: 8px;
  background: var(--ink); color: var(--white);
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  box-shadow: 0 10px 26px rgba(11, 15, 25, 0.28);
  transition: opacity 0.3s var(--ease-lux), transform 0.3s var(--ease-lux);
}
.float-btn:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
/* Mobile: the sticky bottom bar already carries Call / WhatsApp */
@media (max-width: 820px) { .float-contact { display: none; } }
@media (prefers-reduced-motion: reduce) { .float-contact { opacity: 1; animation: none; } }

/* ==========================================================================
   V4 — Marcellus type, hero slideshow, sheen buttons, image-rich sections
   ========================================================================== */

/* Archivo display system — bold caps headlines (template style) */
body { letter-spacing: 0; }
h1, h2, h3 { font-weight: 700; letter-spacing: -0.015em; line-height: 1.06; }
.section-head__title, .page-hero h1, .cta-band h2, .standard__title {
  text-transform: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.section-head__title { font-size: clamp(24px, 3vw, 42px); line-height: 1.12; }
.page-hero h1 { font-size: clamp(30px, 4.2vw, 56px); line-height: 1.08; }
.standard__title { font-size: clamp(21px, 2.3vw, 32px); }
.cta-band h2 { font-size: clamp(24px, 3vw, 40px); }
.hero__title em, .section-head__title em, .cta-band h2 em, .page-hero h1 em { font-style: normal; }
.testi__slide p, .teaser-quote p, .about__quote p { font-style: normal; font-weight: 500; letter-spacing: -0.01em; }
.about__lead, .featured__lead { font-weight: 600; letter-spacing: -0.015em; }
.stat__num, .invest__card-num, .featured__price strong, .timeline__year,
.project__price, .hero__card-name, .why__num, .process__num { font-weight: 700; }
.faq__item summary { font-weight: 600; font-size: clamp(16px, 1.5vw, 19px); }
.hero__marquee-seq { font-weight: 500; font-size: 13px; }

/* Brand serif reserved for the logo lockup */
.logo__name, .footer__logo { font-family: var(--font-logo); font-weight: 400; }
.preloader__word { font-family: var(--font-logo); }

/* Eyebrows become chips */
.section-head__eyebrow {
  display: inline-flex; align-items: center;
  padding: 9px 18px;
  border: 1px solid rgba(200, 169, 106, 0.45);
  border-radius: 999px;
  background: rgba(200, 169, 106, 0.08);
  letter-spacing: 0.22em;
}
.section-head__eyebrow::before { display: none; }

/* Pill geometry site-wide */
.btn { border-radius: 999px; }

/* ---------- Buttons v2 — sheen sweep + tracking ---------- */
.btn .btn__label { position: relative; z-index: 2; transition: letter-spacing 0.5s var(--ease-lux); }
.btn:hover .btn__label { letter-spacing: 0.26em; }
.btn::after {
  content: "";
  position: absolute; top: 0; left: -140%;
  width: 55%; height: 100%;
  z-index: 1;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-18deg);
  transition: left 0.9s var(--ease-lux);
  pointer-events: none;
}
.btn:hover::after, .btn:focus-visible::after { left: 160%; }
.btn { transition: color 0.45s var(--ease-lux), border-color 0.45s var(--ease-lux), box-shadow 0.5s var(--ease-lux); }
.btn--gold:hover { box-shadow: 0 14px 38px rgba(200, 169, 106, 0.35); }

/* ---------- Hero slideshow ---------- */
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; }
.hero__slide.is-active img { animation: heroZoom 10s var(--ease-lux) forwards; }

.hero__slidenav {
  position: absolute;
  right: clamp(26px, 4vw, 62px);
  top: 50%; transform: translateY(-50%);
  z-index: 4;
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 14px;
}
.hero__slidenav button {
  width: 30px; height: 2px;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  transition: width 0.5s var(--ease-lux), background 0.4s;
}
.hero__slidenav button:hover { background: var(--white); }
.hero__slidenav button.is-active { width: 52px; background: var(--gold); }
@media (max-width: 560px) { .hero__slidenav { display: none; } }

/* ---------- Brand marquee band (subpages, above footer) ---------- */
.brand-marquee {
  overflow: hidden;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.brand-marquee .hero__marquee-track { animation-duration: 40s; }

/* ---------- Image-backed bento tiles ---------- */
.bento__item--img .bento__content {
  background: linear-gradient(180deg, rgba(11, 15, 25, 0.05) 0%, rgba(11, 15, 25, 0.88) 62%);
}
.bento__item.bento__item--img h3 { color: var(--white); }
.bento__item.bento__item--img p { color: rgba(255, 255, 255, 0.78); }

/* ---------- Timeline milestone images ---------- */
.timeline__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin: 20px 0 18px;
  filter: grayscale(0.45) brightness(0.92);
  transition: filter 0.7s var(--ease-lux), transform 0.7s var(--ease-lux);
}
.timeline__item:hover .timeline__img { filter: none; transform: scale(1.02); }

/* ==========================================================================
   V5 — additional home sections: standard strip, locations, process
   ========================================================================== */

/* The Archana Standard */
.standard__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.standard__title {
  font-size: clamp(28px, 3.2vw, 44px);
  color: var(--ink);
  line-height: 1.18;
  margin-bottom: 30px;
}
.standard__title em {
  background: linear-gradient(105deg, #EBD7A7 0%, #C8A96A 48%, #A5824A 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}
.standard__items { display: flex; flex-direction: column; }
.standard__item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  align-items: start;
  padding-block: 28px;
  border-top: 1px solid var(--line);
}
.standard__item:last-child { border-bottom: 1px solid var(--line); }
.standard__item h3 { font-size: 21px; color: var(--ink); margin-bottom: 6px; }
.standard__item p { font-size: 14.5px; color: var(--text-soft); max-width: 56ch; }

/* Where We Build */
.locations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.8vw, 24px);
}
.location {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ink-2);
}
.location img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-lux), filter 0.7s;
  filter: grayscale(0.25);
}
.location:hover img { transform: scale(1.07); filter: none; }
.location::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 25, 0.05) 40%, rgba(11, 15, 25, 0.85) 100%);
}
.location__body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 22px;
}
.location__body h3 {
  font-size: 23px; color: var(--white);
  display: flex; align-items: center; justify-content: space-between;
}
.location__body h3 svg { color: var(--gold); transition: transform 0.4s var(--ease-lux); }
.location:hover .location__body h3 svg { transform: translateX(5px); }
.location__body p {
  margin-top: 4px;
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(200, 169, 106, 0.9);
}

/* Process */
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.process__step {
  border-top: 1px solid var(--line-light);
  padding-top: 26px;
  position: relative;
}
.process__step::before {
  content: "";
  position: absolute; top: -1px; left: 0;
  width: 44px; height: 1px;
  background: var(--gold);
}
.process__num {
  font-family: var(--font-display);
  font-size: clamp(44px, 4.6vw, 68px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  display: block;
  margin-bottom: 18px;
  transition: color 0.6s var(--ease-lux), -webkit-text-stroke-color 0.6s;
}
.process__step:hover .process__num { color: var(--gold); -webkit-text-stroke-color: var(--gold); }
.process__step h3 { font-size: 20px; color: var(--white); margin-bottom: 10px; }
.process__step p { font-size: 13.5px; color: rgba(255, 255, 255, 0.55); }

@media (max-width: 1024px) {
  .standard__grid { grid-template-columns: 1fr; }
  .locations__grid, .process__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .locations__grid, .process__grid { grid-template-columns: 1fr; }
  .location { aspect-ratio: 16 / 10; }
}

/* ==========================================================================
   V6 — card banner (template style), pill buttons, light header on home
   ========================================================================== */

/* Light header while at the top of the home page */
body[data-page="home"] .header:not(.is-solid) { background: var(--white); }
body[data-page="home"] .header:not(.is-solid) .nav__link { color: rgba(11, 15, 25, 0.72); }
body[data-page="home"] .header:not(.is-solid) .nav__link:hover,
body[data-page="home"] .header:not(.is-solid) .nav__link.is-active { color: var(--ink); }
body[data-page="home"] .header:not(.is-solid) .logo { color: var(--ink); }
body[data-page="home"] .header:not(.is-solid) .logo__name { color: #8f6f3e; }
body[data-page="home"] .header:not(.is-solid) .burger span { background: var(--ink); }

/* Full-width hero */
.heroc {
  background: var(--ink);
  padding: 0;
}
.heroc .container { max-width: none; padding: 0; }
.heroc__card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: var(--ink);
  min-height: clamp(560px, 92vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.heroc__media { position: absolute; inset: 0; }
.heroc__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 80% 50% at 50% 116%, rgba(200, 169, 106, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(11, 15, 25, 0.62) 0%, rgba(11, 15, 25, 0.32) 40%, rgba(11, 15, 25, 0.86) 100%),
    radial-gradient(ellipse 75% 65% at 50% 42%, rgba(11, 15, 25, 0.12), rgba(11, 15, 25, 0.55));
}
.heroc__grain {
  position: absolute; inset: 0; z-index: 1;
  opacity: 0.5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
.heroc__content {
  position: relative; z-index: 2;
  padding: 128px clamp(20px, 5vw, 48px) 150px;
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.heroc__eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 9px 20px;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-lux) 0.15s forwards;
}
.heroc__eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(200, 169, 106, 0.6);
  animation: chipPulse 2.2s ease-out infinite;
}
.heroc__title {
  font-size: clamp(32px, 5.4vw, 66px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--white);
  text-shadow: 0 2px 40px rgba(11, 15, 25, 0.4);
}

.heroc__pills {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-top: 28px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-lux) 0.5s forwards;
}
.heroc__pills li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 12.5px; font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.heroc__pills svg { color: var(--gold); }
.heroc__title em {
  font-style: normal;
  background: linear-gradient(105deg, #EBD7A7 0%, #C8A96A 48%, #A5824A 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.heroc__sub {
  max-width: 560px;
  margin: 24px auto 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
  opacity: 0;
  animation: fadeUp 1s var(--ease-lux) 0.4s forwards;
}
.heroc__title .hero__title-line { display: block; overflow: hidden; }
.heroc__title .hero__title-line > span {
  display: block;
  transform: translateY(112%);
  animation: lineUp 1.1s var(--ease-lux) forwards;
}
.heroc__title .hero__title-line:nth-child(2) > span { animation-delay: 0.12s; }
.heroc__actions {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px;
  margin-top: 34px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-lux) 0.65s forwards;
}

/* Bottom bar — stats + slide progress, pinned to base of banner */
.heroc__bar {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  padding: 22px clamp(20px, 5vw, 56px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(11, 15, 25, 0), rgba(11, 15, 25, 0.4));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  animation: fadeUp 1s var(--ease-lux) 0.85s forwards;
}
.heroc__stats {
  display: flex; flex-wrap: wrap;
  gap: clamp(22px, 3.5vw, 52px);
}
.heroc__stat { text-align: left; }
.heroc__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
}
.heroc__stat strong sup { color: var(--gold); font-size: 0.55em; }
.heroc__stat > span {
  display: block; margin-top: 6px;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.heroc__stat strong sup { color: var(--gold); font-size: 0.55em; top: -0.55em; }
.heroc__stat strong span { display: inline; font: inherit; color: inherit; }
.heroc__stat + .heroc__stat { position: relative; }
.heroc__stat + .heroc__stat::before {
  content: "";
  position: absolute; left: calc(-1 * clamp(11px, 1.75vw, 26px)); top: 6%;
  height: 68%; width: 1px;
  background: rgba(255, 255, 255, 0.16);
}
@media (max-width: 900px) {
  .heroc__bar { flex-direction: column; align-items: flex-start; gap: 18px; }
}
@media (max-width: 620px) {
  .heroc__stat:nth-child(n+3) { display: none; }
}

/* Rating chip — centered pill under the CTAs */
.heroc__rating {
  margin: 28px auto 0;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 8px 20px 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  animation: fadeUp 1s var(--ease-lux) 1s forwards;
}
.heroc__rating .heroc__rating-text strong { color: var(--white); }
.heroc__rating .heroc__rating-text span b { color: rgba(255, 255, 255, 0.6); }
.heroc__avatars { display: flex; }
.heroc__avatars img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
}
.heroc__avatars img + img { margin-left: -12px; }
.heroc__rating-text { line-height: 1.3; }
.heroc__rating-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--ink); }
.heroc__rating-text span { font-size: 11px; color: var(--gold); letter-spacing: 0.06em; }
.heroc__rating-text span b { color: var(--text-soft); font-weight: 500; }
@media (max-width: 760px) { .heroc__rating { display: none; } }

/* Slide progress bars inside the bottom bar */
.heroc .hero__slidenav {
  position: static; transform: none;
  flex-direction: row; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.heroc .hero__slidenav button {
  width: 46px; height: 3px;
  padding: 0; border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
  transition: width 0.5s var(--ease-lux), background 0.4s;
}
.heroc .hero__slidenav button i {
  display: block; height: 100%; width: 100%;
  border-radius: 999px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
}
.heroc .hero__slidenav button.is-active { width: 64px; background: rgba(255, 255, 255, 0.22); }
.heroc .hero__slidenav button.is-active i { animation: slideProgress 7s linear forwards; }
@keyframes slideProgress { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* Scroll cue */
.heroc__scroll {
  position: absolute; left: 50%; bottom: 112px; z-index: 3;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  display: grid; place-items: start center;
  padding-top: 8px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-lux) 1.1s forwards;
}
.heroc__scroll span {
  width: 3px; height: 8px; border-radius: 999px;
  background: var(--gold);
  animation: scrollCue 1.8s var(--ease-lux) infinite;
}
@keyframes scrollCue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
@media (max-width: 900px) { .heroc__scroll { display: none; } }

/* Pill buttons */
.btn-pill {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 8px 8px 8px 26px;
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  transition: transform 0.35s var(--ease-lux), box-shadow 0.4s var(--ease-lux), background 0.35s, color 0.35s;
}
.btn-pill--light { background: var(--white); color: var(--ink); }
.btn-pill--light:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3); }
.btn-pill__circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink); color: var(--white);
  display: grid; place-items: center;
  transition: background 0.35s, color 0.35s, transform 0.45s var(--ease-lux);
}
.btn-pill--light:hover .btn-pill__circle { background: var(--gold); color: var(--ink); transform: rotate(-45deg); }
.btn-pill--outline {
  padding: 16px 30px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
}
.btn-pill--outline:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

@media (max-width: 760px) {
  .heroc__card { align-items: flex-start; min-height: auto; }
  .heroc__content { padding: 100px 20px 150px; }
  .heroc__sub { text-shadow: 0 1px 20px rgba(11, 15, 25, 0.7); }
}
@media (max-width: 560px) {
  .heroc__content { padding: 92px 20px 150px; }
  .heroc__actions { width: 100%; }
  .heroc__actions .btn-pill { width: 100%; justify-content: center; }
  .heroc__stat + .heroc__stat::before { display: none; }
  .heroc__pills li { font-size: 11.5px; padding: 8px 14px; }
  .heroc__title { font-size: clamp(28px, 8.5vw, 40px); }
}

/* ==========================================================================
   V7 — split hero (Homely style): text left, scrolling image right
   ========================================================================== */
.herosplit {
  background: var(--white);
  padding: clamp(96px, 12vw, 132px) 0 clamp(40px, 6vw, 72px);
}
.herosplit__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(32px, 4.5vw, 72px);
  align-items: center;
}

/* Left column */
.herosplit__rating {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 9px 20px 9px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(11, 15, 25, 0.05);
  margin-bottom: 26px;
  opacity: 0; animation: fadeUp 0.9s var(--ease-lux) 0.1s forwards;
}
.herosplit__rating-star {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold-soft); color: var(--gold);
}
.herosplit__rating-text strong { display: block; font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.herosplit__rating-text > span { font-size: 11.5px; color: var(--text-soft); }

.herosplit__title {
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: var(--ink);
}
.herosplit__title em {
  font-style: normal;
  background: linear-gradient(105deg, #C8A96A 0%, #A5824A 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.herosplit__title .hero__title-line { display: block; overflow: hidden; }
.herosplit__title .hero__title-line > span { display: block; transform: translateY(112%); animation: lineUp 1.05s var(--ease-lux) forwards; }
.herosplit__title .hero__title-line:nth-child(2) > span { animation-delay: 0.1s; }
.herosplit__title .hero__title-line:nth-child(3) > span { animation-delay: 0.2s; }

.herosplit__sub {
  max-width: 44ch;
  margin: 26px 0 34px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-soft);
  opacity: 0; animation: fadeUp 1s var(--ease-lux) 0.5s forwards;
}
.herosplit__sub strong { color: var(--ink); font-weight: 600; }

.herosplit__actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  opacity: 0; animation: fadeUp 1s var(--ease-lux) 0.62s forwards;
}
.btn-pill--dark {
  padding: 17px 34px;
  background: var(--ink); color: var(--white);
}
.btn-pill--dark:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(11, 15, 25, 0.28); }
.btn-pill--soft {
  padding: 8px 26px 8px 8px;
  background: var(--gray); color: var(--ink);
  border: 1px solid var(--line);
}
.btn-pill--soft:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(11, 15, 25, 0.12); }
.btn-pill__circle--gold { background: var(--gold); color: var(--ink); }
.btn-pill--soft:hover .btn-pill__circle--gold { transform: rotate(-45deg); }

.herosplit__trust {
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: clamp(24px, 3vw, 34px);
  border-top: 1px solid var(--line);
  opacity: 0; animation: fadeUp 1s var(--ease-lux) 0.75s forwards;
}
.herosplit__trust-label {
  display: block; margin-bottom: 18px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-soft);
}
.herosplit__stats { display: flex; flex-wrap: wrap; gap: clamp(24px, 3.5vw, 48px); }
.herosplit__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 38px); font-weight: 800;
  letter-spacing: -0.02em; color: var(--ink); line-height: 1;
}
.herosplit__stat > span {
  display: block; margin-top: 5px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-soft);
}

/* Right column — image slider */
.herosplit__right { display: flex; flex-direction: column; }
.herosplit__media {
  position: relative;
  border-radius: clamp(18px, 2vw, 28px);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--ink-2);
  box-shadow: 0 40px 90px rgba(11, 15, 25, 0.18);
}
/* Inset frame — a thin border set in from the edge with a small gap */
.herosplit__media::before {
  content: "";
  position: absolute; inset: 14px; z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: clamp(12px, 1.4vw, 18px);
  pointer-events: none;
}
.herosplit__slider { position: absolute; inset: 0; }
.herosplit__slider .hero__slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.4s ease;
}
.herosplit__slider .hero__slide.is-active { opacity: 1; }
.herosplit__slider .hero__slide img { width: 100%; height: 100%; object-fit: cover; }
.herosplit__slider .hero__slide.is-active img { animation: heroZoom 8s var(--ease-lux) forwards; }
.herosplit__media::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(11, 15, 25, 0) 55%, rgba(11, 15, 25, 0.55) 100%);
  pointer-events: none;
}

.herosplit__badge {
  position: absolute; left: clamp(16px, 2vw, 24px); bottom: clamp(16px, 2vw, 24px); z-index: 2;
  display: flex; flex-direction: column; gap: 3px;
  padding: 16px 22px;
  border-radius: 14px;
  background: rgba(11, 15, 25, 0.55);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 0; animation: fadeUp 1s var(--ease-lux) 0.9s forwards;
}
.herosplit__badge-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
}
.herosplit__badge-eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  animation: chipPulse 2.2s ease-out infinite;
}
.herosplit__badge strong { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--white); }
.herosplit__badge-meta { font-size: 12px; color: rgba(255, 255, 255, 0.72); }

/* Slide indicators — centered BELOW the image, not over it */
.herosplit__right .hero__slidenav {
  position: static; transform: none;
  display: flex; justify-content: center; gap: 9px;
  margin-top: 20px;
}
.herosplit__right .hero__slidenav button {
  width: 34px; height: 4px; padding: 0;
  border-radius: 999px; background: rgba(11, 15, 25, 0.14);
  overflow: hidden; transition: width 0.5s var(--ease-lux), background 0.4s;
}
.herosplit__right .hero__slidenav button i {
  display: block; height: 100%; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left; border-radius: 999px;
}
.herosplit__right .hero__slidenav button.is-active { width: 52px; }
.herosplit__right .hero__slidenav button.is-active i { animation: slideProgress 7s linear forwards; }

@media (max-width: 900px) {
  .herosplit__grid { grid-template-columns: 1fr; gap: clamp(32px, 6vw, 48px); }
  .herosplit__media { aspect-ratio: 16 / 11; max-height: 460px; }
  .herosplit__left { order: 1; }
}
@media (max-width: 560px) {
  .herosplit__actions .btn-pill { width: 100%; justify-content: center; }
  .herosplit__stats { gap: 20px 28px; }
}

/* ==========================================================================
   V8 — real brand logo image + dark header so its background blends
   ========================================================================== */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__img { height: 46px; width: auto; display: block; }
@media (max-width: 560px) { .logo__img { height: 40px; } }

/* Header carries the same dark tone as the logo's background on every page/state */
.header,
body[data-page="home"] .header:not(.is-solid) {
  background: rgba(11, 15, 25, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}
.header.is-solid { box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 40px rgba(11, 15, 25, 0.35); }
.header .nav__link,
body[data-page="home"] .header:not(.is-solid) .nav__link { color: rgba(255, 255, 255, 0.78); }
.header .nav__link:hover, .header .nav__link.is-active,
body[data-page="home"] .header:not(.is-solid) .nav__link:hover,
body[data-page="home"] .header:not(.is-solid) .nav__link.is-active { color: #fff; }
.header .burger span,
body[data-page="home"] .header:not(.is-solid) .burger span { background: #fff; }

/* Footer logo image (footer is already dark, gold logo shows well) */
.footer__logo-img { height: 96px; width: auto; display: block; margin-bottom: 6px; }

/* Preloader logo image */
.preloader__img { width: 190px; height: auto; display: block; margin-bottom: 26px; }

/* Footer developer credit */
.footer__credit {
  color: var(--gold);
  font-weight: 600;
  transition: color 0.3s, opacity 0.3s;
}
.footer__credit:hover { opacity: 0.75; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; filter: none; }
  .hero__title-line > span { transform: none; }
  .hero__sub, .hero__actions, .reveal-line, .hero__chip, .hero__rail, .hero__card, .float-contact,
  .heroc__sub, .heroc__actions, .heroc__rating, .heroc__eyebrow, .heroc__pills,
  .heroc__bar, .heroc__scroll, .herosplit__rating, .herosplit__sub, .herosplit__actions,
  .herosplit__trust, .herosplit__badge { opacity: 1; }
  .herosplit__title .hero__title-line > span { transform: none; }
  .invest__bar { transform: scaleY(1); }
  .progress-bar__fill { transition: none; }
}
