/* Vasari — marketing site · shared styles
   Palette LOCKED: --green-primary #6B9E3A · --green-secondary #2D5016 · black · white */

:root {
  /* Brand palette — locked. Saturated greens are accent only. */
  --green-primary:   #6B9E3A;
  --green-secondary: #2D5016;

  /* Muted sage tints derived from the green family — dominant surfaces */
  --sage:       #76876A;
  --sage-mid:   #A0A892;
  --sage-pale:  #C9CAB6;
  --sage-soft:  #E5E6D9;
  --sage-deep:  #525A44;
  --stone:      #E5E6D9;

  /* Off-whites & inks */
  --paper:     #FFFFFF;
  --cream:     #EFEBD9;
  --limestone: #F4F1E2;
  --ink:       #1F2317;
  --ink-soft:  #3A3F30;
  --deep:      #1F2A14;

  /* === Tailwind / shadcn alias names (per Brand System V2.0) === */
  --color-accent:           var(--green-primary);    /* #6B9E3A — sparing accent only */
  --color-forest:           var(--green-secondary);  /* #2D5016 — dark surfaces */
  --color-brand-dominant:   var(--sage);             /* #76876A — dominant brand */
  --color-brand-deep:       var(--sage-deep);        /* #525A44 */
  --color-tint-sub:         var(--sage-mid);         /* #A0A892 */
  --color-tint-bg:          var(--sage-pale);        /* #C9CAB6 */
  --color-tint-cards:       var(--sage-soft);        /* #E5E6D9 */
  --color-ground:           var(--cream);            /* #EFEBD9 */
  --color-paper:            var(--paper);            /* #FFFFFF */
  --color-text-default:     var(--ink);              /* #1F2317 */
  --color-text-secondary:   var(--ink-soft);         /* #3A3F30 */
  --color-surface-dark:     var(--deep);             /* #1F2A14 */

  --rule:      rgba(31, 35, 23, 0.14);
  --rule-soft: rgba(31, 35, 23, 0.07);
  --rule-dark: rgba(239, 235, 217, 0.18);

  --display: "Sorts Mill Goudy", "Times New Roman", serif;
  --chisel:  "Sorts Mill Goudy", "Sorts Mill Goudy", serif;
  --body:    "Jost", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, monospace;

  --pad-x: clamp(20px, 4vw, 64px);
  --max-w: 1320px;
  --max-w-prose: 720px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--body); font-size: 15px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

.display    { font-family: var(--display); font-weight: 400; letter-spacing: -0.01em; }
.chisel     { font-family: var(--chisel);  font-weight: 400; }
.mono       { font-family: var(--mono);    font-weight: 400; }
.eyebrow    { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.7; }
.smallcaps  { font-family: var(--body); font-weight: 500; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }

