/* ──────────────────────────────────────────────
   TRU Realty — Project Page Styles
   Shared shell for individual project pages
   ────────────────────────────────────────────── */

/* ──────────────  PROJECT HERO (cinematic still)  ────────────── */
.proj-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: #000;
  color: var(--paper);
  isolation: isolate;
}
.proj-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.proj-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
  animation: hero-kenburns 18s var(--ease-out) infinite alternate;
  filter: saturate(0.92) contrast(1.05);
}
@keyframes hero-kenburns {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.14) translate3d(-1.2%, -1%, 0); }
}
.proj-hero__sepia {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: #704214;
  opacity: 0.22;
  mix-blend-mode: multiply;
}
.proj-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  /* Text is anchored bottom-left, so the scrim ramps in early on the lower
     half and lays a soft bed down the left edge. Keeps bright daylight
     renders (Spectrum Life) legible without flattening darker heroes. */
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.58) 0%,
      rgba(0,0,0,0.10) 26%,
      rgba(0,0,0,0.26) 50%,
      rgba(0,0,0,0.62) 74%,
      rgba(0,0,0,0.88) 100%),
    linear-gradient(90deg,
      rgba(0,0,0,0.60) 0%,
      rgba(0,0,0,0.26) 45%,
      rgba(0,0,0,0) 75%),
    radial-gradient(60% 60% at 30% 70%, rgba(0,0,0,0.40), transparent 60%);
}
.proj-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--gutter) clamp(48px, 9vh, 120px);
}
.proj-hero__inner {
  max-width: var(--container);
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.proj-hero__crumbs {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 250, 249, 0.7);
  margin: 0;
}
.proj-hero__crumbs a { color: rgba(250, 250, 249, 0.7); }
.proj-hero__crumbs a:hover { color: var(--gold-soft); }
.proj-hero__crumbs span[aria-hidden="true"] { opacity: 0.5; }
.proj-hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.6rem, 2rem + 7vw, 9rem);
  line-height: 0.94;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 0;
}
.proj-hero__title-em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
  font-size: clamp(1.4rem, 0.9rem + 1.6vw, 2rem);
  letter-spacing: 0.005em;
  line-height: 1.2;
  margin-top: var(--s-4);
  max-width: 28ch;
}
.proj-hero__meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s-5);
  padding-top: var(--s-6);
  margin-top: var(--s-3);
  border-top: 1px solid rgba(250, 250, 249, 0.18);
}
.proj-hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.proj-hero__meta-key {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 250, 249, 0.55);
}
.proj-hero__meta-val {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 0.95rem + 0.6vw, 1.5rem);
  color: var(--paper);
  letter-spacing: -0.005em;
}

@media (max-width: 820px) {
  .proj-hero__meta { grid-template-columns: 1fr 1fr; gap: var(--s-4); }
}
@media (max-width: 480px) {
  .proj-hero { min-height: 560px; }
  .proj-hero__meta { grid-template-columns: 1fr; }
  /* Tracking + gap are too wide to fit the trail on one line at 375px */
  .proj-hero__crumbs {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }
}

/* ──────────────  PROJECT HERO — right-aligned type (TRU Meadows)  ──────────────
   The render is a flat tower façade filling the left of the frame. Right-aligning
   the crumbs, title and sub keeps that type off the façade grid (over the softer
   sky/haze); a smaller display size trims the overlap. The meta row is left as
   the full-width four-up it already was.                                        */
.proj-hero--right .proj-hero__crumbs { justify-content: flex-end; }
.proj-hero--right .proj-hero__title {
  text-align: right;
  font-size: clamp(2.8rem, 1.6rem + 4.4vw, 6rem);
}
.proj-hero--right .proj-hero__title-em {
  max-width: none;         /* one line, tracking the right edge */
}
/* Base scrim beds the bottom-left for the other heroes; mirror it so the
   right-anchored title and sub sit on the dark side, not the bright haze. */
.proj-hero--right .proj-hero__scrim {
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.58) 0%,
      rgba(0,0,0,0.10) 26%,
      rgba(0,0,0,0.26) 50%,
      rgba(0,0,0,0.62) 74%,
      rgba(0,0,0,0.88) 100%),
    linear-gradient(270deg,
      rgba(0,0,0,0.60) 0%,
      rgba(0,0,0,0.26) 45%,
      rgba(0,0,0,0) 75%),
    radial-gradient(60% 60% at 70% 70%, rgba(0,0,0,0.40), transparent 60%);
}

