/* Regent Urban Development — Editorial Corporate Site */

:root {
  /* Brand colors */
  --green: #074447;
  --green-deep: #053336;
  --green-soft: #0b5256;
  --gold: #c4a77c;
  --gold-soft: #d4bb95;
  --cream: #f6f2ea;
  --bone: #efe9dc;
  --ink: #141414;
  --paper: #fbfaf6;
  --line: rgba(7, 68, 71, 0.18);
  --line-soft: rgba(7, 68, 71, 0.08);
  --muted: #5a615f;

  /* Type */
  --serif: "Playfair Display", "Times New Roman", serif;
  --sans: "Jost", "Inter", system-ui, sans-serif;
  --script: "Petit Formal Script", "Snell Roundhand", cursive;
  --arabic: "Cormorant Garamond", "Amiri", "Greta Arabic", serif;
  --arabic-sans: "Inter", "Tajawal", sans-serif;

  /* Rhythm */
  --container: 1440px;
  --gutter: 56px;
  --section-y: 160px;
}

@media (max-width: 900px) {
  :root {
    --gutter: 24px;
    --section-y: 96px;
  }
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body[data-lang="ar"] {
  direction: rtl;
  font-family: var(--arabic-sans);
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ─── Type scale ─── */
.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow.gold { color: var(--gold); }
.eyebrow.cream { color: rgba(246, 242, 234, 0.7); }

body[data-lang="ar"] .eyebrow { letter-spacing: 0.06em; }

.script {
  font-family: var(--script);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  font-size: 1.6em;
  line-height: 1;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.05;
  text-wrap: balance;
}

body[data-lang="ar"] h1,
body[data-lang="ar"] h2,
body[data-lang="ar"] h3,
body[data-lang="ar"] h4 {
  font-family: var(--arabic);
  letter-spacing: 0;
  line-height: 1.25;
}

h1 { font-size: clamp(48px, 7vw, 104px); }
h2 { font-size: clamp(38px, 4.6vw, 72px); }
h3 { font-size: clamp(28px, 2.6vw, 42px); }
h4 { font-size: clamp(20px, 1.6vw, 26px); line-height: 1.25; }

p { margin: 0; line-height: 1.7; }
.lede { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.55; color: var(--ink); font-weight: 300; }

/* ─── Layout primitives ─── */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: var(--section-y) 0; }
.section-tight { padding: 96px 0; }

.rule {
  height: 1px;
  background: var(--line);
  width: 100%;
}

.rule-gold {
  height: 1px;
  background: var(--gold);
  width: 64px;
  display: block;
}

/* ─── Top navigation ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
  color: var(--cream);
}

.nav.scrolled {
  background: rgba(7, 68, 71, 0.96);
  backdrop-filter: blur(12px);
  padding: 16px var(--gutter);
  box-shadow: 0 1px 0 rgba(196, 167, 124, 0.18);
}

.nav.light { color: var(--green); }
.nav.light.scrolled {
  background: rgba(251, 250, 246, 0.97);
  box-shadow: 0 1px 0 var(--line-soft);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-logo .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
  padding: 8px 14px;
  border-radius: 999px;
  opacity: 0.75;
  transition: opacity 0.2s, background 0.2s;
  font-family: var(--sans);
}
.lang-toggle:hover { opacity: 1; }
.lang-toggle .sep { opacity: 0.4; }
.lang-toggle .on { color: var(--gold); }

.nav-cta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 12px 20px;
  border: 1px solid currentColor;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green);
}

.menu-btn {
  display: none;
  background: transparent;
  border: 0;
  color: inherit;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px;
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: inline-flex; align-items: center; gap: 8px; }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  color: var(--cream);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,68,71,0.55) 0%, rgba(7,68,71,0.35) 35%, rgba(7,68,71,0.85) 100%),
    linear-gradient(90deg, rgba(7,68,71,0.35), rgba(7,68,71,0) 55%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--gutter) 96px;
  max-width: var(--container);
  margin: 0 auto;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-eyebrow .rule-gold { width: 48px; }

.hero h1 {
  max-width: 16ch;
  font-weight: 400;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(16px, 1.2vw, 20px);
  max-width: 56ch;
  opacity: 0.85;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero-foot {
  position: absolute;
  bottom: 32px; left: var(--gutter); right: var(--gutter);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246,242,234,0.7);
  pointer-events: none;
}
.hero-foot .scroll-cue { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero-foot .scroll-cue .line {
  width: 1px; height: 56px; background: rgba(246,242,234,0.5);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: 1px solid var(--green);
  color: var(--green);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover {
  background: var(--green);
  color: var(--cream);
}
.btn.btn-gold {
  border-color: var(--gold);
  color: var(--gold);
}
.btn.btn-gold:hover {
  background: var(--gold);
  color: var(--green);
}
.btn.btn-cream {
  border-color: var(--cream);
  color: var(--cream);
}
.btn.btn-cream:hover {
  background: var(--cream);
  color: var(--green);
}
.btn .arrow { transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(4px); }

body[data-lang="ar"] .btn:hover .arrow { transform: translateX(-4px); }

/* ─── Section header pattern ─── */
.section-head {
  display: grid;
  grid-template-columns: minmax(auto, 360px) 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
.section-head .label { display: flex; flex-direction: column; gap: 18px; }
.section-head .label .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
}
.section-head h2 { max-width: 18ch; }

@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}

/* ─── Footer ─── */
.footer {
  background: var(--green);
  color: var(--cream);
  padding: 120px var(--gutter) 32px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(196,167,124,0.25);
}
.footer h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.15;
  max-width: 12ch;
  margin-bottom: 28px;
}
.footer h3 em { font-style: italic; color: var(--gold); }
.footer .col-title {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14px; opacity: 0.85; }
.footer ul a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
}
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

/* ─── Pillar grid ─── */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.pillar {
  padding: 56px 32px 64px;
  border-right: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 360px;
}
.pillar:last-child { border-right: 0; }
.pillar .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 18px;
}
.pillar h3 {
  font-size: 28px;
  line-height: 1.15;
}
.pillar p { font-size: 15px; color: var(--muted); margin-top: auto; }
@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar:nth-child(2) { border-right: 0; }
  .pillar { border-bottom: 1px solid var(--line); }
}

/* ─── Stats / numbers ─── */
.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.stat .figure {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 78px);
  line-height: 1;
  color: var(--green);
}
.stat .figure .unit { font-size: 0.45em; font-style: italic; color: var(--gold); margin-left: 6px; }
.stat .caption { font-size: 14px; color: var(--muted); max-width: 24ch; }
@media (max-width: 900px) { .numbers { grid-template-columns: 1fr 1fr; } }

