/* ==========================================================================
   Cypress Sound — Orlando, FL
   Luxury offering-memorandum aesthetic: deep cypress green, ivory,
   champagne-gold hairlines. Fraunces (display) + Hanken Grotesk (text).
   ========================================================================== */

:root {
  --green-950: #0E1F18;
  --green-900: #14291F;
  --green-800: #1B372A;
  --green-700: #244837;
  --ivory: #F6F2E9;
  --ivory-soft: #EFEAE0;
  --sand: #EAE2D2;
  --gold: #C6A566;
  --gold-soft: #D8BC85;
  --gold-dim: rgba(198, 165, 102, 0.35);
  --ink: #1E2620;
  --ink-soft: #4C564F;
  --mist: #B9B2A2;

  --serif: "Fraunces", Georgia, serif;
  --sans: "Hanken Grotesk", "Segoe UI", sans-serif;

  --section-pad: clamp(4.5rem, 10vw, 8.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: 1.12; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
}
h2 em, h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.container {
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}

.lede {
  font-size: clamp(1.1rem, 1.7vw, 1.25rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 46em;
}
.lede--onDark { color: var(--ivory-soft); opacity: 0.88; }

/* Sections ---------------------------------------------------------------- */
.section--light { background: var(--ivory); color: var(--ink); padding-block: var(--section-pad); }
.section--sand  { background: var(--sand);  color: var(--ink); padding-block: var(--section-pad); }
.section--dark {
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(198,165,102,0.07), transparent 60%),
    linear-gradient(175deg, var(--green-900), var(--green-950));
  color: var(--ivory);
  padding-block: var(--section-pad);
}
.section--dark h2 { color: var(--ivory); }

/* Buttons ----------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05rem 2.1rem;
  border: 1px solid transparent;
  transition: all 0.35s var(--ease);
  cursor: pointer;
}
.btn--gold {
  background: var(--gold);
  color: var(--green-950);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: transparent;
  color: var(--gold);
}
.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(246, 242, 233, 0.45);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--lg { padding: 1.25rem 2.8rem; font-size: 0.84rem; }

/* Hairline frame motif ----------------------------------------------------- */
.frame {
  position: relative;
  border: 1px solid var(--gold-dim);
}
.frame::before, .frame::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border-color: var(--gold);
  border-style: solid;
}
.frame::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.frame::after  { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }

/* Navigation ---------------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.is-solid {
  background: rgba(14, 31, 24, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(198, 165, 102, 0.25);
}
.nav__inner {
  width: min(1320px, calc(100% - 3rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav__logo {
  height: 38px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}
.nav__links a {
  color: var(--ivory-soft);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.25s;
}
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 0.55rem 1.3rem;
  transition: all 0.3s var(--ease) !important;
}
.nav__cta:hover { background: var(--gold); color: var(--green-950) !important; }
.nav__lang {
  opacity: 0.75;
  border-left: 1px solid rgba(239, 234, 224, 0.3);
  padding-left: 1.4rem;
}
.nav__lang:hover { opacity: 1; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: 0;
  padding: 8px 4px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 30px; height: 1.5px;
  background: var(--ivory);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}

/* Hero ---------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ivory);
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroDrift 22s var(--ease) both;
}
@keyframes heroDrift {
  from { transform: scale(1.12); }
  to   { transform: scale(1.0); }
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(14,31,24,0.55) 0%, rgba(14,31,24,0.25) 40%, rgba(14,31,24,0.72) 100%),
    linear-gradient(100deg, rgba(14,31,24,0.72) 0%, rgba(14,31,24,0.15) 65%);
}
.hero__content { padding-block: 7rem 8.5rem; }
.hero__eyebrow { animation: rise 1s 0.2s var(--ease) both; }
.hero__title {
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
  font-weight: 350;
  letter-spacing: -0.015em;
  max-width: 14em;
  text-shadow: 0 2px 28px rgba(14, 31, 24, 0.45);
  animation: rise 1s 0.35s var(--ease) both;
}
.hero__sub {
  max-width: 36em;
  margin-top: 1.6rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ivory-soft);
  animation: rise 1s 0.5s var(--ease) both;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
  animation: rise 1s 0.65s var(--ease) both;
}
.hero__foot {
  position: absolute;
  left: 50%; bottom: 1.6rem;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
  animation: fadeIn 1.4s 1s both;
}
.hero__scroll { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.hero__scroll i {
  width: 1px; height: 44px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Stat strip ----------------------------------------------------------------- */
