
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Montserrat:wght@200;300;400;500&display=swap');

:root {
  /* Tigmi reference palette (site-wide) */
  --sand:       #F5F0E6;
  --sky:        #FDFAF5;
  --pise:       #111008;
  --pise-mid:   #4F4336;
  --pise-light: #D8CCB8;
  --cedar-warm: #A78661;
  --plate:      #1C1912;
  /* Semantic tokens */
  --white:      var(--sky);
  --paper:      var(--sand);
  --paper2:     var(--sky);
  --ink:        var(--pise);
  --mid:        var(--pise-mid);
  --light:      #6B5F52;
  --cedar:      var(--cedar-warm);
  --cedar-lt:   #C4A882;
  --rule:       var(--pise-light);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--sand);
  color: var(--pise);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ── GATE ──────────────────────────────────────────────── */
#gate {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--plate);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 1; transition: opacity 0.7s ease;
}
#gate.out { opacity: 0; pointer-events: none; }

.gate-logo {
  font-family: 'Montserrat', sans-serif; font-weight: 200;
  font-size: 10px; letter-spacing: 0.55em; text-transform: uppercase;
  color: rgba(184,150,106,0.6); margin-bottom: 64px; text-align: center;
}
.gate-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: 28px; color: rgba(249,246,241,0.85);
  letter-spacing: 0.04em; margin-bottom: 48px; text-align: center;
}
.gate-label {
  font-size: 8px; letter-spacing: 0.38em; text-transform: uppercase;
  color: rgba(184,150,106,0.45); display: block; margin-bottom: 12px; text-align: center;
}
.gate-input {
  display: block; width: 240px; background: transparent; border: none;
  border-bottom: 1px solid rgba(184,150,106,0.35); padding: 10px 0;
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 300;
  color: var(--paper); text-align: center; letter-spacing: 0.2em; outline: none;
  transition: border-color 0.2s;
}
.gate-input:focus { border-bottom-color: var(--cedar-lt); }
.gate-input::placeholder { color: rgba(184,150,106,0.2); }
.gate-btn {
  display: block; width: 240px; margin-top: 20px; background: transparent;
  border: 1px solid rgba(184,150,106,0.35); color: rgba(184,150,106,0.7);
  padding: 13px; font-family: 'Montserrat', sans-serif; font-size: 8px;
  letter-spacing: 0.42em; text-transform: uppercase; cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.gate-btn:hover { border-color: var(--cedar-lt); color: var(--cedar-lt); }
.gate-err {
  font-size: 8px; letter-spacing: 0.2em; color: var(--cedar-lt);
  text-align: center; margin-top: 16px; opacity: 0; transition: opacity 0.2s;
}
.gate-err.show { opacity: 1; }
.gate-conf {
  position: absolute; bottom: 28px;
  font-size: 8px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(184,150,106,0.18); text-align: center;
}

/* ── SITE ──────────────────────────────────────────────── */
#site { display: none; opacity: 0; transition: opacity 0.9s ease 0.1s; }
#site.visible { display: block; opacity: 1; }

/* ── NAV ───────────────────────────────────────────────── */
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pise);
}
.nav-status {
  display: flex; align-items: center; gap: 6px;
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pise-mid);
}
.nav-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--cedar-warm);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ── PLATE ─────────────────────────────────────────────── */
#plate {
  width: 100%; height: 100svh;
  background: var(--plate);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 0 0 72px 0;
}
.plate-bg {
  position: absolute;
  left: 0; right: 0; top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: var(--plate);
  overflow: hidden;
}
.plate-bg__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 0%;
}
.plate-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(28,25,18,0.25) 0%,
    rgba(28,25,18,0.1) 40%,
    rgba(28,25,18,0.7) 100%
  );
}
.plate-content {
  position: relative; z-index: 2;
  width: 100%; padding: 0 64px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
}
.plate-left {}
.plate-eyebrow {
  font-size: 9px; letter-spacing: 0.42em; text-transform: uppercase;
  color: rgba(184,150,106,0.7); margin-bottom: 16px; display: block;
}
.plate-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(52px, 8vw, 96px); line-height: 0.95;
  color: var(--paper); letter-spacing: -0.01em;
}
.plate-right {
  flex-shrink: 0; text-align: right; padding-bottom: 8px;
}
.plate-meta-line {
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(249,246,241,0.45); line-height: 2.2; display: block;
}

/* ── SECTIONS ──────────────────────────────────────────── */
.wrap { max-width: 960px; margin: 0 auto; padding: 0 52px; }
.wrap-narrow { max-width: 960px; margin: 0 auto; padding: 0 52px; }

