/* =========================================================
   SKLAD · VARIANT A-PLUS — elevated editorial layer
   Loads AFTER styles.css. Dark-warehouse palette inherited.
   ========================================================= */

/* Press compact band */
.press-band { padding: 28px var(--gutter); border-top: 1px solid var(--rule-2); border-bottom: 1px solid var(--rule-2); background: linear-gradient(180deg, transparent, rgba(199,129,58,0.03)); }
.press-band__inner { max-width: var(--grid-max); margin: 0 auto; display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.press-band__label .eyebrow { color: var(--ink-3); }
.press-band__logos { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 22px; flex: 1; }
.press-logo { font-family: var(--font-h); font-size: 18px; letter-spacing: 0.08em; color: var(--ink-2); opacity: 0.72; transition: opacity 0.25s, color 0.25s; }
.press-logo:hover { color: var(--copper); opacity: 1; }
.press-logo__sep { color: var(--rule); font-size: 14px; }
@media (max-width: 700px) {
  .press-logo { font-size: 15px; }
  .press-logo__sep { display: none; }
}

:root {
  --plus-gutter: clamp(24px, 5vw, 80px);
}

/* ---------- SCROLL PROGRESS ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--copper);
  z-index: 200;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 120ms linear;
}
.section-counter {
  position: fixed;
  top: 50%; right: 20px;
  transform: translateY(-50%);
  z-index: 90;
  display: flex; flex-direction: column; gap: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}
.section-counter a {
  color: var(--ink-3);
  text-decoration: none;
  transition: color 200ms ease;
  padding: 4px 0;
  border-right: 1px solid transparent;
  padding-right: 8px;
}
.section-counter a.is-active {
  color: var(--copper);
  border-right-color: var(--copper);
}
.section-counter a:hover { color: var(--ink); }
@media (max-width: 1100px) { .section-counter { display: none; } }

/* ---------- MARQUEE SPEC STRIP ---------- */
.spec-strip {
  background: #0a0604;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}
.spec-strip__track {
  display: flex;
  gap: 56px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.spec-strip__item {
  font-family: var(--font-h);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: flex; align-items: center; gap: 18px;
  flex-shrink: 0;
}
.spec-strip__item span.dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--copper);
  display: inline-block;
}
.spec-strip__item em {
  color: var(--copper);
  font-style: normal;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- HERO PLUS: split editorial ---------- */
.hero-plus {
  position: relative;
  min-height: 100vh;
  padding: 140px var(--plus-gutter) 60px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  overflow: hidden;
}
.hero-plus__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-plus__bg svg { width: 100%; height: 100%; display: block; }
.hero-plus__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 800ms ease;
  pointer-events: none;
}
.hero-plus__slide.is-active { opacity: 1; }
.hero-plus__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-plus__veil {
  position: absolute; inset: 0; z-index: 2;
  /* Veil is now empty — every text element on the hero carries its own
     localized backdrop (pill or radial scrim). The photo stays clean. */
  background: transparent;
  pointer-events: none;
}
.hero-plus__year {
  position: absolute;
  left: 24px; top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--font-h);
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--copper);
  z-index: 6;
  display: flex; align-items: center; gap: 20px;
  text-shadow:
    0 1px 2px rgba(0,0,0,0.95),
    0 2px 14px rgba(0,0,0,0.7);
}
.hero-plus__year::before, .hero-plus__year::after {
  content: ""; width: 1px; height: 60px;
  background: linear-gradient(180deg, transparent, var(--copper), transparent);
}
.hero-plus__content {
  position: relative; z-index: 5;
  max-width: 1400px; margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: end;
}
.hero-plus__headline {
  max-width: none;
  position: relative;
}
/* Localized soft scrim only behind the headline — keeps the photo bright elsewhere */
.hero-plus__headline::before {
  content: "";
  position: absolute;
  inset: -60px -140px -40px -60px;
  z-index: -1;
  background: radial-gradient(ellipse at 35% 55%, rgba(10,6,4,0.78) 0%, rgba(10,6,4,0.4) 55%, transparent 90%);
  filter: blur(50px);
  pointer-events: none;
}
.hero-plus__overline {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 28px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.9), 0 2px 12px rgba(0,0,0,0.6);
}
.hero-plus__overline::after {
  content: ""; flex: 1; max-width: 80px;
  height: 1px; background: var(--copper); opacity: 0.4;
}
.hero-plus__headline h1 {
  font-family: var(--font-h);
  font-size: clamp(56px, 7.5vw, 116px);
  letter-spacing: 0.02em;
  line-height: 0.98;
  margin: 0;
  color: var(--ink);
  font-weight: 500;
  text-transform: uppercase;
  /* Multi-layer halo for legibility without a heavy global overlay */
  text-shadow:
    0 1px 2px rgba(0,0,0,0.95),
    0 4px 24px rgba(0,0,0,0.75),
    0 8px 60px rgba(0,0,0,0.55);
}
.hero-plus__headline h1 em {
  display: block;
  font-family: var(--font-display);
  color: var(--copper);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  font-size: clamp(28px, 2.8vw, 46px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin-top: 24px;
  max-width: min(720px, 95%);
  text-shadow:
    0 1px 2px rgba(0,0,0,0.95),
    0 3px 18px rgba(0,0,0,0.7);
}
.hero-plus__side {
  padding-left: 40px;
  border-left: 1px solid rgba(199,129,58,0.25);
  padding-bottom: 8px;
  position: relative;
  align-self: end;
}
.hero-plus__side::before {
  content: "";
  position: absolute;
  inset: -30px -40px -30px 20px;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(10,6,4,0.55) 0%, rgba(10,6,4,0.25) 60%, transparent 90%);
  filter: blur(30px);
  pointer-events: none;
}
.hero-plus__cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.btn-pri, .btn-sec {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-label); font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 220ms ease;
}
.btn-pri {
  background: var(--copper); color: #120a06;
  border: 1px solid var(--copper);
}
.btn-pri:hover { background: var(--ember); border-color: var(--ember); gap: 16px; }
.btn-sec {
  background: transparent; color: var(--ink);
  border: 1px solid var(--rule);
}
.btn-sec:hover { border-color: var(--copper); color: var(--copper); gap: 16px; }