/* ─── Editorial split ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.split.wide-img { grid-template-columns: 1.1fr 0.9fr; }
.split.wide-text { grid-template-columns: 0.9fr 1.1fr; }
.split img, .split .img-slot {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background-color: var(--bone);
}
.split.landscape img, .split.landscape .img-slot { aspect-ratio: 3 / 2; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 48px; }
}

/* ─── Image placeholders ─── */
.img-slot {
  background-color: var(--bone);
  background-image:
    linear-gradient(135deg, rgba(7,68,71,0.04), rgba(7,68,71,0.08)),
    radial-gradient(circle at 30% 70%, rgba(196,167,124,0.15), transparent 50%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.img-slot .label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.6;
}
.img-slot img { width: 100%; height: 100%; object-fit: cover; }

/* Use real architecture photos via Unsplash for atmosphere */
.img-arch-1 { background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&q=80'); background-size: cover; background-position: center; }
.img-arch-2 { background-image: url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?w=1600&q=80'); background-size: cover; background-position: center; }
.img-arch-3 { background-image: url('https://images.unsplash.com/photo-1582268611958-ebfd161ef9cf?w=1600&q=80'); background-size: cover; background-position: center; }
.img-landscape-1 { background-image: url('https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1800&q=80'); background-size: cover; background-position: center; }
.img-landscape-2 { background-image: url('https://images.unsplash.com/photo-1502602898657-3e91760cbb34?w=1800&q=80'); background-size: cover; background-position: center; }
.img-interior-1 { background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1600&q=80'); background-size: cover; background-position: center; }
.img-interior-2 { background-image: url('https://images.unsplash.com/photo-1618220179428-22790b461013?w=1600&q=80'); background-size: cover; background-position: center; }
.img-water-1 { background-image: url('https://images.unsplash.com/photo-1518021964703-4b2030f03085?w=1800&q=80'); background-size: cover; background-position: center; }
.img-water-2 { background-image: url('https://images.unsplash.com/photo-1540541338287-41700207dee6?w=1800&q=80'); background-size: cover; background-position: center; }
.img-hospitality { background-image: url('https://images.unsplash.com/photo-1551918120-9739cb430c6d?w=1800&q=80'); background-size: cover; background-position: center; }
.img-pyramid { background-image: url('https://images.unsplash.com/photo-1572252009286-268acec5ca0a?w=1800&q=80'); background-size: cover; background-position: center; }
.img-wellness { background-image: url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?w=1600&q=80'); background-size: cover; background-position: center; }
.img-culinary { background-image: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?w=1600&q=80'); background-size: cover; background-position: center; }
.img-culture { background-image: url('https://images.unsplash.com/photo-1531058020387-3be344556be6?w=1600&q=80'); background-size: cover; background-position: center; }
.img-hero-vie { background-image: linear-gradient(180deg, rgba(7,68,71,0.2), rgba(7,68,71,0.5)), url('https://images.unsplash.com/photo-1542718610-a1d656d1884c?w=2400&q=85'); background-size: cover; background-position: center; }
.img-hero-home { background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=2400&q=85'); background-size: cover; background-position: center; }
.img-hero-about { background-image: url('https://images.unsplash.com/photo-1604014237800-1c9102c219da?w=2400&q=85'); background-size: cover; background-position: center; }
.img-hero-philosophy { background-image: url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?w=2400&q=85'); background-size: cover; background-position: center; }
.img-hero-partners { background-image: url('https://images.unsplash.com/photo-1551776235-dde6d482980b?w=2400&q=85'); background-size: cover; background-position: center; }
.img-hero-contact { background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=2400&q=85'); background-size: cover; background-position: center; }

/* ─── Reveal animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.40s; }

/* ─── Marquee ─── */
.marquee {
  overflow: hidden;
  padding: 28px 0;
  background: var(--green);
  color: var(--gold);
  border-top: 1px solid rgba(196,167,124,0.25);
  border-bottom: 1px solid rgba(196,167,124,0.25);
}
.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  align-items: center;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 64px; }
.marquee-track .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

body[data-lang="ar"] .marquee-track { animation-direction: reverse; }

/* ─── Quote ─── */
.pull-quote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 22ch;
  text-wrap: balance;
}
.pull-quote em { color: var(--gold); font-style: italic; }

/* ─── Pages on dark canvas ─── */
.dark {
  background: var(--green);
  color: var(--cream);
}
.dark h1, .dark h2, .dark h3, .dark h4 { color: var(--cream); }
.dark h1 em, .dark h2 em, .dark h3 em { color: var(--gold); }
.dark .eyebrow { color: var(--gold); }
.dark .rule { background: rgba(196,167,124,0.25); }
.dark .pillars { border-color: rgba(196,167,124,0.25); }
.dark .pillar { border-color: rgba(196,167,124,0.25); }
.dark .pillar p { color: rgba(246,242,234,0.7); }
.dark .stat { border-color: rgba(196,167,124,0.25); }
.dark .stat .figure { color: var(--cream); }
.dark .btn { color: var(--cream); border-color: var(--cream); }
.dark .btn:hover { background: var(--gold); color: var(--green); border-color: var(--gold); }

/* ─── i18n helpers ─── */
span[data-en], span[data-ar] { display: inline; }
body:not([data-lang="ar"]) .ar-only { display: none !important; }
body[data-lang="ar"] .en-only { display: none !important; }

/* RTL adjustments */
body[data-lang="ar"] .nav-links { flex-direction: row-reverse; }
body[data-lang="ar"] .section-head { grid-template-columns: 1fr minmax(auto, 360px); }
body[data-lang="ar"] .section-head .label { order: 2; }
body[data-lang="ar"] .section-head h2 { order: 1; }
body[data-lang="ar"] .hero-eyebrow { flex-direction: row-reverse; }

/* ─── Cursor-following media (subtle parallax) ─── */
.parallax { transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1); will-change: transform; }

/* ─── Forms ─── */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}
.form .full { grid-column: 1 / -1; }
.form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.form input, .form textarea, .form select {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.form input:focus, .form textarea:focus, .form select:focus { border-color: var(--green); }
.form textarea { min-height: 120px; resize: vertical; }

.dark .form label { color: rgba(246,242,234,0.6); }
.dark .form input, .dark .form textarea, .dark .form select { color: var(--cream); border-color: rgba(196,167,124,0.3); }
.dark .form input:focus, .dark .form textarea:focus, .dark .form select:focus { border-color: var(--gold); }

@media (max-width: 700px) { .form { grid-template-columns: 1fr; } }

/* ─── Partner card ─── */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.partner {
  padding: 56px 48px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 280px;
}
.partner:nth-child(2n) { border-right: 0; }
.partner h3 { font-size: 32px; }
.partner .role {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
}
.partner p { font-size: 15px; color: var(--muted); margin-top: auto; max-width: 50ch; }
@media (max-width: 900px) {
  .partner-grid { grid-template-columns: 1fr; }
  .partner { border-right: 0; }
}

/* ─── Feature list ─── */
.features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.features li {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
}
.features li:last-child { border-bottom: 0; }
.features li .index {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 18px;
}
.features li .meta { color: var(--muted); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; }
.dark .features li { border-color: rgba(196,167,124,0.18); }
.dark .features li .meta { color: rgba(246,242,234,0.5); }

/* ─── Vertical text decoration ─── */
.vert-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── Inline logo strip ─── */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 48px 0;
}
.logo-strip .item {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.logo-strip .item:hover { opacity: 1; }
.dark .logo-strip .item { color: var(--cream); }

/* ═══════════════════════════════════════════════════════════
   ARCHITECTURAL / DRAWING-SHEET DIRECTION (home v2)
   ═══════════════════════════════════════════════════════════ */

:root {
  --paper-warm: #f4efe3;
  --ink-warm: #1a1f1e;
  --rule: rgba(7, 68, 71, 0.22);
  --rule-soft: rgba(7, 68, 71, 0.10);
  --rule-gold: rgba(196, 167, 124, 0.45);
  --mono: "JetBrains Mono", "IBM Plex Mono", "SFMono-Regular", ui-monospace, monospace;
}

.arch { background: var(--paper-warm); color: var(--green); }
.arch body, body.arch { background: var(--paper-warm); }

/* ── Hairline grid that runs across the entire page ────── */
.sheet-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(to right, var(--rule-soft) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%;
  mix-blend-mode: multiply;
  opacity: 0.6;
}
.sheet-grid::before, .sheet-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  margin: 0 32px;
}

/* ── Sheet border frame (printed-drawing edge) ─────────── */
.sheet-frame {
  position: fixed;
  pointer-events: none;
  z-index: 2;
  inset: 16px;
  border: 1px solid var(--rule);
}
.sheet-frame::before, .sheet-frame::after {
  content: "";
  position: absolute;
  border: 1px solid var(--rule);
  width: 18px; height: 18px;
}
.sheet-frame::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.sheet-frame::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

/* ── Top metadata strip ────────────────────────────────── */
.sheet-meta {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 32px;
  padding: 22px 48px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--paper-warm);
}
.sheet-meta .crest {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.sheet-meta .crest .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); display: inline-block;
  margin-right: 10px; transform: translateY(-3px);
}
.sheet-meta .pair { display: flex; align-items: baseline; gap: 8px; }
.sheet-meta .pair .k { opacity: 0.5; }
.sheet-meta .pair .v { color: var(--ink-warm); }
.sheet-meta .pair.gold .v { color: var(--gold); }

/* ── Architectural nav ─────────────────────────────────── */
.nav-arch {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 16px 48px;
  background: var(--paper-warm);
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.nav-arch .links { display: flex; gap: 28px; justify-self: center; }
.nav-arch .links a { color: var(--green); opacity: 0.7; transition: opacity .2s, color .2s; position: relative; padding: 4px 0; }
.nav-arch .links a:hover { opacity: 1; color: var(--gold); }
.nav-arch .links a.active { opacity: 1; color: var(--green); }
.nav-arch .links a.active::before { content: "■"; color: var(--gold); margin-right: 6px; font-size: 8px; vertical-align: middle; }
.nav-arch .left, .nav-arch .right { display: flex; gap: 18px; align-items: center; }
.nav-arch .right { justify-self: end; }
.nav-arch .cta {
  border: 1px solid var(--green);
  padding: 10px 16px;
  color: var(--green);
  transition: background .2s, color .2s;
}
.nav-arch .cta:hover { background: var(--green); color: var(--paper-warm); }
.nav-arch .lang { opacity: 0.5; }
.nav-arch .lang .on { color: var(--gold); opacity: 1; }

/* ── Sheet wrapper / margins ───────────────────────────── */
.sheet {
  position: relative;
  z-index: 5;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Section heads as drawing title blocks ─────────────── */
.section-arch { padding: 120px 0; position: relative; border-bottom: 1px solid var(--rule); }
.section-arch:last-of-type { border-bottom: 0; }

.title-block {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto;
  gap: 0;
  border: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 64px;
  background: rgba(255,255,255,0.3);
}
.title-block > div {
  padding: 14px 20px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.title-block > div:last-child { border-right: 0; }
.title-block .k { opacity: 0.5; font-size: 9.5px; }
.title-block .v { color: var(--ink-warm); font-family: var(--mono); }
.title-block .sheet-no {
  background: var(--green);
  color: var(--paper-warm);
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  letter-spacing: 0.04em;
}
.title-block .title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--green);
}

/* ── Hero: drawing sheet ───────────────────────────────── */
.hero-arch {
  position: relative;
  padding: 80px 0 60px;
  min-height: 88vh;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 64px;
}
.hero-arch .main {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 48px;
  align-items: end;
}
.hero-arch .vert-sheet-no {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.7;
  align-self: start;
  padding-top: 80px;
  border-left: 1px solid var(--rule);
  padding-left: 14px;
}
.hero-arch h1.giant {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(72px, 14vw, 220px);
  line-height: 0.88;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--green);
  position: relative;
}
.hero-arch h1.giant em {
  font-style: italic;
  color: var(--gold);
}
.hero-arch h1.giant .script-tag {
  font-family: var(--script);
  font-style: italic;
  color: var(--gold);
  font-size: 0.22em;
  vertical-align: super;
  margin-left: 0.2em;
  letter-spacing: 0;
}

/* Project info panel sits at hero bottom */
.hero-info {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.hero-info > div {
  padding: 28px 24px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-info > div:last-child { border-right: 0; }
.hero-info .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.75;
}
.hero-info .val {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.2;
  color: var(--green);
}
.hero-info .val em { color: var(--gold); font-style: italic; }
.hero-info .mono {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-warm);
}

/* ── Compass / north arrow ─────────────────────────────── */
.north {
  position: absolute;
  top: 80px;
  right: 0;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.north svg { width: 100%; height: 100%; }

/* ── Scale bar ─────────────────────────────────────────── */
.scale-bar {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
}
.scale-bar .bar { display: flex; height: 8px; }
.scale-bar .bar span {
  flex: 1;
  border: 1px solid var(--green);
  border-right: 0;
}
.scale-bar .bar span:last-child { border-right: 1px solid var(--green); }
.scale-bar .bar span.fill { background: var(--green); }
.scale-bar .ticks { display: flex; justify-content: space-between; opacity: 0.6; }

/* ── Drawing index (TOC) ───────────────────────────────── */
.drawing-index {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-top: 1px solid var(--rule);
}
.drawing-index .row {
  display: grid;
  grid-template-columns: 72px 1fr 2fr auto auto;
  gap: 32px;
  align-items: center;
  padding: 22px 8px;
  border-bottom: 1px solid var(--rule);
  color: var(--green);
  transition: background .2s, color .2s;
  cursor: pointer;
}
.drawing-index .row:hover { background: rgba(196,167,124,0.08); color: var(--gold); }
.drawing-index .row .no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
}
.drawing-index .row .name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--green);
}
.drawing-index .row:hover .name { color: var(--gold); }
.drawing-index .row .desc { opacity: 0.6; font-size: 10.5px; letter-spacing: 0.16em; }
.drawing-index .row .scale, .drawing-index .row .arrow { opacity: 0.5; font-size: 10.5px; letter-spacing: 0.16em; }

/* ── Big statement with margin annotations ─────────────── */
.statement {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 64px;
  align-items: start;
}
.statement .gutter { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); opacity: 0.6; padding-top: 24px; display: flex; flex-direction: column; gap: 18px; }
.statement .gutter .marker { color: var(--gold); }
.statement .gutter.right { text-align: right; }
.statement-body h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--green);
  margin: 0;
}
.statement-body h2 em { font-style: italic; color: var(--gold); }
.statement-body .lede {
  margin-top: 56px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.4;
  color: var(--ink-warm);
  max-width: 38ch;
  font-style: italic;
  font-weight: 400;
}
.statement-body .body-copy {
  margin-top: 36px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 56ch;
  columns: 2;
  column-gap: 48px;
}

