/* =============================================================
   Dreamway Properties Ltd. — Pre-Launch Experience
   Luxury design system. Charcoal + Warm Gold + Off-White.
   ============================================================= */

:root {
  --charcoal: #0F0F0F;
  --charcoal-soft: #1A1A1A;
  --charcoal-ink: #2A2825;
  --gold: #C9A24C;
  --gold-glow: #E8C877;
  --off-white: #F5F1EA;
  --paper: #FAFAF7;
  --line: rgba(201, 162, 76, 0.22);
  --line-soft: rgba(245, 241, 234, 0.08);

  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Inter Tight', 'Inter', system-ui, -apple-system, sans-serif;

  --easing: cubic-bezier(0.22, 1, 0.36, 1);
  --easing-slow: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; 
    width: 100%; 
    position: relative;}
html {
  scroll-behavior: auto; /* Lenis takes over */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.005em;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--charcoal); color: var(--off-white);
  padding: 12px 18px; z-index: 100; font-size: 13px; letter-spacing: 0.1em;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- typography ---------- */
.serif { font-family: var(--font-serif); font-weight: 400; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; margin: 0; letter-spacing: -0.015em; line-height: 1.08; }

.h-display { font-size: clamp(2.75rem, 7.5vw, 6rem); }
.h-section { font-size: clamp(2.25rem, 5vw, 3.75rem); }
.h-card    { font-size: clamp(1.5rem, 2.4vw, 1.875rem); }

.lede { font-size: clamp(1rem, 1.2vw, 1.125rem); color: rgba(15,15,15,0.72); max-width: 62ch; }

/* ---------- layout primitives ---------- */
.wrap {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
section { position: relative; }
.section-pad {
  padding-block: clamp(5rem, 10vw, 9rem);
}

.divider {
  height: 1px;
  background: var(--line);
  width: 100%;
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 400ms var(--easing), backdrop-filter 400ms var(--easing), border-color 400ms var(--easing), padding 400ms var(--easing);
  padding: 22px 0;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(15, 15, 15, 0.72);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--line-soft);
  padding: 14px 0;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--off-white);
}
.nav__brand img { height: 70px; width: auto; }
.nav__brand-mark { height: 70px; width: auto; }
.nav__wordmark {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav__links {
  display: none;
  gap: 36px;
  align-items: center;
}
.nav__links a {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--off-white);
  opacity: 0.85;
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
  transition: right 400ms var(--easing);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { right: 0; }

.nav__cta {
  display: none;
  align-items: center; gap: 10px;
  padding: 10px 20px;
  border: 1px solid var(--gold);
  color: var(--off-white);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 300ms var(--easing), color 300ms var(--easing);
}
.nav__cta:hover { background: var(--gold); color: var(--charcoal); }
.nav__cta i { color: var(--gold); transition: color 300ms var(--easing); }
.nav__cta:hover i { color: var(--charcoal); }

.nav__toggle {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line-soft);
  color: var(--off-white);
  font-size: 16px;
}
.nav__toggle:hover { border-color: var(--gold); color: var(--gold); }

@media (min-width: 900px) {
  .nav__links, .nav__cta { display: flex; }
  .nav__toggle { display: none; }
}

/* Mobile drawer */
.mnav {
  position: fixed;
  inset: 0;
  background: rgba(15,15,15,0.96);
  backdrop-filter: blur(20px);
  z-index: 60;
  display: flex; flex-direction: column;
  padding: 100px 32px 40px;
  opacity: 0; pointer-events: none;
  transition: opacity 400ms var(--easing);
}
.mnav.is-open { opacity: 1; pointer-events: auto; }
.mnav a {
  color: var(--off-white);
  font-family: var(--font-serif);
  font-size: 2rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.mnav__close {
  position: absolute; top: 22px; right: 22px;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--line-soft);
  color: var(--off-white); font-size: 18px;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  background: var(--charcoal);
  color: var(--off-white);
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.08);
  will-change: transform;
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,15,15,0.55) 0%, rgba(15,15,15,0.25) 35%, rgba(15,15,15,0.92) 100%),
    linear-gradient(90deg, rgba(15,15,15,0.55) 0%, rgba(15,15,15,0) 55%);
  z-index: 1;
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 3px 3px;
  z-index: 2; opacity: 0.5;
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 3;
  padding-top: 160px;
  padding-bottom: clamp(5rem, 10vw, 8rem);
  width: 100%;
}
.hero__status {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-glow);
  background: rgba(15,15,15,0.4);
  backdrop-filter: blur(6px);
}
.hero__status .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2.4s var(--easing) infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.65; }
}

