/* ============ ScaleUp — cream edition design tokens ============ */
:root {
  --bg: #F5EFE2;
  --panel: #FFFCF4;
  --ink: #241D13;
  --text: #241D13;
  --text-2: #2C251B;
  --muted: rgba(36, 29, 19, 0.58);
  --line: rgba(36, 29, 19, 0.14);
  --red: #B83232;
  --red-hover: #A02A2A;
  --green: #3E8E63;
  --amber: #B8941F;
  --leasing-text: #B23B3B;
  --light-bg: #FBFAF7;
  --light-text: #1A1714;
  --light-muted: #8A857E;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Archivo', sans-serif;
  /* blueprint grid runs under the whole site; scrolls with content so the
     browser never repaints it (fixed attachment forces per-frame repaints) */
  background:
    linear-gradient(rgba(36,29,19,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36,29,19,0.045) 1px, transparent 1px),
    var(--bg);
  background-size: 64px 64px, 64px 64px, auto;
  color: var(--text-2);
  overflow-x: hidden;
}
img { display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

@keyframes su-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes su-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}
@keyframes t-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============ shared ============ */
.su-eyebrow-row { display: flex; align-items: center; gap: 9px; margin-bottom: 20px; }
.su-eyebrow-row.su-center { justify-content: center; }
.su-dot { display: block; width: 8px; height: 8px; border-radius: 50%; }
.su-dot-red { background: var(--red); }
.su-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.24em; color: rgba(36,29,19,0.55); }
.su-eyebrow-dark { color: rgba(26,23,20,0.55); }
.su-eyebrow-sm { font-size: 12px; font-weight: 600; letter-spacing: 0.22em; color: rgba(247,243,236,0.55); }
.su-arr { font-size: 16px; }

.su-btn-fill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 28px; background: var(--red); border: none; border-radius: 100px;
  font-size: 15px; font-weight: 600; color: #FBF3F0; letter-spacing: 0.01em;
  box-shadow: 0 10px 28px rgba(184,50,50,0.28); cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.su-btn-fill:hover { background: var(--red-hover); transform: translateY(-1px); }
.su-btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 22px; border: 1px solid rgba(36,29,19,0.3); border-radius: 100px;
  font-size: 14px; font-weight: 500; color: var(--ink); letter-spacing: 0.01em;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.su-btn-outline:hover { border-color: rgba(36,29,19,0.7); background: rgba(36,29,19,0.05); }