/* ── INTRODUCTION ──────────────────────────────────────── */
#intro {
  padding: 56px 0;
  border-bottom: 1px solid var(--rule);
  background: var(--sand);
}
#intro .label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cedar); margin-bottom: 40px; display: block;
}
#intro p.lede {
  font-family: 'Cormorant Garamond', serif; font-weight: 300; font-style: italic;
  font-size: clamp(24px, 3vw, 32px); line-height: 1.55; color: var(--pise);
  margin-bottom: 36px;
}
#intro p.body {
  font-size: 16px; line-height: 1.9; color: var(--pise-mid);
}

/* ── DIPTYCH IMAGE ─────────────────────────────────────── */
#diptych-image {
  width: 100%;
  background: var(--sand);
  padding: 0;
  border-bottom: 1px solid var(--rule);
}
#diptych-image.img-showcase { padding-top: 0; }
#diptych-image.img-showcase .img-showcase__inner {
  padding: 56px 52px 0;
}
#diptych-image:not(.img-showcase) img {
  width: 100%;
  height: auto;
  display: block;
}
#diptych-image.img-showcase .img-showcase__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 52px;
}
#diptych-image.img-showcase img {
  width: 100%;
  height: auto;
  display: block;
}
.img-showcase__inner img {
  max-width: 100%;
  height: auto;
}
.img-credit--body {
  max-width: 960px;
  margin: 0 auto;
  padding-left: 52px;
  padding-right: 52px;
  box-sizing: border-box;
}
figure.img-showcase { margin: 0; }
.img-credit {
  padding: 14px 52px;
  display: flex; justify-content: space-between; align-items: baseline;
  background: var(--sky);
  border-bottom: 1px solid var(--rule);
}
.img-credit-title {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 14px; color: var(--pise);
}
.img-credit-meta {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pise-mid);
}

/* ── NUMBERS ───────────────────────────────────────────── */
#numbers {
  padding: 96px 0;
  border-bottom: 1px solid var(--rule);
}
.numbers-intro {
  font-size: 14px; line-height: 1.95; color: var(--mid);
  margin: 0 0 48px;
}
.numbers-label {
  font-size: 8px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--cedar); margin-bottom: 56px; display: block;
}
.numbers-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(28px, 3.5vw, 40px); color: var(--ink);
  line-height: 1.2; margin-bottom: 64px;
}

.figures {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-top: 1px solid var(--rule); border-left: 1px solid var(--rule);
  margin-bottom: 64px;
}
.figure {
  padding: 36px 28px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.figure-val {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(28px, 3vw, 40px); color: var(--ink);
  line-height: 1; display: block; margin-bottom: 12px;
}
.figure-label {
  font-size: 8px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--light); display: block; margin-bottom: 6px;
}
.figure-note {
  font-size: 11px; color: var(--cedar); line-height: 1.6;
  font-style: italic;
}
.figure.accent { background: var(--paper); }
.figure.accent .figure-val { color: var(--cedar); }

/* Sequence */
.sequence {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--rule);
}
.seq-item {
  padding: 32px 28px; border-right: 1px solid var(--rule);
  display: flex; gap: 16px; align-items: flex-start;
}
.seq-item:last-child { border-right: none; }
.seq-num {
  font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300;
  color: var(--rule); line-height: 1; flex-shrink: 0; margin-top: -4px;
}
.seq-label {
  font-size: 8px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cedar); margin-bottom: 8px; display: block;
}
.seq-text { font-size: 11px; color: var(--mid); line-height: 1.75; }

.legal-note {
  margin-top: 40px; padding: 24px 0;
  border-top: 1px solid var(--rule);
  font-size: 11px; color: var(--light); line-height: 1.85;
  display: flex; gap: 24px; align-items: flex-start;
}
.legal-note-marker {
  font-size: 8px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cedar); flex-shrink: 0; padding-top: 2px;
}

/* ── CATALOGUE ─────────────────────────────────────────── */
#catalogue {
  padding: 96px 0;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.cat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: start;
}
.cat-label {
  font-size: 8px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--cedar); margin-bottom: 40px; display: block;
}
.cat-num {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: 120px; color: var(--rule); line-height: 1;
  display: block; margin-bottom: -16px;
}
.cat-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(28px, 3.5vw, 42px); line-height: 1.1;
  color: var(--ink); margin-bottom: 8px;
}
.cat-subtitle {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 16px; color: var(--mid); margin-bottom: 36px;
}
.cat-medium {
  font-size: 12px; color: var(--light); line-height: 1.9;
  padding-top: 24px; border-top: 1px solid var(--rule);
}
.cat-body p {
  font-size: 14px; line-height: 1.95; color: var(--mid); margin-bottom: 20px;
}
.cat-body p:last-child { margin-bottom: 0; }
.cat-pull {
  margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--rule);
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(18px, 2vw, 24px); line-height: 1.6; color: var(--ink);
}
.cat-pull-attr {
  display: block; margin-top: 16px;
  font-family: 'Montserrat', sans-serif; font-style: normal;
  font-size: 8px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cedar);
}