.strip {
  background: var(--green-950);
  color: var(--ivory);
  border-top: 1px solid rgba(198,165,102,0.25);
  border-bottom: 1px solid rgba(198,165,102,0.25);
}
.strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.strip__item {
  padding: 2.6rem 1.4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.strip__item + .strip__item { border-left: 1px solid rgba(198,165,102,0.18); }
.strip__num {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  color: var(--gold);
}
.strip__label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
}

/* Vision ---------------------------------------------------------------------- */
.vision__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.vision__text .lede { margin-bottom: 1.2rem; }
.vision__pull {
  margin-top: 2.4rem;
  padding: 1.7rem 1.9rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  background: rgba(198,165,102,0.06);
}
.vision__pullnum {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  color: var(--gold);
  white-space: nowrap;
}
.vision__pulltext { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.55; }
.vision__media { margin: 0; position: relative; }
.vision__media img {
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  width: 100%;
}
.vision__media::before {
  content: "";
  position: absolute;
  inset: 1.4rem -1.4rem -1.4rem 1.4rem;
  border: 1px solid var(--gold-dim);
  z-index: -1;
}
.vision__media figcaption,
.location__banner figcaption,
.residences__gallery figcaption {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.9rem;
}

/* Location ---------------------------------------------------------------------- */
.location__head { max-width: 52em; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.location__diagram svg { width: 100%; height: auto; }
.ticks {
  list-style: none;
  margin: 0; padding: 0;
}
.ticks li {
  position: relative;
  padding: 1.1rem 0 1.1rem 2.1rem;
  border-bottom: 1px solid rgba(198,165,102,0.18);
  font-size: 1rem;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.75rem;
  width: 9px; height: 9px;
  transform: rotate(45deg);
  border: 1px solid var(--gold);
}
.ticks li strong { color: var(--gold); font-weight: 500; }
.section--light .ticks li strong,
.section--sand .ticks li strong { color: var(--ink); }
.location__note { margin-top: 1.6rem; font-size: 0.95rem; color: var(--mist); }
.location__banner {
  margin: clamp(3rem, 7vw, 5.5rem) auto 0;
  width: min(1180px, calc(100% - 3rem));
}
.location__banner img {
  width: 100%;
  aspect-ratio: 21 / 8;
  object-fit: cover;
}
.location__banner figcaption { color: var(--mist); }

/* Residences ---------------------------------------------------------------------- */
.residences__head { max-width: 50em; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.residences__gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1.25fr;
  gap: 1.4rem;
  align-items: start;
}
.residences__gallery figure { margin: 0; }
.residences__gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}
.residences__gallery figure:nth-child(2) img { aspect-ratio: 3 / 4.05; }
.residences__gallery figure:hover img { transform: scale(1.025); }
.residences__plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.plan { background: #FDFBF6; padding: 1.4rem; }
.plan img { width: 100%; }
.plan__meta { padding: 1.4rem 0.4rem 0.3rem; }
.plan__meta h3 { font-size: 1.45rem; margin-bottom: 0.4rem; }
.plan__meta p { font-size: 0.95rem; color: var(--ink-soft); }

/* Lifestyle mosaic ---------------------------------------------------------------------- */
.lifestyle__head { margin-bottom: clamp(2.2rem, 4vw, 3.5rem); }
.lifestyle__mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.mosaic__item {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3.1;
}
.mosaic__item--wide { grid-column: span 2; aspect-ratio: 8 / 3.1; }
.mosaic__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.mosaic__item:hover img { transform: scale(1.05); }
.mosaic__item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.9rem 1.2rem 1rem;
  background: linear-gradient(transparent, rgba(14,31,24,0.78));
  color: var(--ivory);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* Opportunity ---------------------------------------------------------------------- */
.opportunity__head { max-width: 52em; margin-bottom: clamp(2.8rem, 5vw, 4.5rem); }

.chart { max-width: 780px; margin-inline: auto; }
.chart__bars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: end;
  height: clamp(260px, 36vw, 360px);
  border-bottom: 1px solid rgba(30,38,32,0.25);
  padding-inline: clamp(0.5rem, 3vw, 2rem);
}
.chart__col {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  text-align: center;
}
.chart__bar {
  position: relative;
  background: linear-gradient(to top, rgba(30,38,32,0.14), rgba(30,38,32,0.05));
  border: 1px solid rgba(30,38,32,0.18);
  border-bottom: 0;
  height: 0;
  transition: height 1.4s var(--ease);
}
.chart__bar--entry {
  background: linear-gradient(to top, rgba(198,165,102,0.5), rgba(198,165,102,0.18));
  border-color: var(--gold);
}
.chart__value {
  position: absolute;
  top: -2.4rem; left: 0; right: 0;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
}
.chart__bar--entry .chart__value { color: #8a6f3d; }
.chart__labels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  padding-inline: clamp(0.5rem, 3vw, 2rem);
  text-align: center;
}
.chart__label {
  margin-top: 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.7;
}
.chart__label strong { display: block; color: var(--ink); font-weight: 600; }
.chart__caption {
  text-align: center;
  margin-top: 2.6rem;
  font-size: 0.98rem;
}
.chart__caption span { font-size: 0.8rem; color: var(--ink-soft); }