/* ──────────────  PROJECT HERO — split variant  ──────────────
   Text on a dark panel at left, elevation held clean at right.
   Used where the render is a flat tower elevation and overlaid
   type fights the façade grid (TRU Meadows).                    */
.proj-hero--split {
  height: auto;
  min-height: 100svh;
  background: var(--ink);
}
.proj-hero__split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  min-height: 100svh;
  align-items: stretch;
}
.proj-hero__panel {
  display: flex;
  align-items: center;
  padding:
    clamp(120px, 16vh, 190px)
    clamp(32px, 4.5vw, 80px)
    clamp(56px, 9vh, 104px)
    var(--gutter);
  background:
    radial-gradient(120% 90% at 0% 50%, rgba(24, 118, 155, 0.14), transparent 62%),
    var(--ink);
}
.proj-hero--split .proj-hero__inner {
  margin-inline: 0;
  max-width: 640px;
}
/* Narrower column, so pull the display size back a step */
.proj-hero--split .proj-hero__title {
  font-size: clamp(2.9rem, 1.5rem + 4.4vw, 5.6rem);
}
.proj-hero--split .proj-hero__title-em {
  max-width: 24ch;
}
.proj-hero--split .proj-hero__meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-5) var(--s-6);
}

.proj-hero__figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink-2);
}
.proj-hero__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.04);
}
/* Feathers the render into the dark panel so the seam reads as one image,
   and lays a scrim under the fixed header, which otherwise sits on bright sky */
.proj-hero__figure-blend {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(12, 10, 9, 0.66) 0%,
      rgba(12, 10, 9, 0.30) 12%,
      rgba(12, 10, 9, 0) 30%),
    linear-gradient(90deg,
      var(--ink) 0%,
      rgba(12, 10, 9, 0.58) 9%,
      rgba(12, 10, 9, 0.22) 24%,
      rgba(12, 10, 9, 0) 48%);
}

@media (max-width: 900px) {
  .proj-hero--split { min-height: 0; }
  .proj-hero__split {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  /* Elevation on top, text beneath it, so the render is never crowded */
  .proj-hero__figure {
    order: -1;
    height: clamp(260px, 46vh, 420px);
  }
  .proj-hero__figure-blend {
    background: linear-gradient(180deg,
      rgba(12, 10, 9, 0.45) 0%,
      rgba(12, 10, 9, 0) 30%,
      rgba(12, 10, 9, 0) 70%,
      var(--ink) 100%);
  }
  .proj-hero__panel {
    padding: clamp(32px, 6vh, 56px) var(--gutter) clamp(40px, 8vh, 72px);
  }
  .proj-hero--split .proj-hero__inner { max-width: none; }
}
@media (max-width: 480px) {
  .proj-hero--split .proj-hero__meta { grid-template-columns: 1fr 1fr; }
}

/* ──────────────  INTRO  (positioning twin)  ────────────── */
.proj-intro {
  position: relative;
  z-index: 1;
  background: var(--paper);
  padding: var(--s-9) 0 var(--s-9);
}
.proj-intro__split {
  display: grid;
  grid-template-columns: 0.85fr 1.25fr;
  gap: var(--s-8);
  align-items: center;
}
.proj-intro__text { max-width: 56ch; }
.proj-intro .h2 {
  max-width: 22ch;
  margin-block: var(--s-3) var(--s-6);
}
.proj-intro__lede {
  max-width: 62ch;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--mute);
  font-weight: 400;
  margin-bottom: var(--s-4);
}
.proj-intro__lede em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink);
  font-weight: 500;
}
.proj-intro__media {
  position: relative;
  margin: 0;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-2);
}
.proj-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.proj-intro__emblem {
  position: absolute;
  bottom: -6%;
  left: 12%;
  width: clamp(120px, 12vw, 180px);
  transform: rotate(-6deg);
  z-index: 5;
  pointer-events: none;
  filter:
    drop-shadow(0 18px 24px rgba(12, 10, 9, 0.35))
    drop-shadow(0 6px 10px rgba(12, 10, 9, 0.25));
}
@media (max-width: 900px) {
  .proj-intro__split { grid-template-columns: 1fr; gap: var(--s-7); }
  .proj-intro__media { aspect-ratio: 4 / 3; }
  .proj-intro__emblem { left: auto; right: 6%; width: 110px; }
}