.wrap        { max-width: var(--max-w); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.wrap--prose { max-width: var(--max-w-prose); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.section     { padding-top: clamp(72px, 10vw, 128px); padding-bottom: clamp(72px, 10vw, 128px); position: relative; }
.section--sm { padding-top: clamp(48px, 7vw, 88px); padding-bottom: clamp(48px, 7vw, 88px); }
.surf--paper     { background: var(--paper);     color: var(--ink); }
.surf--cream     { background: var(--cream);     color: var(--ink); }
.surf--limestone { background: var(--limestone); color: var(--ink); }
.surf--stone     { background: var(--stone);     color: var(--ink); }
.surf--sage-soft { background: var(--sage-soft); color: var(--ink); }
.surf--sage-pale { background: var(--sage-pale); color: var(--ink); }
.surf--sage      { background: var(--sage);      color: var(--cream); }
.surf--forest    { background: var(--green-secondary); color: var(--cream); }
.surf--deep      { background: var(--deep);      color: var(--cream); }
.surf--ink       { background: var(--ink);       color: var(--cream); }
.rule-top { border-top: 1px solid var(--rule); }

/* ========== Header ========== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 32px;
  padding: 20px var(--pad-x);
  color: var(--limestone);
  transition: background 220ms, color 220ms, padding 220ms, border-color 220ms;
  border-bottom: 1px solid transparent;
}
.header.is-solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink);
  border-bottom-color: var(--rule-soft);
  padding-top: 14px; padding-bottom: 14px;
}
.header.theme-light { color: var(--ink); }
.header-brand { display: inline-flex; align-items: center; gap: 16px; color: inherit; }
.header-brand .vmark { width: 32px; height: 34px; flex: none; display: block; }
.header-brand .vmark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.header-brand .word {
  font-family: var(--display); font-weight: 500; font-size: 22px; line-height: 1;
  letter-spacing: 0.06em; padding-left: 0; text-transform: uppercase;
}

/* ========== Hero media — muted sage gradients ========== */
.hero {
  background: var(--deep);
}
.hero-media {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 42, 20, 0.30) 0%, rgba(31, 42, 20, 0.15) 40%, rgba(31, 42, 20, 0.85) 100%),
    radial-gradient(ellipse at 60% 35%, rgba(160, 168, 146, 0.18) 0%, transparent 55%),
    repeating-linear-gradient(135deg, rgba(239, 235, 217, 0.04) 0 1px, transparent 1px 12px),
    linear-gradient(180deg, #4a553b 0%, #1f2a14 100%);
}

/* ========== Pattern band — V + sparkle monogram (per R2) ========== */
.pattern-band {
  height: 96px;
  background-color: var(--sage);
  background-image: url("/images/pattern-monogram.svg");
  background-size: 120px 120px;
  background-repeat: repeat;
}

/* ========== Image slot wrappers ========== */
.slot {
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(31, 35, 23, 0.05) 0 1px, transparent 1px 10px),
    linear-gradient(160deg, var(--sage-soft), var(--sage-pale));
  border: 1px solid var(--rule);
}
.slot.dark {
  background:
    repeating-linear-gradient(135deg, rgba(239, 235, 217, 0.05) 0 1px, transparent 1px 10px),
    linear-gradient(160deg, var(--sage-deep), var(--deep));
  color: var(--cream); border-color: var(--rule-dark);
}
.slot__tag {
  position: absolute; left: 16px; top: 14px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em;
  text-transform: uppercase; opacity: 0.65;
}
.slot__lbl {
  position: absolute; left: 16px; bottom: 14px;
  font-family: var(--display); font-style: italic;
  font-size: 17px; line-height: 1.25; opacity: 0.85; max-width: 80%;
}
.slot--full      { aspect-ratio: 16 / 10; }
.slot--tall      { aspect-ratio: 3 / 4; }
.slot--portrait  { aspect-ratio: 4 / 5; }
.slot--square    { aspect-ratio: 1 / 1; }
.slot--wide      { aspect-ratio: 21 / 9; }
.slot img { width: 100%; height: 100%; object-fit: cover; display: block; }
image-slot { display: block; width: 100%; height: 100%; }

/* ========== Full-bleed editorial image ========== */
.full-bleed { position: relative; width: 100%; overflow: hidden; }
.full-bleed img { width: 100%; height: 100%; object-fit: cover; display: block; }
.full-bleed-caption {
  position: absolute; left: var(--pad-x); bottom: 32px;
  color: var(--cream);
  font-family: var(--display); font-style: italic;
  font-size: clamp(22px, 2.6vw, 36px); line-height: 1.22;
  max-width: 32ch; margin: 0;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}
.full-bleed-tag {
  position: absolute; right: var(--pad-x); bottom: 36px;
  color: var(--cream);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.78;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

/* ========== Magazine grid — 3-photo break ========== */
.mag-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: 240px; gap: 12px;
}
.mag-grid > :nth-child(1) { grid-row: span 2; }
.mag-grid > :nth-child(2) { grid-column: 2 / span 2; }
@media (max-width: 760px) {
  .mag-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .mag-grid > :nth-child(1) { grid-row: span 1; }
  .mag-grid > :nth-child(2) { grid-column: auto; }
}

/* ========== Building cross-section (Residences) ========== */
.elevation {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.elevation-figure { position: relative; padding-top: 12px; }
.elevation-figure svg { width: 100%; height: auto; max-width: 460px; margin: 0 auto; display: block; }
.elevation-legend { padding-top: 24px; }
.legend-group { margin-bottom: 36px; }
.legend-group__title {
  border-top: 1px solid var(--sage);
  padding-top: 12px; margin-bottom: 4px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sage-deep);
}
.legend-row {
  display: grid; grid-template-columns: 110px 1fr auto;
  gap: 24px; align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}
