:root {
  --green: #104741;
  --green-deep: #072f2b;
  --green-ink: #052824;
  --terra: #b05f32;
  --gold: #aa8852;
  --gold-light: #c6a46e;
  --vanilla: #fffcf0;
  --cream: #f4efe1;
  --ink: #18302d;
  --muted: #6e7872;
  --line: rgba(16, 71, 65, 0.18);
  --white-line: rgba(255, 252, 240, 0.22);
  --sans: "Avenir Next", "Proxima Nova", "PT Sans", sans-serif;
  --display: Baskerville, "Iowan Old Style", "PT Serif", serif;
  --max: 1440px;
  --pad: clamp(22px, 5vw, 78px);
  --ease: cubic-bezier(.2, .75, .25, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--green-deep);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--vanilla);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.quiz-open { overflow: hidden; }

button, input { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }

button:focus-visible, a:focus-visible, input:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--green-deep);
  background: var(--vanilla);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.prototype-ribbon {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--vanilla);
  background: var(--terra);
  border-bottom: 1px solid rgba(255,255,255,.25);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.prototype-ribbon span + span { opacity: .7; }

.site-header {
  position: absolute;
  top: 28px;
  inset-inline: 0;
  z-index: 40;
  color: var(--vanilla);
}
.header-inner {
  width: min(100%, var(--max));
  height: 112px;
  margin: auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 252, 240, .25);
}
.brand { width: 112px; height: 78px; display: flex; align-items: center; }
.brand img { width: 104px; height: 70px; object-fit: contain; }
.tower-mark {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
}
.header-cta svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; transition: transform .25s var(--ease); }
.header-cta:hover svg { transform: translateX(4px); }

.hero {
  position: relative;
  min-height: 900px;
  height: max(100svh, 900px);
  overflow: hidden;
  display: grid;
  color: var(--vanilla);
  background: var(--green-deep);
}
.hero-media, .hero-media img, .hero-shade, .hero-grain { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center center; transform: scale(1.035); animation: heroZoom 1.7s var(--ease) forwards; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 30, 27, .88) 0%, rgba(4, 30, 27, .65) 34%, rgba(4, 30, 27, .05) 67%),
    linear-gradient(0deg, rgba(4, 30, 27, .68) 0%, transparent 40%),
    linear-gradient(180deg, rgba(4, 30, 27, .44) 0%, transparent 34%);
}
.hero-grain {
  opacity: .15;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: auto;
  padding: 190px var(--pad) 210px;
  align-self: center;
}
.hero-content > * { max-width: 720px; }
.eyebrow {
  margin: 0 0 22px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(76px, 8vw, 138px);
  line-height: .72;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.hero h1 span { display: block; }
.hero h1 span:last-child { margin-left: clamp(42px, 8vw, 126px); color: var(--gold-light); font-style: italic; }
.hero-lead {
  margin: 46px 0 10px;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 400;
  letter-spacing: -.02em;
}
.hero-detail {
  max-width: 620px !important;
  margin: 0;
  color: rgba(255, 252, 240, .78);
  font-size: clamp(15px, 1.25vw, 19px);
}
.offer-line {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--vanilla);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.offer-line i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-light); }
.hero-action { margin-top: 34px; display: flex; align-items: center; gap: 24px; }
.hero-action > p { max-width: 260px; margin: 0; color: rgba(255, 252, 240, .64); font-size: 12px; }

.primary-cta {
  position: relative;
  min-height: 64px;
  padding: 16px 20px 16px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--vanilla);
  background: var(--terra);
  border: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .025em;
  text-align: left;
  overflow: hidden;
  transition: color .3s var(--ease), transform .3s var(--ease);
}
.primary-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--vanilla);
  transform: translateX(-102%);
  transition: transform .35s var(--ease);
}
.primary-cta > * { position: relative; z-index: 1; }
.primary-cta svg { width: 25px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.5; }
.primary-cta:hover { color: var(--green-deep); transform: translateY(-2px); }
.primary-cta:hover::before { transform: translateX(0); }