.hero__title {
  margin-top: 28px;
  color: var(--off-white);
  font-weight: 300;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-glow);
}
.hero__intro {
  margin-top: 24px;
  max-width: 58ch;
  color: rgba(245,241,234,0.78);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  line-height: 1.7;
}
.hero__ctas {
  margin-top: 40px;
  display: flex; flex-wrap: wrap; gap: 14px;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%; transform: translateX(-50%);
  z-index: 4;
  color: rgba(245,241,234,0.55);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 42px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scroll-cue 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scroll-cue {
  0% { transform: scaleY(0); opacity: 0; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0) translateY(42px); opacity: 0; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all 400ms var(--easing);
  cursor: pointer;
  background: transparent;
  color: inherit;
}
.btn i { font-size: 14px; transition: transform 400ms var(--easing); }
.btn:hover i { transform: translateX(4px); }
.btn--gold {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-glow); border-color: var(--gold-glow); }
.btn--ghost {
  border-color: rgba(245,241,234,0.35);
  color: var(--off-white);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-glow); }
.btn--dark {
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn--dark:hover { background: var(--charcoal); color: var(--off-white); }

/* ---------- section header ---------- */
.sh {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  align-items: end;
}
@media (min-width: 900px) { .sh { grid-template-columns: 1fr auto; } }
.sh__lede { max-width: 46ch; color: rgba(15,15,15,0.65); }

/* ---------- progress ---------- */
.progress {
  background: var(--paper);
}
.progress__bar {
  position: relative;
  height: 1px;
  background: rgba(15,15,15,0.08);
  margin-top: 48px;
  overflow: visible;
}
.progress__fill {
  position: absolute; top: 0; left: 0;
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 1.6s var(--easing-slow);
}
.progress__phases {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 700px)  { .progress__phases { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .progress__phases { grid-template-columns: repeat(4, 1fr); } }
.phase {
  position: relative;
  padding-top: 28px;
}
.phase__num {
  font-family: var(--font-serif);
  color: rgba(15,15,15,0.3);
  font-size: 14px;
  letter-spacing: 0.15em;
}
.phase__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-top: 8px;
  color: var(--charcoal);
}
.phase__detail {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(15,15,15,0.55);
  letter-spacing: 0.02em;
}
.phase__ring {
  position: absolute; top: -6px; left: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(15,15,15,0.14);
  transition: all 400ms var(--easing);
}
.phase.is-done .phase__ring { background: var(--gold); }
.phase.is-active .phase__ring {
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(201,162,76,0.15), 0 0 20px var(--gold);
}
.phase.is-active .phase__num { color: var(--gold); }
.phase.is-active .phase__title { color: var(--charcoal); }
.phase.is-done   .phase__num { color: rgba(201,162,76,0.7); }

/* ---------- projects carousel ---------- */
.projects {
  background: var(--paper);
}
.swiper-projects {
  overflow: visible !important;
  padding-bottom: 60px !important;
}
.swiper-projects .swiper-slide {
  height: auto;
}
.pcard {
  position: relative;
  background: var(--paper);
  border: 1px solid rgba(15,15,15,0.06);
  overflow: hidden;
  height: 100%;
  display: flex; flex-direction: column;
  transition: transform 600ms var(--easing), border-color 600ms var(--easing), box-shadow 600ms var(--easing);
}
.pcard:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  box-shadow: 0 40px 80px -40px rgba(15,15,15,0.35);
}
.pcard__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--charcoal-soft);
}
.pcard__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--easing-slow);
}
.pcard:hover .pcard__media img { transform: scale(1.06); }
.pcard__status {
  position: absolute; top: 20px; left: 20px;
  z-index: 2;
  padding: 6px 14px;
  background: rgba(15,15,15,0.72);
  backdrop-filter: blur(10px);
  color: var(--gold-glow);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid rgba(201,162,76,0.4);
}
.pcard__body {
  padding: 28px 26px 32px;
  display: flex; flex-direction: column;
  gap: 14px;
  flex: 1;
}
.pcard__cat {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.pcard__name {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--charcoal);
  line-height: 1.15;
}
.pcard__meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  font-size: 13px;
  color: rgba(15,15,15,0.7);
  margin-top: 4px;
}
.pcard__meta dt { color: rgba(15,15,15,0.4); letter-spacing: 0.08em; text-transform: uppercase; font-size: 10px; align-self: center; }
.pcard__meta dd { margin: 0; }
.pcard__highlight {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(15,15,15,0.7);
  border-top: 1px solid rgba(15,15,15,0.08);
  padding-top: 16px;
  margin-top: auto;
}
.pcard__cta {
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  align-self: flex-start;
  transition: gap 300ms var(--easing);
}
.pcard__cta:hover { gap: 16px; }