/* ── IMAGES ────────────────────────────────────────────── */
.img-caption-bar {
  padding: 14px 52px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  background: var(--sky); border-bottom: 1px solid var(--rule);
}
.img-caption-bar span {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pise-mid);
}

/* Natural width, artwork, ultra-wide landscapes (no 60vh strip crop) */
.img-showcase {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.img-showcase__inner {
  max-width: 960px; margin: 0 auto; padding: 56px 52px 0;
}
.img-showcase img {
  width: 100%; height: auto; display: block;
}
.img-showcase--portrait .img-showcase__inner {
  max-width: 640px; padding-top: 64px;
}

/* Cinematic band, only for images with enough height (min 0.55 aspect) */
.img-band {
  width: 100%; line-height: 0; border-bottom: 1px solid var(--rule);
}
.img-band img {
  width: 100%; display: block;
  min-height: 42vh; max-height: 78vh;
  object-fit: cover; object-position: center center;
}

/* Two-up: balanced height, no forced 4:3 */
.img-split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: min(72vh, 720px);
  border-bottom: 1px solid var(--rule);
}
.img-split img {
  width: 100%; height: 100%; min-height: 320px;
  object-fit: cover; display: block;
}
.img-split .pos-top { object-position: center 28%; }
.img-split .pos-center { object-position: center center; }

.img-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  min-height: min(68vh, 640px);
  border-bottom: 1px solid var(--rule);
}
.img-pair img {
  width: 100%; height: 100%; min-height: 300px;
  object-fit: cover; display: block;
}
.img-pair .pos-pool { object-position: center 40%; }

/* Asymmetric trio: landscape · portrait · landscape */
.img-trio {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 1.05fr;
  min-height: min(70vh, 680px);
  border-bottom: 1px solid var(--rule);
}
.img-trio img {
  width: 100%; height: 100%; min-height: 280px;
  object-fit: cover; display: block;
}
.img-trio .pos-portrait { object-position: center 35%; }

/* Legacy wrapper, prefer img-showcase / img-band */
.img-full-wrap { width: 100%; line-height: 0; border-bottom: 1px solid var(--rule); }
.img-full-wrap img {
  width: 100%; height: auto; display: block; max-height: none; object-fit: unset;
}

/* ── TEMPORAL ──────────────────────────────────────────── */
#temporal {
  padding: 96px 0;
  border-bottom: 1px solid var(--rule);
}
.temporal-label {
  font-size: 8px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--cedar); margin-bottom: 56px; display: block;
}
.temporal-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
  border-top: 1px solid var(--rule); border-left: 1px solid var(--rule);
}
.t-cell {
  padding: 48px 36px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.t-num {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: 64px; color: var(--rule); line-height: 1;
  display: block; margin-bottom: 24px;
}
.t-sublabel {
  font-size: 8px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cedar); display: block; margin-bottom: 12px;
}
.t-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: 22px; line-height: 1.3; color: var(--ink); margin-bottom: 20px;
}
.t-body { font-size: 12px; color: var(--mid); line-height: 1.9; }
.t-tag {
  display: inline-block; margin-top: 24px;
  font-size: 8px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--light);
  border-bottom: 1px solid var(--rule); padding-bottom: 3px;
}

/* ── TAX SHIELD ────────────────────────────────────────── */
#tax {
  padding: 96px 0;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.tax-label {
  font-size: 8px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--cedar); margin-bottom: 40px; display: block;
}
.tax-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(26px, 3vw, 38px); line-height: 1.2; color: var(--ink); margin-bottom: 56px;
}
.tax-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-bottom: 48px;
}
.tax-cell-label {
  font-size: 8px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cedar); margin-bottom: 16px; display: block;
}
.tax-cell p { font-size: 13px; color: var(--mid); line-height: 1.9; }
.vat-table { border-top: 1px solid var(--rule); }
.vat-row {
  display: grid; grid-template-columns: 1fr auto; padding: 14px 0;
  border-bottom: 1px solid var(--rule); align-items: baseline;
}
.vat-row-label { font-size: 12px; color: var(--mid); }
.vat-row-val {
  font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 300;
  color: var(--ink); text-align: right;
}
.vat-row.total .vat-row-label { color: var(--ink); font-weight: 400; }
.vat-row.total .vat-row-val { color: var(--cedar); font-size: 22px; }
.tax-disclaimer {
  margin-top: 20px; font-size: 10px; color: var(--light); line-height: 1.7;
}