/* ── Pillar plan tiles ─────────────────────────────────── */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}
.plan-tile {
  position: relative;
  padding: 32px 28px;
  border-right: 1px solid var(--rule);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: rgba(255,255,255,0.35);
  transition: background .2s;
}
.plan-tile:last-child { border-right: 0; }
.plan-tile:hover { background: rgba(196,167,124,0.07); }
.plan-tile .corner {
  position: absolute;
  width: 12px; height: 12px;
}
.plan-tile .corner.tl { top: 6px; left: 6px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.plan-tile .corner.tr { top: 6px; right: 6px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.plan-tile .corner.bl { bottom: 6px; left: 6px; border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.plan-tile .corner.br { bottom: 6px; right: 6px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.plan-tile .id {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  justify-content: space-between;
}
.plan-tile h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--green);
  margin: 0;
}
.plan-tile .schematic {
  height: 92px;
  margin: 8px 0 12px;
  position: relative;
}
.plan-tile p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
.plan-tile .dims {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.55;
  padding-top: 14px;
  border-top: 1px dashed var(--rule);
}

/* ── Spec table (data section) ─────────────────────────── */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.spec-table thead th {
  text-align: left;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.6;
  padding: 14px 16px;
  border-bottom: 1px solid var(--rule);
  font-weight: 400;
}
.spec-table thead th:last-child { text-align: right; }
.spec-table tbody td {
  padding: 22px 16px;
  border-bottom: 1px solid var(--rule);
  vertical-align: baseline;
  color: var(--ink-warm);
}
.spec-table tbody td:first-child {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  width: 60px;
}
.spec-table tbody td.name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.005em;
  color: var(--green);
  text-transform: none;
}
.spec-table tbody td.figure {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  color: var(--green);
  text-align: right;
  letter-spacing: -0.01em;
}
.spec-table tbody td.figure .unit {
  font-size: 0.45em;
  font-style: italic;
  color: var(--gold);
  margin-left: 6px;
}
.spec-table tbody td.note { color: var(--muted); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.spec-table tbody tr:hover { background: rgba(196,167,124,0.05); }

/* ── Annotated site plan (The Vie) ─────────────────────── */
.site-plan {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.site-plan .drawing {
  position: relative;
  background: var(--bone);
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.site-plan .drawing .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(0.7) contrast(0.95) brightness(1.03);
}
.site-plan .drawing .overlay-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(7,68,71,0.18) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(7,68,71,0.18) 1px, transparent 1px);
  background-size: 8.333% 8.333%;
  mix-blend-mode: multiply;
}
.site-plan .drawing .stamp {
  position: absolute;
  bottom: 14px; right: 14px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-warm);
  background: rgba(7,68,71,0.85);
  padding: 8px 12px;
  border: 1px solid var(--gold);
}
.callout {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-warm);
}
.callout .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--paper-warm);
  box-shadow: 0 0 0 1px var(--green);
  flex-shrink: 0;
}
.callout .leader {
  height: 1px;
  background: var(--paper-warm);
  width: 60px;
  opacity: 0.9;
}
.callout .tag {
  background: var(--green);
  color: var(--paper-warm);
  padding: 6px 10px;
  border: 1px solid var(--gold);
  white-space: nowrap;
}

.site-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.site-info h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--green);
  margin: 0;
}
.site-info h3 em { font-style: italic; color: var(--gold); }
.site-info .keylist {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
}
.site-info .keylist li {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--rule);
  font-size: 14px;
  align-items: baseline;
  color: var(--ink-warm);
}
.site-info .keylist li .key {
  font-family: var(--mono); font-size: 11px; color: var(--gold);
  letter-spacing: 0.18em;
}
.site-info .keylist li .meta {
  font-family: var(--mono); font-size: 10.5px; color: var(--green); opacity: 0.6;
  letter-spacing: 0.16em; text-transform: uppercase;
}