.swiper-controls {
  margin-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.swiper-nav {
  display: flex; gap: 10px;
}
.swiper-nav button {
  width: 48px; height: 48px;
  border: 1px solid rgba(15,15,15,0.15);
  background: transparent;
  color: var(--charcoal);
  transition: all 300ms var(--easing);
}
.swiper-nav button:hover { border-color: var(--gold); color: var(--gold); background: var(--charcoal); }
.swiper-pagination-projects {
  display: flex; align-items: center; gap: 8px;
}
.swiper-pagination-projects .swiper-pagination-bullet {
  width: 24px; height: 2px;
  background: rgba(15,15,15,0.2);
  border-radius: 0;
  opacity: 1;
  transition: all 400ms var(--easing);
}
.swiper-pagination-projects .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 44px;
}

/* ---------- about ---------- */
.about {
  background: var(--off-white);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 900px) { .about__grid { grid-template-columns: 1.4fr 1fr; gap: 96px; } }
.about__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 2.6vw, 2.4rem);
  line-height: 1.35;
  color: var(--charcoal);
  font-weight: 400;
}
.about__quote em { font-style: italic; color: var(--gold); }
.about__body { margin-top: 28px; color: rgba(15,15,15,0.7); max-width: 58ch; }
.about__meta { display: grid; gap: 22px; }
.about__meta-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.about__meta-row:last-child { border-bottom: 1px solid var(--line); }
.about__meta-row dt {
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold);
}
.about__meta-row dd { margin: 0; font-family: var(--font-serif); font-size: 1.35rem; color: var(--charcoal); }

/* ---------- pillars (why dreamway) ---------- */
.pillars { background: var(--paper); }
.pillars__grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  grid-template-columns: 1fr;
}
@media (min-width: 700px)  { .pillars__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .pillars__grid { grid-template-columns: repeat(4, 1fr); } }
.pillar {
  background: var(--paper);
  padding: 48px 36px 52px;
  transition: background 400ms var(--easing);
}
.pillar:hover { background: var(--off-white); }
.pillar__icon {
  width: 56px; height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 28px;
  transition: all 400ms var(--easing);
}
.pillar:hover .pillar__icon { background: var(--gold); color: var(--charcoal); }
.pillar__title { font-family: var(--font-serif); font-size: 1.35rem; color: var(--charcoal); }
.pillar__body { margin-top: 12px; font-size: 14px; color: rgba(15,15,15,0.65); line-height: 1.65; }