/* Hero slider navigation — bottom left */
.hero-plus__nav {
  position: absolute;
  bottom: 32px; left: var(--plus-gutter);
  z-index: 6;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--ink-2);
  background: rgba(12,8,5,0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 6px 18px 6px 6px;
  box-shadow: 0 18px 50px -12px rgba(0,0,0,0.75), 0 0 0 1px rgba(255,255,255,0.03) inset;
}
.hero-plus__nav button {
  width: 38px; height: 38px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink-2);
  cursor: pointer;
  display: grid; place-items: center;
  transition: all 200ms ease;
}
.hero-plus__nav button:hover { border-color: var(--copper); color: var(--copper); }
.hero-plus__counter { color: var(--ink); font-family: var(--font-h); font-size: 14px; letter-spacing: 0.1em; }
.hero-plus__counter b { color: var(--copper); font-weight: 500; }

/* Meta row — bottom right */
.hero-plus__meta {
  position: absolute;
  bottom: 32px; right: var(--plus-gutter);
  z-index: 6;
  display: flex; gap: 32px;
  font-family: var(--font-label); font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: rgba(12,8,5,0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--rule);
  border-radius: 22px;
  padding: 14px 22px;
  box-shadow: 0 18px 50px -12px rgba(0,0,0,0.75), 0 0 0 1px rgba(255,255,255,0.03) inset;
}
.hero-plus__meta b {
  display: block; color: var(--ink);
  font-weight: 500;
  font-family: var(--font-h);
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-top: 4px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.9);
}

@media (max-width: 980px) {
  .hero-plus__content { grid-template-columns: 1fr; gap: 30px; align-items: start; }
  .hero-plus__side { padding-left: 0; border-left: 0; border-top: 1px solid rgba(199,129,58,0.25); padding-top: 24px; }
  .hero-plus__year, .hero-plus__meta { display: none; }
  .hero-plus__nav { position: static; margin-top: 40px; }
}

/* ---------- SECTION MARKER (chapter style) ---------- */
.chapter-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
  padding: 80px var(--plus-gutter) 40px;
  max-width: var(--grid-max);
  margin: 0 auto;
  border-top: 1px solid var(--rule);
}
.chapter-head__num {
  font-family: var(--font-h);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--copper);
  display: flex; flex-direction: column; gap: 4px;
  min-width: 80px;
}
.chapter-head__num em {
  font-style: normal;
  color: var(--ink-3);
  font-size: 10px;
}
.chapter-head__title {
  font-family: var(--font-h);
  font-size: clamp(28px, 3.6vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
  max-width: 18ch;
}
.chapter-head__title em {
  display: block;
  font-family: var(--font-display);
  color: var(--copper);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  font-size: 0.5em;
  letter-spacing: -0.01em;
  margin-top: 10px;
}
.chapter-head__kicker {
  grid-column: 2;
  max-width: 50ch;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
  margin: 24px 0 0;
}

/* ---------- AT-A-GLANCE / STATS BAR ---------- */
.atglance {
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 0 var(--plus-gutter);
}
.atglance__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.atglance__cell {
  padding: 32px 24px;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 10px;
}
.atglance__cell:last-child { border-right: 0; }
.atglance__cell .label {
  font-family: var(--font-label); font-weight: 500;
  font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink-2);
}
.atglance__cell .value {
  font-family: var(--font-h);
  font-size: clamp(28px, 3vw, 44px);
  color: var(--ink);
  line-height: 1;
  letter-spacing: 0.02em;
}
.atglance__cell .value em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--copper);
  font-size: 0.55em;
  margin-left: 6px;
}
.atglance__cell .sub {
  font-size: 12px; color: var(--ink-2);
  margin-top: 4px;
}
@media (max-width: 780px) {
  .atglance__grid { grid-template-columns: 1fr 1fr; }
  .atglance__cell:nth-child(2n) { border-right: 0; }
  .atglance__cell:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
}

/* ---------- AVAILABLE+ : listing with floor plan ---------- */
.avail-plus {
  padding: 40px var(--plus-gutter) 120px;
  max-width: var(--grid-max);
  margin: 0 auto;
}
.avail-plus__tabs {
  display: flex; gap: 2px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--rule);
  overflow-x: auto;
}
.avail-plus__tab {
  padding: 16px 22px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: none; border: 0;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  transition: all 200ms ease;
  white-space: nowrap;
}
.avail-plus__tab:hover { color: var(--ink); }
.avail-plus__tab.is-active { color: var(--copper); border-bottom-color: var(--copper); }
.avail-plus__tab .count {
  display: inline-block;
  margin-left: 8px;
  color: var(--copper);
  font-size: 9px;
}