/* ── COLLATERAL / ASSET BACKING ────────────────────────── */
#collateral {
  padding: 96px 0;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.collateral-label {
  font-size: 8px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--cedar); margin-bottom: 40px; display: block;
}
.collateral-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(26px, 3vw, 38px); line-height: 1.2; color: var(--ink);
  margin-bottom: 28px;
}
.collateral-lede {
  font-size: 14px; line-height: 1.95; color: var(--mid);
  margin-bottom: 48px;
}
.val-table {
  width: 100%; border-collapse: collapse; margin-bottom: 32px;
  font-size: 13px;
}
.val-table thead tr { border-bottom: 2px solid var(--cedar); }
.val-table thead th {
  padding: 10px 16px 10px 0; text-align: left;
  font-size: 8px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--light); font-weight: 400;
}
.val-table thead th:last-child { text-align: right; padding-right: 0; }
.val-table tbody tr { border-bottom: 1px solid var(--rule); }
.val-table tbody td {
  padding: 18px 16px 18px 0; color: var(--mid); line-height: 1.65;
  vertical-align: top;
}
.val-table tbody td:first-child {
  color: var(--ink); font-size: 12px; letter-spacing: 0.04em;
  width: 28%;
}
.val-table tbody td:nth-child(2) { width: 38%; font-size: 12px; }
.val-table tbody td:last-child {
  text-align: right; padding-right: 0;
  font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300;
  color: var(--ink); white-space: nowrap;
}
.val-table tbody tr.row-highlight td:last-child { color: var(--cedar); }
.collateral-note {
  font-size: 12px; color: var(--mid); line-height: 1.85;
  margin-bottom: 48px;
  padding-top: 8px;
}
.collateral-note strong { color: var(--ink); font-weight: 400; }
.collateral-pull {
  margin-top: 8px; padding-top: 32px; border-top: 1px solid var(--rule);
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(18px, 2vw, 24px); line-height: 1.6; color: var(--ink);
}
.collateral-pull-attr {
  display: block; margin-top: 16px;
  font-family: 'Montserrat', sans-serif; font-style: normal;
  font-size: 8px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cedar);
}
@media (max-width: 900px) {
  .val-table { font-size: 11px; }
  .val-table tbody td:first-child { width: auto; display: block; padding-bottom: 4px; }
  .val-table tbody td:nth-child(2),
  .val-table tbody td:last-child { display: block; width: auto; text-align: left; padding-top: 0; }
  .val-table tbody td:last-child { font-size: 18px; padding-bottom: 18px; }
  .val-table thead { display: none; }
  .val-table tbody tr { display: block; padding: 8px 0; }
}

/* ── TERRITORY ─────────────────────────────────────────── */
#territory { padding: 96px 0; border-bottom: 1px solid var(--rule); }
.territory-label {
  font-size: 8px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--cedar); margin-bottom: 40px; display: block;
}
.territory-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 96px; margin-bottom: 72px;
}
.territory-intro-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(26px, 3vw, 36px); line-height: 1.2; color: var(--ink);
}
.territory-intro-body { font-size: 13px; color: var(--mid); line-height: 1.95; }
.territory-intro-body p { margin-bottom: 16px; }
.territory-intro-body p:last-child { margin-bottom: 0; }

.territory-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--rule); border-left: 1px solid var(--rule);
}
.tc {
  padding: 36px 32px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.tc-label {
  font-size: 8px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cedar); margin-bottom: 12px; display: block;
}
.tc-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: 20px; line-height: 1.3; color: var(--ink); margin-bottom: 14px;
}
.tc-body { font-size: 12px; color: var(--mid); line-height: 1.85; }

/* ── ARTISTS ───────────────────────────────────────────── */
#artists {
  padding: 96px 0;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.artists-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: start;
}
.artists-label {
  font-size: 8px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--cedar); margin-bottom: 40px; display: block;
}
.artists-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(26px, 3vw, 38px); line-height: 1.15; color: var(--ink); margin-bottom: 32px;
}
.artists-body p { font-size: 13px; color: var(--mid); line-height: 1.95; margin-bottom: 18px; }
.artists-body p:last-child { margin-bottom: 0; }
.artists-pull {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(18px, 2vw, 22px); line-height: 1.6; color: var(--ink);
  padding-top: 32px; border-top: 1px solid var(--rule); margin-bottom: 16px;
}
.artists-pull-attr {
  font-size: 8px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cedar);
}
.artists-stats {
  padding-top: 32px; border-top: 1px solid var(--rule);
}
.stat-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid var(--rule);
}
.stat-row:first-child { border-top: none; }
.stat-label { font-size: 11px; color: var(--light); }
.stat-val {
  font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 300; color: var(--ink);
}