/* ---------- stats ---------- */
.stats {
  background: var(--charcoal);
  color: var(--off-white);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 24px;
}
@media (min-width: 900px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: left; }
.stat__value {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 4.75rem);
  color: var(--gold-glow);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__label {
  margin-top: 14px;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(245,241,234,0.6);
}

/* ---------- updates timeline ---------- */
.updates { background: var(--off-white); }
.timeline {
  position: relative;
  padding-left: 32px;
  margin-top: 24px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 6px; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--line);
}
.tl-item { position: relative; padding: 18px 0 28px 32px; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -32px; top: 26px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 4px var(--off-white);
}
.tl-item:first-child::before { background: var(--gold); }
.tl-date { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.tl-title { font-family: var(--font-serif); font-size: 1.35rem; color: var(--charcoal); margin-top: 8px; }
.tl-body { color: rgba(15,15,15,0.65); font-size: 14px; margin-top: 6px; line-height: 1.7; max-width: 56ch; }

/* ---------- contact ---------- */
.contact { background: var(--charcoal); color: var(--off-white); }
.contact .eyebrow { color: var(--gold-glow); }
.contact .h-section { color: var(--off-white); }
.contact__grid {
  display: grid; grid-template-columns: 1fr; gap: 48px;
}
@media (min-width: 900px) { .contact__grid { grid-template-columns: 1.1fr 1fr; gap: 80px; } }

.contact__block { display: grid; gap: 28px; }
.cline {
  display: grid; grid-template-columns: 44px 1fr; gap: 18px; align-items: start;
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
}
.cline:last-child { border-bottom: 1px solid var(--line-soft); }
.cline__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 15px;
}
.cline__label { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(245,241,234,0.5); }
.cline__value { font-family: var(--font-serif); font-size: 1.2rem; color: var(--off-white); margin-top: 4px; }
.cline__value a:hover { color: var(--gold-glow); }

.inquire {
  border: 1px solid var(--line);
  padding: 40px 36px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(4px);
}
.inquire__title { font-family: var(--font-serif); font-size: 1.75rem; color: var(--off-white); }
.inquire__body { margin-top: 12px; color: rgba(245,241,234,0.65); font-size: 14px; }
.inquire__actions { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }

/* ---------- socials strip ---------- */
.socials {
  background: var(--charcoal-soft); color: var(--off-white);
  border-top: 1px solid var(--line-soft);
}
.socials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
@media (min-width: 700px) { .socials__grid { grid-template-columns: repeat(8, 1fr); } }
.sicon {
  background: var(--charcoal-soft);
  aspect-ratio: 1 / 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  color: var(--off-white);
  transition: background 400ms var(--easing), color 400ms var(--easing);
  position: relative;
}
.sicon i { font-size: 18px; }
.sicon__label { font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; opacity: 0.5; }
.sicon:hover { background: var(--gold); color: var(--charcoal); }
.sicon.is-soon { opacity: 0.4; pointer-events: none; }
.sicon.is-soon::after {
  content: "Soon";
  position: absolute; bottom: 12px;
  font-size: 8px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
}

/* ---------- footer ---------- */
.footer {
  background: var(--charcoal);
  color: rgba(245,241,234,0.6);
  padding: 64px 0 40px;
  border-top: 1px solid var(--line-soft);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-soft);
}
@media (min-width: 900px) { .footer__top { grid-template-columns: 1.4fr 1fr; align-items: end; } }
.footer__brand img { height: 40px; filter: brightness(0) invert(1); }
.footer__tagline { font-family: var(--font-serif); font-size: 1.4rem; color: var(--off-white); margin-top: 20px; font-style: italic; }
.newsletter {
  display: flex; gap: 0;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 16px 20px;
  color: var(--off-white);
  font-family: inherit; font-size: 14px;
  outline: none;
}
.newsletter input::placeholder { color: rgba(245,241,234,0.4); }
.newsletter button {
  background: var(--gold);
  color: var(--charcoal);
  border: 0;
  padding: 0 24px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
  transition: background 300ms var(--easing);
}
.newsletter button:hover { background: var(--gold-glow); }
.newsletter__note { display: block; margin-top: 10px; font-size: 11px; color: rgba(245,241,234,0.4); letter-spacing: 0.05em; }
.footer__bottom {
  padding-top: 32px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,241,234,0.4);
}