/* header sits over the dark hero photo — keep its outline button light */
.su-header .su-btn-outline { border-color: rgba(247,243,236,0.38); color: #F7F3EC; }
.su-header .su-btn-outline:hover { border-color: rgba(247,243,236,0.85); background: rgba(247,243,236,0.06); }

/* ============ logo / header ============ */
:root { --logo-red: #D2232A; }
.su-logo { display: flex; align-items: center; gap: 11px; }
.su-logo-mark { display: flex; align-items: center; height: 28px; }
.su-logo-mark svg { height: 100%; width: auto; display: block; }
.su-logo-word { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 22px; letter-spacing: -0.01em; color: var(--logo-red); }
.su-logo-mark-sm { height: 18px; }
.su-logo-word-sm { font-size: 16px; }

.su-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 30px 52px;
}
.su-nav { display: flex; align-items: center; gap: 42px; }
.su-nav a { font-size: 15px; font-weight: 500; color: rgba(247,243,236,0.82); letter-spacing: 0.01em; transition: color 0.2s ease; }
.su-nav a:hover { color: #F7F3EC; }

/* ============ hero (photo stays cinematic; page below is cream) ============ */
.su-hero { position: relative; height: 100vh; min-height: 760px; width: 100%; overflow: hidden; }
.su-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.su-hero-grad-a { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(20,14,8,0.82) 0%, rgba(20,14,8,0.42) 42%, rgba(20,14,8,0.10) 70%, rgba(20,14,8,0.28) 100%); }
.su-hero-grad-b { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,14,8,0.74) 0%, rgba(20,14,8,0) 38%); }
.su-hero-head {
  position: absolute; left: 52px; bottom: 13%; z-index: 5; max-width: 60%;
  animation: su-rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.su-hero-kicker {
  display: flex; align-items: center; gap: 7px; margin-bottom: 20px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.22em;
  color: rgba(247,243,236,0.78);
}
.su-hero-kicker i { display: block; width: 22px; height: 2px; border-radius: 2px; background: var(--red); margin-right: 4px; }
.su-hero-head h1 {
  font-family: 'Lora', serif; font-weight: 600;
  font-size: clamp(46px, 6.6vw, 102px); line-height: 1.02; letter-spacing: -0.015em;
  color: #FAF6EF; text-shadow: 0 2px 40px rgba(0,0,0,0.35);
}
.su-btn-hero { margin-top: 36px; padding: 16px 30px; font-size: 16px; box-shadow: 0 10px 30px rgba(184,50,50,0.32); }
.su-hero-meta {
  position: absolute; right: 52px; bottom: 13%; z-index: 5; text-align: right;
  display: flex; flex-direction: column; gap: 6px;
}
.su-hero-cities { font-family: 'Lora', serif; font-style: italic; font-size: 19px; color: rgba(247,243,236,0.9); }

/* ============ developments scene ============ */
.su-devs { position: relative; height: 520vh; }
.su-scene { position: sticky; top: 0; height: 100vh; width: 100%; overflow: hidden; }

.su-left {
  position: absolute; left: 5.2vw; top: 50%;
  will-change: transform, opacity;
  width: 40vw; max-width: 520px; z-index: 3;
  transform: translateY(-50%);
}
.su-left h2 {
  font-family: 'Lora', serif; font-weight: 600;
  font-size: clamp(48px, 5.4vw, 82px); line-height: 1; letter-spacing: -0.02em;
  color: var(--text);
}
.su-left-blurb { margin-top: 18px; max-width: 360px; font-size: 15px; line-height: 1.6; color: var(--muted); }
.su-tabs { margin-top: 38px; display: flex; flex-direction: column; }

.su-tab {
  display: flex; align-items: stretch; gap: 18px; padding: 15px 4px;
  background: none; border: none; border-top: 1px solid rgba(36,29,19,0.14);
  cursor: pointer; width: 100%; opacity: 0.6; text-align: left;
  transition: opacity 0.35s ease;
}
.su-tab:hover, .su-tab.active { opacity: 1; }
.su-tab-bar { display: block; width: 3px; border-radius: 3px; align-self: stretch; background: transparent; transition: background 0.35s ease; }
.su-tab.active .su-tab-bar { background: var(--red); }
.su-tab-text { display: flex; flex-direction: column; gap: 2px; }
.su-tab-name { font-family: 'Lora', serif; font-weight: 500; font-size: 31px; line-height: 1.1; letter-spacing: -0.01em; color: rgba(36,29,19,0.72); transition: color 0.35s ease; }
.su-tab.active .su-tab-name { color: var(--text); }
.su-tab-region { font-size: 12px; font-weight: 500; letter-spacing: 0.14em; color: rgba(36,29,19,0.42); }
.su-tab-status { margin-left: auto; align-self: center; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; opacity: 0; transition: opacity 0.35s ease; }
.su-tab.active .su-tab-status { opacity: 1; }
.su-tab-status.leasing { color: var(--leasing-text); }
.su-tab-status.soon { color: rgba(36,29,19,0.5); }

/* ---- cards (photo-backed — light text over dark scrims stays) ---- */
.su-card {
  position: absolute; overflow: hidden; background: var(--panel);
  will-change: transform, opacity;
  contain: layout paint;
}
.su-card.is-back { cursor: pointer; }
/* swap animation: transitions only while .swapping is set */
.su-card.swapping {
  transition: transform 0.62s cubic-bezier(0.32, 0.08, 0.24, 1),
              box-shadow 0.62s ease;
}
.su-card.swapping .su-face,
.su-card.swapping .su-backlabel { transition: opacity 0.45s ease; }

.su-card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.su-card-grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,14,8,0.84) 0%, rgba(20,14,8,0.10) 52%, rgba(20,14,8,0.24) 100%); }

.su-backlabel {
  position: absolute; left: 22px; bottom: 18px;
  font-family: 'Lora', serif; font-size: 22px; color: rgba(247,243,236,0.92);
}