/* ── Principal / founder card ──────────────────────────── */
.principal {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: stretch;
}
.principal .portrait {
  position: relative;
  border: 1px solid var(--rule);
  background: var(--bone);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.principal .portrait img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.2) contrast(1.02); }
.principal .portrait .tag {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--paper-warm);
  background: rgba(7,68,71,0.85);
  padding: 6px 10px;
}
.principal .data {
  display: flex; flex-direction: column;
  gap: 24px;
}
.principal h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 4.4vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--green);
  margin: 0;
}
.principal h3 em { font-style: italic; color: var(--gold); }
.principal .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink-warm);
  border-left: 1px solid var(--gold);
  padding-left: 20px;
  margin: 0;
  max-width: 44ch;
}
.principal .meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--rule);
}
.principal .meta-grid > div {
  padding: 22px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 8px;
}
.principal .meta-grid > div:nth-child(2n) { border-right: 0; }
.principal .meta-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
.principal .meta-grid .lbl {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); opacity: 0.8;
}
.principal .meta-grid .val {
  font-family: var(--serif); font-size: 28px; line-height: 1.05;
  color: var(--green);
}
.principal .meta-grid .val em { font-style: italic; color: var(--gold); }
.principal .meta-grid .val .unit { font-size: 0.5em; font-style: italic; color: var(--gold); margin-left: 4px; }

/* ── Consultants schedule ──────────────────────────────── */
.schedule {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--mono);
  font-size: 12px;
}
.schedule thead th {
  text-align: left;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.6;
  padding: 14px 16px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-weight: 400;
}
.schedule tbody td {
  padding: 22px 16px;
  border-bottom: 1px solid var(--rule);
  vertical-align: middle;
  color: var(--ink-warm);
  letter-spacing: 0.04em;
}
.schedule tbody td.code { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 16px; width: 56px; }
.schedule tbody td.firm { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--green); letter-spacing: 0; }
.schedule tbody td.role { color: var(--muted); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
.schedule tbody td.scope { color: var(--ink-warm); font-size: 13px; letter-spacing: 0; font-family: var(--sans); font-weight: 300; max-width: 32ch; }
.schedule tbody td.status { text-align: right; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green); }
.schedule tbody td.status .pill { display: inline-block; padding: 5px 9px; border: 1px solid var(--green); }

/* ── Manifesto closing ─────────────────────────────────── */
.manifesto-arch {
  position: relative;
  padding: 160px 0;
  background: var(--green);
  color: var(--cream);
  text-align: left;
  overflow: hidden;
}
.manifesto-arch::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(196,167,124,0.06) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%;
  pointer-events: none;
}
.manifesto-arch .corner {
  position: absolute;
  width: 24px; height: 24px;
}
.manifesto-arch .corner.tl { top: 24px; left: 24px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.manifesto-arch .corner.tr { top: 24px; right: 24px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.manifesto-arch .corner.bl { bottom: 24px; left: 24px; border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.manifesto-arch .corner.br { bottom: 24px; right: 24px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.manifesto-arch .stamp-id {
  position: absolute;
  top: 60px; right: 60px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); opacity: 0.7;
}
.manifesto-arch .stamp-id .num {
  font-family: var(--serif); font-style: italic;
  font-size: 28px; color: var(--gold); display: block; margin-top: 8px;
}
.manifesto-arch h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 8vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 18ch;
  color: var(--cream);
}
.manifesto-arch h2 em { font-style: italic; color: var(--gold); }
.manifesto-arch .principles {
  margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(196,167,124,0.35);
}
.manifesto-arch .principles > div {
  padding: 40px 32px 8px 0;
  border-right: 1px solid rgba(196,167,124,0.18);
  display: flex; flex-direction: column; gap: 16px;
}
.manifesto-arch .principles > div:last-child { border-right: 0; }
.manifesto-arch .principles .num {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.28em; color: var(--gold);
}
.manifesto-arch .principles .line {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(22px, 1.8vw, 30px); line-height: 1.25;
  color: rgba(246,242,234,0.95);
}
.manifesto-arch .actions {
  margin-top: 80px;
  display: flex; gap: 24px; align-items: center;
}

/* ── Sheet title-block footer ──────────────────────────── */
.title-block-foot {
  position: relative;
  z-index: 5;
  background: var(--paper-warm);
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.title-block-foot .row1 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 110px;
  border-bottom: 1px solid var(--rule);
}
.title-block-foot .row1 > div {
  padding: 22px 24px;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 10px;
}
.title-block-foot .row1 > div:last-child { border-right: 0; }
.title-block-foot .row1 .k { opacity: 0.55; font-size: 9.5px; }
.title-block-foot .row1 .v { color: var(--ink-warm); font-family: var(--mono); }
.title-block-foot .row1 .project {
  font-family: var(--serif); font-style: italic;
  font-size: 32px; line-height: 1.05; text-transform: none;
  letter-spacing: -0.01em; color: var(--green);
}
.title-block-foot .row1 .project em { color: var(--gold); }
.title-block-foot .row1 .sheet-id {
  background: var(--green); color: var(--paper-warm);
  align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic;
  font-size: 28px;
  letter-spacing: 0.04em;
}
.title-block-foot .row2 {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding: 18px 24px;
  gap: 32px;
  color: var(--muted);
}
.title-block-foot .row2 .center { text-align: center; }
.title-block-foot .row2 .right { text-align: right; }

/* ── Section-numbered side rail ────────────────────────── */
.side-rail {
  position: absolute;
  top: 32px;
  left: 0;
  width: 60px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.side-rail .vno {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--green);
  opacity: 0.6;
  padding-bottom: 8px;
}
.side-rail .vno em {
  font-family: var(--serif); font-style: italic; color: var(--gold);
  font-size: 14px; letter-spacing: 0;
}

/* ── Detail callout (kept for use) ─────────────────────── */
.detail-bubble {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--green);
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(255,255,255,0.5);
}
.detail-bubble::before {
  content: ""; width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
}

/* ── Small / responsive ────────────────────────────────── */
@media (max-width: 1100px) {
  .plan-grid { grid-template-columns: 1fr 1fr; }
  .plan-tile:nth-child(2) { border-right: 0; }
  .plan-tile:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .hero-info { grid-template-columns: 1fr 1fr; }
  .hero-info > div:nth-child(2) { border-right: 0; }
  .hero-info > div:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .statement { grid-template-columns: 1fr; }
  .statement .gutter { display: none; }
  .principal { grid-template-columns: 1fr; }
  .site-plan { grid-template-columns: 1fr; }
}
@media (max-width: 800px) {
  .sheet { padding: 0 24px; }
  .nav-arch .links { display: none; }
  .sheet-meta { padding: 16px 24px; grid-template-columns: 1fr auto; }
  .sheet-meta .pair:not(.show-sm) { display: none; }
  .title-block { grid-template-columns: 60px 1fr; }
  .title-block > div:not(.sheet-no):not(.title) { display: none; }
  .plan-grid { grid-template-columns: 1fr; }
  .plan-tile { border-right: 0; border-bottom: 1px solid var(--rule); }
  .plan-tile:last-child { border-bottom: 0; }
  .manifesto-arch .principles { grid-template-columns: 1fr; }
  .manifesto-arch .principles > div { border-right: 0; border-bottom: 1px solid rgba(196,167,124,0.18); }
  .spec-table tbody td.figure { font-size: 22px; }
  .spec-table tbody td.note { display: none; }
  .body-copy { columns: 1 !important; }
  .title-block-foot .row1 { grid-template-columns: 1fr 1fr; }
  .title-block-foot .row1 > div { border-right: 0; border-bottom: 1px solid var(--rule); }
  .drawing-index .row { grid-template-columns: 50px 1fr auto; gap: 16px; }
  .drawing-index .row .desc, .drawing-index .row .scale { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   HERITAGE PUBLICATION DIRECTION (home v3 — upscale)
   Cream-dominant, image-led, quiet, confident.
   ═══════════════════════════════════════════════════════════ */

:root {
  --lx-paper: #f4ede0;
  --lx-paper-2: #ece4d4;
  --lx-ink: #1c1f1d;
  --lx-ink-soft: #4a4e4b;
  --lx-line: rgba(7, 68, 71, 0.16);
  --lx-line-gold: rgba(196, 167, 124, 0.45);
}

body.lux { background: var(--lx-paper); color: var(--lx-ink); }

/* ── Top utility bar ───────────────────────────────────── */
.lx-utility {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 40px;
  border-bottom: 1px solid var(--lx-line);
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--lx-paper);
}
.lx-utility .left, .lx-utility .right { display: flex; gap: 24px; align-items: center; }
.lx-utility .right { justify-self: end; }
.lx-utility .center { display: flex; gap: 10px; align-items: baseline; justify-self: center; color: var(--green); }
.lx-utility .center em {
  font-family: var(--script);
  font-style: italic;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
}
.lx-utility a { opacity: 0.75; transition: opacity .2s, color .2s; }
.lx-utility a:hover { opacity: 1; color: var(--gold); }
.lx-utility .lang { opacity: 0.6; }
.lx-utility .lang .on { color: var(--gold); }

/* ── Main nav ──────────────────────────────────────────── */
.lx-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 40px;
  background: var(--lx-paper);
  border-bottom: 1px solid var(--lx-line);
  transition: padding .2s ease, background .2s ease;
}
.lx-nav.scrolled { padding: 14px 40px; box-shadow: 0 1px 0 var(--lx-line); }
.lx-nav .brand {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--green);
  height: 48px;
  overflow: visible;
  position: relative;
}
.lx-nav .brand .lx-logo {
  width: 340px;
  height: 144px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-mask: url('assets/regent-logo-mark.png') center/contain no-repeat;
          mask: url('assets/regent-logo-mark.png') center/contain no-repeat;
  background-color: currentColor;
  display: block;
  pointer-events: none;
}
body.lux.dark .lx-nav .brand { color: var(--lx-ink); }
.lx-nav .links { display: flex; gap: 32px; }
.lx-nav .links a {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.7;
  padding: 6px 0;
  position: relative;
  transition: opacity .2s, color .2s;
}
.lx-nav .links a:hover, .lx-nav .links a.active { opacity: 1; color: var(--gold); }
.lx-nav .links a.active::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -4px;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
}
.lx-nav .right {
  justify-self: end;
  display: flex; gap: 20px; align-items: center;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green);
}
.lx-nav .right .cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid var(--green);
  color: var(--green);
  transition: background .2s, color .2s;
}
.lx-nav .right .cta:hover { background: var(--green); color: var(--lx-paper); }
.lx-nav .right .cta::after { content: "→"; font-size: 12px; }