/* ──────────────  STAT BANNER override (project pages use 4 stats)  ────────────── */
/* home.css defaults to 3 columns for the homepage. Project pages have 4 stats. */
.stat-banner__grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 820px) {
  .stat-banner__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .stat-banner__grid { grid-template-columns: 1fr; }
}

/* ──────────────  THE SETTING (full-bleed split)  ────────────── */
.setting {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.setting__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 78vh;
}
.setting__media {
  position: relative;
  overflow: hidden;
  background: #0c0a09;
}
.setting__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.04);
}
.setting__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.0) 30%, rgba(12,10,9,0.55) 100%);
}
.setting__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 110px) clamp(28px, 6vw, 96px);
  background: var(--ink);
}
.setting__text .eyebrow { color: rgba(250, 250, 249, 0.6); }
.setting__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 1.3rem + 2.4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin: var(--s-3) 0 var(--s-5);
  max-width: 22ch;
}
.setting__title em { font-style: italic; color: var(--gold-soft); font-weight: 400; }
.setting__lede {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(250, 250, 249, 0.78);
  max-width: 58ch;
  margin-bottom: var(--s-4);
}
.setting__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  margin-top: var(--s-6);
  padding-top: var(--s-6);
  border-top: 1px solid var(--line-light);
}
.setting__feature {
  display: flex;
  align-items: center;
  gap: 14px;
}
.setting__feature-icon {
  display: block;
  width: 24px;
  height: 24px;
  color: var(--gold-soft);
  stroke-width: 1.6;
  flex-shrink: 0;
}
.setting__feature-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--paper);
  letter-spacing: -0.005em;
}
@media (max-width: 900px) {
  .setting__grid { grid-template-columns: 1fr; }
  .setting__media { min-height: 50vh; }
}

/* ──────────────  CONFIGURATIONS  ────────────── */
.configs {
  background: var(--paper-2);
  padding: var(--s-9) 0;
}
.configs__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-3);
  margin-bottom: var(--s-7);
}
.configs__head .h2 {
  margin: var(--s-3) 0 0;
  max-width: 24ch;
}
.configs__lede {
  max-width: 60ch;
  color: var(--mute);
  font-size: 15px;
  line-height: 1.7;
  margin-top: var(--s-3);
}
.configs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
/* Projects that offer only two configurations, so the pair fills the row. */
.configs__grid--2 { grid-template-columns: repeat(2, 1fr); }
.config-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  padding: var(--s-7) var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: transform var(--d-base) var(--ease-out), box-shadow var(--d-base) var(--ease-out), border-color var(--d-base) var(--ease-out);
}
.config-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: rgba(12, 10, 9, 0.18);
}
.config-card__index {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute-2);
}
.config-card__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 1.6vw, 2.8rem);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.config-card__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  margin-top: -4px;
}
.config-card__sizes {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
}
.config-card__desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--mute);
}
.config-card__media {
  margin: calc(-1 * var(--s-7)) calc(-1 * var(--s-6)) 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.config-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--d-cinema) var(--ease-out);
}
.config-card:hover .config-card__media img { transform: scale(1.04); }
@media (max-width: 900px) {
  .configs__grid { grid-template-columns: 1fr; }
}

/* ──────────────  PULL QUOTE (co-creation)  ────────────── */
.pull-quote {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(96px, 12vh, 160px) 0;
  overflow: hidden;
  isolation: isolate;
}
.pull-quote__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform var(--d-slow) var(--ease-out);
  will-change: transform;
}
/* Scroll-revealed (see .banner__scrim in home.css for the rationale).
   Base value is the no-JS fallback; .js starts opaque, .is-in reveals. */