.avail-plus__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.listing {
  display: grid;
  grid-template-columns: 60px 1.3fr 1fr 2fr 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  background: var(--bg);
  transition: background 220ms ease;
  cursor: pointer;
  position: relative;
}
.listing:hover { background: var(--bg-2); }
.listing__idx {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.25em;
  color: var(--ink-3);
}
.listing__name {
  font-family: var(--font-h);
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.2;
}
.listing__name em {
  display: block;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--copper);
  text-transform: uppercase;
  margin-top: 6px;
}
.listing__specs {
  display: flex; gap: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.listing__specs b { color: var(--ink); font-weight: 400; display: block; margin-top: 2px; font-size: 12px; }
.listing__desc {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 42ch;
}
.listing__status {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  display: flex; align-items: center; gap: 8px;
}
.listing__status .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--copper);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.listing__arrow {
  color: var(--ink-3);
  font-family: var(--font-mono);
  transition: color 200ms ease, transform 200ms ease;
}
.listing:hover .listing__arrow {
  color: var(--copper);
  transform: translateX(6px);
}

/* listing: expanded state with plan */
.listing.is-open {
  background: var(--bg-2);
}
.listing__expand {
  grid-column: 1 / -1;
  display: none;
  padding-top: 28px;
  margin-top: 12px;
  border-top: 1px solid var(--rule);
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.listing.is-open .listing__expand { display: grid; }
.listing__plan {
  aspect-ratio: 4/3;
  background: #0a0604;
  border: 1px solid var(--rule);
  position: relative;
}
.listing__plan svg { width: 100%; height: 100%; }
.listing__details {
  display: flex; flex-direction: column; gap: 20px;
}
.listing__details h4 {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 4px;
  font-weight: 500;
}
.listing__details ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.listing__details li {
  font-size: 13px;
  color: var(--ink-2);
  display: flex; align-items: center; gap: 10px;
}
.listing__details li::before {
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: var(--copper); flex-shrink: 0;
}

@media (max-width: 1100px) {
  .listing { grid-template-columns: 60px 1fr 1fr auto; }
  .listing__desc { display: none; }
}
@media (max-width: 780px) {
  .listing { grid-template-columns: 1fr auto; padding: 20px; gap: 14px; }
  .listing__idx, .listing__specs { display: none; }
  .listing__expand { grid-template-columns: 1fr; }
}

/* ---------- SPACES IMMERSIVE TABS ---------- */
.spaces-plus {
  padding: 40px var(--plus-gutter) 120px;
  max-width: var(--grid-max);
  margin: 0 auto;
}
.spaces-plus__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.spaces-plus__menu {
  display: flex; flex-direction: column;
  position: sticky; top: 120px;
}
.space-tab {
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  transition: all 220ms ease;
  background: none; border-left: 0; border-right: 0; border-top: 0;
  text-align: left;
  font-family: inherit;
  color: var(--ink-2);
}
.space-tab:first-child { border-top: 1px solid var(--rule); }
.space-tab:hover { color: var(--ink); }
.space-tab.is-active { color: var(--ink); }
.space-tab.is-active .space-tab__name { color: var(--copper); }
.space-tab__num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--ink-3);
}
.space-tab__name {
  font-family: var(--font-h);
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 220ms ease;
}
.space-tab__name em {
  display: block;
  font-family: var(--font-label); font-weight: 500;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  text-transform: uppercase;
  margin-top: 4px;
}
.space-tab__arrow {
  color: var(--copper);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}
.space-tab.is-active .space-tab__arrow { opacity: 1; transform: translateX(4px); }

.spaces-plus__panel {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--rule);
  background: var(--panel);
}
.spaces-plus__panel-frame {
  position: absolute; inset: 12px;
  border: 1px solid rgba(199,129,58,0.2);
  pointer-events: none; z-index: 3;
}
.space-panel {
  display: none;
  position: relative;
}
.space-panel.is-active { display: block; animation: fadePanel 500ms ease; }
@keyframes fadePanel {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.space-panel__media {
  aspect-ratio: 16/10;
  background: linear-gradient(180deg, #1a0e06, #0a0604);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.space-panel__media svg { width: 100%; height: 100%; display: block; }
.space-panel__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.space-panel__body { padding: 32px 36px 40px; }
.space-panel__body h3 {
  font-family: var(--font-h);
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 12px;
  color: var(--ink);
}
.space-panel__body p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-2);
  margin: 0 0 24px;
  max-width: 52ch;
}
.space-panel__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.space-panel__spec .k {
  font-family: var(--font-label); font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: block;
  margin-bottom: 6px;
}
.space-panel__spec .v {
  font-family: var(--font-h);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--ink);
}

@media (max-width: 980px) {
  .spaces-plus__inner { grid-template-columns: 1fr; }
  .spaces-plus__menu { position: static; }
}