/* ── Hero ──────────────────────────────────────────────── */
.lx-hero {
  position: relative;
  height: calc(100vh - 100px);
  min-height: 720px;
  overflow: hidden;
  color: var(--cream);
  background: #0a1517;
}
.lx-hero .media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(0.88) brightness(0.92);
}
.lx-hero .media-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7,68,71,0.45) 0%, rgba(7,68,71,0.25) 40%, rgba(7,68,71,0.85) 100%);
  pointer-events: none;
}
.lx-hero .media {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-image: linear-gradient(180deg, rgba(7,68,71,0.45) 0%, rgba(7,68,71,0.25) 40%, rgba(7,68,71,0.78) 100%), url('https://images.unsplash.com/photo-1542718610-a1d656d1884c?w=2800&q=85');
  filter: saturate(0.88);
}
.lx-hero .vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.lx-hero .inner {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.lx-hero .crest-line {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(246,242,234,0.78);
  margin-bottom: 36px;
}
.lx-hero .crest-line .rule {
  width: 56px; height: 1px; background: rgba(196,167,124,0.7);
}
.lx-hero .crest-line .ornament {
  font-family: var(--script);
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
  font-style: italic;
}
.lx-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 148px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 14ch;
  text-wrap: balance;
  color: var(--cream);
}
.lx-hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.lx-hero h1 .script {
  font-family: var(--script);
  color: var(--gold);
  font-style: italic;
  font-size: 0.42em;
  vertical-align: super;
  letter-spacing: 0;
  margin: 0 0.12em;
}
.lx-hero .sub {
  margin-top: 44px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.5;
  color: rgba(246,242,234,0.88);
  max-width: 58ch;
  text-wrap: balance;
}
.lx-hero .foot {
  position: absolute;
  bottom: 36px; left: 60px; right: 60px;
  z-index: 3;
  display: flex; justify-content: space-between; align-items: flex-end;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(246,242,234,0.6);
  pointer-events: none;
}
.lx-hero .foot .cue {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.lx-hero .foot .cue .line {
  width: 1px; height: 56px; background: rgba(246,242,234,0.45);
  animation: scrollPulse 2.4s ease-in-out infinite;
}

/* ── Section primitives ────────────────────────────────── */
.lx-section { padding: 140px 0; position: relative; }
.lx-wrap { max-width: 1400px; margin: 0 auto; padding: 0 60px; }
.lx-section.tight { padding: 96px 0; }

.lx-chapter {
  display: flex; gap: 18px; align-items: center;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.65;
  margin-bottom: 56px;
}
.lx-chapter .roman {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  letter-spacing: 0;
  color: var(--gold);
  opacity: 1;
}
.lx-chapter .rule { width: 64px; height: 1px; background: var(--gold); opacity: 0.5; }

/* ── Trust / establishment band ────────────────────────── */
.lx-trust {
  border-top: 1px solid var(--lx-line);
  border-bottom: 1px solid var(--lx-line);
  background: var(--lx-paper);
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 56px;
  text-align: center;
}
.lx-trust > div { display: flex; flex-direction: column; gap: 14px; }
.lx-trust > div + div { border-left: 1px solid var(--lx-line); padding-left: 56px; text-align: left; }
.lx-trust > div:first-child { text-align: left; }
.lx-trust .figure {
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.02em;
}
.lx-trust .figure em { font-style: italic; color: var(--gold); }
.lx-trust .figure .unit { font-size: 0.4em; font-style: italic; color: var(--gold); margin-left: 4px; }
.lx-trust .label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lx-ink-soft);
  opacity: 0.75;
}

/* ── Chairman's letter ─────────────────────────────────── */
.lx-letter {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 96px;
  align-items: start;
}
.lx-letter .portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--lx-paper-2);
}
.lx-letter .portrait img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85) contrast(1.02);
}
.lx-letter .portrait .seal {
  position: absolute;
  bottom: 24px; left: 24px;
  width: 110px; height: 110px;
  display: flex; align-items: center; justify-content: center;
}
.lx-letter .portrait .seal svg { width: 100%; height: 100%; }
.lx-letter .body {
  padding-top: 8px;
}
.lx-letter h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 4.6vw, 76px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--green);
  margin: 0 0 48px;
  max-width: 14ch;
}
.lx-letter h2 em { font-style: italic; color: var(--gold); }
.lx-letter .first-letter {
  float: left;
  font-family: var(--serif);
  font-style: italic;
  font-size: 86px;
  line-height: 0.82;
  color: var(--gold);
  padding: 8px 16px 0 0;
  margin-top: 4px;
}
.lx-letter p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.7;
  color: var(--lx-ink);
  margin: 0 0 24px;
  max-width: 62ch;
  text-wrap: pretty;
}
.lx-letter p:last-of-type { margin-bottom: 0; }
.lx-letter .sig {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lx-letter .sig .name-script {
  font-family: var(--script);
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: var(--green);
}
.lx-letter .sig .role {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lx-ink-soft);
}

/* ── Portfolio bento ───────────────────────────────────── */
.lx-portfolio {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}
.lx-card {
  position: relative;
  overflow: hidden;
  background: var(--lx-paper-2);
  display: flex; align-items: flex-end;
  color: var(--cream);
}
.lx-card .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.9s ease;
}
.lx-card:hover .bg { transform: scale(1.04); }
.lx-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,68,71,0) 35%, rgba(7,68,71,0.85) 100%);
  pointer-events: none;
}
.lx-card .meta {
  position: relative;
  z-index: 2;
  padding: 28px;
  display: flex; flex-direction: column; gap: 6px;
}
.lx-card .meta .eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.lx-card .meta .name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--cream);
  text-wrap: balance;
}
.lx-card .meta .stat {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246,242,234,0.75);
  margin-top: 4px;
}