/* ---------- floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 40;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px;
  box-shadow: 0 20px 40px -12px rgba(37, 211, 102, 0.5), 0 0 0 6px rgba(37, 211, 102, 0.15);
  transition: transform 400ms var(--easing);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float::before {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(37, 211, 102, 0.35);
  animation: pulse 2.4s ease-in-out infinite;
}

/* ---------- reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); }
.reveal.is-visible { opacity: 1; transform: none; transition: opacity 900ms var(--easing), transform 900ms var(--easing); }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); }
.reveal-stagger.is-visible > * { opacity: 1; transform: none; transition: opacity 800ms var(--easing), transform 800ms var(--easing); }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
  .hero__media img { transform: none !important; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* =============================================================
   REFINEMENT LAYER — luxury pre-launch enhancements
   ============================================================= */

/* -------- Hero fullscreen slider -------- */
.hero { min-height: 100vh; min-height: 100dvh; }
.hero__slider {
  position: absolute; inset: 0; overflow: hidden; z-index: 0;
  will-change: transform;
}
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1800ms var(--easing-slow);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  transition: transform 10s linear;
}
.hero__slide.is-active img { transform: scale(1.12); }

.hero__support {
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  color: rgba(245, 241, 234, 0.62);
  max-width: 54ch;
  margin: 14px 0 30px;
  letter-spacing: 0.01em;
}
.hero__dots {
  display: flex; gap: 10px; margin-top: 42px;
}
.hero__dot {
  width: 34px; height: 2px; background: rgba(245, 241, 234, 0.22);
  border: 0; padding: 0; cursor: pointer;
  transition: background 500ms var(--easing), width 500ms var(--easing);
}
.hero__dot.is-active { background: var(--gold); width: 60px; }

/* -------- Showcase marquee bar -------- */
.showcase-bar {
  background: var(--charcoal);
  border-block: 1px solid var(--line-soft);
  padding-block: 22px;
  overflow: hidden;
}
.showcase {
  display: flex; align-items: center; gap: 32px;
  min-width: 0;
}
.showcase__label {
  flex: 0 0 auto;
  font-family: var(--font-sans);
  font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-glow);
  display: inline-flex; align-items: center; gap: 12px;
  padding-right: 24px; border-right: 1px solid var(--line-soft);
}
.showcase__label .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 12px var(--gold);
}
.marquee { flex: 1; overflow: hidden; min-width: 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee__track {
  display: inline-flex; gap: 56px; white-space: nowrap;
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--font-serif); font-style: italic;
  color: var(--off-white); font-size: 1.05rem; letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 22px;
}
.marquee__dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
  opacity: 0.85;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* -------- Active phase glow -------- */
.phase.is-active .phase__ring,
.phase.is-active .phase__num {
  color: var(--gold);
}
.phase.is-active {
  position: relative;
}
.phase.is-active::after {
  content: ""; position: absolute; inset: -18px -18px auto -18px; height: 60px;
  background: radial-gradient(closest-side, rgba(232, 200, 119, 0.16), transparent 70%);
  pointer-events: none; z-index: 0;
  animation: phaseGlow 3.6s ease-in-out infinite;
}
@keyframes phaseGlow {
  0%,100% { opacity: 0.55; }
  50%     { opacity: 1; }
}

/* -------- Stat 'word' value -------- */
.stat__value--word {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--gold);
  letter-spacing: -0.01em;
}