/* ---------- TIMELINE ---------- */
.timeline-plus {
  padding: 40px var(--plus-gutter) 120px;
  max-width: var(--grid-max);
  margin: 0 auto;
}
.timeline-plus__rail {
  position: relative;
  padding-left: 60px;
}
.timeline-plus__rail::before {
  content: ""; position: absolute;
  left: 20px; top: 20px; bottom: 20px;
  width: 1px; background: var(--rule);
}
.tl-entry {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  padding: 40px 0;
  position: relative;
  border-bottom: 1px solid var(--rule);
}
.tl-entry:last-child { border-bottom: 0; }
.tl-entry::before {
  content: ""; position: absolute;
  left: -47px; top: 52px;
  width: 14px; height: 14px;
  border: 1px solid var(--copper);
  background: var(--bg);
  border-radius: 50%;
  z-index: 2;
}
.tl-entry::after {
  content: ""; position: absolute;
  left: -42px; top: 57px;
  width: 4px; height: 4px;
  background: var(--copper);
  border-radius: 50%;
  z-index: 3;
}
.tl-entry__year {
  font-family: var(--font-h);
  font-size: clamp(32px, 4vw, 56px);
  color: var(--copper);
  letter-spacing: 0.05em;
  line-height: 1;
}
.tl-entry__year em {
  display: block;
  font-family: var(--font-label); font-weight: 500;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: 10px;
}
.tl-entry__body h3 {
  font-family: var(--font-h);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 0 0 10px;
}
.tl-entry__body p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-2);
  max-width: 60ch;
  margin: 0;
}

@media (max-width: 780px) {
  .timeline-plus__rail { padding-left: 40px; }
  .timeline-plus__rail::before { left: 10px; }
  .tl-entry { grid-template-columns: 1fr; gap: 12px; }
  .tl-entry::before { left: -37px; top: 48px; }
  .tl-entry::after { left: -32px; top: 53px; }
}

/* ---------- EVENTS PLUS — featured + filmstrip ---------- */
.events-plus {
  padding: 40px var(--plus-gutter) 120px;
  max-width: var(--grid-max);
  margin: 0 auto;
}
.events-plus__featured {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-bottom: 40px;
}
.events-plus__featured-img {
  background: linear-gradient(135deg, #1a0e06, #0a0604);
  aspect-ratio: 3/2;
  position: relative;
  overflow: hidden;
}
.events-plus__featured-img .placeholder-label {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper-dim);
}
.events-plus__featured-body {
  background: var(--panel);
  padding: 40px;
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.events-plus__tag {
  font-family: var(--font-label); font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--copper);
  text-transform: uppercase;
}
.events-plus__featured-body h3 {
  font-family: var(--font-h);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
}
.events-plus__featured-body p {
  font-size: 14.5px; line-height: 1.75;
  color: var(--ink-2);
  margin: 0;
}
.events-plus__featured-body .meta-row {
  display: flex; gap: 24px;
  font-family: var(--font-label); font-weight: 500;
  font-size: 11px; letter-spacing: 0.125em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  margin-top: 8px;
}
.events-plus__featured-body .meta-row b { color: var(--ink); font-weight: 400; }

.filmstrip {
  display: flex; gap: 2px;
  overflow-x: auto;
  margin: 0 calc(var(--plus-gutter) * -1);
  padding: 0 var(--plus-gutter);
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--rule) transparent;
}
.filmstrip::-webkit-scrollbar { height: 2px; }
.filmstrip::-webkit-scrollbar-thumb { background: var(--rule); }
.film {
  flex: 0 0 280px;
  aspect-ratio: 4/3;
  background: linear-gradient(180deg, #1a0e06, #0a0604);
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  transition: border-color 220ms ease;
}
.film:hover { border-color: var(--copper-dim); }
.film__date {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--font-label); font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  color: var(--copper);
  background: rgba(10,6,4,0.75);
  padding: 4px 8px;
  backdrop-filter: blur(4px);
  z-index: 2;
}
.film__title {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  font-family: var(--font-h);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.3;
  z-index: 2;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}
.film__placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.3em;
  color: rgba(199,129,58,0.25);
  text-transform: uppercase;
}

@media (max-width: 780px) {
  .events-plus__featured { grid-template-columns: 1fr; }
  .events-plus__featured-body { padding: 28px; }
}

/* ---------- RESIDENTS / COMMUNITY ---------- */
.residents {
  padding: 40px var(--plus-gutter) 120px;
  max-width: var(--grid-max);
  margin: 0 auto;
}
.residents__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.resident {
  padding: 28px;
  border: 1px solid var(--rule);
  background: var(--panel);
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color 240ms ease, transform 240ms ease;
}
.resident:hover { border-color: var(--copper-dim); transform: translateY(-3px); }
.resident__logo {
  width: 40px; height: 40px;
  border: 1px solid var(--rule);
  display: grid; place-items: center;
  font-family: var(--font-h);
  color: var(--copper);
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.resident__name {
  font-family: var(--font-h);
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.resident__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
}
.resident__desc { font-size: 13px; line-height: 1.65; color: var(--ink-2); margin: 4px 0 0; }

/* ---------- PRESS ---------- */
.press {
  padding: 40px var(--plus-gutter) 120px;
  max-width: var(--grid-max);
  margin: 0 auto;
}
.press__list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--rule);
}
.press-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 30px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  transition: padding 240ms ease;
}
.press-item:hover { padding-left: 16px; }
.press-item__date {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.press-item__title {
  font-family: var(--font-h);
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.3;
  margin: 0;
  transition: color 240ms ease;
}
.press-item:hover .press-item__title { color: var(--copper); }
.press-item__source {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--copper);
  font-size: 15px;
}
.press-item__arrow { color: var(--ink-3); transition: transform 240ms ease, color 240ms ease; }
.press-item:hover .press-item__arrow { color: var(--copper); transform: translateX(6px); }

@media (max-width: 780px) {
  .press-item { grid-template-columns: 1fr auto; gap: 10px; }
  .press-item__date, .press-item__source { grid-column: 1 / -1; font-size: 11px; }
}