.lx-card.statement {
  background: var(--green);
  color: var(--cream);
  padding: 40px;
  align-items: flex-start;
}
.lx-card.statement::after { display: none; }
.lx-card.statement .quote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--cream);
  margin: 0;
  flex: 1;
  text-wrap: balance;
}
.lx-card.statement .quote em { font-style: italic; color: var(--gold); }
.lx-card.statement .attribution {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  align-self: flex-start;
}

.lx-card.paper {
  background: var(--lx-paper-2);
  color: var(--green);
  padding: 32px;
  align-items: flex-start;
}
.lx-card.paper::after { display: none; }
.lx-card.paper .eyebrow { color: var(--gold); }
.lx-card.paper .name { color: var(--green); }
.lx-card.paper .figure {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 0.9;
  color: var(--green);
  letter-spacing: -0.02em;
  margin-top: auto;
}
.lx-card.paper .figure em { font-style: italic; color: var(--gold); }
.lx-card.paper .figure .unit { font-size: 0.32em; font-style: italic; color: var(--gold); margin-left: 6px; }

/* ── The Vie spotlight — magazine spread ───────────────── */
.lx-spread {
  position: relative;
  background: var(--green);
  color: var(--cream);
  padding: 140px 0;
  overflow: hidden;
}
.lx-spread .wrap-spread {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.lx-spread .col-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.lx-spread .col-image .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.lx-spread .col-image .tag {
  position: absolute; bottom: 20px; left: 20px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(7,68,71,0.85);
  padding: 10px 14px;
  border: 1px solid rgba(196,167,124,0.4);
}
.lx-spread h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 5.4vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0;
  max-width: 14ch;
}
.lx-spread h2 em { font-style: italic; color: var(--gold); }
.lx-spread h2 .script {
  font-family: var(--script);
  color: var(--gold);
  font-style: italic;
  font-size: 0.42em;
  vertical-align: super;
  letter-spacing: 0;
  margin: 0 0.1em;
}
.lx-spread .lede {
  margin-top: 36px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: rgba(246,242,234,0.9);
  max-width: 44ch;
  text-wrap: pretty;
}
.lx-spread .specs {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
}
.lx-spread .specs .spec {
  border-top: 1px solid rgba(196,167,124,0.3);
  padding-top: 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.lx-spread .specs .spec .v {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  color: var(--cream);
}
.lx-spread .specs .spec .v em { font-style: italic; color: var(--gold); }
.lx-spread .specs .spec .v .unit { font-size: 0.5em; font-style: italic; color: var(--gold); margin-left: 4px; }
.lx-spread .specs .spec .l {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(246,242,234,0.65);
}
.lx-spread .action { margin-top: 56px; }
.lx-spread .action a {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 16px 26px;
  border: 1px solid var(--gold);
  transition: background .2s, color .2s;
}
.lx-spread .action a:hover { background: var(--gold); color: var(--green); }
.lx-spread .action a::after { content: "→"; }

/* ── Principles — alternating rows ─────────────────────── */
.lx-principles {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lx-principle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  padding: 96px 0;
  border-bottom: 1px solid var(--lx-line);
}
.lx-principle:last-child { border-bottom: 0; }
.lx-principle:nth-child(even) .col-image { order: 2; }
.lx-principle:nth-child(even) .col-text { order: 1; }
.lx-principle .col-image {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--lx-paper-2);
  position: relative;
}
.lx-principle .col-image .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.4s ease;
}
.lx-principle:hover .col-image .img { transform: scale(1.03); }
.lx-principle .col-image .number {
  position: absolute;
  top: 20px; left: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--cream);
  letter-spacing: 0;
  background: rgba(7,68,71,0.5);
  backdrop-filter: blur(4px);
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(196,167,124,0.5);
}
.lx-principle .eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.lx-principle h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--green);
  margin: 18px 0 24px;
  max-width: 14ch;
}
.lx-principle h3 em { font-style: italic; color: var(--gold); }
.lx-principle p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--lx-ink);
  max-width: 38ch;
  text-wrap: pretty;
}
.lx-principle .body-copy {
  font-family: var(--sans);
  font-weight: 300;
  font-style: normal;
  font-size: 15px;
  line-height: 1.75;
  color: var(--lx-ink-soft);
  margin-top: 24px;
  max-width: 48ch;
}

/* ── Numbers — quiet, confident ────────────────────────── */
.lx-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--lx-line);
}
.lx-numbers > div {
  padding: 64px 0;
  border-bottom: 1px solid var(--lx-line);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: baseline;
}
.lx-numbers > div:nth-child(odd) { padding-right: 40px; border-right: 1px solid var(--lx-line); padding-left: 0; }
.lx-numbers > div:nth-child(even) { padding-left: 60px; }
.lx-numbers .figure {
  font-family: var(--serif);
  font-size: clamp(60px, 7vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--green);
}
.lx-numbers .figure em { font-style: italic; color: var(--gold); }
.lx-numbers .figure .unit { font-size: 0.32em; font-style: italic; color: var(--gold); margin-left: 6px; vertical-align: middle; }
.lx-numbers .label {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.3;
  color: var(--lx-ink);
  max-width: 28ch;
  text-wrap: pretty;
}

/* ── Partners — typographic wall ───────────────────────── */
.lx-partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--lx-line);
}
.lx-partners > div {
  padding: 56px 32px;
  border-right: 1px solid var(--lx-line);
  border-bottom: 1px solid var(--lx-line);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  transition: background .2s;
}
.lx-partners > div:nth-child(3n) { border-right: 0; }
.lx-partners > div:hover { background: rgba(196,167,124,0.06); }
.lx-partners .name {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.005em;
}
.lx-partners .role {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--lx-ink-soft);
  opacity: 0.7;
}

/* ── Closing invitation ────────────────────────────────── */
.lx-invitation {
  position: relative;
  background: var(--green);
  color: var(--cream);
  padding: 200px 60px;
  overflow: hidden;
  text-align: center;
}
.lx-invitation::before {
  content: "";
  position: absolute;
  top: 60px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 56px;
  background: rgba(196,167,124,0.5);
}
.lx-invitation .ornament {
  font-family: var(--script);
  font-style: italic;
  color: var(--gold);
  font-size: 36px;
  margin-bottom: 12px;
}
.lx-invitation h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--cream);
  max-width: 18ch;
  margin: 0 auto 56px;
  text-wrap: balance;
}
.lx-invitation h2 em { font-style: italic; color: var(--gold); }
.lx-invitation .sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.55;
  color: rgba(246,242,234,0.85);
  max-width: 56ch;
  margin: 0 auto 64px;
  text-wrap: pretty;
}
.lx-invitation .cta-row {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
}
.lx-invitation .cta-row a {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 18px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: background .2s, color .2s;
}
.lx-invitation .cta-row a:hover { background: var(--gold); color: var(--green); }
.lx-invitation .cta-row a.ghost { border-color: rgba(246,242,234,0.5); color: var(--cream); }
.lx-invitation .cta-row a.ghost:hover { background: rgba(246,242,234,0.95); color: var(--green); border-color: var(--cream); }
.lx-invitation .cta-row a::after { content: "→"; }