/* -------- Project Highlights cards -------- */
.highlights { background: var(--paper); }
.hcard {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; flex-direction: column;
  height: 100%;
  transition: transform 700ms var(--easing), box-shadow 700ms var(--easing);
}
.hcard:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(15,15,15,0.25); }
.hcard__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.hcard__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1600ms var(--easing-slow);
}
.hcard:hover .hcard__media img { transform: scale(1.06); }
.hcard__eyebrow {
  position: absolute; top: 18px; left: 18px;
  background: rgba(15,15,15,0.72); color: var(--gold-glow);
  padding: 8px 14px; letter-spacing: 0.28em; text-transform: uppercase;
  font-size: 10px;
}
.hcard__body { padding: 32px 30px 34px; display: flex; flex-direction: column; gap: 14px; }
.hcard__project {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
}
.hcard__title { font-size: clamp(1.4rem, 2vw, 1.75rem); }
.hcard__body-text { color: rgba(15,15,15,0.7); font-size: 0.98rem; margin: 0; }

/* -------- Custom cursor glow -------- */
.cursor-glow {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 32px; height: 32px; border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(232, 200, 119, 0.55), rgba(201, 162, 76, 0.0) 70%);
  mix-blend-mode: screen;
  transition: width 380ms var(--easing), height 380ms var(--easing), background 380ms var(--easing);
}
.cursor-glow.is-hover {
  width: 68px; height: 68px;
  background: radial-gradient(circle, rgba(232, 200, 119, 0.7), rgba(201, 162, 76, 0.0) 68%);
}
@media (hover: none), (pointer: coarse) { .cursor-glow { display: none; } }

/* -------- Luxury loader -------- */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--charcoal);
  display: grid; place-items: center;
  transition: opacity 800ms var(--easing-slow);
}
.loader.is-hidden { opacity: 0; pointer-events: none; }
.loader__mark {
  display: flex; align-items: center; gap: 22px;
  animation: loaderFadeIn 900ms var(--easing-slow) both;
}
.loader__letter {
  font-family: var(--font-serif); font-size: 3.2rem; color: var(--gold);
  font-style: italic;
}
.loader__rule {
  width: 0; height: 1px; background: var(--gold);
  animation: loaderRule 1400ms var(--easing-slow) 200ms forwards;
}
.loader__word {
  font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.5em;
  color: var(--off-white); text-transform: uppercase;
  opacity: 0; animation: loaderWord 700ms var(--easing) 900ms forwards;
}
@keyframes loaderFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@keyframes loaderRule   { to { width: 90px; } }
@keyframes loaderWord   { to { opacity: 1; } }

/* -------- Cinematic image fade -------- */
.img-fade { opacity: 0; transition: opacity 1400ms var(--easing-slow), filter 1400ms var(--easing-slow); filter: blur(6px); }
.img-fade.is-loaded { opacity: 1; filter: blur(0); }
.hero__slide img.img-fade { opacity: 1; filter: none; } /* slider handles its own fade */

/* -------- Footer note replacement -------- */
.footer__note { color: rgba(245, 241, 234, 0.7); }
.btn--sm { padding: 10px 18px; font-size: 12px; }

/* -------- Mobile refinements -------- */
@media (max-width: 720px) {
  .hero__dots { margin-top: 30px; }
  .showcase { flex-direction: column; align-items: flex-start; gap: 14px; }
  .showcase__label { border-right: 0; padding-right: 0; padding-bottom: 12px; border-bottom: 1px solid var(--line-soft); width: 100%; }
  .btn { min-height: 52px; }
  .hero__title em { display: inline; }
}

/* -------- Loader logo (refined: logo only) -------- */
.loader__logo {
  display: block;
  width: min(260px, 70vw);
  height: auto;
  object-fit: contain;
  animation: loaderLogoIn 1200ms var(--easing-slow) both, loaderLogoPulse 2600ms var(--easing-slow) 1200ms infinite;
}
@keyframes loaderLogoIn { from { opacity: 0; transform: scale(.92); } to { opacity: 1; transform: scale(1); } }
@keyframes loaderLogoPulse { 0%,100% { opacity: 1; } 50% { opacity: .55; } }
.nav__brand-mark { height: 40px; width: auto; }