/* ---------- GALLERY LIGHTBOX ---------- */
.gallery-plus {
  padding: 40px var(--plus-gutter) 120px;
  max-width: var(--grid-max);
  margin: 0 auto;
}
.gallery-plus__main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.gallery-plus__hero {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2a1608, #0a0604);
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  transition: all 400ms ease;
}
.gallery-plus__hero .hero-label {
  position: absolute;
  bottom: 20px; left: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  background: rgba(10,6,4,0.7);
  padding: 6px 10px;
  backdrop-filter: blur(4px);
}
.gallery-plus__hero .hero-caption {
  position: absolute;
  top: 20px; left: 20px; right: 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  max-width: 30ch;
}
.gallery-plus__sidelist {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 20px;
}
.g-thumb {
  background: linear-gradient(180deg, #1a0e06, #0a0604);
  border: 1px solid var(--rule);
  cursor: pointer;
  position: relative;
  transition: border-color 200ms ease;
}
.g-thumb.is-active { border-color: var(--copper); }
.g-thumb:hover { border-color: var(--copper-dim); }
.g-thumb .tag {
  position: absolute;
  bottom: 8px; left: 8px;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  background: rgba(10,6,4,0.7);
  padding: 3px 6px;
  backdrop-filter: blur(4px);
}
.gallery-plus__strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.gallery-plus__strip .g-thumb {
  aspect-ratio: 1;
}

@media (max-width: 900px) {
  .gallery-plus__main { grid-template-columns: 1fr; }
  .gallery-plus__sidelist { grid-template-columns: repeat(3, 1fr); grid-template-rows: 1fr; }
  .gallery-plus__strip { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- LOCATION ---------- */
.location-plus {
  padding: 40px var(--plus-gutter) 120px;
  max-width: var(--grid-max);
  margin: 0 auto;
}
.location-plus__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
}
.location-plus__card {
  padding: 36px;
  background: var(--panel);
  border: 1px solid var(--rule);
}
.location-plus__card h3 {
  font-family: var(--font-h);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 20px;
  color: var(--ink);
}
.location-plus__card .addr {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--copper);
  margin: 0 0 28px;
}
.directions {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--rule);
}
.dir-row {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.dir-row:last-child { border-bottom: 0; }
.dir-row .ic {
  width: 36px; height: 36px;
  border: 1px solid var(--rule);
  display: grid; place-items: center;
  color: var(--copper);
}
.dir-row .ic svg { width: 16px; height: 16px; }
.dir-row .label {
  font-family: var(--font-label); font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: block;
}
.dir-row .val {
  font-size: 14px;
  color: var(--ink);
  margin-top: 4px;
}
.dir-row .time {
  font-family: var(--font-h);
  font-size: 18px;
  color: var(--copper);
  letter-spacing: 0.04em;
}

.location-plus__map {
  aspect-ratio: 4/3;
  border: 1px solid var(--rule);
  background: #0a0604;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.location-plus__map iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
  /* Tame Google's default map saturation toward our warm dark palette */
  filter: grayscale(0.45) contrast(0.95) brightness(0.85) sepia(0.18) hue-rotate(-8deg);
  transition: filter 320ms ease;
}
.location-plus__map:hover iframe { filter: grayscale(0.2) contrast(1) brightness(1) sepia(0.05); }
.map-pin {
  position: absolute;
  left: 24px; bottom: 24px;
  background: rgba(10,6,4,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--copper);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none;
  max-width: 260px;
}
.map-pin__brand {
  font-family: var(--font-h);
  font-size: 16px;
  letter-spacing: 0.18em;
  color: var(--copper);
}
.map-pin__addr {
  font-family: var(--font-label); font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.09em;
  color: var(--ink-2);
  text-transform: uppercase;
}
.map-pin__cta {
  font-family: var(--font-label); font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--copper);
  margin-top: 4px;
}

@media (max-width: 900px) { .location-plus__inner { grid-template-columns: 1fr; } }

/* ---------- FOOTER: NEWSLETTER ---------- */
.footer-plus {
  background: #0a0604;
  border-top: 1px solid var(--rule);
  padding: 80px var(--plus-gutter) 40px;
  color: var(--ink-2);
}
.footer-plus__inner {
  max-width: var(--grid-max);
  margin: 0 auto;
}
.footer-plus__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--rule);
}
.footer-plus__brand img {
  height: 48px; margin-bottom: 20px;
}
.footer-plus__brand p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--ink-3);
  max-width: 32ch;
  margin: 0 0 28px;
}
.footer-plus__newsletter {
  display: flex;
  border: 1px solid var(--rule);
  background: transparent;
  transition: border-color 200ms ease;
}
.footer-plus__newsletter:focus-within { border-color: var(--copper); }
.footer-plus__newsletter input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 14px 18px;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  outline: none;
}
.footer-plus__newsletter input::placeholder { color: var(--ink-3); }
.footer-plus__newsletter button {
  background: var(--copper);
  color: #120a06;
  border: 0;
  padding: 0 22px;
  font-family: var(--font-label); font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms ease;
}
.footer-plus__newsletter button:hover { background: var(--ember); }

.footer-plus__col h5 {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 20px;
  font-weight: 500;
}
.footer-plus__col a, .footer-plus__col p {
  display: block;
  font-size: 13.5px;
  color: var(--ink-2);
  text-decoration: none;
  line-height: 2;
  margin: 0;
}
.footer-plus__col a:hover { color: var(--copper); }

.footer-plus__bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  padding-top: 32px;
  font-family: var(--font-label); font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.footer-plus__bottom .social { display: flex; gap: 10px; justify-content: center; }