.legend-row:last-child { border-bottom: 0; }
.legend-row .floors {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.06em; opacity: 0.78;
}
.legend-row .label {
  font-family: var(--body); font-size: 13px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.legend-row .meta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; opacity: 0.65;
}

/* ========== Residence row (photo + text, alternating) ========== */
.res-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: clamp(48px, 7vw, 80px) 0;
  border-bottom: 1px solid var(--rule);
}
.res-row:last-child { border-bottom: 0; }
.res-row.reverse > :first-child { order: 2; }
.res-row__body h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(36px, 4vw, 56px); line-height: 1.02;
  letter-spacing: -0.012em; margin: 14px 0 0;
}
.res-row__body h3 em { font-style: italic; }
.res-row__body .meta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.65;
}
.res-row__body p {
  font-size: 15px; line-height: 1.65; opacity: 0.85; max-width: 44ch;
  margin: 20px 0 0;
}
.res-row__body dl {
  margin: 28px 0 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--rule);
}
.res-row__body dl > div {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid var(--rule);
}
.res-row__body dt {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; opacity: 0.6;
}
.res-row__body dd {
  margin: 0; font-family: var(--display); font-size: 22px; line-height: 1.15;
}
.res-row__cta { margin-top: 32px; display: inline-flex; gap: 12px; align-items: center; }
@media (max-width: 760px) {
  .res-row { grid-template-columns: 1fr; }
  .res-row.reverse > :first-child { order: 0; }
}
.header-nav { display: flex; justify-content: center; gap: 40px; }
.header-nav a {
  font-family: var(--body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  position: relative; padding: 8px 0; opacity: 0.9;
}
.header-nav a:hover, .header-nav a.is-active { opacity: 1; }
.header-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left; transition: transform 220ms;
}
.header-nav a:hover::after, .header-nav a.is-active::after { transform: scaleX(1); }
.header-utils { display: flex; align-items: center; gap: 20px; }
.header-utils .text-us {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.85;
}
.header-utils .text-us span { opacity: 0.55; margin-right: 6px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid currentColor; padding: 10px 18px;
  font-family: var(--body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: transparent; color: inherit;
  transition: background 200ms, color 200ms, border-color 200ms;
}
.btn:hover { background: currentColor; color: var(--limestone); }
.surf--paper .btn:hover, .surf--limestone .btn:hover, .surf--stone .btn:hover, .header.is-solid .btn:hover { color: var(--paper); }
.btn--solid { background: var(--green-secondary); color: var(--limestone); border-color: var(--green-secondary); }
.btn--solid:hover { background: var(--ink); color: var(--limestone); border-color: var(--ink); }

.burger { display: none; padding: 10px; }
.burger-bars { width: 22px; height: 1px; background: currentColor; position: relative; }
.burger-bars::before, .burger-bars::after { content: ""; position: absolute; left: 0; width: 22px; height: 1px; background: currentColor; }
.burger-bars::before { top: -6px; }
.burger-bars::after  { top: 6px; }

.drawer {
  position: fixed; inset: 0; z-index: 90;
  background: var(--limestone); color: var(--ink);
  display: flex; flex-direction: column;
  padding: 24px var(--pad-x);
  transform: translateY(-100%); transition: transform 360ms cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
}
.drawer.is-open { transform: translateY(0); visibility: visible; }
.drawer-top { display: flex; justify-content: space-between; align-items: center; }
.drawer-close { font-size: 22px; padding: 8px; }
.drawer-nav { margin-top: 48px; display: flex; flex-direction: column; }
.drawer-nav a {
  font-family: var(--display); font-size: 40px; line-height: 1.15; padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}
.drawer-foot { margin-top: auto; display: flex; flex-direction: column; gap: 16px; padding-top: 32px; }
.drawer-foot .text-us { font-family: var(--mono); font-size: 13px; letter-spacing: 0.04em; }

/* ========== Hero ========== */
.hero {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; flex-direction: column;
  color: var(--cream); background: var(--deep);
}
.hero-media-img {
  position: absolute; inset: 0; z-index: 0;
}
.hero-media-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31, 42, 20, 0.35) 0%, rgba(31, 42, 20, 0.10) 35%, rgba(31, 42, 20, 0.90) 100%);
  pointer-events: none;
}
.hero-tag {
  position: absolute; top: 100px; right: var(--pad-x);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  opacity: 0.5; text-align: right;
}
.hero-inner {
  position: relative; z-index: 1; margin-top: auto;
  padding: 0 var(--pad-x) clamp(56px, 8vw, 96px);
}
.hero-headline {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(56px, 9vw, 156px); line-height: 0.92;
  letter-spacing: -0.018em; margin: 0; max-width: 14ch;
}
.hero-headline em { font-style: italic; }
.hero-meta {
  display: grid; grid-template-columns: 1fr auto;
  gap: clamp(24px, 4vw, 56px); align-items: end;
  padding-top: 36px;
  border-top: 1px solid rgba(246, 244, 237, 0.22);
}
.hero-meta .sub {
  font-family: var(--display); font-style: italic;
  font-size: clamp(20px, 1.9vw, 26px); line-height: 1.3;
  max-width: 38ch; margin: 0; opacity: 0.94;
}