.steps {
  list-style: none;
  counter-reset: step;
  margin: clamp(3rem, 6vw, 5rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.steps__item {
  border-top: 1px solid rgba(198,165,102,0.5);
  padding-top: 1.4rem;
}
.steps__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.8rem;
}
.steps__item h3 { font-size: 1.3rem; margin-bottom: 0.7rem; }
.steps__item p { font-size: 0.94rem; color: var(--ink-soft); }

.exits { margin-top: clamp(3rem, 6vw, 5rem); }
.exits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.exit { padding: 1.8rem 1.9rem; background: rgba(198,165,102,0.05); }
.exit h4 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.exit p { font-size: 0.94rem; color: var(--ink-soft); }

/* Bond ---------------------------------------------------------------------- */
.bond__head { max-width: 54em; margin-bottom: clamp(2.8rem, 5vw, 4.5rem); }

.flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0.9rem;
}
.flow__node {
  border: 1px solid rgba(198,165,102,0.35);
  padding: 1.6rem 1.5rem;
  background: rgba(246,242,233,0.03);
}
.flow__node--gold { border-color: var(--gold); background: rgba(198,165,102,0.1); }
.flow__step {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.flow__node h4 { font-size: 1.35rem; margin: 0.5rem 0 0.6rem; }
.flow__node p { font-size: 0.88rem; color: var(--mist); line-height: 1.6; }
.flow__arrow {
  align-self: center;
  width: 26px; height: 1px;
  background: var(--gold);
  position: relative;
}
.flow__arrow::after {
  content: "";
  position: absolute;
  right: 0; top: -3.5px;
  width: 7px; height: 7px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  transform: rotate(45deg);
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-top: clamp(2.8rem, 5vw, 4.5rem);
  padding-top: clamp(2.2rem, 4vw, 3.2rem);
  border-top: 1px solid rgba(198,165,102,0.22);
}
.trust__item h5 {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 400;
  color: var(--gold-soft);
  margin: 0 0 0.5rem;
}
.trust__item p { font-size: 0.88rem; color: var(--mist); }

.terms { margin-top: clamp(3rem, 6vw, 5rem); }
.terms__title {
  font-size: 1.7rem;
  margin-bottom: 1.6rem;
}
.terms__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(2rem, 5vw, 4.5rem);
  row-gap: 0;
  margin: 0;
}
.terms__list > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(198,165,102,0.18);
}
.terms__list dt {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
}
.terms__list dd {
  margin: 0;
  text-align: right;
  font-size: 0.98rem;
  color: var(--ivory);
}
.terms__note {
  margin-top: 1.8rem;
  font-size: 0.82rem;
  color: var(--mist);
  max-width: 56em;
}
.terms .btn { margin-top: 1.8rem; }