/* ── FOUNDERS ──────────────────────────────────────────── */
#founders {
  padding: 96px 0;
  border-bottom: 1px solid var(--rule);
}
.founders-label {
  font-size: 8px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--cedar); margin-bottom: 40px; display: block;
}
.founders-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(36px, 5vw, 60px); line-height: 1.0; color: var(--ink);
  margin-bottom: 56px;
}
.founders-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-bottom: 48px;
}
.founders-body p { font-size: 13px; color: var(--mid); line-height: 1.95; margin-bottom: 16px; }
.founders-body p:last-child { margin-bottom: 0; }
.allocation-note {
  padding: 28px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  font-size: 12px; color: var(--mid); line-height: 1.9;
}

/* ── FINANCING ─────────────────────────────────────────── */
#financing {
  padding: 96px 0;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.fin-label {
  font-size: 8px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--cedar); margin-bottom: 40px; display: block;
}
.fin-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(28px, 3.5vw, 44px); line-height: 1.15; color: var(--ink);
  margin-bottom: 16px;
}
.fin-intro {
  font-size: 13px; color: var(--mid); line-height: 1.95;
  margin-bottom: 64px;
}
#territory-vision .fin-intro + .fin-intro {
  margin-top: -40px;
}

/* Key figures strip */
.fin-figures {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border-top: 1px solid var(--rule); border-left: 1px solid var(--rule);
  margin-bottom: 64px;
}
.fin-fig {
  padding: 32px 28px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  background: var(--white);
}
.fin-fig-val {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(28px, 3vw, 40px); color: var(--cedar);
  line-height: 1; display: block; margin-bottom: 10px;
}
.fin-fig-label {
  font-size: 8px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--light); display: block; margin-bottom: 6px;
}
.fin-fig-note { font-size: 11px; color: var(--mid); line-height: 1.65; font-style: italic; }

/* P&L table */
.fin-table {
  width: 100%; border-collapse: collapse; margin-bottom: 48px;
  font-size: 12px;
}
.fin-table thead tr { border-bottom: 2px solid var(--cedar); }
.fin-table thead th {
  padding: 10px 12px; text-align: right;
  font-size: 8px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--light); font-weight: 400;
}
.fin-table thead th:first-child { text-align: left; }
.fin-table tbody tr { border-bottom: 1px solid var(--rule); }
.fin-table tbody td { padding: 9px 12px; color: var(--mid); text-align: right; }
.fin-table tbody td:first-child { text-align: left; color: var(--ink); }
.fin-table .row-section td {
  background: var(--paper); color: var(--cedar);
  font-size: 8px; letter-spacing: 0.25em; text-transform: uppercase;
  padding: 6px 12px;
}
.fin-table .row-total td {
  border-top: 2px solid var(--cedar); border-bottom: 2px solid var(--cedar);
  font-weight: 500; color: var(--ink); padding: 11px 12px;
}
.fin-table .row-total td:first-child { color: var(--ink); }
.fin-table .row-highlight td { background: var(--paper); color: var(--cedar); }
.fin-table .row-highlight td:first-child { color: var(--cedar); }
.fin-table .row-indent td:first-child { padding-left: 28px; color: var(--mid); font-style: italic; }

/* Waterfall */
.waterfall {
  margin-bottom: 64px;
}
.wf-item {
  display: grid; grid-template-columns: 32px 1fr auto;
  gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--rule);
  align-items: start;
}
.wf-item:first-child { border-top: 2px solid var(--cedar); }
.wf-num {
  font-family: 'Cormorant Garamond', serif; font-size: 36px;
  font-weight: 300; color: var(--rule); line-height: 1;
}
.wf-body {}
.wf-title {
  font-size: 12px; font-weight: 500; color: var(--ink);
  letter-spacing: 0.05em; margin-bottom: 4px; display: block;
}
.wf-desc { font-size: 11px; color: var(--mid); line-height: 1.75; }
.wf-amount {
  font-family: 'Cormorant Garamond', serif; font-size: 20px;
  font-weight: 300; color: var(--cedar); text-align: right;
  white-space: nowrap; padding-top: 2px;
}
.wf-amount small {
  display: block; font-family: 'Montserrat', sans-serif;
  font-size: 9px; color: var(--light); letter-spacing: 0.15em;
  text-transform: uppercase; margin-top: 2px;
}

/* Per instrument return */
.return-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  margin-bottom: 64px;
}
.return-col-label {
  font-size: 8px; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--cedar); margin-bottom: 24px; display: block;
}
.return-col-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(20px, 2.2vw, 28px); line-height: 1.25;
  color: var(--ink); margin-bottom: 20px;
}
.return-col-body { font-size: 13px; color: var(--mid); line-height: 1.9; }
.return-col-body p { margin-bottom: 14px; }
.return-col-body p:last-child { margin-bottom: 0; }