/* ========== Building cross-section (Residences landing) ========== */
.elevation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
.elevation-figure {
  position: relative;
  display: flex; justify-content: center;
  min-height: 720px;
}
.elevation-figure svg { width: 100%; height: auto; max-height: 760px; }
.elevation-legend { padding-top: 24px; }
.legend-group { margin-bottom: 32px; }
.legend-group__title {
  display: flex; align-items: center; gap: 16px;
  border-top: 1px solid var(--sage);
  padding-top: 14px; margin-bottom: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--sage-deep);
}
.legend-row {
  display: grid; grid-template-columns: 120px 1fr auto;
  gap: 24px; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}
.legend-row:last-child { border-bottom: 0; }
.legend-row .floors {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.06em;
  opacity: 0.75;
}
.legend-row .label {
  font-family: var(--body); font-size: 14px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.legend-row .meta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; opacity: 0.65;
}

/* ========== Editorial breaks (large image sections) ========== */
.full-bleed { position: relative; width: 100%; aspect-ratio: 21 / 9; overflow: hidden; }
.full-bleed-caption {
  position: absolute; left: var(--pad-x); bottom: 28px;
  color: var(--cream);
  font-family: var(--display); font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px); line-height: 1.25;
  max-width: 32ch;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}
.full-bleed-tag {
  position: absolute; right: var(--pad-x); bottom: 28px;
  color: var(--cream);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.78;
}

/* ========== Magazine grid — 3 photo cells ========== */
.mag-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 14px;
}
.mag-grid > :nth-child(1) { grid-row: span 2; }
.mag-grid > :nth-child(2) { grid-column: 2 / span 2; }

/* ========== Residence row (photo + text) ========== */
.res-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: clamp(48px, 7vw, 80px) 0;
  border-bottom: 1px solid var(--rule);
}
.res-row:last-child { border-bottom: 0; }
.res-row.reverse > :first-child { order: 2; }
.res-row__body h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(36px, 4vw, 56px); line-height: 1.02;
  letter-spacing: -0.012em; margin: 14px 0 0;
}
.res-row__body .meta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.65;
}
.res-row__body p {
  font-size: 15px; line-height: 1.65; opacity: 0.85; max-width: 44ch;
  margin: 20px 0 0;
}
.res-row__body dl {
  margin: 28px 0 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--rule);
}
.res-row__body dl > div {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid var(--rule);
}
.res-row__body dt {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; opacity: 0.6;
}
.res-row__body dd {
  margin: 0; font-family: var(--display); font-size: 22px; line-height: 1.15;
}
.res-row__cta { margin-top: 32px; display: inline-flex; gap: 12px; align-items: center; }
.hero-meta .facts {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; line-height: 1.9; opacity: 0.78;
}
.hero-cta-row { display: flex; gap: 14px; align-items: center; }
.hero-scroll {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; opacity: 0.55;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll::after { content: ""; width: 1px; height: 36px; background: currentColor; }

/* ========== Section heads ========== */
.sec-head {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 64px); align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.sec-head__num { margin-bottom: 12px; }
.sec-head__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(36px, 5vw, 72px); line-height: 1.02;
  letter-spacing: -0.015em; margin: 0;
}
.sec-head__title em { font-style: italic; }
.sec-head__body {
  font-size: clamp(15px, 1.1vw, 17px); line-height: 1.6;
  max-width: 52ch; opacity: 0.84; margin: 0;
}