.footer-plus__bottom .social a {
  width: 36px; height: 36px;
  border: 1px solid var(--rule);
  display: grid; place-items: center;
  color: var(--ink-2);
  transition: all 200ms ease;
}
.footer-plus__bottom .social a:hover { border-color: var(--copper); color: var(--copper); }
.footer-plus__bottom .social svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .footer-plus__top { grid-template-columns: 1fr 1fr; }
  .footer-plus__brand { grid-column: 1 / -1; }
  .footer-plus__bottom { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .footer-plus__bottom .social { justify-content: center; }
}

/* ---------- Real-photo img treatment ----------
   Events featured, filmstrip cells, gallery thumbs all get the same warm dark overlay
   so photos sit within the dark warehouse palette rather than jumping out. */
.events-plus__featured-img,
.film,
.g-thumb { isolation: isolate; }

/* <picture> wrappers are layout-transparent so the image rules below still match
   through them (these thumbnails were direct-child <img>; now <picture> > <img>). */
picture { display: contents; }

.events-plus__featured-img > img,
.film img,
.g-thumb img,
.gallery-plus__hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: opacity 300ms ease;
}
.gallery-plus__hero { isolation: isolate; }
.gallery-plus__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10,6,4,0.25) 0%, rgba(10,6,4,0) 40%, rgba(10,6,4,0.55) 100%);
}

.events-plus__featured-img { position: relative; }

.events-plus__featured-img::after,
.film::after,
.g-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,6,4,0.15) 0%, rgba(10,6,4,0.0) 35%, rgba(10,6,4,0.75) 100%),
    linear-gradient(0deg, rgba(199,129,58,0.06), rgba(199,129,58,0.06));
  mix-blend-mode: multiply;
  transition: opacity 240ms ease;
}

.film::after { opacity: 0.9; }
.film:hover::after { opacity: 0.7; }

.g-thumb::after { opacity: 0.55; }
.g-thumb.is-active::after { opacity: 0.25; }
.g-thumb:hover::after { opacity: 0.35; }

/* bring overlays and text above the photo */
.film__date, .film__title, .film__placeholder,
.g-thumb .tag,
.gallery-plus__hero .hero-label, .gallery-plus__hero .hero-caption,
.events-plus__featured-img .hero-label { z-index: 2; }

/* hero-label styling shared by gallery + events featured */
.events-plus__featured-img .hero-label {
  position: absolute;
  bottom: 20px; left: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  background: rgba(10,6,4,0.7);
  padding: 6px 10px;
  backdrop-filter: blur(4px);
}

/* Make events featured image and films explicitly clickable */
.events-plus__featured-img { cursor: zoom-in; }
.film { cursor: pointer; }

/* ---------- Small-text readability ----------
   The mono labels at 9–12 px were too dim against the deep dark background.
   Bump weight to 500 (JetBrains Mono ships 400 + 500). Brighter ink-3 / ink-2
   already came from the color-variable change in styles.css. */
.eyebrow,
.mono,
.spec-strip__item,
.chapter-head__num, .chapter-head__num em,
.atglance__cell .label,
.space-tab__num, .space-tab__name em, .space-panel__spec .k,
.avail-plus__tab,
.listing__idx, .listing__name em, .listing__specs, .listing__specs b, .listing__status,
.listing__details h4,
.tl-entry__year em,
.events-plus__tag, .events-plus__featured-body .meta-row,
.film__date, .film__title,
.g-thumb .tag,
.gallery-plus__hero .hero-label,
.events-plus__featured-img .hero-label,
.dir-row .label,
.footer-plus__col h5, .footer-plus__bottom,
.vbar, .vbar__back, .vbar__tab, .vbar__lang,
.nav__links, .nav__cta,
.nav__brand small,
.hero-plus__overline, .hero-plus__nav, .hero-plus__counter, .hero-plus__meta, .hero-plus__year {
  font-weight: 500;
}


/* ---------- Gallery hero prev/next ---------- */
.gh-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: rgba(10,6,4,0.55);
  backdrop-filter: blur(6px);
  border: 1px solid var(--rule);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 18px;
  cursor: pointer;
  z-index: 4;
  transition: all 200ms ease;
}
.gh-nav:hover { border-color: var(--copper); color: var(--copper); background: rgba(10,6,4,0.75); }
.gh-nav--prev { left: 16px; }
.gh-nav--next { right: 16px; }
@media (max-width: 600px) {
  .gh-nav { width: 40px; height: 40px; font-size: 16px; }
  .gh-nav--prev { left: 8px; }
  .gh-nav--next { right: 8px; }
}