.su-face {
  position: absolute; inset: 0; padding: 22px;
  display: flex; flex-direction: column; justify-content: space-between;
  pointer-events: none;
}
.su-pill {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 7px;
  padding: 7px 13px; border-radius: 100px;
  background: rgba(20,14,8,0.72);
  border: 1px solid rgba(247,243,236,0.18); white-space: nowrap;
}
.su-pill-dot { display: block; width: 7px; height: 7px; border-radius: 50%; }
.su-pill span:last-child { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; color: #F7F3EC; }
.su-face-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.su-face-id { display: flex; flex-direction: column; gap: 6px; }
.su-face-name { font-family: 'Lora', serif; font-weight: 600; font-size: 32px; line-height: 1.08; letter-spacing: -0.01em; color: #FAF6EF; }
.su-face-loc { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 500; color: rgba(247,243,236,0.78); }
.su-face-loc i { display: block; width: 5px; height: 5px; border-radius: 50%; background: var(--red); }
.su-face-go {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%; background: var(--red);
  color: #FBF3F0; font-size: 19px; font-style: normal;
  box-shadow: 0 8px 20px rgba(184,50,50,0.35);
}

/* ---- detail (inside expanded card — page 1 sits over the photo) ---- */
.su-detail { position: absolute; inset: 0; overflow: hidden; }
.su-detail-inner { position: absolute; left: 0; right: 0; top: 0; will-change: transform; }
.su-page { position: relative; }

.su-detail-top {
  position: absolute; top: 5vh; left: 6vw; right: 6vw;
  display: flex; align-items: center; justify-content: space-between;
}
.su-crumb { display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 500; letter-spacing: 0.04em; }
.su-crumb-path { color: rgba(247,243,236,0.55); }
.su-crumb-here { color: #F7F3EC; }
.su-pill-outline {
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 15px;
  border-radius: 100px; border: 1px solid rgba(247,243,236,0.22); background: rgba(20,14,8,0.6);
}
.su-pill-outline .su-pill-dot { width: 7px; height: 7px; }
.su-pill-outline span:last-child { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; color: #F7F3EC; }

.su-detail-bottom {
  position: absolute; left: 6vw; right: 6vw; bottom: 8vh;
  display: flex; flex-direction: column; gap: 26px;
}
.su-detail-id { display: flex; flex-direction: column; gap: 12px; }
.su-detail-eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.22em; color: rgba(247,243,236,0.6); }
.su-detail-name {
  font-family: 'Lora', serif; font-weight: 600;
  font-size: clamp(56px, 8vw, 124px); line-height: 0.95; letter-spacing: -0.02em; color: #FAF6EF;
}
.su-detail-loc { display: flex; align-items: center; gap: 9px; font-size: 17px; font-weight: 500; color: rgba(247,243,236,0.82); }
.su-detail-loc i { display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.su-detail-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.su-detail-blurb { max-width: 480px; font-size: 16px; line-height: 1.65; color: rgba(247,243,236,0.72); }
.su-specs { display: flex; gap: 48px; }
.su-spec { display: flex; flex-direction: column; gap: 6px; }
.su-spec-label { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; color: rgba(247,243,236,0.5); }
.su-spec-val { font-family: 'Lora', serif; font-size: 24px; color: #FAF6EF; }
.su-detail-ctas { display: flex; align-items: center; gap: 14px; margin-top: 4px; }
.su-btn-ghost {
  display: inline-flex; align-items: center; padding: 15px 28px;
  border: 1px solid rgba(247,243,236,0.32); border-radius: 100px;
  font-size: 15px; font-weight: 500; color: #F7F3EC; background: none; cursor: pointer;
  transition: border-color 0.25s ease;
}
.su-btn-ghost:hover { border-color: rgba(247,243,236,0.7); }
.su-detail-more {
  margin-left: auto; display: flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; color: rgba(247,243,236,0.55);
}
.su-detail-more .su-hint-arrow { font-size: 15px; }

/* ---- detail tagline (page 1) ---- */
.su-detail-tag { font-family: 'Lora', serif; font-style: italic; font-size: 20px; color: rgba(247,243,236,0.85); }

/* ---- detail sub-pages — cream paper scrim over the photo, ink type ---- */
.su-subpage {
  position: absolute; inset: 0; padding: 8vh 6vw 6vh;
  display: flex; flex-direction: column; justify-content: space-between; gap: 3vh;
  background: linear-gradient(to bottom, rgba(245,239,226,0.62), rgba(247,241,229,0.93) 26%, rgba(248,243,232,0.97));
}
.su-sub-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.su-sub-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.22em; color: rgba(36,29,19,0.55); }
.su-sub-title {
  margin-top: 10px; font-family: 'Lora', serif; font-weight: 600;
  font-size: clamp(34px, 3.8vw, 56px); letter-spacing: -0.015em; line-height: 1.02; color: var(--text);
}
.su-sub-lede { max-width: 440px; font-size: 14px; line-height: 1.65; color: rgba(36,29,19,0.62); }

.su-ministats { display: flex; gap: 42px; flex-wrap: wrap; }
.su-ministat { display: flex; flex-direction: column; gap: 5px; }
.su-mini-val { font-family: 'Lora', serif; font-size: 30px; line-height: 1; color: var(--text); }
.su-mini-label { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; color: rgba(36,29,19,0.5); }

.su-units { border-top: 1px solid rgba(36,29,19,0.16); }
.su-unit {
  display: grid; grid-template-columns: 1fr auto auto auto; align-items: center; gap: 44px;
  padding: 20px 6px; border-bottom: 1px solid rgba(36,29,19,0.16);
  transition: background 0.25s ease;
}
.su-unit:hover { background: rgba(36,29,19,0.04); }
.su-unit-id { display: flex; flex-direction: column; gap: 4px; }
.su-unit-name { font-family: 'Lora', serif; font-weight: 500; font-size: 26px; line-height: 1.1; color: var(--text); }
.su-unit-sub { font-size: 13px; color: rgba(36,29,19,0.55); }
.su-unit-size { font-family: 'Lora', serif; font-size: 24px; color: var(--text); }
.su-unit-rate { font-family: 'Lora', serif; font-style: italic; font-size: 17px; color: rgba(36,29,19,0.55); }
.su-link-red { font-size: 14px; font-weight: 600; color: var(--leasing-text); white-space: nowrap; transition: color 0.2s ease; }
.su-link-red:hover { color: #8E2424; }

.su-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.su-chip {
  padding: 8px 14px; border-radius: 100px; border: 1px solid rgba(36,29,19,0.2);
  background: rgba(255,252,244,0.7); font-size: 12px; font-weight: 500; color: rgba(36,29,19,0.75);
}

.su-sub-foot { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.su-sub-note { font-size: 13px; color: rgba(36,29,19,0.5); }
.su-sub-exit { display: flex; align-items: center; gap: 9px; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; color: rgba(36,29,19,0.55); }

/* project-outlook phase rows (McKinney "The plan") */
.su-phase { grid-template-columns: 1fr auto; }
.su-phase-status { font-family: 'Lora', serif; font-style: italic; font-size: 17px; color: rgba(36,29,19,0.5); }
.su-phase-status.done { color: var(--green); }
.su-phase-status.current { color: var(--leasing-text); }

.su-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.su-plancard {
  border: 1px solid rgba(36,29,19,0.14); border-radius: 16px; overflow: hidden;
  background: var(--panel); box-shadow: 0 14px 34px rgba(74,56,30,0.10);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.su-plancard:hover { border-color: rgba(36,29,19,0.32); transform: translateY(-4px); }
.su-plan-thumb {
  height: 16vh; min-height: 110px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  background: repeating-linear-gradient(45deg, rgba(36,29,19,0.05) 0 10px, rgba(36,29,19,0) 10px 20px);
  border-bottom: 1px solid rgba(36,29,19,0.12);
}
.su-plan-thumb span:first-child { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; color: rgba(36,29,19,0.5); }
.su-plan-thumb span:last-child { font-family: 'Lora', serif; font-size: 22px; color: var(--text); }
.su-plan-thumb-img { position: relative; padding: 0; }
.su-plan-thumb-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.su-plan-size {
  position: absolute; left: 12px; bottom: 10px;
  display: inline-flex; padding: 6px 12px; border-radius: 100px;
  background: rgba(248,243,232,0.94);
  border: 1px solid rgba(36,29,19,0.18);
  font-family: 'Lora', serif; font-size: 15px !important; color: var(--text);
  letter-spacing: 0;
}
.su-plan-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 6px; }
.su-plan-name { font-family: 'Lora', serif; font-weight: 500; font-size: 21px; color: var(--text); }
.su-plan-sub { font-size: 13px; line-height: 1.5; color: rgba(36,29,19,0.55); }
.su-plan-body .su-link-red { margin-top: 8px; }

/* ---- construction progress modal ---- */
@keyframes su-pulse {
  0% { box-shadow: 0 0 0 0 rgba(184,50,50,0.45); }
  70% { box-shadow: 0 0 0 9px rgba(184,50,50,0); }
  100% { box-shadow: 0 0 0 0 rgba(184,50,50,0); }
}
.su-modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; }
.su-modal.open { display: flex; }
.su-modal-back { position: absolute; inset: 0; background: rgba(54,42,24,0.45); backdrop-filter: blur(8px); }
.su-modal-panel {
  position: relative; width: min(560px, 92vw); max-height: 84vh; overflow: auto;
  background: var(--panel); border: 1px solid rgba(36,29,19,0.14); border-radius: 22px;
  padding: 36px 40px 40px; box-shadow: 0 50px 120px rgba(54,42,24,0.35);
  animation: su-rise 0.4s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.su-modal-close {
  position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(36,29,19,0.25); background: none; color: var(--ink); font-size: 15px;
  cursor: pointer; transition: border-color 0.2s ease, background 0.2s ease;
}
.su-modal-close:hover { border-color: rgba(36,29,19,0.6); background: rgba(36,29,19,0.05); }
.su-modal-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; color: rgba(36,29,19,0.55); }
.su-modal-title { margin-top: 10px; font-family: 'Lora', serif; font-weight: 600; font-size: 34px; letter-spacing: -0.015em; color: var(--text); }
.su-modal-sub { margin-top: 6px; font-size: 14px; color: rgba(36,29,19,0.6); }

.su-tl { margin-top: 30px; display: flex; flex-direction: column; }
.su-tl-item { position: relative; padding: 0 0 26px 36px; }
.su-tl-item::before {
  content: ''; position: absolute; left: 8px; top: 8px; bottom: -8px; width: 1px;
  background: rgba(36,29,19,0.16);
}
.su-tl-item:last-child { padding-bottom: 0; }
.su-tl-item:last-child::before { display: none; }
.su-tl-dot {
  position: absolute; left: 0; top: 4px; width: 17px; height: 17px; border-radius: 50%;
  border: 1px solid rgba(36,29,19,0.3); background: var(--panel); box-sizing: border-box;
}
.su-tl-item.done .su-tl-dot { background: var(--red); border-color: var(--red); }
.su-tl-item.current .su-tl-dot { border-color: var(--red); animation: su-pulse 2s ease-out infinite; }
.su-tl-item.current .su-tl-dot::after {
  content: ''; position: absolute; inset: 4px; border-radius: 50%; background: var(--red);
}
.su-tl-date { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; color: rgba(36,29,19,0.45); }
.su-tl-name { margin-top: 3px; font-family: 'Lora', serif; font-weight: 500; font-size: 19px; color: var(--text); }
.su-tl-item.current .su-tl-name { color: var(--text); }
.su-tl-desc { margin-top: 4px; font-size: 13px; line-height: 1.55; color: rgba(36,29,19,0.55); }

/* ---- scroll hint ---- */
.su-hint {
  position: absolute; left: 50%; bottom: 5vh; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 7; pointer-events: none;
}
.su-hint span:first-child { font-size: 12px; font-weight: 600; letter-spacing: 0.18em; color: rgba(36,29,19,0.55); }
.su-hint-arrow { display: inline-block; animation: su-bob 1.8s ease-in-out infinite; font-size: 18px; color: var(--red); }

/* ============ about (warm cream, drafting-paper style) ============ */
.su-about {
  position: relative; overflow: hidden;
  color: var(--text-2); padding: 130px 6vw 110px;
  content-visibility: auto; contain-intrinsic-size: auto 1400px;
}
.su-cross { position: absolute; font-size: 24px; font-weight: 300; color: rgba(36,29,19,0.2); pointer-events: none; }
.su-about-inner { max-width: 1180px; margin: 0 auto; text-align: center; }

.su-about-grid {
  max-width: 1180px; margin: 0 auto 30px;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center;
}
/* the pencil sketch is white line art for the dark site — invert it to graphite on paper */
.su-sketch { width: 100%; opacity: 0.85; filter: invert(0.82) sepia(0.18); mix-blend-mode: multiply; }
.su-about-copy { text-align: left; }
.su-about-chip {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(36,29,19,0.55);
}
.su-about-chip::before { content: ''; display: block; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.su-layered {
  margin-top: 26px; font-family: 'Lora', serif; font-weight: 600;
  font-size: clamp(44px, 5.4vw, 76px); line-height: 0.99; letter-spacing: -0.02em;
}
.su-layered span { display: block; white-space: nowrap; }
.su-l1 b { font-weight: 600; color: var(--text); }
.su-l1 i { font-style: normal; color: rgba(36,29,19,0.14); }
.su-l2 { color: rgba(36,29,19,0.14); }
.su-about-lede { margin: 26px 0 0; max-width: 480px; font-size: 16px; line-height: 1.65; color: var(--muted); }
.su-about-ctas { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

.su-light-h2 {
  font-family: 'Lora', serif; font-weight: 600;
  font-size: clamp(38px, 4.4vw, 64px); line-height: 1.05; letter-spacing: -0.02em;
  color: var(--text);
}

.su-values { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; text-align: left; }
.su-value {
  position: relative; padding: 30px 30px 32px; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(36,29,19,0.12); background: var(--panel);
  box-shadow: 0 16px 40px rgba(74,56,30,0.08);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.su-value:hover { border-color: rgba(184,50,50,0.55); transform: translateY(-4px); }
.su-value-n { position: absolute; top: 16px; right: 22px; font-family: 'Lora', serif; font-style: italic; font-size: 36px; color: rgba(36,29,19,0.12); }
.su-value h3 { font-family: 'Lora', serif; font-weight: 600; font-size: 24px; color: var(--text); }
.su-value p { margin-top: 10px; font-size: 14px; line-height: 1.6; color: var(--muted); max-width: 300px; }

.su-about-stats { margin-top: 58px; display: flex; justify-content: center; gap: 70px; flex-wrap: wrap; }
.su-ab-stat { display: flex; flex-direction: column; gap: 7px; }
.su-ab-stat span { font-family: 'Lora', serif; font-size: 34px; line-height: 1; color: var(--text); }
.su-ab-stat small { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; color: rgba(36,29,19,0.5); }

/* ============ testimonials (cream, arch layout) ============ */
.su-testi { padding: 30px 0 120px; overflow: hidden; }
.su-testi-stage { position: relative; max-width: 1500px; height: 680px; margin: 0 auto; }
.su-testi-head { position: absolute; left: 50%; top: 320px; transform: translateX(-50%); text-align: center; z-index: 5; width: max-content; max-width: 90%; }
.su-testi-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; border-radius: 100px;
  background: rgba(255,252,244,0.88); border: 1px solid rgba(36,29,19,0.16);
  backdrop-filter: blur(6px); box-shadow: 0 10px 26px rgba(74,56,30,0.14);
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; color: rgba(36,29,19,0.65);
}
.su-testi-pill::before { content: ''; display: block; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.su-testi-head h2 {
  margin-top: 22px; font-family: 'Lora', serif; font-weight: 600;
  font-size: clamp(40px, 4.6vw, 68px); line-height: 1.08; letter-spacing: -0.02em;
}
.su-testi-l1 { color: var(--text); }
.su-testi-l2 { font-style: italic; font-weight: 500; color: rgba(36,29,19,0.4); }

.t-ghost {
  position: absolute; border-radius: 16px; background: rgba(36,29,19,0.05); opacity: 0.7;
  border: 1px solid rgba(36,29,19,0.05);
}
.t-card {
  position: absolute; border-radius: 16px; overflow: visible;
  animation: t-float 5s ease-in-out infinite;
  z-index: 2;
}
.t-card:hover { z-index: 40; animation-play-state: paused; }
.t-card-photo {
  width: 100%; height: 100%; border-radius: 16px; overflow: hidden;
  background: var(--panel); border: 1px solid rgba(36,29,19,0.12);
  box-shadow: 0 18px 40px rgba(74,56,30,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.t-card:hover .t-card-photo { transform: scale(1.05); box-shadow: 0 26px 56px rgba(74,56,30,0.28); border-color: rgba(36,29,19,0.3); }
.t-card-photo img { width: 100%; height: 100%; object-fit: cover; }

.t-pop {
  position: absolute; left: 50%; transform: translateX(-50%) translateY(6px);
  bottom: calc(100% + 14px); width: 300px;
  background: #FFFEF9; border: 1px solid rgba(36,29,19,0.16); border-radius: 16px;
  padding: 20px 22px; box-shadow: 0 30px 70px rgba(74,56,30,0.25);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.t-card:hover .t-pop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.t-pop.pop-below { bottom: auto; top: calc(100% + 14px); transform: translateX(-50%) translateY(-6px); }
.t-card:hover .t-pop.pop-below { transform: translateX(-50%) translateY(0); }
.t-pop.pop-left { left: 0; transform: translateX(0) translateY(6px); }
.t-card:hover .t-pop.pop-left { transform: translateX(0) translateY(0); }
.t-pop.pop-right { left: auto; right: 0; transform: translateX(0) translateY(6px); }
.t-card:hover .t-pop.pop-right { transform: translateX(0) translateY(0); }
.t-pop-quote { font-size: 14px; line-height: 1.6; color: rgba(36,29,19,0.75); }
.t-pop-who { margin-top: 14px; display: flex; flex-direction: column; gap: 2px; }
.t-pop-name { font-weight: 600; font-size: 14px; color: var(--text); }
.t-pop-role { font-size: 12px; color: rgba(36,29,19,0.5); }
.t-pop-stars { margin-bottom: 10px; font-size: 13px; letter-spacing: 2px; color: var(--red); }

/* ============ contact (cream) ============ */
.su-contact { padding: 130px 6vw 0; content-visibility: auto; contain-intrinsic-size: auto 1200px; }
.su-contact-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: start;
}
.su-contact-left h2 {
  font-family: 'Lora', serif; font-weight: 600;
  font-size: clamp(42px, 4.8vw, 72px); line-height: 1.02; letter-spacing: -0.02em; color: var(--text);
}
.su-contact-blurb { margin-top: 22px; max-width: 420px; font-size: 16px; line-height: 1.65; color: var(--muted); }
.su-contact-meta { margin-top: 44px; display: flex; flex-direction: column; gap: 22px; }
.su-contact-meta > div { display: flex; flex-direction: column; gap: 5px; }
.su-contact-label { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; color: rgba(36,29,19,0.5); }
.su-contact-val { font-family: 'Lora', serif; font-size: 21px; color: var(--text); }

.su-form {
  background: var(--panel); border: 1px solid rgba(36,29,19,0.12);
  border-radius: 22px; padding: 38px 36px;
  box-shadow: 0 24px 60px rgba(74,56,30,0.10);
  display: flex; flex-direction: column; gap: 20px;
}
.su-form label { display: flex; flex-direction: column; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; color: rgba(36,29,19,0.55); text-transform: uppercase; }
.su-form input, .su-form select, .su-form textarea {
  font-family: 'Archivo', sans-serif; font-size: 15px; color: var(--text);
  background: #FFFEF9; border: 1px solid rgba(36,29,19,0.16);
  border-radius: 12px; padding: 13px 16px; outline: none; resize: vertical;
  transition: border-color 0.2s ease;
}
.su-form input:focus, .su-form select:focus, .su-form textarea:focus { border-color: rgba(36,29,19,0.45); }
.su-form select { appearance: none; }
.su-form button { justify-content: center; margin-top: 6px; }

.su-footer {
  max-width: 1180px; margin: 100px auto 0;
  padding: 28px 0 34px; border-top: 1px solid rgba(36,29,19,0.12);
  display: flex; align-items: center; justify-content: space-between;
}
.su-footer-note { font-size: 13px; color: rgba(36,29,19,0.45); }

/* ============ responsive fallback (basic) ============ */
@media (max-width: 900px) {
  .su-header { padding: 22px 24px; }
  .su-nav { display: none; }
  .su-hero-head { left: 24px; max-width: 85%; }
  .su-hero-meta { display: none; }
  .su-left { left: 6vw; width: 60vw; }
  .su-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .su-layered span { white-space: normal; }
  .su-values { grid-template-columns: 1fr; }
  .su-contact-inner { grid-template-columns: 1fr; gap: 50px; }
  .su-plans { grid-template-columns: 1fr; }
  .su-unit { grid-template-columns: 1fr auto; gap: 14px; }
  .su-testi-stage { height: 560px; }
}

/* ============ phones ============ */
@media (max-width: 700px) {
  .su-header { padding: 16px 18px; }
  .su-logo-word { font-size: 18px; }
  .su-header .su-btn-outline { padding: 10px 16px; font-size: 13px; }
  .su-hero { min-height: 620px; }
  .su-hero-head { left: 18px; right: 18px; bottom: 9%; max-width: none; }
  .su-hero-head h1 { font-size: clamp(38px, 11.5vw, 52px); }
  .su-btn-hero { margin-top: 26px; padding: 14px 24px; font-size: 15px; }

  /* developments: tabs stack above the deck (geometry set in main.js) */
  .su-left { left: 6vw; right: 6vw; top: 6vh; width: auto; max-width: none; }
  .su-left h2 { font-size: 34px; }
  .su-left-blurb { display: none; }
  .su-tabs { margin-top: 16px; }
  .su-tab { padding: 9px 2px; gap: 12px; }
  .su-tab-name { font-size: 21px; }
  .su-tab-region { font-size: 10px; }
  .su-tab-status { font-size: 11px; }
  .su-eyebrow-row { margin-bottom: 12px; }
  .su-hint { bottom: 2vh; width: 100%; }
  .su-hint span:first-child { font-size: 10px; }

  /* expanded card: detail page 1 */
  .su-detail-top { top: 2.5vh; left: 5vw; right: 5vw; }
  .su-crumb-path { display: none; }
  .su-detail-bottom { left: 5vw; right: 5vw; bottom: 3.5vh; gap: 16px; }
  .su-detail-eyebrow { font-size: 11px; letter-spacing: 0.16em; }
  .su-detail-name { font-size: clamp(40px, 12vw, 56px); }
  .su-detail-loc { font-size: 14px; }
  .su-detail-tag { font-size: 16px; }
  .su-detail-row { gap: 14px; }
  .su-detail-blurb { font-size: 13.5px; line-height: 1.55; }
  .su-specs { gap: 20px; flex-wrap: wrap; }
  .su-spec-val { font-size: 18px; }
  .su-detail-ctas { flex-wrap: wrap; gap: 10px; }
  .su-detail-ctas .su-btn-fill, .su-btn-ghost { padding: 12px 20px; font-size: 14px; }
  .su-detail-more { display: none; }

  /* expanded card: spec-sheet sub-pages */
  .su-subpage { padding: 5vh 5vw 3.5vh; gap: 2vh; }
  .su-sub-head { gap: 14px; }
  .su-sub-title { font-size: 26px; }
  .su-sub-lede { font-size: 13px; }
  .su-ministats { gap: 16px 22px; }
  .su-mini-val { font-size: 20px; }
  .su-mini-label { font-size: 10px; }
  .su-unit { padding: 12px 2px; gap: 10px 14px; }
  .su-unit-name { font-size: 18px; }
  .su-unit-sub { font-size: 11.5px; }
  .su-unit-size { font-size: 16px; }
  .su-unit-rate { font-size: 13px; }
  .su-link-red { font-size: 13px; }
  .su-chips { gap: 6px; }
  .su-chip { padding: 6px 10px; font-size: 11px; }
  .su-sub-note { font-size: 11.5px; }
  .su-sub-exit, .su-sub-eyebrow { font-size: 10px; }
  .su-plans { display: flex; overflow-x: auto; gap: 12px; margin: 0 -5vw; padding: 0 5vw 6px; -webkit-overflow-scrolling: touch; }
  .su-plancard { flex: 0 0 220px; }
  .su-plan-thumb { height: 12vh; min-height: 84px; }
  .su-plan-body { padding: 12px 14px 14px; gap: 4px; }
  .su-plan-name { font-size: 17px; }
  .su-plan-sub { font-size: 12px; }

  /* progress modal */
  .su-modal-panel { padding: 28px 22px 30px; }
  .su-modal-title { font-size: 26px; }

  /* about + contact */
  .su-about { padding: 90px 6vw 80px; }
  .su-about-stats { gap: 30px 40px; }
  .su-contact { padding: 90px 6vw 0; }
  .su-form { padding: 24px 20px; }
  .su-footer { margin-top: 70px; flex-direction: column; gap: 16px; text-align: center; }
}