/* ========== Statement / pull ========== */
.statement {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(28px, 3.2vw, 48px); line-height: 1.16;
  letter-spacing: -0.008em; max-width: 22ch;
}
.statement em { font-style: italic; }

/* ========== Facts strip ========== */
.facts-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.facts-strip > div {
  padding: 36px 28px;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 8px;
}
.facts-strip > div:last-child { border-right: 0; }
.facts-strip .v {
  font-family: var(--display); font-size: clamp(36px, 4vw, 56px);
  line-height: 1; letter-spacing: -0.015em;
}
.facts-strip .k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.62; }

/* ========== Placeholder images ========== */
.ph {
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(20, 24, 12, 0.07) 0 1px, transparent 1px 9px),
    linear-gradient(180deg, var(--stone), var(--limestone));
  border: 1px solid var(--rule);
}
.ph.dark {
  background:
    repeating-linear-gradient(135deg, rgba(246, 244, 237, 0.06) 0 1px, transparent 1px 9px),
    linear-gradient(180deg, #2a3520 0%, #1a2c0c 100%);
  border-color: var(--rule-dark);
  color: var(--limestone);
}
.ph__lbl {
  position: absolute; left: 14px; bottom: 14px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); opacity: 0.55;
}
.ph.dark .ph__lbl { color: var(--limestone); opacity: 0.7; }
.ph__caption {
  position: absolute; right: 14px; bottom: 14px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.06em;
  color: var(--ink); opacity: 0.4;
}
.ph.dark .ph__caption { color: var(--limestone); opacity: 0.55; }