.pull-quote__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(12, 10, 9, 0.7);
  transition: background-color var(--d-slow) var(--ease-out);
}
.js .pull-quote__scrim { background: rgba(12, 10, 9, 1); }
.js .pull-quote.is-in .pull-quote__scrim { background: rgba(12, 10, 9, 0.62); }
.js .pull-quote.is-in .pull-quote__bg { transform: scale(1); }
.js .pull-quote.is-in::before { opacity: 0.45; }
.pull-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(60% 60% at 80% 10%, rgba(127, 192, 216, 0.10), transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(24, 118, 155, 0.16), transparent 60%);
  pointer-events: none;
  transition: opacity var(--d-base) var(--ease-out);
}
@media (hover: hover) {
  .pull-quote:hover .pull-quote__scrim {
    background: rgba(12, 10, 9, 0.62);
  }
  .pull-quote:hover .pull-quote__bg {
    transform: scale(1);
  }
  .pull-quote:hover::before { opacity: 0.45; }
}
@media (hover: none) {
  html:not(.js) .pull-quote__scrim { background: rgba(12, 10, 9, 0.7); }
  .pull-quote__bg { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .pull-quote__bg,
  .pull-quote__scrim,
  .pull-quote::before { transition: none; }
}
.pull-quote__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin-inline: auto;
  text-align: center;
  padding: 0 var(--gutter);
}
.pull-quote__mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 6rem;
  line-height: 1;
  color: var(--gold-soft);
  opacity: 0.5;
  display: block;
  margin-bottom: -12px;
}
.pull-quote__body {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 1rem + 1.8vw, 2.6rem);
  line-height: 1.4;
  color: var(--paper);
  letter-spacing: -0.005em;
  margin: 0;
}
.pull-quote__body em {
  font-style: italic;
  color: var(--gold-soft);
}
.pull-quote__attr {
  margin-top: var(--s-6);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 250, 249, 0.6);
}

/* ──────────────  AMENITIES  ────────────── */
.amenities {
  background: var(--paper);
  padding: var(--s-9) 0 var(--s-9);
}
.amenities__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  margin-bottom: var(--s-7);
  align-items: end;
}
.amenities__head .h2 { max-width: 22ch; margin: var(--s-3) 0 0; }
.amenities__lede {
  max-width: 56ch;
  color: var(--mute);
  font-size: 15px;
  line-height: 1.7;
}
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.amenities__grid--3 { grid-template-columns: repeat(3, 1fr); }
.amenity {
  background: var(--paper);
  padding: var(--s-6) var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  min-height: 180px;
  transition: background var(--d-base) var(--ease-out);
}
.amenity:hover { background: var(--paper-2); }
.amenity__icon {
  display: block;
  width: 26px;
  height: 26px;
  color: var(--gold);
  stroke-width: 1.6;
  transition: color var(--d-base) var(--ease-out), transform var(--d-base) var(--ease-out);
}
.amenity:hover .amenity__icon {
  color: var(--ink);
  transform: translateY(-1px);
}
.amenity__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}
.amenity__desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--mute);
  margin: 0;
  margin-top: auto;
}
@media (max-width: 1100px) {
  .amenities__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .amenities__head { grid-template-columns: 1fr; gap: var(--s-4); }
  .amenities__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .amenities__grid { grid-template-columns: 1fr; }
}

/* ──────────────  SUSTAINABILITY (banded list)  ────────────── */
.sustain {
  background: var(--ink-2);
  color: var(--paper);
  padding: var(--s-9) 0;
}
.sustain__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: end;
  margin-bottom: var(--s-7);
}
.sustain__intro .eyebrow { color: rgba(250, 250, 249, 0.55); }
.sustain__intro .h2 {
  color: var(--paper);
  max-width: 24ch;
  margin: var(--s-3) 0 0;
}
.sustain__lede {
  max-width: 56ch;
  color: rgba(250, 250, 249, 0.72);
  font-size: 15px;
  line-height: 1.75;
}
.sustain__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-light);
}
.sustain-row {
  display: grid;
  grid-template-columns: 80px 1.2fr 2fr;
  gap: var(--s-6);
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--line-light);
  align-items: baseline;
}
.sustain-row__idx {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
}
.sustain-row__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1rem + 0.7vw, 1.7rem);
  line-height: 1.15;
  color: var(--paper);
  margin: 0;
  font-weight: 500;
}
.sustain-row__desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(250, 250, 249, 0.78);
  margin: 0;
}
@media (max-width: 820px) {
  .sustain__intro { grid-template-columns: 1fr; }
  .sustain-row { grid-template-columns: 1fr; gap: var(--s-3); padding: var(--s-5) 0; }
}