/* Market ---------------------------------------------------------------------- */
.market__head { max-width: 54em; margin-bottom: clamp(2.8rem, 5vw, 4.5rem); }
.market__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(30,38,32,0.15);
  border-left: 1px solid rgba(30,38,32,0.15);
}
.market__stat {
  padding: 2.2rem 2rem;
  border-right: 1px solid rgba(30,38,32,0.15);
  border-bottom: 1px solid rgba(30,38,32,0.15);
}
.market__num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  color: var(--green-800);
  margin-bottom: 0.5rem;
}
.market__stat p { font-size: 0.92rem; color: var(--ink-soft); }
.market__source {
  margin-top: 1.6rem;
  font-size: 0.75rem;
  color: var(--ink-soft);
  opacity: 0.75;
}

/* Developer ---------------------------------------------------------------------- */
.developer__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.developer__person {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  margin: 2rem 0 1.4rem;
}
.developer__person img {
  width: 86px; height: 106px;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--gold-dim);
  padding: 4px;
  background: #fff;
}
.developer__person h3 { font-size: 1.5rem; }
.developer__role {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.ticks--compact li { padding-block: 0.75rem; font-size: 0.95rem; }
.ticks--compact li::before { top: 1.35rem; }
.developer__approved {
  margin-top: 2rem;
  padding: 1.5rem 1.7rem;
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.5);
}
.developer__badge {
  flex: none;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green-800);
  border: 1px solid var(--green-800);
  padding: 0.45rem 0.8rem;
  margin-top: 0.2rem;
}
.developer__approved p { font-size: 0.88rem; color: var(--ink-soft); }
.developer__record { display: grid; gap: 1.6rem; align-content: start; }
.record { background: #FDFBF6; padding: 1.1rem; }
.record img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
}
.record__meta { padding: 1.2rem 0.5rem 0.4rem; }
.record__meta h4 { font-size: 1.3rem; margin-bottom: 0.45rem; }
.record__meta p { font-size: 0.9rem; color: var(--ink-soft); }

/* Timeline ---------------------------------------------------------------------- */
.timeline { margin-top: clamp(3.5rem, 7vw, 6rem); }
.timeline__title { font-size: 1.7rem; margin-bottom: 2.2rem; }
.timeline__track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  position: relative;
  padding-top: 1.6rem;
}
.timeline__track::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dim));
}
.timeline__phase { position: relative; }
.timeline__phase::before {
  content: "";
  position: absolute;
  top: -1.6rem; left: 0;
  width: 9px; height: 9px;
  transform: translateY(-4px) rotate(45deg);
  background: var(--sand);
  border: 1px solid var(--gold);
}
.timeline__phase--gold::before { background: var(--gold); }
.timeline__dates {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.35rem;
}
.timeline__name { font-family: var(--serif); font-size: 1.12rem; }
.timeline__phase--gold .timeline__name { color: #8a6f3d; }

/* CTA ---------------------------------------------------------------------- */
.cta {
  position: relative;
  padding-block: clamp(6rem, 14vw, 11rem);
  color: var(--ivory);
  isolation: isolate;
  text-align: center;
}
.cta__media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; }
.cta__veil {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(14,31,24,0.82), rgba(14,31,24,0.66) 50%, rgba(14,31,24,0.85));
}
.cta__content { max-width: 760px; }
.cta h2 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
.cta__sub {
  margin: 1.6rem auto 2.4rem;
  max-width: 34em;
  color: var(--ivory-soft);
}
.cta__note {
  margin-top: 2.2rem;
  font-size: 0.78rem;
  color: var(--ivory-soft);
  opacity: 0.8;
  max-width: 44em;
  margin-inline: auto;
  text-shadow: 0 1px 12px rgba(14, 31, 24, 0.8);
}

/* Footer ---------------------------------------------------------------------- */
.footer {
  background: var(--green-950);
  color: var(--mist);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  border-top: 1px solid rgba(198,165,102,0.25);
}
.footer__brands {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(198,165,102,0.16);
}
.footer__cs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}
.footer__cs img { height: 34px; width: auto; display: block; }
.footer__cs em {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--mist);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.footer__ec {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ivory-soft);
}
.footer__ecmark {
  font-family: var(--serif);
  font-size: 1rem;
  width: 44px; height: 44px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  letter-spacing: 0.06em;
}
.footer__ecname {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.footer__legal {
  padding-block: 2rem;
  font-size: 0.74rem;
  line-height: 1.75;
  opacity: 0.8;
  max-width: 76em;
}
.footer__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(198,165,102,0.16);
  font-size: 0.78rem;
}
.footer__base a { color: var(--gold); text-decoration: none; }
.footer__base a:hover { text-decoration: underline; }

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