/* Budget table */
.budget-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  margin-top: 64px;
}
.budget-col-label {
  font-size: 8px; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--cedar); margin-bottom: 24px; display: block;
}
.budget-table {
  width: 100%; border-collapse: collapse; font-size: 12px;
}
.budget-table tr { border-bottom: 1px solid var(--rule); }
.budget-table td { padding: 9px 0; color: var(--mid); }
.budget-table td:last-child { text-align: right; color: var(--ink); white-space: nowrap; }
.budget-table .row-total td { border-top: 2px solid var(--cedar); color: var(--ink); font-weight: 500; padding: 12px 0; }
.budget-table .row-total td:last-child { color: var(--cedar); }
.budget-table .row-note td { font-size: 10px; color: var(--light); border-bottom: none; padding-top: 0; font-style: italic; }

.perpetual-note {
  margin-top: 64px; padding: 40px;
  border: 1px solid var(--rule); background: var(--white);
}
.perpetual-note-label {
  font-size: 8px; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--cedar); margin-bottom: 20px; display: block;
}
.perpetual-note-text {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(18px, 2vw, 24px); line-height: 1.65; color: var(--ink);
}

/* ── PROTOCOL / CTA ────────────────────────────────────── */
#cta {
  padding: 96px 0;
  background: var(--paper2);
  border-bottom: 1px solid var(--rule);
}
#protocol {
  padding: 40px 0 72px;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.cta-inner, .protocol-inner { max-width: 960px; }
.cta-label {
  font-size: 8px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--cedar); margin-bottom: 32px; display: block;
}
.cta-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(28px, 3.5vw, 44px); line-height: 1.15; color: var(--ink); margin-bottom: 16px;
}
.cta-body {
  font-size: 14px; color: var(--mid); margin-bottom: 48px; line-height: 1.9;
}
.panel-links {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--rule); border-left: 1px solid var(--rule);
  margin-bottom: 40px;
}
.panel-link {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 28px 32px;
  border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  text-decoration: none; color: inherit;
  transition: background 0.2s;
}
.panel-link:hover { background: var(--white); }
.panel-link-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(18px, 2.2vw, 24px); line-height: 1.25; color: var(--ink);
}
.panel-link-action {
  font-size: 8px; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--cedar); flex-shrink: 0;
}
.protocol-footnote {
  font-size: 11px; line-height: 1.75; color: var(--light);
  font-style: italic;
}
.protocol-footnote a {
  color: var(--mid); text-decoration: none; border-bottom: 1px solid var(--rule);
}
.protocol-footnote a:hover { color: var(--cedar); border-bottom-color: var(--cedar); }
.cta-link {
  display: inline-block; padding: 14px 36px;
  border: 1px solid var(--cedar);
  font-size: 8px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--cedar); text-decoration: none; background: transparent;
  transition: background 0.2s, color 0.2s;
}
.cta-link:hover { background: var(--cedar); color: var(--white); }

/* ── COLOPHON ──────────────────────────────────────────── */
footer {
  padding: 40px 52px;
  background: var(--sand);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap; border-top: 1px solid var(--rule);
}
.foot-brand,
.foot-legal,
.foot-ref {
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--pise-mid);
}
.foot-legal {
  text-transform: none;
  letter-spacing: 0;
  max-width: 520px;
  line-height: 1.7;
}
.foot-ref { text-align: right; }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 900px) {
  .wrap, .wrap-narrow { padding: 0 32px; }
  .img-caption-bar { padding: 12px 32px; }
  .plate-content { padding: 0 32px; flex-direction: column; align-items: flex-start; gap: 24px; }
  .plate-right { text-align: left; }
  .nav-top { padding: 12px 20px; }
  .figures { grid-template-columns: 1fr 1fr; }
  .sequence { grid-template-columns: 1fr 1fr; }
  .temporal-grid { grid-template-columns: 1fr; }
  .cat-grid, .artists-grid, .tax-grid, .territory-intro, .founders-body { grid-template-columns: 1fr; gap: 48px; }
  .territory-cards { grid-template-columns: 1fr; }
  .img-showcase__inner { padding: 40px 32px 0; }
  .img-split, .img-pair, .img-trio { grid-template-columns: 1fr; min-height: 0; }
  .img-split img, .img-pair img, .img-trio img { min-height: 52vw; max-height: 70vh; }
  .img-band img { min-height: 36vh; max-height: 56vh; }
  footer { flex-direction: column; gap: 12px; padding: 32px; }
  .foot-ref { text-align: left; }
  #plate { height: 70svh; }
  .fin-figures { grid-template-columns: 1fr 1fr; }
  .return-grid, .budget-grid { grid-template-columns: 1fr; gap: 48px; }
  .wf-item { grid-template-columns: 24px 1fr; gap: 12px; }
  .wf-amount { grid-column: 2; }
  .perpetual-note { padding: 24px; }
  #territory-vision .return-grid { grid-template-columns: 1fr; gap: 40px; }
  .panel-links { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .figures { grid-template-columns: 1fr; }
  .sequence { grid-template-columns: 1fr; }
  .plate-title { font-size: 52px; }
  .fin-figures { grid-template-columns: 1fr; }
  .fin-table { font-size: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  .plate-bg__img {
    object-position: center center;
  }
}

/* ── SITE NAV (all pages · Tigmi two-row) ───────────────── */
nav.site-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  height: auto;
  padding: 0;
  background: var(--sand);
  border-bottom: 1px solid var(--pise-light);
}
body[data-hero="plate"] nav.site-nav {
  position: fixed;
}
.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 40px;
  border-bottom: 1px solid var(--pise-light);
}
.nav-top-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.site-nav .nav-brand {
  text-decoration: none;
  flex-shrink: 0;
  transition: color 0.2s;
}
.site-nav .nav-brand:hover { color: var(--cedar); }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0;
  margin-right: 16px;
  border: 1px solid var(--rule);
  background: var(--white);
}
.lang-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 9px;
  border: none;
  background: transparent;
  color: var(--light);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.is-active {
  color: var(--ink);
  background: var(--sand);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--pise-mid);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.site-nav .nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 9px 40px;
}
.nav-links a {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pise-mid);
  text-decoration: none;
  padding: 6px 10px;
  border: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--pise); }