/* ──────────────  CONNECTIVITY (sticky left + scrolling right)  ────────────── */
.connect {
  background: var(--paper);
  padding: var(--s-9) 0;
}
.connect__split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 7vw, 128px);
  align-items: start;
}
.connect__text {
  position: sticky;
  top: 96px;
  align-self: start;
  padding-block: var(--s-3) var(--s-5);
}
.connect__text .h2 { max-width: 22ch; margin: var(--s-3) 0 var(--s-5); }
.connect__lede {
  font-size: 15px;
  line-height: 1.75;
  color: var(--mute);
  max-width: 56ch;
}
.connect__map {
  margin-top: var(--s-6);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.connect__map iframe {
  display: block;
  width: 100%;
  height: 320px;
}
.connect__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.connect-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-4);
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.connect-row__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
}
.connect-row__dist {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 900px) {
  .connect__split { grid-template-columns: 1fr; gap: var(--s-7); }
  .connect__text { position: static; top: auto; padding-block: 0; }
}

/* ──────────────  GALLERY STRIP (horizontal marquee)  ────────────── */
.gallery-strip {
  background: var(--ink);
  padding: var(--s-7) 0;
  position: relative;
}
.gallery-strip__bar {
  max-width: var(--container);
  margin: 0 auto var(--s-5);
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}
.gallery-strip__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 250, 249, 0.65);
  margin: 0;
}
.gallery-strip__nav {
  display: inline-flex;
  gap: 10px;
}
.gallery-strip__arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(250, 250, 249, 0.25);
  background: rgba(250, 250, 249, 0.04);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--d-base) var(--ease-out),
              border-color var(--d-base) var(--ease-out),
              color var(--d-base) var(--ease-out),
              transform var(--d-base) var(--ease-out);
}
.gallery-strip__arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--paper);
  transform: translateY(-1px);
}
.gallery-strip__arrow:active { transform: translateY(0); }
.gallery-strip__arrow svg { display: block; }

.gallery-strip__viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
}
.gallery-strip__viewport::-webkit-scrollbar { display: none; }

.gallery-strip__track {
  display: inline-flex;
  gap: 14px;
  padding: 0 14px;
  height: clamp(360px, 60vh, 560px);
  white-space: nowrap;
}
.gallery-strip__cell {
  margin: 0;
  flex: 0 0 auto;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  background: #0c0a09;
  cursor: zoom-in;
}
.gallery-strip__cell img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: cover;
  pointer-events: none;
  transition: transform var(--d-cinema) var(--ease-out);
  filter: saturate(0.95) contrast(1.05);
}
.gallery-strip__cell:hover img { transform: scale(1.04); }
@media (prefers-reduced-motion: reduce) {
  .gallery-strip__cell img { transition: none; }
}
@media (max-width: 820px) {
  .gallery-strip__track { height: clamp(280px, 50vh, 420px); }
}

/* ──────────────  IMAGE LIGHTBOX  ────────────── */
.img-lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(12, 10, 9, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 5vw, 80px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms var(--ease-out);
}
.img-lightbox[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}
.img-lightbox__frame {
  margin: 0;
  max-width: 90vw;
  max-height: 86vh;
  transform: scale(0.96);
  transition: transform 480ms var(--ease-emph);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  background: #0c0a09;
  border-radius: 4px;
  overflow: hidden;
}
.img-lightbox[data-open="true"] .img-lightbox__frame { transform: scale(1); }
.img-lightbox__frame img {
  display: block;
  max-width: 90vw;
  max-height: 86vh;
  width: auto;
  height: auto;
}
.img-lightbox__btn {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(250, 250, 249, 0.08);
  border: 1px solid rgba(250, 250, 249, 0.2);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--d-fast) var(--ease-out),
              transform var(--d-fast) var(--ease-out),
              border-color var(--d-fast) var(--ease-out);
}
.img-lightbox__btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.06);
}
.img-lightbox__btn--close {
  top: clamp(16px, 3vw, 32px);
  right: clamp(16px, 3vw, 32px);
}
.img-lightbox__btn--prev {
  left: clamp(16px, 3vw, 32px);
  top: 50%;
  transform: translateY(-50%);
}
.img-lightbox__btn--prev:hover { transform: translateY(-50%) scale(1.06); }
.img-lightbox__btn--next {
  right: clamp(16px, 3vw, 32px);
  top: 50%;
  transform: translateY(-50%);
}
.img-lightbox__btn--next:hover { transform: translateY(-50%) scale(1.06); }