/* ── Footer ────────────────────────────────────────────── */
.lx-footer {
  background: var(--lx-paper);
  color: var(--green);
  padding: 96px 60px 36px;
  border-top: 1px solid var(--lx-line);
}
.lx-footer .top {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--lx-line);
}
.lx-footer .brand-block {
  display: flex; flex-direction: column; gap: 20px;
}
.lx-footer .brand-block .crest {
  width: 560px;
  height: 236px;
  -webkit-mask: url('assets/regent-logo-mark.png') center left/contain no-repeat;
          mask: url('assets/regent-logo-mark.png') center left/contain no-repeat;
  background-color: var(--green);
  display: block;
}
body.lux.dark .lx-footer .brand-block .crest { background-color: var(--lx-ink); }
.lx-footer .brand-block .tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
  color: var(--lx-ink);
  max-width: 32ch;
}
.lx-footer .brand-block .tag em { color: var(--gold); font-style: italic; }
.lx-footer .col-title {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.lx-footer ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--lx-ink);
}
.lx-footer ul a { transition: color .2s; }
.lx-footer ul a:hover { color: var(--gold); }
.lx-footer .bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--lx-ink-soft);
  opacity: 0.7;
}
.lx-footer .bottom .center { font-family: var(--script); font-style: italic; color: var(--gold); font-size: 16px; letter-spacing: 0; text-transform: none; opacity: 1; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .lx-letter { grid-template-columns: 1fr; gap: 48px; }
  .lx-spread .wrap-spread { grid-template-columns: 1fr; gap: 56px; }
  .lx-principle { grid-template-columns: 1fr; gap: 40px; padding: 64px 0; }
  .lx-principle:nth-child(even) .col-image { order: 0; }
  .lx-principle:nth-child(even) .col-text { order: 0; }
  .lx-trust { grid-template-columns: 1fr 1fr; gap: 32px; }
  .lx-trust > div + div { border-left: 0; padding-left: 0; }
  .lx-numbers { grid-template-columns: 1fr; }
  .lx-numbers > div:nth-child(odd) { border-right: 0; padding-right: 0; }
  .lx-numbers > div:nth-child(even) { padding-left: 0; }
  .lx-portfolio { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 160px; }
  .lx-partners { grid-template-columns: 1fr 1fr; }
  .lx-partners > div:nth-child(3n) { border-right: 1px solid var(--lx-line); }
  .lx-partners > div:nth-child(2n) { border-right: 0; }
}
@media (max-width: 800px) {
  .lx-utility, .lx-nav { padding-left: 24px; padding-right: 24px; }
  .lx-nav .links { display: none; }
  .lx-utility .left, .lx-utility .right { display: none; }
  .lx-utility .center { justify-self: center; }
  .lx-wrap { padding: 0 24px; }
  .lx-section { padding: 96px 0; }
  .lx-hero .inner, .lx-hero .foot { padding-left: 24px; padding-right: 24px; }
  .lx-spread { padding: 96px 0; }
  .lx-spread .wrap-spread { padding: 0 24px; }
  .lx-spread .specs { grid-template-columns: 1fr; gap: 24px; }
  .lx-trust { grid-template-columns: 1fr; padding: 40px 24px; gap: 28px; }
  .lx-footer { padding: 72px 24px 24px; }
  .lx-footer .top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .lx-footer .bottom { flex-direction: column; gap: 12px; }
  .lx-invitation { padding: 120px 24px; }
  .lx-portfolio { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .lx-card .meta .name { font-size: 22px; }
  .lx-partners { grid-template-columns: 1fr; }
  .lx-partners > div { border-right: 0 !important; }
}

/* ═══════════════════════════════════════════════════════════
   DARK MODE OVERLAY (body.lux.dark)
   Deep green-ink background, cream text, gold as ornament.
   Adds dramatic late-hours hospitality feel.
   ═══════════════════════════════════════════════════════════ */
body.lux.dark {
  --lx-paper: #0d1719;     /* base — near-black with green undertone */
  --lx-paper-2: #112024;   /* one step up — elevated */
  --lx-paper-3: #163338;   /* two steps up — feature slab */
  --lx-ink: #ece5d6;       /* warm cream text */
  --lx-ink-soft: #9ea49a;  /* muted cream */
  --lx-line: rgba(196, 167, 124, 0.18);
  --lx-line-gold: rgba(196, 167, 124, 0.45);
  background: var(--lx-paper);
  color: var(--lx-ink);
}

/* Utility + nav */
body.lux.dark .lx-utility {
  background: var(--lx-paper);
  border-bottom-color: var(--lx-line);
  color: var(--lx-ink);
}
body.lux.dark .lx-utility .center { color: var(--lx-ink); }
body.lux.dark .lx-nav {
  background: var(--lx-paper);
  border-bottom-color: var(--lx-line);
}
body.lux.dark .lx-nav.scrolled { background: rgba(13, 23, 25, 0.96); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--lx-line); }
body.lux.dark .lx-nav .brand,
body.lux.dark .lx-nav .links a,
body.lux.dark .lx-nav .right { color: var(--lx-ink); }
body.lux.dark .lx-nav .right .cta { border-color: var(--gold); color: var(--gold); }
body.lux.dark .lx-nav .right .cta:hover { background: var(--gold); color: var(--lx-paper); }

/* Trust band */
body.lux.dark .lx-trust {
  background: var(--lx-paper-2);
  border-top-color: var(--lx-line);
  border-bottom-color: var(--lx-line);
}
body.lux.dark .lx-trust > div + div { border-left-color: var(--lx-line); }
body.lux.dark .lx-trust .figure { color: var(--lx-ink); }
body.lux.dark .lx-trust .label { color: var(--lx-ink-soft); }

/* Chapter labels */
body.lux.dark .lx-chapter { color: var(--lx-ink-soft); }

/* Letter */
body.lux.dark .lx-letter .portrait { background: var(--lx-paper-2); }
body.lux.dark .lx-letter h2 { color: var(--lx-ink); }
body.lux.dark .lx-letter p { color: rgba(236, 229, 214, 0.88); }
body.lux.dark .lx-letter .first-letter { color: var(--gold); }
body.lux.dark .lx-letter .sig .name-script { color: var(--gold); }
body.lux.dark .lx-letter .sig .role { color: var(--lx-ink-soft); }

/* Portfolio bento cards */
body.lux.dark .lx-card.statement { background: var(--lx-paper-3); }
body.lux.dark .lx-card.paper {
  background: var(--lx-paper-2);
  color: var(--lx-ink);
  border: 1px solid var(--lx-line);
}
body.lux.dark .lx-card.paper .name { color: var(--lx-ink); }
body.lux.dark .lx-card.paper .figure { color: var(--lx-ink); }

/* Spread (The Vie) — keep brand green but lift saturation */
body.lux.dark .lx-spread { background: var(--lx-paper-3); }
body.lux.dark .lx-spread .col-image .tag { background: rgba(7,68,71,0.92); }

/* Principles */
body.lux.dark .lx-principle { border-bottom-color: var(--lx-line); }
body.lux.dark .lx-principle .col-image { background: var(--lx-paper-2); }
body.lux.dark .lx-principle h3 { color: var(--lx-ink); }
body.lux.dark .lx-principle p { color: rgba(236, 229, 214, 0.9); }
body.lux.dark .lx-principle .body-copy { color: var(--lx-ink-soft); }
body.lux.dark .lx-principle .col-image .number { background: rgba(7, 68, 71, 0.7); }

/* Numbers — second band */
body.lux.dark .lx-section[style*="lx-paper-2"],
body.lux.dark .lx-section.numbers-bg { background: var(--lx-paper-2) !important; }
body.lux.dark .lx-numbers { border-top-color: var(--lx-line); }
body.lux.dark .lx-numbers > div { border-bottom-color: var(--lx-line); }
body.lux.dark .lx-numbers > div:nth-child(odd) { border-right-color: var(--lx-line); }
body.lux.dark .lx-numbers .figure { color: var(--lx-ink); }
body.lux.dark .lx-numbers .label { color: rgba(236, 229, 214, 0.85); }

/* Partners */
body.lux.dark .lx-partners { border-top-color: var(--lx-line); }
body.lux.dark .lx-partners > div {
  border-right-color: var(--lx-line);
  border-bottom-color: var(--lx-line);
}
body.lux.dark .lx-partners > div:hover { background: rgba(196, 167, 124, 0.05); }
body.lux.dark .lx-partners .name { color: var(--lx-ink); }
body.lux.dark .lx-partners .role { color: var(--lx-ink-soft); }

/* Invitation — extra deep slab for contrast */
body.lux.dark .lx-invitation { background: var(--lx-paper-3); }

/* Footer */
body.lux.dark .lx-footer {
  background: var(--lx-paper);
  color: var(--lx-ink);
  border-top-color: var(--lx-line);
}
body.lux.dark .lx-footer .top { border-bottom-color: var(--lx-line); }
body.lux.dark .lx-footer .brand-block .crest { color: var(--lx-ink); }
body.lux.dark .lx-footer .brand-block .tag { color: rgba(236, 229, 214, 0.85); }
body.lux.dark .lx-footer ul { color: rgba(236, 229, 214, 0.8); }
body.lux.dark .lx-footer .bottom { color: var(--lx-ink-soft); }

/* Hero foot text reads on dark too */
body.lux.dark .lx-hero .foot { color: rgba(236, 229, 214, 0.55); }

/* ═══════════════════════════════════════════════════════════
   DARK OVERRIDES FOR LEGACY PAGE COMPONENTS
   Allows existing inner pages (about/philosophy/the-vie/partners/contact)
   to inherit the dark heritage palette simply by adding body.lux.dark.
   ═══════════════════════════════════════════════════════════ */