.nav-links a.active {
  color: var(--pise);
  border-color: var(--cedar);
}

/* ── SITE SHELL · Tigmi readability ──────────────────────── */
.site-main { padding-top: 0; }
body[data-hero="plate"] .site-main { padding-top: 0; }
.site-main.page-inner > section:first-of-type,
.site-main.page-inner > .img-showcase:first-child,
.site-main.page-inner > .img-band:first-child,
.site-main.page-inner > .img-full-wrap:first-child {
  border-top: none;
}

.site-main.page-inner > section {
  padding-top: 56px;
  padding-bottom: 56px;
}

/* ── PAGE HEADER (inner pages · Tigmi) ─────────────────── */
.page-header {
  padding: 56px 0 48px;
  background: var(--sand);
  border-bottom: 1px solid var(--pise-light);
}
.page-header__inner { max-width: 960px; }
.ph {
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  margin-bottom: 40px; padding-bottom: 10px;
  border-bottom: 1px solid var(--cedar);
}
.ph span {
  font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cedar);
}
.ph span:last-child { color: var(--pise-mid); text-align: right; }
.page-sl {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cedar); margin-bottom: 10px; display: block;
}
.page-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: 44px; line-height: 1.12;
  color: var(--pise); margin-bottom: 22px; max-width: none;
}
.page-lede {
  font-size: 16px; line-height: 1.9; color: var(--pise-mid);
  margin: 0;
}

/* Section labels & body copy (inner) */
.site-main [class$="-label"],
.site-main .label,
.site-main .numbers-label,
.site-main .legal-note-marker {
  font-size: 11px !important;
  letter-spacing: 0.22em !important;
}
.site-main .cat-body p,
.site-main .territory-intro-body,
.site-main .territory-intro-body p,
.site-main .artists-body p,
.site-main .founders-body p,
.site-main .collateral-lede,
.site-main .collateral-note,
.site-main .numbers-intro,
.site-main .fin-intro,
.site-main .tax-cell p,
.site-main .tc-body,
.site-main .t-body,
.site-main .seq-text,
.site-main .allocation-note {
  font-size: 16px;
  line-height: 1.9;
  color: var(--pise-mid);
}
.site-main .cat-medium,
.site-main .tax-disclaimer,
.site-main .legal-note {
  font-size: 14px;
  line-height: 1.8;
}
.site-main .tc-label,
.site-main .tax-cell-label,
.site-main .seq-label,
.site-main .t-sublabel,
.site-main .figure-label {
  font-size: 10px;
  letter-spacing: 0.18em;
}
.site-main .figure-val {
  font-size: clamp(30px, 3.2vw, 36px);
}
.site-main .figure-note { font-size: 12px; }
.site-main .figure,
.site-main .seq-item,
.site-main .tc,
.site-main .t-cell,
.site-main .fin-fig {
  background: var(--sky);
}
.site-main .numbers-title,
.site-main .cat-title,
.site-main .collateral-title,
.site-main .tax-title,
.site-main .territory-intro-title,
.site-main .artists-title,
.site-main .fin-title {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.3;
}
.site-main .t-title { font-size: 20px; }
.site-main .tc-title { font-size: 20px; }
.site-main .cat-subtitle { font-size: 16px; }

.site-main .val-table { font-size: 15px; }
.site-main .val-table thead th {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--pise-mid);
  padding: 10px 10px 10px 0;
}
.site-main .val-table tbody td {
  font-size: 14px;
  padding: 12px 10px 12px 0;
  color: var(--pise-mid);
}
.site-main .val-table tbody td:first-child {
  font-size: 14px;
  color: var(--pise);
}
.site-main .val-table tbody td:last-child {
  font-size: 22px;
  color: var(--pise);
}