/* ──────────────  RERA / DISCLOSURE STRIP  ────────────── */
.disclosure {
  background: var(--paper-2);
  padding: var(--s-7) 0;
  border-top: 1px solid var(--line);
}
.disclosure__inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5) var(--s-8);
  align-items: baseline;
}
.disclosure__title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute-2);
  margin: 0;
}
.disclosure__items {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-6);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--mute);
}
.disclosure__items strong { color: var(--ink); font-weight: 500; }

/* ──────────────  CTA POSTER (project)  ────────────── */
.proj-cta {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 12vh, 140px) 0 clamp(80px, 12vh, 140px);
  overflow: hidden;
  isolation: isolate;
}
.proj-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform var(--d-slow) var(--ease-out);
  will-change: transform;
}
/* Scroll-revealed (see .banner__scrim in home.css for the rationale).
   Base value is the no-JS fallback; .js starts opaque, .is-in reveals. */
.proj-cta__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(12, 10, 9, 0.7);
  transition: background-color var(--d-slow) var(--ease-out);
}
.js .proj-cta__scrim { background: rgba(12, 10, 9, 1); }
.js .proj-cta.is-in .proj-cta__scrim { background: rgba(12, 10, 9, 0.62); }
.js .proj-cta.is-in .proj-cta__bg { transform: scale(1); }
.js .proj-cta.is-in::before { opacity: 0.45; }
.proj-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 60% at 80% 30%, rgba(127, 192, 216, 0.18), transparent 60%),
    radial-gradient(40% 50% at 10% 90%, rgba(24, 118, 155, 0.18), transparent 60%);
  z-index: 1;
  pointer-events: none;
  transition: opacity var(--d-base) var(--ease-out);
}
@media (hover: hover) {
  .proj-cta:hover .proj-cta__scrim {
    background: rgba(12, 10, 9, 0.62);
  }
  .proj-cta:hover .proj-cta__bg {
    transform: scale(1);
  }
  .proj-cta:hover::before { opacity: 0.45; }
}
@media (hover: none) {
  html:not(.js) .proj-cta__scrim { background: rgba(12, 10, 9, 0.7); }
  .proj-cta__bg { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .proj-cta__bg,
  .proj-cta__scrim,
  .proj-cta::before { transition: none; }
}
.proj-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-5);
}
.proj-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 1.6rem + 3vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--paper);
  font-weight: 500;
  margin: 0;
  max-width: 22ch;
}
.proj-cta__title em { font-style: italic; color: var(--gold-soft); font-weight: 400; }
.proj-cta__sub {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: rgba(250, 250, 249, 0.7);
  margin-top: var(--s-3);
}
.proj-cta__sub a { color: var(--gold-soft); border-bottom: 1px solid rgba(127, 192, 216, 0.45); padding-bottom: 1px; }
.proj-cta__sub a:hover { color: var(--paper); border-color: var(--paper); }
.proj-cta__actions {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--s-3);
}

/* ──────────────  PROJECT NAV (sister projects)  ────────────── */
.proj-nav {
  background: var(--paper);
  padding: var(--s-8) 0 var(--s-9);
  border-top: 1px solid var(--line);
}
.proj-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  margin-bottom: var(--s-6);
}
.proj-nav__head .h2 { margin: 0; font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.4rem); }
.proj-nav__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.proj-nav__card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  isolation: isolate;
  background: var(--ink);
  color: var(--paper);
}
.proj-nav__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform var(--d-slow) var(--ease-out);
}
.proj-nav__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(12,10,9,0.85) 100%);
}
.proj-nav__label {
  position: absolute;
  z-index: 2;
  inset: auto 0 0 0;
  padding: var(--s-5) var(--s-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
}
.proj-nav__name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1rem + 1vw, 2rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--paper);
  margin: 0;
}
.proj-nav__arrow {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  transition: transform var(--d-base) var(--ease-out);
}
.proj-nav__card:hover .proj-nav__bg { transform: scale(1); }
.proj-nav__card:hover .proj-nav__arrow { transform: translateX(6px); }
@media (max-width: 820px) {
  .proj-nav__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .proj-nav__grid { grid-template-columns: 1fr; }
}