/* ---------- Filmstrip prev/next ---------- */
.filmstrip-wrap {
  position: relative;
}
.film-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: rgba(10,6,4,0.75);
  backdrop-filter: blur(6px);
  border: 1px solid var(--rule);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 18px;
  cursor: pointer;
  z-index: 4;
  transition: all 200ms ease;
}
.film-nav:hover { border-color: var(--copper); color: var(--copper); }
.film-nav.is-disabled { opacity: 0.3; cursor: default; pointer-events: none; }
.film-nav--prev { left: 8px; }
.film-nav--next { right: 8px; }
@media (max-width: 700px) {
  .film-nav { display: none; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  z-index: 300;
  background: rgba(10,6,4,0.94);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 240ms ease;
}
.lightbox.is-open { display: flex; opacity: 1; }
.lightbox__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 92vw;
  max-height: 86vh;
}
.lightbox__figure img {
  max-width: 92vw;
  max-height: 76vh;
  object-fit: contain;
  border: 1px solid var(--rule);
  background: #0a0604;
  display: block;
}
.lightbox__figure figcaption {
  font-family: var(--font-h);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  text-align: center;
  max-width: 60ch;
}
.lightbox__close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--ink);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  transition: all 200ms ease;
}
.lightbox__close:hover { border-color: var(--copper); color: var(--copper); }
.lightbox__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 18px;
  transition: all 200ms ease;
}
.lightbox__nav:hover { border-color: var(--copper); color: var(--copper); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
@media (max-width: 700px) {
  .lightbox__close { top: 12px; right: 12px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
}

/* indicate clickability */
.film, .gallery-plus__hero { cursor: zoom-in; }

/* ============================================================
   Readability bump (round 2)
   User feedback: small text still too small / not bold enough.
   - +1–2 px on mono labels and small body copy
   - body copy → weight 500
   - serif small headings → weight 600 (Cinzel + Cormorant ship 600)
   ============================================================ */

/* mono labels: bump 1–2 px */
.atglance__cell .label,
.dir-row .label,
.listing__idx, .listing__specs, .listing__status,
.tl-entry__year em,
.events-plus__tag,
.events-plus__featured-body .meta-row,
.gallery-plus__hero .hero-label,
.events-plus__featured-img .hero-label,
.footer-plus__col h5,
.footer-plus__bottom,
.space-panel__spec .k,
.space-tab__num,
.space-tab__name em,
.listing__name em,
.listing__details h4,
.avail-plus__tab,
.hero-plus__nav,
.hero-plus__meta {
  font-size: 11px;
}

/* mono labels at 8 px (gallery thumb tags, atglance "·" sub) — bump to 10 */
.g-thumb .tag { font-size: 10px; }

/* film card date badge — was 9 px, bump to 11 */
.film__date { font-size: 11px; }
.film__title { font-size: 14px; }

/* spec strip — was 14 px, bump to 15 */
.spec-strip__item { font-size: 15px; }

/* body small-text: brighter color (already done) + weight 500 */
.atglance__cell .sub,
.listing__desc,
.tl-entry__body p,
.space-panel__body p,
.events-plus__featured-body p,
.dir-row .val,
.footer-plus__col a, .footer-plus__col p,
.footer-plus__brand p,
.listing__details ul li,
.resident__desc {
  font-weight: 500;
}

/* slightly bigger body small text */
.atglance__cell .sub { font-size: 13px; }
.listing__desc { font-size: 14.5px; line-height: 1.7; }
.listing__details ul li { font-size: 14px; }
.dir-row .val { font-size: 15px; }
.events-plus__featured-body p { font-size: 15.5px; line-height: 1.75; }
.space-panel__body p { font-size: 16px; line-height: 1.75; }
.tl-entry__body p { font-size: 16px; line-height: 1.8; }
.footer-plus__col a, .footer-plus__col p, .footer-plus__brand p { font-size: 14px; line-height: 1.85; }

/* Spec values inside listings (the "65 m²" / "3.2 m") */
.listing__specs b { font-size: 14px; }

/* Cinzel small headings: bump weight 500 → 600 for legibility at small sizes */
.listing__name,
.space-tab__name,
.tl-entry__body h3,
.events-plus__featured-body h3,
.location-plus__card h3,
.space-panel__body h3,
.atglance__cell .value,
.tl-entry__year,
.press-item__title,
.resident__name,
.footer-plus__brand h3 {
  font-weight: 600;
}

/* Listing-name + tab-name slightly bigger */
.listing__name { font-size: 22px; letter-spacing: 0.04em; }
.space-tab__name { font-size: 20px; }

/* Eyebrow / mono utility */
.eyebrow, .mono { font-size: 12px; }

/* ============================================================
   Rounded corners — site-wide softening (round 3)
   Replaces sharp 0-radius edges on buttons, cards, galleries,
   media tiles, panels, maps and nav buttons.
   ============================================================ */
:root {
  --r-sm: 12px;   /* thumbnails, small media, icons, floor plans */
  --r-md: 16px;   /* cards, lists, panels */
  --r-lg: 22px;   /* large media, hero tiles, maps, featured */
}

/* Buttons → pill */
.btn-pri, .btn-sec { border-radius: 999px; }

/* Square nav buttons → circular */
.gh-nav, .film-nav, .lightbox__nav, .lightbox__close { border-radius: 50%; }

/* At-a-glance stat grid */
.atglance__grid { border-radius: var(--r-md); overflow: hidden; }

/* Spaces immersive panel */
.spaces-plus__panel { border-radius: var(--r-lg); overflow: hidden; }
.spaces-plus__panel-frame { border-radius: calc(var(--r-lg) - 12px); }

/* Available listings */
.avail-plus__list { border-radius: var(--r-md); overflow: hidden; }
.listing__plan { border-radius: var(--r-sm); overflow: hidden; }
.avail-plus__tab { border-radius: 10px 10px 0 0; }

/* Events */
.events-plus__featured { border-radius: var(--r-lg); overflow: hidden; }
.film { border-radius: var(--r-md); }

/* Gallery */
.gallery-plus__hero { border-radius: var(--r-lg); overflow: hidden; }
.g-thumb { border-radius: var(--r-sm); overflow: hidden; }

/* Location */
.location-plus__card { border-radius: var(--r-lg); }
.location-plus__map { border-radius: var(--r-lg); overflow: hidden; }
.dir-row .ic { border-radius: 10px; }

/* Community / press cards (if rendered) */
.resident, .press-item { border-radius: var(--r-md); }

/* Footer newsletter group */
.footer-plus__newsletter { border-radius: 999px; overflow: hidden; }

/* Form fields */
.location-plus__card input,
.location-plus__card select,
.location-plus__card textarea { border-radius: 8px; }

/* Lightbox image */
.lightbox__figure img { border-radius: var(--r-md); }

/* Map overlay info card */
.map-pin { border-radius: var(--r-sm); }

/* ============================================================
   Contact form — mobile-safe (prevents horizontal overflow)
   ============================================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
/* form controls must be allowed to shrink inside grid/flex tracks */
.location-plus__card input,
.location-plus__card select,
.location-plus__card textarea {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }      /* name + email stack */
  .location-plus__card { padding: 24px !important; } /* tighten the 40px inline padding */
}

/* ============================================================
   Mobile nav: hamburger + full-screen menu + polish (round 4)
   ============================================================ */

/* Hamburger button — hidden on desktop, shown ≤960px */
.nav__burger {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: transparent; border: 0; cursor: pointer; padding: 0;
  margin-left: 4px;
}
.nav__burger span {
  width: 20px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 240ms ease, opacity 200ms ease;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Full-screen mobile menu overlay */
.nav-menu {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(12,8,5,0.97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px;
  opacity: 0; pointer-events: none;
  transition: opacity 280ms ease;
}
.nav-menu.is-open { opacity: 1; pointer-events: auto; }
.nav-menu a {
  font-family: var(--font-h);
  font-size: 24px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-2); padding: 12px 24px; text-decoration: none;
  transition: color 180ms ease;
}
.nav-menu a:hover, .nav-menu a:active { color: var(--copper); }
.nav-menu__cta { margin-top: 26px; color: #120a06 !important; }

@media (min-width: 961px) {
  .nav-menu { display: none; }
}
@media (max-width: 960px) {
  .nav__burger { display: flex; }
  .nav__cta { display: none; }     /* primary CTA moves into the menu */
  .nav__lang { padding: 11px 12px; } /* a touch taller for thumbs */
}

/* #2 — Spaces spec row: clean label/value rows on mobile (no cramped 3-col) */
@media (max-width: 600px) {
  .space-panel__specs { grid-template-columns: 1fr; gap: 14px; }
  .space-panel__spec { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
  .space-panel__spec .k { margin-bottom: 0; }
}

/* #4 — Available filter tabs: drop counts + tighten so all four fit one row */
@media (max-width: 600px) {
  .avail-plus__tab { padding: 14px 12px; letter-spacing: 0.12em; }
  .avail-plus__tab .count { display: none; }
}

/* #5 — Chapter heads: single column on mobile (number = small label above title),
   less top padding + tighter gap, everything flush to the left edge. */
@media (max-width: 600px) {
  .chapter-head { grid-template-columns: 1fr; gap: 8px; padding-top: 48px; }
  .chapter-head__num { min-width: 0; }
  .chapter-head__kicker { grid-column: 1; margin-top: 18px; }
}

/* #6 — Spaces "four types": show all four panels open (no tab UI) on mobile,
   each panel as its own image+title+text card. (JS + desktop untouched.) */
@media (max-width: 600px) {
  .spaces-plus__menu { display: none; }
  .spaces-plus__panel { border: 0; background: none; min-height: 0; overflow: visible; }
  .spaces-plus__panel-frame { display: none; }
  .space-panel {
    display: block;
    background: var(--panel);
    border: 1px solid var(--rule);
    border-radius: var(--r-md);
    overflow: hidden;
    margin-bottom: 20px;
  }
  .space-panel:last-child { margin-bottom: 0; }
  .space-panel.is-active { animation: none; }
}


/* Available card — fill image height on desktop (no bottom gap) + prominent price */
@media (min-width: 781px) {
  .avail-plus .events-plus__featured-img { aspect-ratio: auto; height: 100%; }
}
.avail-price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.avail-price__amount { font-family: var(--font-display); font-size: clamp(28px, 3vw, 38px); line-height: 1; color: var(--copper); }
.avail-price__unit { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--ink-3); }


/* FIX 3 — Gallery: remove place-name labels overlaid on thumbnails (images kept;
   .tag text stays in the DOM so the lightbox caption still works). Also drop the
   static place-name caption on the featured image (it didn't update -> no place names). */
.g-thumb .tag { display: none; }
.gallery-plus__hero .hero-caption { display: none; }

/* FIX 4 — Map: the pin card is now a real <a>; make it clickable over the iframe. */
.map-pin { pointer-events: auto; text-decoration: none; }

/* FIX 1 + FIX 2 — mobile only */
@media (max-width: 600px) {
  /* FIX 1 — hide the hero slide-name labels; keep arrows + counter, anchored to the
     hero bottom (overrides the <=980px rule that makes the nav static/in-flow). */
  .hero-plus__slidenames { display: none; }
  .hero-plus__nav { position: absolute; bottom: 20px; left: var(--plus-gutter); margin-top: 0; }
  /* FIX 2 — make the italic section subtitle comfortably readable */
  .chapter-head__title em { font-size: 16px; line-height: 1.5; }
}

/* Events featured overlay words -> Inter (the avail #avNum counter stays mono) */
#evLabel { font-family: var(--font-label); font-weight: 500; letter-spacing: 0.15em; font-size: 11px; }