.site-main .fin-table,
.site-main table.ret {
  font-size: 15px;
}
.site-main .fin-table thead th,
.site-main table.ret thead th {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--pise-mid);
  padding: 10px;
}
.site-main .fin-table tbody td,
.site-main table.ret tbody td {
  font-size: 14px;
  padding: 9px 10px;
  line-height: 1.7;
  color: var(--pise);
}
.site-main .wf-title { font-size: 13px; color: var(--pise); }
.site-main .wf-desc { font-size: 13px; line-height: 1.65; }
.site-main .wf-amount { font-size: 13px; }
.site-main .return-col-body,
.site-main .return-col-body p,
.site-main .budget-table td { font-size: 16px; line-height: 1.9; }
.site-main .return-col-title { font-size: 21px; }
.site-main .fin-fig-note { font-size: 12px; }
.site-main .fin-fig-val { font-size: 34px; }
.site-main .stat-label { font-size: 13px; color: var(--pise-mid); }
.site-main .stat-val { font-size: 20px; }
.site-main .vat-row-label { font-size: 14px; }
.site-main .page-next a {
  font-size: 10px;
  letter-spacing: 0.13em;
}

.site-main .img-caption-bar {
  background: var(--sky);
  padding: 14px 52px;
}
.site-main .img-caption-bar span {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--pise-mid);
}
.site-main .img-showcase { background: var(--sand); }
.site-main .img-showcase__inner {
  max-width: 960px;
  padding: 56px 52px 0;
}
.site-main .img-credit {
  padding: 14px 52px;
  background: var(--sky);
}
.site-main .img-credit-title { font-size: 14px; }
.site-main .img-credit-meta {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--pise-mid);
}

.site-main #protocol { background: var(--sand); padding-bottom: 56px; }
.site-main .panel-link { background: var(--sky); }
.site-main .panel-link-title { font-size: 15px; }
.site-main .protocol-footnote { font-size: 14px; color: var(--pise-mid); }

@media (max-width: 720px) {
  .wrap,
  .wrap-narrow { padding-left: 20px; padding-right: 20px; }
  .page-header { padding: 40px 0 36px; }
  .page-title { font-size: 36px; }
  nav.site-nav { padding: 0 20px; }
  .lang-switcher { margin-right: 8px; }
  .lang-btn { padding: 7px 7px; font-size: 8px; }
  #diptych-image.img-showcase .img-showcase__inner,
  .img-credit--body,
  .img-showcase__inner,
  .img-caption-bar,
  .img-credit,
  .site-main .img-showcase__inner,
  .site-main .img-caption-bar,
  .site-main .img-credit { padding-left: 20px; padding-right: 20px; }
  footer { padding: 32px 20px; }
}

/* ── HUB (home index) ──────────────────────────────────── */
.hub {
  padding: 56px 0;
  border-bottom: 1px solid var(--rule);
  background: var(--sand);
}
.hub-label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cedar); margin-bottom: 40px; display: block;
}
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--pise-light);
  border: 1px solid var(--pise-light);
}
.hub-card {
  display: block; padding: 28px 24px;
  background: var(--sky);
  text-decoration: none; color: inherit;
  transition: background 0.2s, box-shadow 0.2s;
}
.hub-card:hover {
  background: var(--sand);
  box-shadow: inset 0 0 0 1px var(--cedar);
}
.hub-card-num {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: 34px; color: var(--pise-light); line-height: 1;
  display: block; margin-bottom: 14px;
}
.hub-card-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: 20px; line-height: 1.25; color: var(--pise); margin-bottom: 10px;
}
.hub-card-desc {
  font-size: 14px; color: var(--pise-mid); line-height: 1.8; margin-bottom: 18px;
}
.hub-card-link {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cedar);
}

.page-next {
  padding: 48px 0;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: flex-end;
}
.page-next a {
  font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--cedar); text-decoration: none;
}
.page-next a:hover { color: var(--pise); }

@media (max-width: 900px) {
  .nav-top { padding: 12px 20px; }
  .nav-toggle { display: flex; }
  .nav-status { display: none; }
  .site-nav .nav-links {
    position: fixed;
    top: 57px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 24px;
    background: var(--sand);
    border-bottom: 1px solid var(--pise-light);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { border-bottom: 1px solid var(--pise-light); }
  .nav-links a {
    display: block;
    padding: 14px 0;
    margin: 0;
    border: none;
  }
  .nav-links a.active { border: none; font-weight: 400; color: var(--pise); }
  .hub-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hub-grid { grid-template-columns: 1fr; }
}