/* ──────────────  HALLMARKS GRID (Spectrum signature 8)  ────────────── */
.hallmarks {
  background: var(--paper);
  padding: var(--s-9) 0;
}
.hallmarks__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: end;
  margin-bottom: var(--s-7);
}
.hallmarks__head .h2 { max-width: 22ch; margin: var(--s-3) 0 0; }
.hallmarks__lede {
  max-width: 56ch;
  color: var(--mute);
  font-size: 15px;
  line-height: 1.7;
}
.hallmarks__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.hallmark {
  background: var(--paper);
  padding: var(--s-6) var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  min-height: 200px;
  transition: background var(--d-base) var(--ease-out);
}
.hallmark:hover { background: var(--paper-2); }
.hallmark__icon {
  display: block;
  width: 28px;
  height: 28px;
  color: var(--gold);
  stroke-width: 1.6;
  transition: color var(--d-base) var(--ease-out), transform var(--d-base) var(--ease-out);
}
.hallmark:hover .hallmark__icon {
  color: var(--ink);
  transform: translateY(-1px);
}
.hallmark__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}
.hallmark__name em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  display: block;
  font-size: 0.85em;
  margin-top: 4px;
}
.hallmark__desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--mute);
  margin: 0;
  margin-top: auto;
}
@media (max-width: 1100px) {
  .hallmarks__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .hallmarks__head { grid-template-columns: 1fr; gap: var(--s-4); }
}
@media (max-width: 520px) {
  .hallmarks__grid { grid-template-columns: 1fr; }
}

/* ──────────────  SPECIFICATIONS  ────────────── */
.specs {
  background: var(--paper-2);
  padding: var(--s-9) 0;
}
.specs__head {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-bottom: var(--s-7);
  max-width: 60ch;
}
.specs__head .h2 { margin: var(--s-3) 0 0; max-width: 22ch; }
.specs__lede {
  color: var(--mute);
  font-size: 15px;
  line-height: 1.7;
  margin-top: var(--s-3);
}
.specs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.spec-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: var(--s-6) var(--s-5);
}
.spec-card__icon {
  display: block;
  width: 24px;
  height: 24px;
  color: var(--gold);
  stroke-width: 1.6;
  margin-bottom: var(--s-3);
}
.spec-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--ink);
  margin: 0 0 var(--s-4);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--line);
}
.spec-card ul {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.spec-card li {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--mute);
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  align-items: baseline;
}
.spec-card li::before {
  content: "·";
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 0.8;
  text-align: center;
}
@media (max-width: 900px) {
  .specs__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .specs__grid { grid-template-columns: 1fr; }
}

/* ──────────────  INVESTMENT (banded list, light)  ────────────── */
.invest {
  background: var(--paper);
  padding: var(--s-9) 0;
}
.invest__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: end;
  margin-bottom: var(--s-7);
}
.invest__intro .h2 { max-width: 24ch; margin: var(--s-3) 0 0; }
.invest__lede {
  max-width: 56ch;
  color: var(--mute);
  font-size: 15px;
  line-height: 1.75;
}
.invest__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.invest-row {
  display: grid;
  grid-template-columns: 100px 1.2fr 2fr;
  gap: var(--s-6);
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.invest-row__idx {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.invest-row__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1rem + 0.7vw, 1.7rem);
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
  font-weight: 500;
}
.invest-row__desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--mute);
  margin: 0;
}
@media (max-width: 820px) {
  .invest__intro { grid-template-columns: 1fr; }
  .invest-row { grid-template-columns: 1fr; gap: var(--s-3); padding: var(--s-5) 0; }
}

/* ──────────────  HERO TITLE — fame variant (smaller display)  ────────────── */
.proj-hero__title--fame {
  font-size: clamp(3rem, 1.8rem + 5vw, 7rem);
}