/* Base */
body.lux.dark { background: var(--lx-paper); color: var(--lx-ink); }

/* Nav (legacy .nav, .nav.light) */
body.lux.dark .nav {
  color: var(--lx-ink);
}
body.lux.dark .nav.scrolled,
body.lux.dark .nav.light.scrolled {
  background: rgba(13, 23, 25, 0.96);
  box-shadow: 0 1px 0 var(--lx-line);
}
body.lux.dark .nav.light { color: var(--lx-ink); }
body.lux.dark .nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--lx-paper);
}

/* Sections */
body.lux.dark .section,
body.lux.dark .section-tight { background: transparent; color: var(--lx-ink); }
body.lux.dark .section.dark,
body.lux.dark .section-tight.dark { background: var(--lx-paper-3); color: var(--lx-ink); }

/* Generic inline-attribute overrides */
body.lux.dark [style*="background: var(--bone)"]  { background: var(--lx-paper-2) !important; }
body.lux.dark [style*="background: var(--green)"] { background: var(--lx-paper-3) !important; }
body.lux.dark [style*="background: var(--ink)"]   { background: var(--lx-paper) !important; }
body.lux.dark [style*="color: var(--green)"]      { color: var(--lx-ink) !important; }
body.lux.dark [style*="color: var(--muted)"]      { color: var(--lx-ink-soft) !important; }
body.lux.dark [style*="color: var(--ink)"]        { color: var(--lx-ink) !important; }

/* Headings */
body.lux.dark h1,
body.lux.dark h2,
body.lux.dark h3,
body.lux.dark h4 { color: var(--lx-ink); }
body.lux.dark .dark h1,
body.lux.dark .dark h2,
body.lux.dark .dark h3,
body.lux.dark .dark h4 { color: var(--lx-ink); }

/* Body copy */
body.lux.dark p { color: var(--lx-ink); }
body.lux.dark .lede { color: var(--lx-ink); }

/* Hero overlay text — already cream, leave alone */
body.lux.dark .hero-foot { color: rgba(236, 229, 214, 0.6); }
body.lux.dark .hero-media::after {
  /* Slightly extend gradient to merge into dark canvas */
  background:
    linear-gradient(180deg, rgba(13,23,25,0.45) 0%, rgba(13,23,25,0.25) 35%, rgba(13,23,25,0.92) 100%);
}

/* Eyebrows */
body.lux.dark .eyebrow { color: var(--lx-ink-soft); }
body.lux.dark .eyebrow.gold { color: var(--gold); }
body.lux.dark .eyebrow.cream { color: rgba(236, 229, 214, 0.7); }

/* Section-head label number */
body.lux.dark .section-head .label .num { color: var(--gold); }

/* Stats */
body.lux.dark .stat { border-top-color: var(--lx-line); }
body.lux.dark .stat .figure { color: var(--lx-ink); }
body.lux.dark .stat .caption { color: var(--lx-ink-soft); }

/* Features list */
body.lux.dark .features li {
  border-bottom-color: var(--lx-line);
  color: var(--lx-ink);
}
body.lux.dark .features li .meta { color: var(--lx-ink-soft); }
body.lux.dark .dark .features li { border-color: rgba(196,167,124,0.18); }
body.lux.dark .dark .features li .meta { color: rgba(236,229,214,0.5); }

/* Pillars */
body.lux.dark .pillars { border-top-color: var(--lx-line); }
body.lux.dark .pillar { border-right-color: var(--lx-line); }
body.lux.dark .pillar p { color: var(--lx-ink-soft); }
body.lux.dark .dark .pillars { border-color: rgba(196,167,124,0.25); }
body.lux.dark .dark .pillar { border-color: rgba(196,167,124,0.25); }
body.lux.dark .dark .pillar p { color: rgba(236, 229, 214, 0.75); }

/* Partner grid */
body.lux.dark .partner-grid { border-top-color: var(--lx-line); }
body.lux.dark .partner {
  border-right-color: var(--lx-line);
  border-bottom-color: var(--lx-line);
}
body.lux.dark .partner p { color: var(--lx-ink-soft); }

/* Image placeholders — only retint the empty fallback color, keep specific image URLs */
body.lux.dark .img-slot {
  background-color: var(--lx-paper-2);
}
body.lux.dark .img-slot:not([class*="img-"][class*="-"]):not([class~="img-slot"][class*="bg"]) {
  background-image:
    linear-gradient(135deg, rgba(7,68,71,0.18), rgba(7,68,71,0.32)),
    radial-gradient(circle at 30% 70%, rgba(196,167,124,0.12), transparent 55%);
}
body.lux.dark .img-slot .label { color: var(--lx-ink-soft); }

/* Footer (legacy .footer) */
body.lux.dark .footer {
  background: var(--lx-paper);
  color: var(--lx-ink);
  border-top: 1px solid var(--lx-line);
}
body.lux.dark .footer-inner { border-bottom-color: var(--lx-line); }
body.lux.dark .footer h3 { color: var(--lx-ink); }
body.lux.dark .footer h3 em { color: var(--gold); }
body.lux.dark .footer p { color: var(--lx-ink); opacity: 0.85; }
body.lux.dark .footer ul { color: var(--lx-ink); }
body.lux.dark .footer .col-title { color: var(--gold); }
body.lux.dark .footer ul a:hover { color: var(--gold); }
body.lux.dark .footer-bottom { color: var(--lx-ink-soft); }

/* Form */
body.lux.dark .form input,
body.lux.dark .form textarea,
body.lux.dark .form select {
  color: var(--lx-ink);
  border-bottom-color: var(--lx-line);
}
body.lux.dark .form input:focus,
body.lux.dark .form textarea:focus,
body.lux.dark .form select:focus { border-color: var(--gold); }
body.lux.dark .form label { color: var(--lx-ink-soft); }
body.lux.dark .form input::placeholder,
body.lux.dark .form textarea::placeholder { color: var(--lx-ink-soft); opacity: 0.5; }

/* Buttons (legacy .btn on light bg) */
body.lux.dark .btn {
  color: var(--lx-ink);
  border-color: var(--lx-line-gold);
}
body.lux.dark .btn:hover {
  background: var(--gold);
  color: var(--lx-paper);
  border-color: var(--gold);
}
body.lux.dark .btn.btn-cream {
  color: var(--lx-ink);
  border-color: var(--lx-ink);
}
body.lux.dark .btn.btn-cream:hover {
  background: var(--lx-ink);
  color: var(--lx-paper);
  border-color: var(--lx-ink);
}

/* Logo strip */
body.lux.dark .logo-strip {
  border-color: var(--lx-line);
}
body.lux.dark .logo-strip .item { color: var(--lx-ink); }
body.lux.dark .dark .logo-strip .item { color: var(--lx-ink); }

/* Rules */
body.lux.dark .rule { background: var(--lx-line); }
body.lux.dark .vert-label { color: var(--lx-ink-soft); }

/* Pull-quote */
body.lux.dark .pull-quote { color: var(--lx-ink); }
body.lux.dark .dark .pull-quote { color: var(--lx-ink); }

/* About page — operate list */
body.lux.dark .operate-list { border-top-color: var(--lx-line); }
body.lux.dark .operate-row {
  border-bottom-color: var(--lx-line);
}
body.lux.dark .operate-row:hover { background: rgba(196,167,124,0.05); }
body.lux.dark .operate-head { color: var(--lx-ink) !important; }
body.lux.dark .operate-body { color: var(--lx-ink) !important; opacity: 0.82; }

/* The Vie page — .number-row + axis cards */
body.lux.dark .number-row { border-color: var(--lx-line); }
body.lux.dark .number-row .big { color: var(--lx-ink); }
body.lux.dark .number-row .label { color: var(--lx-ink-soft); }
body.lux.dark .number-row .meta { color: var(--lx-ink-soft); }

/* Form-section side note (contact page calling-card list) */
body.lux.dark .form-side-row {
  border-top-color: var(--lx-line);
}

/* Marquee in dark family */
body.lux.dark .marquee {
  background: var(--lx-paper-3);
  border-top-color: var(--lx-line);
  border-bottom-color: var(--lx-line);
}

/* Contact desks — replace hardcoded cream hover */
body.lux.dark .contact-desk:hover { background: rgba(196,167,124,0.08); }