/* ========== Club tiles (4 amenities) ========== */
.club-tiles {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.club-tile {
  position: relative; aspect-ratio: 3 / 4;
  background: var(--ink); color: var(--limestone);
  overflow: hidden;
  display: flex; align-items: end;
}
.club-tile .tile-media {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 24, 12, 0.1) 0%, rgba(20, 24, 12, 0.92) 100%),
    repeating-linear-gradient(135deg, #2a3520 0 2px, #303b25 2px 5px);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.club-tile:hover .tile-media { transform: scale(1.05); }
.club-tile .tile-num {
  position: absolute; top: 18px; left: 22px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; opacity: 0.6;
}
.club-tile .tile-tag {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.45;
}
.club-tile .tile-body {
  position: relative; z-index: 1;
  padding: 28px 28px 30px; width: 100%;
}
.club-tile h3 { font-family: var(--display); font-weight: 400; font-size: clamp(28px, 2.6vw, 36px); line-height: 1; margin: 0 0 10px; }
.club-tile p { margin: 0; font-size: 13px; opacity: 0.78; max-width: 24ch; line-height: 1.55; }
.club-tile .tile-foot {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid rgba(246, 244, 237, 0.18);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7;
  display: flex; justify-content: space-between; align-items: center;
}
.club-tile .tile-foot .arrow { font-size: 16px; opacity: 0.8; }

/* ========== Pillars (Wellness-Optimized Living) ========== */
.pillars {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.pillar {
  padding: 36px 28px 32px;
  border-right: 1px solid var(--rule-dark);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 260px;
}
.pillar:last-child { border-right: 0; }
.pillar .icon-box {
  width: 44px; height: 44px;
  border: 1px solid currentColor; opacity: 0.7;
  display: grid; place-items: center;
  font-size: 24px; line-height: 1;       /* sizes Phosphor i elements */
}
.icon-box i { font-size: inherit; line-height: 1; display: block; }

.amen-cell .icon-box {
  width: 36px; height: 36px;
  border: 1px solid currentColor; opacity: 0.55;
  display: grid; place-items: center;
  font-size: 20px;
}
.pillar h3 { font-family: var(--display); font-weight: 400; font-size: 22px; line-height: 1.2; margin: 0; }
.pillar p { font-size: 13.5px; line-height: 1.6; opacity: 0.8; margin: 0; }
.pillar .num { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; opacity: 0.55; }

/* ========== Concierge strip ========== */
.concierge {
  display: grid; grid-template-columns: 1.2fr auto;
  gap: 32px; align-items: end;
}
.concierge h2 { font-family: var(--display); font-weight: 400; font-size: clamp(40px, 5vw, 80px); line-height: 1; margin: 0; }
.concierge h2 em { font-style: italic; }
.concierge p { margin: 16px 0 0; opacity: 0.85; max-width: 46ch; }
.concierge .phone { font-family: var(--display); font-size: clamp(28px, 3vw, 40px); line-height: 1; display: block; margin-bottom: 8px; }
.concierge .sub { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.7; }

/* ========== Press strip ========== */
.press {
  padding: 36px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.press .label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.55; }
.press .logos { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; opacity: 0.6; }
.press .logos span { font-family: var(--display); font-style: italic; font-size: 20px; }
.press .logos span.cap { font-family: var(--body); font-style: normal; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; font-size: 13px; }

/* ========== Footer ========== */
.footer { padding: clamp(64px, 9vw, 112px) var(--pad-x) 40px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 48px; margin-bottom: 48px;
}
.footer h4 { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 18px; opacity: 0.6; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; opacity: 0.82; }
.footer ul a:hover { opacity: 1; }
.footer-brand .word {
  font-family: var(--display); font-weight: 500; font-size: 38px;
  letter-spacing: 0.05em; padding-left: 0; text-transform: uppercase; line-height: 1;
}
.footer-brand .thesis { font-family: var(--display); font-style: italic; font-size: 18px; opacity: 0.85; margin-top: 18px; max-width: 26ch; }
.footer-brand .addr { font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em; opacity: 0.7; margin-top: 28px; line-height: 1.8; }
.footer-fine {
  padding-top: 28px; border-top: 1px solid var(--rule-dark);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.6;
}

/* ========== Two-col layouts ========== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); }
.two-col--13 { grid-template-columns: 1fr 1.4fr; }

/* ========== Building page — stack diagram ========== */
.stack {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.stack-diagram {
  border: 1px solid var(--rule-dark);
  padding: 32px;
  background: rgba(246, 244, 237, 0.04);
}
.stack-row {
  display: grid; grid-template-columns: 60px 1fr auto;
  gap: 24px; align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule-dark);
  cursor: pointer;
  transition: background 200ms, padding 200ms;
}
.stack-row:last-child { border-bottom: 0; }
.stack-row:hover, .stack-row.is-active {
  background: rgba(107, 158, 58, 0.08);
  padding-left: 16px;
}
.stack-row .lvl {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.06em;
  opacity: 0.7;
}
.stack-row.is-active .lvl { opacity: 1; color: var(--green-primary); }
.stack-row .label {
  font-family: var(--display); font-size: clamp(24px, 2.2vw, 32px); line-height: 1.1;
}
.stack-row .sub {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; opacity: 0.55; margin-top: 4px;
}
.stack-row .meta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; opacity: 0.7;
}
.stack-detail {
  position: sticky; top: 100px;
  padding: 36px 36px 40px;
  border: 1px solid var(--rule-dark);
  background: rgba(246, 244, 237, 0.03);
  min-height: 480px;
}
.stack-detail h3 {
  font-family: var(--display); font-weight: 400; font-size: 36px; line-height: 1.05; margin: 0 0 12px;
}
.stack-detail .stack-eyebrow { margin-bottom: 18px; }
.stack-detail .img { aspect-ratio: 5 / 3; margin-top: 24px; }
.stack-detail ul { margin: 16px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.stack-detail ul li { font-family: var(--body); font-size: 13.5px; line-height: 1.55; opacity: 0.86; padding-left: 18px; position: relative; }
.stack-detail ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 1px; background: currentColor; opacity: 0.6; }

/* ========== Sub-hero (Building page) ========== */
.subhero {
  position: relative; padding: clamp(140px, 14vw, 180px) var(--pad-x) clamp(64px, 8vw, 100px);
  background: var(--deep); color: var(--cream);
  overflow: hidden;
}
.subhero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 42, 20, 0.55) 0%, rgba(31, 42, 20, 0.40) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(160, 168, 146, 0.15) 0%, transparent 55%),
    repeating-linear-gradient(135deg, rgba(239, 235, 217, 0.04) 0 1px, transparent 1px 12px),
    linear-gradient(180deg, #4a553b 0%, #1f2a14 100%);
}
.subhero > .wrap { position: relative; z-index: 1; }
.subhero .crumb {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.6; margin-bottom: 24px; display: flex; gap: 10px; align-items: center;
}
.subhero .crumb span { opacity: 0.7; }
.subhero h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(56px, 8vw, 128px); line-height: 0.95; letter-spacing: -0.015em;
  margin: 0; max-width: 16ch;
}
.subhero h1 em { font-style: italic; }
.subhero .lede {
  font-family: var(--display); font-style: italic;
  font-size: clamp(20px, 2vw, 28px); line-height: 1.32;
  max-width: 44ch; margin: 32px 0 0; opacity: 0.92;
}