/* ──────────────  DESIGN-TEAM NOTE (half + half, image left)  ────────────── */
.design-note {
  position: relative;
  z-index: 1;
  background: var(--paper-2);
  padding: var(--s-9) 0;
}
.design-note__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.design-note__media {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-2);
}
.design-note__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.design-note__text { max-width: 56ch; }
.design-note__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 1.3rem + 1.8vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: var(--s-3) 0 var(--s-5);
  max-width: 18ch;
}
.design-note__body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-3);
  margin: 0 0 var(--s-4);
}
.design-note__body em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-size: 1.05em;
}
.design-note__sign {
  margin: var(--s-6) 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--ink-2);
}
.design-note__disclaimer {
  margin: var(--s-5) 0 0;
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
  font-family: var(--font-body);
  font-style: italic;
  font-size: 12px;
  line-height: 1.5;
  color: var(--mute-2);
}
@media (max-width: 900px) {
  .design-note__split { grid-template-columns: 1fr; gap: var(--s-6); }
  .design-note__media { aspect-ratio: 4 / 3; }
}

/* ──────────────  DESIGN RATIONALE (numbered decisions)  ────────────── */
.rationale {
  position: relative;
  z-index: 1;
  background: var(--paper);
  padding: var(--s-10) 0 var(--s-9);
}
.rationale__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(48px, 7vw, 128px);
  align-items: start;
}
.rationale__head {
  position: sticky;
  top: 96px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.rationale__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 1.3rem + 2.4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: var(--s-3) 0 0;
  max-width: 14ch;
}
.rationale__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  display: block;
}
.rationale__lede {
  max-width: 46ch;
  font-size: 15px;
  line-height: 1.75;
  color: var(--mute);
  margin-top: var(--s-3);
}
.rationale__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.rationale__item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: var(--s-5);
  align-items: flex-start;
  padding: var(--s-6) 0;
  border-top: 1px solid var(--line);
}
.rationale__item:last-child { border-bottom: 1px solid var(--line); }
.rationale__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(24, 118, 155, 0.10);
  color: var(--gold);
  flex-shrink: 0;
  transition: background var(--d-base) var(--ease-out), color var(--d-base) var(--ease-out);
}
.rationale__icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.6;
  display: block;
}
.rationale__item:hover .rationale__icon {
  background: var(--gold);
  color: var(--paper);
}
.rationale__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 6px;
}
.rationale__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.2rem, 1rem + 0.5vw, 1.5rem);
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
}
.rationale__desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--mute);
  margin: 0;
  max-width: 54ch;
}
.rationale__idx {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  padding-top: 14px;
}
.rationale__note {
  grid-column: 1 / -1;
  margin: var(--s-7) 0 0;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 12px;
  line-height: 1.5;
  color: var(--mute-2);
}
@media (max-width: 900px) {
  .rationale__inner { grid-template-columns: 1fr; gap: var(--s-7); }
  .rationale__head { position: static; top: auto; }
  .rationale__item { grid-template-columns: 48px 1fr; gap: var(--s-4); padding: var(--s-5) 0; }
  .rationale__icon { width: 48px; height: 48px; }
  .rationale__icon svg { width: 24px; height: 24px; }
  .rationale__idx { grid-column: 2 / 3; padding-top: 0; }
}

/* ──────────────  MOBILE READING COMFORT  ──────────────
   Body copy bottomed out between 13.5px and 15px on phones, which reads
   dense and undercuts the brief that luxury brands should breathe. Lift the
   floor to 15–16px and open the leading. Desktop type is unchanged.

   Placed at the end of the file deliberately: these components are defined
   further up, so an earlier block would lose on source order. */
@media (max-width: 640px) {
  .proj-intro__lede,
  .setting__lede,
  .configs__lede,
  .amenities__lede,
  .connect__lede,
  .rationale__lede,
  .specs__lede,
  .hallmarks__lede,
  .sustain__lede,
  .invest__lede {
    font-size: 1rem;
    line-height: 1.75;
  }

  .rationale__desc,
  .amenity__desc,
  .hallmark__desc,
  .sustain-row__desc,
  .invest-row__desc,
  .spec-card__desc {
    font-size: 0.9375rem;
    line-height: 1.7;
  }

  .design-note__body { line-height: 1.8; }

  /* A little more air between stacked blocks now the copy is larger */
  .proj-intro__lede + .proj-intro__lede,
  .design-note__body + .design-note__body {
    margin-top: var(--s-4);
  }
}