.hero-facts {
  position: absolute;
  z-index: 3;
  right: var(--pad);
  bottom: 68px;
  display: flex;
  border: 1px solid rgba(255, 252, 240, .3);
  backdrop-filter: blur(12px);
  background: rgba(5, 40, 36, .26);
}
.hero-facts div { min-width: 142px; padding: 19px 22px; border-left: 1px solid rgba(255, 252, 240, .25); }
.hero-facts div:first-child { border-left: 0; }
.hero-facts strong, .hero-facts span { display: block; }
.hero-facts strong { font-family: var(--display); font-size: 26px; font-weight: 400; }
.hero-facts span { margin-top: 4px; color: rgba(255,252,240,.62); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.visual-caption {
  position: absolute;
  z-index: 3;
  right: var(--pad);
  bottom: 40px;
  margin: 0;
  color: rgba(255,252,240,.55);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-disclaimer {
  position: absolute;
  z-index: 3;
  left: var(--pad);
  bottom: 44px;
  width: min(530px, 52vw);
  margin: 0;
  color: rgba(255,252,240,.54);
  font-size: 9px;
  line-height: 1.5;
}
.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: rgba(255,252,240,.7);
  text-decoration: none;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.scroll-cue i { width: 1px; height: 32px; background: linear-gradient(var(--gold-light), transparent); animation: scrollLine 1.8s ease-in-out infinite; }

.section-pad { position: relative; padding: 120px var(--pad); }
.section-intro {
  width: min(100%, var(--max));
  margin: 0 auto 66px;
  display: grid;
  grid-template-columns: minmax(170px, .35fr) 1fr;
  gap: 40px;
}
.section-intro > .eyebrow { padding-top: 13px; }
.section-intro > div { display: flex; justify-content: space-between; align-items: end; gap: 60px; }
.section-intro h2, .closing-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 92px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.04em;
}
.section-intro > div > p { width: min(340px, 30vw); margin: 0 0 5px; color: var(--muted); }

.formats {
  overflow: hidden;
  background:
    linear-gradient(rgba(16,71,65,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,71,65,.035) 1px, transparent 1px),
    var(--vanilla);
  background-size: 72px 72px;
}
.orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(1px); }
.orb-one { width: 520px; height: 520px; right: -260px; top: 180px; border: 1px solid rgba(176,95,50,.28); box-shadow: 0 0 0 52px rgba(176,95,50,.025), 0 0 0 106px rgba(176,95,50,.018); }
.apartment-grid {
  width: min(100%, var(--max));
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.apartment-card {
  position: relative;
  min-width: 0;
  padding: 0;
  color: var(--ink);
  background: rgba(255,252,240,.84);
  border: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease);
}
.apartment-card:hover { transform: translateY(-8px); background: #fffdf6; box-shadow: 0 26px 70px rgba(16,71,65,.12); }
.apartment-card-featured { margin-top: -28px; margin-bottom: 28px; }
.card-index { position: absolute; z-index: 2; top: 22px; left: 22px; color: var(--gold); font-size: 10px; letter-spacing: .14em; }
.plan-wrap { height: 390px; padding: 34px 26px 4px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.plan-wrap img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s var(--ease); }
.apartment-card:hover .plan-wrap img { transform: scale(1.025); }
.card-body { padding: 24px 26px 20px; display: grid; grid-template-columns: 1fr auto; gap: 7px 20px; border-top: 1px solid var(--line); }
.card-title { font-family: var(--display); font-size: 32px; line-height: 1; }
.card-area { color: var(--green); font-size: 13px; font-weight: 600; align-self: center; }
.card-link { grid-column: 1 / -1; margin-top: 16px; display: inline-flex; align-items: center; gap: 9px; color: var(--terra); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.card-link svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.5; transition: transform .25s var(--ease); }
.apartment-card:hover .card-link svg { transform: translateX(5px); }
.apartment-card small { position: absolute; right: 15px; top: 15px; color: var(--muted); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; writing-mode: vertical-rl; }

.finish-block {
  width: min(100%, var(--max));
  margin: 100px auto 0;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  min-height: 520px;
  background: var(--cream);
  border: 1px solid var(--line);
}
.finish-media { position: relative; min-height: 520px; overflow: hidden; }
.finish-media::after { content: ""; position: absolute; inset: 0; box-shadow: inset -60px 0 80px rgba(244,239,225,.15); pointer-events: none; }
.finish-media img { width: 100%; height: 100%; object-fit: cover; }
.finish-media > span, .amenity-card > small { position: absolute; right: 16px; bottom: 14px; color: rgba(255,255,255,.78); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; text-shadow: 0 1px 4px rgba(0,0,0,.5); }
.finish-copy { padding: clamp(42px, 6vw, 86px); align-self: center; }
.finish-copy h3 { max-width: 500px; margin: 0; font-family: var(--display); font-size: clamp(38px, 4vw, 62px); font-weight: 400; line-height: 1.02; letter-spacing: -.035em; }
.finish-copy ul { margin: 34px 0 28px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.finish-copy li { position: relative; padding: 14px 0 14px 24px; border-bottom: 1px solid var(--line); font-size: 14px; }
.finish-copy li::before { content: "+"; position: absolute; left: 2px; color: var(--terra); }
.fine-print { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.55; }

.tower-life { overflow: hidden; color: var(--vanilla); background: var(--green-deep); }
.tower-pattern {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  opacity: .1;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 0 66px rgba(198,164,110,.25), 0 0 0 132px rgba(198,164,110,.14);
}
.section-intro-light { position: relative; z-index: 1; }
.section-intro-light > div > p { color: rgba(255,252,240,.62); }
.amenity-grid {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 360px;
  gap: 12px;
}
.amenity-card { position: relative; margin: 0; overflow: hidden; background: var(--green); }
.amenity-card-wide { grid-column: span 2; }
.amenity-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .8s var(--ease); }
.amenity-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,29,26,.82), transparent 55%); pointer-events: none; }
.amenity-card:hover img { transform: scale(1.035); filter: saturate(1.08); }
.amenity-card figcaption { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 22px; display: flex; align-items: baseline; gap: 15px; }
.amenity-card figcaption span { color: var(--gold-light); font-size: 10px; letter-spacing: .12em; }
.amenity-card figcaption strong { font-family: var(--display); font-size: clamp(24px, 2.6vw, 40px); font-weight: 400; line-height: 1; }
.amenity-card > small { z-index: 2; top: 14px; bottom: auto; }
.tower-strip {
  width: min(100%, var(--max));
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--white-line);
  border-bottom: 1px solid var(--white-line);
}
.tower-strip span { padding: 22px; text-align: center; color: rgba(255,252,240,.72); border-left: 1px solid var(--white-line); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.tower-strip span:first-child { border-left: 0; }
.closing-cta {
  width: min(100%, var(--max));
  margin: 100px auto 0;
  padding: 66px 0 0;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  border-top: 1px solid var(--gold);
}
.closing-action { padding-top: 32px; }
.closing-action > p { max-width: 460px; margin: 0 0 28px; color: rgba(255,252,240,.65); }
.primary-cta-light { color: var(--green-deep); background: var(--gold-light); }
.primary-cta-light::before { background: var(--vanilla); }

.site-footer {
  padding: 36px var(--pad);
  display: grid;
  grid-template-columns: .6fr 1.4fr;
  gap: 60px;
  color: rgba(255,252,240,.62);
  background: #052723;
  border-top: 1px solid rgba(255,252,240,.12);
  font-size: 10px;
}
.site-footer > div span, .site-footer > div strong { display: block; }
.site-footer > div span { margin-bottom: 4px; color: var(--gold-light); text-transform: uppercase; letter-spacing: .1em; }
.site-footer > div strong { color: var(--vanilla); font-size: 13px; font-weight: 500; }
.site-footer p { max-width: 760px; margin: 0; justify-self: end; }

.quiz-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  color: var(--ink);
  background: rgba(3,29,26,.87);
  border: 0;
  opacity: 0;
  transition: opacity .28s var(--ease), display .28s allow-discrete, overlay .28s allow-discrete;
}
.quiz-dialog[open] { opacity: 1; }
@starting-style { .quiz-dialog[open] { opacity: 0; } }
.quiz-dialog::backdrop { background: rgba(3,29,26,.76); backdrop-filter: blur(8px); }
.quiz-shell {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(850px, calc(100% - 40px));
  min-height: 670px;
  max-height: calc(100svh - 40px);
  display: flex;
  flex-direction: column;
  overflow: auto;
  background:
    linear-gradient(rgba(16,71,65,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,71,65,.04) 1px, transparent 1px),
    var(--vanilla);
  background-size: 54px 54px;
  box-shadow: 0 35px 120px rgba(0,0,0,.32);
  transform: translate(-50%, -48%) scale(.98);
  transition: transform .35s var(--ease);
}
.quiz-dialog[open] .quiz-shell { transform: translate(-50%, -50%) scale(1); }
.quiz-header { padding: 24px 28px 18px; display: flex; align-items: center; justify-content: space-between; }
.quiz-kicker { margin: 0; color: var(--terra); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.quiz-counter { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; }
.quiz-close { width: 44px; height: 44px; padding: 11px; color: var(--green); background: transparent; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; transition: color .25s ease, background .25s ease; }
.quiz-close:hover { color: var(--vanilla); background: var(--green); }
.quiz-close svg { width: 100%; fill: none; stroke: currentColor; stroke-width: 1.4; }
.quiz-progress { height: 2px; background: rgba(16,71,65,.11); }
.quiz-progress span { display: block; width: 20%; height: 100%; background: var(--terra); transition: width .35s var(--ease); }
#quiz-form { min-height: 0; flex: 1; display: flex; flex-direction: column; }
.quiz-step, .quiz-result { width: min(100%, 690px); margin: auto; padding: 46px 30px 36px; animation: stepIn .35s var(--ease); }
.quiz-step[hidden], .quiz-result[hidden] { display: none; }
.quiz-step-label { margin: 0 0 10px; color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.quiz-step h2, .quiz-result h2 { margin: 0; font-family: var(--display); font-size: clamp(38px, 5vw, 58px); font-weight: 400; line-height: 1.02; letter-spacing: -.035em; }
.quiz-subtitle, .quiz-result > p { max-width: 560px; margin: 14px 0 28px; color: var(--muted); }
.quiz-options { display: grid; gap: 10px; }
.quiz-options-grid { grid-template-columns: repeat(2, 1fr); }
.quiz-option {
  min-height: 68px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  background: rgba(255,255,255,.58);
  border: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
  transition: color .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.quiz-option:hover, .quiz-option.is-selected { color: var(--vanilla); background: var(--green); border-color: var(--green); transform: translateX(4px); }
.quiz-option span { font-size: 15px; font-weight: 600; }
.quiz-option i { color: var(--gold); font-size: 10px; font-style: normal; letter-spacing: .06em; }
.quiz-option:hover i, .quiz-option.is-selected i { color: var(--gold-light); }
.stock-placeholder { margin: 22px 0 14px; padding: 22px; display: flex; align-items: center; gap: 16px; background: rgba(176,95,50,.07); border: 1px solid rgba(176,95,50,.24); }
.stock-pulse { width: 12px; height: 12px; flex: 0 0 auto; border-radius: 50%; background: var(--terra); box-shadow: 0 0 0 0 rgba(176,95,50,.35); animation: pulse 1.8s infinite; }
.stock-placeholder strong, .stock-placeholder span { display: block; }
.stock-placeholder strong { font-size: 13px; }
.stock-placeholder div > span { margin-top: 3px; color: var(--muted); font-size: 11px; }
.quiz-option-continue { width: 100%; }
.quiz-option-continue svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.contact-fields { display: grid; grid-template-columns: 1fr 1.2fr; gap: 12px; margin-top: 30px; }
.contact-fields label > span { display: block; margin-bottom: 8px; color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.contact-fields input { width: 100%; height: 58px; padding: 0 16px; color: var(--ink); background: rgba(255,255,255,.7); border: 1px solid var(--line); border-radius: 0; }
.contact-fields input::placeholder { color: #9aa19c; }
.quiz-submit { width: 100%; min-height: 60px; margin-top: 16px; padding: 15px 20px; display: flex; align-items: center; justify-content: center; gap: 16px; color: var(--vanilla); background: var(--terra); border: 0; cursor: pointer; font-weight: 700; }
.quiz-submit svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.demo-note { margin: 10px 0 0; color: var(--muted); font-size: 9px; text-align: center; }
.quiz-footer { margin-top: auto; padding: 16px 28px 22px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); color: var(--muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.quiz-back { padding: 8px 0; display: flex; align-items: center; gap: 8px; color: var(--green); background: transparent; border: 0; cursor: pointer; font-size: 10px; }
.quiz-back:disabled { opacity: .3; cursor: default; }
.quiz-back svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.quiz-result { text-align: center; }
.quiz-result > p { margin-inline: auto; }
.result-mark { width: 74px; height: 74px; margin: 0 auto 24px; display: grid; place-items: center; color: var(--vanilla); background: var(--green); border-radius: 50%; }
.result-mark svg { width: 42px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.result-summary { margin: 26px 0 10px; padding: 16px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.result-summary span { padding: 6px 9px; color: var(--green); background: rgba(16,71,65,.08); font-size: 10px; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.apartment-grid .reveal:nth-child(2) { transition-delay: .1s; }
.apartment-grid .reveal:nth-child(3) { transition-delay: .2s; }
.hero-reveal { opacity: 0; transform: translateY(26px); animation: revealUp .8s var(--ease) forwards; }
.hero-content .hero-reveal:nth-child(1) { animation-delay: .2s; }
.hero-content .hero-reveal:nth-child(2) { animation-delay: .28s; }
.hero-content .hero-reveal:nth-child(3) { animation-delay: .42s; }
.hero-content .hero-reveal:nth-child(4) { animation-delay: .5s; }
.hero-content .hero-reveal:nth-child(5) { animation-delay: .58s; }
.hero-content .hero-reveal:nth-child(6) { animation-delay: .66s; }
.hero-facts.hero-reveal { animation-delay: .8s; }

@keyframes heroZoom { to { transform: scale(1); } }
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }
@keyframes scrollLine { 0%,100% { transform: scaleY(.25); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } }
@keyframes stepIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(176,95,50,0); } 100% { box-shadow: 0 0 0 0 rgba(176,95,50,0); } }

@media (max-width: 1080px) {
  .hero { min-height: 820px; height: max(100svh, 820px); }
  .hero-content { padding-top: 170px; }
  .hero-facts { right: var(--pad); bottom: 72px; }
  .hero-facts div { min-width: 116px; padding: 15px; }
  .scroll-cue { display: none; }
  .section-intro { grid-template-columns: 1fr; gap: 8px; }
  .section-intro > .eyebrow { padding: 0; }
  .section-intro > div { align-items: end; }
  .plan-wrap { height: 330px; }
  .finish-block { grid-template-columns: 1fr 1fr; }
  .amenity-grid { grid-auto-rows: 310px; }
}

@media (max-width: 760px) {
  :root { --pad: 20px; }
  .prototype-ribbon { justify-content: space-between; padding: 0 12px; font-size: 8px; }
  .header-inner { height: 82px; grid-template-columns: 1fr auto; }
  .brand { width: 80px; height: 64px; }
  .brand img { width: 76px; height: 54px; }
  .tower-mark { display: none; }
  .header-cta { font-size: 10px; }
  .header-cta svg { display: none; }
  .hero { min-height: 820px; height: 100svh; max-height: 960px; }
  .hero-media img { object-position: center top; }
  .hero-shade {
    background:
      linear-gradient(0deg, rgba(3,29,26,.96) 0%, rgba(3,29,26,.76) 39%, rgba(3,29,26,.05) 72%),
      linear-gradient(180deg, rgba(3,29,26,.48), transparent 34%);
  }
  .hero-content { align-self: end; padding: 152px var(--pad) 186px; }
  .hero h1 { font-size: clamp(60px, 20vw, 90px); line-height: .78; }
  .hero h1 span:last-child { margin-left: 28px; }
  .hero-lead { margin-top: 26px; font-size: 22px; }
  .hero-detail { font-size: 13px; }
  .offer-line { margin-top: 18px; gap: 10px; font-size: 9px; }
  .hero-action { margin-top: 22px; display: block; }
  .hero-action > p { margin-top: 10px; font-size: 10px; }
  .primary-cta { width: 100%; min-height: 58px; font-size: 11px; }
  .hero-facts { left: var(--pad); right: var(--pad); bottom: 74px; }
  .hero-facts div { min-width: 0; flex: 1; padding: 11px 9px; }
  .hero-facts strong { font-size: 19px; }
  .hero-facts span { font-size: 7px; }
  .visual-caption { right: var(--pad); bottom: 52px; font-size: 7px; }
  .hero-disclaimer { left: var(--pad); bottom: 18px; width: calc(100% - 40px); font-size: 7px; }
  .section-pad { padding-top: 78px; padding-bottom: 78px; }
  .section-intro { margin-bottom: 40px; }
  .section-intro > div { display: block; }
  .section-intro h2, .closing-cta h2 { font-size: clamp(44px, 14vw, 64px); }
  .section-intro > div > p { width: auto; margin-top: 20px; font-size: 13px; }
  .apartment-grid { grid-template-columns: 1fr; gap: 14px; }
  .apartment-card-featured { margin: 0; }
  .plan-wrap { height: 340px; }
  .card-body { padding: 20px; }
  .card-title { font-size: 29px; }
  .finish-block { margin-top: 62px; grid-template-columns: 1fr; }
  .finish-media { min-height: 290px; }
  .finish-copy { padding: 34px 24px; }
  .finish-copy h3 { font-size: 42px; }
  .amenity-grid { grid-template-columns: 1fr; grid-auto-rows: 285px; }
  .amenity-card-wide { grid-column: auto; }
  .amenity-card figcaption strong { font-size: 28px; }
  .tower-strip { grid-template-columns: 1fr; }
  .tower-strip span { border-left: 0; border-top: 1px solid var(--white-line); }
  .tower-strip span:first-child { border-top: 0; }
  .closing-cta { margin-top: 70px; padding-top: 44px; grid-template-columns: 1fr; gap: 12px; }
  .closing-action { padding-top: 18px; }
  .site-footer { grid-template-columns: 1fr; gap: 22px; }
  .site-footer p { justify-self: start; }
  .quiz-shell { width: 100%; height: 100%; max-height: none; min-height: 0; }
  .quiz-header { padding: 18px 20px 14px; }
  .quiz-step, .quiz-result { padding: 34px 20px 26px; }
  .quiz-step h2, .quiz-result h2 { font-size: 39px; }
  .quiz-subtitle, .quiz-result > p { margin-bottom: 22px; font-size: 13px; }
  .quiz-options-grid { grid-template-columns: 1fr; }
  .quiz-option { min-height: 59px; padding: 12px 15px; }
  .contact-fields { grid-template-columns: 1fr; }
  .quiz-footer { padding-inline: 20px; }
}

@media (max-width: 380px) {
  .hero-content { padding-bottom: 190px; }
  .hero h1 { font-size: 58px; }
  .hero-lead { font-size: 19px; }
  .hero-detail { max-width: 330px !important; }
  .plan-wrap { height: 300px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .hero-reveal { opacity: 1; transform: none; }
}