/* Responsive ---------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.6rem; }
  .flow { grid-template-columns: 1fr 1fr; }
  .flow__arrow { display: none; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .developer__grid { grid-template-columns: 1fr; }
  .timeline__track { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.4rem; padding-top: 0; }
  .timeline__track::before { display: none; }
  .timeline__phase::before { position: static; display: inline-block; margin-right: 0.6rem; transform: rotate(45deg); }
}

@media (max-width: 1380px) {
  .nav__links { gap: 1.05rem; }
  .nav__links a { font-size: 0.7rem; letter-spacing: 0.1em; }
  .nav__cta { padding: 0.55rem 1rem; }
  .nav__lang { padding-left: 1.05rem; }
}

@media (max-width: 1160px) {
  .nav__links {
    /* Sized via viewport units: backdrop-filter on .nav.is-solid makes the
       header the containing block for fixed children, so inset: 0 would only
       cover the header bar. The header sits at the viewport origin, so
       100vw/100svh from top-left still covers the full screen. */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100svh;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: rgba(14, 31, 24, 0.97);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
  }
  .nav__links.is-open { opacity: 1; pointer-events: auto; }
  .nav__links a { font-size: 1rem; }
  .nav__lang { border-left: 0; padding-left: 0; }
  .nav__burger { display: flex; z-index: 110; }
  .nav__burger.is-open span:first-child { transform: translateY(4.25px) rotate(45deg); }
  .nav__burger.is-open span:last-child { transform: translateY(-4.25px) rotate(-45deg); }
}

@media (max-width: 880px) {
  .vision__grid, .location__grid { grid-template-columns: 1fr; }
  .vision__media { order: -1; }
  .vision__media img { aspect-ratio: 16 / 10; }
  .vision__media::before { display: none; }
  .residences__gallery { grid-template-columns: 1fr 1fr; }
  .residences__gallery figure:nth-child(2) { display: none; }
  .residences__plans { grid-template-columns: 1fr; }
  .lifestyle__mosaic { grid-template-columns: 1fr 1fr; }
  .mosaic__item--wide { aspect-ratio: 4 / 2.4; }
  .terms__list { grid-template-columns: 1fr; }
  .strip__grid { grid-template-columns: 1fr 1fr; }
  .strip__item { padding: 1.8rem 1rem; }
  .strip__item:nth-child(3) { border-left: 0; }
  .strip__item:nth-child(n+3) { border-top: 1px solid rgba(198,165,102,0.18); }
  .market__grid { grid-template-columns: 1fr 1fr; }
  .hero__foot { justify-content: center; }
  .hero__foot span:first-child, .hero__foot span:last-child { display: none; }
  .location__banner img { aspect-ratio: 16 / 9; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .steps { grid-template-columns: 1fr; }
  .exits__grid { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr; }
  .market__grid { grid-template-columns: 1fr; }
  .residences__gallery { grid-template-columns: 1fr; }
  .lifestyle__mosaic { grid-template-columns: 1fr; }
  .mosaic__item, .mosaic__item--wide { grid-column: span 1; aspect-ratio: 4 / 2.8; }
  .hero__actions .btn { width: 100%; text-align: center; }
  .chart__bars, .chart__labels { padding-inline: 0; gap: 0.9rem; }
  .vision__pull { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .timeline__track { grid-template-columns: 1fr; }
  .footer__brands { justify-content: center; text-align: center; }
  .footer__cs { align-items: center; }
  .footer__base { justify-content: center; }
}

/* Reduced motion ---------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__media img { animation: none; }
  .hero__eyebrow, .hero__title, .hero__sub, .hero__actions, .hero__foot { animation: none; }
  .hero__scroll i { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .chart__bar { transition: none; }
}