/* ========== legacy .pattern-band moved earlier (sage colorway) ========== */

/* ========== Cross-section illustration ========== */
.cross-section {
  width: 100%;
  background: rgba(246, 244, 237, 0.03);
  padding: 36px;
  border: 1px solid var(--rule-dark);
}

/* ========== Amenities grid (Building page) ========== */
.amen-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.amen-cell {
  background: var(--paper);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 200px;
}
.amen-cell h4 { font-family: var(--display); font-weight: 400; font-size: 22px; margin: 0; line-height: 1.15; }
.amen-cell p { font-size: 13.5px; line-height: 1.55; opacity: 0.78; margin: 0; }
.amen-cell .meta { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.55; margin-top: auto; }

/* ========== FAQ ========== */
.faq {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 72px);
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--rule); padding: 24px 0; cursor: pointer; }
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-item summary { list-style: none; display: flex; justify-content: space-between; align-items: baseline; gap: 24px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .q { font-family: var(--display); font-size: clamp(20px, 1.8vw, 24px); line-height: 1.25; }
.faq-item .toggle { font-family: var(--mono); font-size: 18px; opacity: 0.6; line-height: 1; }
.faq-item[open] .toggle::after { content: "−"; }
.faq-item:not([open]) .toggle::after { content: "+"; }
.faq-item .a { margin: 14px 0 0; font-size: 14px; line-height: 1.65; opacity: 0.82; max-width: 56ch; }

/* ========== Responsive ========== */
@media (max-width: 980px) {
  .header { grid-template-columns: 1fr auto; }
  .header-nav, .header-utils .text-us { display: none; }
  .header-utils { gap: 12px; }
  .burger { display: inline-flex; }
  .hero-meta { grid-template-columns: 1fr; gap: 24px; }
  .sec-head { grid-template-columns: 1fr; }
  .facts-strip { grid-template-columns: repeat(2, 1fr); }
  .facts-strip > div:nth-child(2) { border-right: 0; }
  .facts-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .club-tiles { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(2) { border-right: 0; }
  .pillar:nth-child(-n+2) { border-bottom: 1px solid var(--rule-dark); }
  .concierge { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .two-col, .two-col--13, .stack, .faq { grid-template-columns: 1fr; }
  .stack-detail { position: static; }
  .amen-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .facts-strip { grid-template-columns: 1fr; }
  .facts-strip > div { border-right: 0; border-bottom: 1px solid var(--rule); }
  .facts-strip > div:last-child { border-bottom: 0; }
  .club-tiles, .pillars, .amen-grid, .footer-grid { grid-template-columns: 1fr; }
  .pillar { border-right: 0; border-bottom: 1px solid var(--rule-dark); }
}

/* ========== Production additions ========== */
/* <picture> wrappers stay transparent to layout so existing img selectors
   (.hero-media-img img, .full-bleed img, .slot img) keep applying. */
picture { display: contents; }

/* Slim <image-slot> empty state — renders for the "render coming 2027"
   placeholders. The parent .slot already carries the striped sage fill and
   the .slot__tag / .slot__lbl captions, so this is just a quiet center mark. */
.image-slot-empty {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 30px; line-height: 1;
  color: currentColor; opacity: 0.32;
  pointer-events: none;
}
image-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }
