/* ==========================================================
   Brisbane Lyric Opera — Cinematic Editorial
   Palette: ink black · warm ivory · antique gold · taupe
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;0,6..96,700;1,6..96,400&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --ink: #0a0908;
  --ink-soft: #141211;
  --ink-panel: #1a1715;
  --ivory: #f5f1e8;
  --ivory-soft: #ebe5d6;
  --parchment: #e7dfca;
  --taupe: #8a7f6d;
  --taupe-dim: #5c5347;
  --gold: #c9a961;
  --gold-bright: #e0c17d;
  --gold-dark: #8a7234;
  --rule: rgba(201,169,97,0.35);
  --rule-soft: rgba(245,241,232,0.12);
  --rule-ink: rgba(10,9,8,0.12);

  --serif-display: 'Bodoni Moda', 'Didot', 'Times New Roman', serif;
  --serif-body: 'Cormorant Garamond', 'Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  --max: 1340px;
  --gutter: clamp(24px, 5vw, 72px);
}

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

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

body {
  font-family: var(--serif-body);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ivory);
  background: var(--ink);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s ease, opacity .3s ease; }

/* --------- Typography --------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow-ink { color: var(--gold-dark); }

h1, h2, h3, h4 {
  font-family: var(--serif-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.display {
  font-size: clamp(2.75rem, 7vw, 6.25rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

h2 { font-size: clamp(2rem, 4.2vw, 3.5rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.9rem); line-height: 1.2; }
h4 { font-size: 1.2rem; line-height: 1.3; }

p { font-size: 1.125rem; line-height: 1.75; color: rgba(245,241,232,0.82); }
p.lede { font-size: 1.35rem; line-height: 1.6; color: var(--ivory); font-weight: 300; }
p + p { margin-top: 1rem; }

.prose { max-width: 62ch; }
.prose-wide { max-width: 72ch; }

/* Gold hairline rule */
.hairline { width: 72px; height: 1px; background: var(--gold); margin: 28px 0; border: 0; }
.hairline.center { margin-left: auto; margin-right: auto; }
.hairline.long { width: 160px; }

/* --------- Layout --------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 960px; margin: 0 auto; padding: 0 var(--gutter); }

section { padding: clamp(72px, 12vw, 160px) 0; position: relative; }
section.tight { padding: clamp(48px, 8vw, 96px) 0; }

.bg-ink { background: var(--ink); color: var(--ivory); }
.bg-panel { background: var(--ink-soft); }
.bg-ivory { background: var(--ivory); color: var(--ink); }
.bg-ivory h1, .bg-ivory h2, .bg-ivory h3, .bg-ivory h4 { color: var(--ink); }
.bg-ivory p { color: rgba(10,9,8,0.74); }
.bg-ivory .eyebrow { color: var(--gold-dark); }
.bg-ivory .hairline { background: var(--gold-dark); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 56px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 3vw, 40px); }
.grid-asym { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.grid-asym-rev { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(40px, 6vw, 96px); align-items: center; }

.center-text { text-align: center; }

/* --------- Buttons --------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 16px 38px;
  border: 1px solid var(--gold);
  color: var(--ivory);
  background: transparent;
  cursor: pointer;
  transition: background .4s ease, color .4s ease, border-color .4s ease;
  position: relative;
}
.btn:hover { background: var(--gold); color: var(--ink); }

.btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); }

.btn-ink { border-color: var(--ink); color: var(--ink); }
.btn-ink:hover { background: var(--ink); color: var(--ivory); }

.btn-group { display: flex; gap: 18px; flex-wrap: wrap; }

/* --------- Navigation --------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 var(--gutter);
  transition: background .4s ease, padding .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0px);
}
.nav.scrolled {
  background: rgba(10,9,8,0.92);
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--rule-soft);
  backdrop-filter: blur(14px);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.nav-brand {
  font-family: var(--serif-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ivory);
  line-height: 1;
}
.nav-brand .mark {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  color: var(--gold);
  margin-top: 4px;
  text-transform: uppercase;
}
.nav-menu { display: flex; align-items: flex-start; gap: 36px; list-style: none; }
.nav-menu a, .nav-menu > li > span {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  cursor: pointer;
  position: relative;
  padding-bottom: 4px;
}
.nav-menu a:hover, .nav-menu > li > span:hover { color: var(--gold); }

.nav-menu .has-sub { position: relative; }
.nav-menu .has-sub > span::after {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  margin-left: 8px;
  vertical-align: middle;
}
.sub-menu {
  position: absolute; top: 100%; left: -18px;
  min-width: 220px;
  background: var(--ink-soft);
  border: 1px solid var(--rule-soft);
  padding: 12px 0;
  list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
  margin-top: 18px;
}
.sub-menu::before {
  content: ''; position: absolute; top: -1px; left: 18px; width: 28px; height: 1px; background: var(--gold);
}
.nav-menu .has-sub:hover .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu li a {
  display: block;
  padding: 10px 22px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
}
.sub-menu li a:hover { background: rgba(201,169,97,0.08); color: var(--gold); }

/* Logo images */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0px;
  line-height: 1;
  margin-left: calc(-1 * var(--gutter));
}
.nav-mark {
  height: 81px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.nav-logo {
  height: 153px;
  width: auto;
  display: block;
  margin-left: -24px;
  filter: brightness(0) invert(1);
}
.footer-logo {
  height: 100px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}

.nav-cta { display: none; }
@media (min-width: 1100px) {
  .nav-cta { display: inline-block; }
}

.hamburger {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 32px; height: 24px; position: relative;
}
.hamburger span {
  position: absolute; left: 0; right: 0; height: 1px; background: var(--ivory);
  transition: transform .3s ease, opacity .3s ease, top .3s ease;
}
.hamburger span:nth-child(1) { top: 4px; }
.hamburger span:nth-child(2) { top: 12px; }
.hamburger span:nth-child(3) { top: 20px; }
.hamburger.open span:nth-child(1) { top: 12px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 12px; transform: rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-menu {
    position: fixed; top: 0; right: 0;
    flex-direction: column; align-items: flex-start;
    background: var(--ink); height: 100vh; width: min(420px, 100%);
    padding: 120px 48px 48px;
    gap: 28px;
    transform: translateX(100%); transition: transform .5s cubic-bezier(.77,0,.175,1);
    border-left: 1px solid var(--rule-soft);
  }
  .nav-menu.open { transform: translateX(0); }
  .sub-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; border: 0; padding: 12px 0 0 18px; margin: 10px 0 0;
  }
  .sub-menu::before { display: none; }
  .hamburger { display: block; z-index: 101; }
}

/* --------- Hero --------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 160px var(--gutter) 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(15%) contrast(1.05);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,9,8,0.45) 0%, rgba(10,9,8,0.55) 50%, rgba(10,9,8,0.92) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; width: 100%;
  padding-top: clamp(40px, 8vw, 80px);
}
.hero-inner .eyebrow { margin-bottom: 28px; }
.hero-inner h1 { margin-bottom: 32px; max-width: 16ch; }
.hero-inner p.lede { max-width: 54ch; margin-bottom: 44px; }

.hero-corners { position: absolute; inset: clamp(24px, 4vw, 40px); pointer-events: none; z-index: 2; }
.hero-corners::before, .hero-corners::after {
  content: ''; position: absolute; width: 56px; height: 56px;
  border: 1px solid var(--gold);
}
.hero-corners::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hero-corners::after { bottom: 0; right: 0; border-left: 0; border-top: 0; }

.hero-meta {
  position: absolute; bottom: 48px; left: var(--gutter); right: var(--gutter); z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px;
  font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(245,241,232,0.6);
  border-top: 1px solid var(--rule-soft);
  padding-top: 20px;
}

/* Page header (non-home) */
.page-hero {
  position: relative; min-height: 70vh;
  display: flex; align-items: flex-end;
  padding: 180px var(--gutter) 80px;
  overflow: hidden;
}
.page-hero .hero-bg::after {
  background: linear-gradient(180deg, rgba(10,9,8,0.55) 0%, rgba(10,9,8,0.95) 100%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; width: 100%; }
.page-hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); max-width: 18ch; margin: 20px 0 24px; }
.page-hero p.lede { max-width: 56ch; }

/* --------- Feature blocks --------- */
.feature {
  display: grid; grid-template-columns: 5fr 7fr; gap: clamp(40px, 6vw, 96px); align-items: center;
}
.feature.flip { grid-template-columns: 7fr 5fr; }
.feature .feature-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.feature .feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature .feature-media::before {
  content: ''; position: absolute; inset: 18px; border: 1px solid rgba(201,169,97,0.45);
  z-index: 2; pointer-events: none;
}
@media (max-width: 880px) {
  .feature, .feature.flip, .grid-asym, .grid-asym-rev, .grid-2 { grid-template-columns: 1fr; }
}

/* --------- Event cards --------- */
.event-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4vw, 56px); }
@media (max-width: 880px) { .event-grid { grid-template-columns: 1fr; } }

.event {
  background: var(--ink-soft);
  border: 1px solid var(--rule-soft);
  display: flex; flex-direction: column;
  transition: transform .6s cubic-bezier(.2,.7,.3,1), border-color .4s ease;
}
.event:hover { transform: translateY(-4px); border-color: var(--gold); }
.event-media { position: relative; aspect-ratio: 5 / 4; overflow: hidden; }
.event-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.event:hover .event-media img { transform: scale(1.04); }
.event-body { padding: 40px clamp(28px, 4vw, 48px) 44px; display: flex; flex-direction: column; gap: 18px; flex: 1; }
.event-body .date {
  font-family: var(--sans);
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
}
.event-body h3 { font-family: var(--serif-display); font-weight: 400; }
.event-body .venue {
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(245,241,232,0.5);
}
.event-body .btn { align-self: flex-start; margin-top: 8px; }

/* --------- Stat strip --------- */
.stats {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: clamp(40px, 6vw, 80px) 0;
  background: var(--ink-soft);
}
.stats-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.stat { text-align: center; padding: 0 24px; position: relative; }
.stat + .stat::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%; width: 1px;
  background: var(--rule);
}
.stat .n {
  font-family: var(--serif-display); font-size: clamp(3rem, 6vw, 5rem); font-weight: 400;
  color: var(--gold); line-height: 1; letter-spacing: -0.02em;
  font-style: italic;
}
.stat .l {
  display: block; margin-top: 14px;
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(245,241,232,0.6);
}
@media (max-width: 680px) {
  .stats-inner { grid-template-columns: 1fr; gap: 40px; }
  .stat + .stat::before { display: none; }
}

/* --------- Team / person cards --------- */
.people { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(40px, 6vw, 96px); }
@media (max-width: 880px) { .people { grid-template-columns: 1fr; } }
.person-media {
  aspect-ratio: 4 / 5; overflow: hidden; position: relative;
  background: var(--ink-panel);
}
.person-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(10%) contrast(1.02); }
.person-media::after {
  content: ''; position: absolute; inset: 14px; border: 1px solid rgba(201,169,97,0.3); pointer-events: none;
}
.person-body { padding-top: 28px; }
.person-body .role {
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.person-body h3 { font-size: 1.8rem; margin-bottom: 18px; }

/* --------- Pricing / tiers --------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 880px) { .tiers { grid-template-columns: 1fr; } }
.tier {
  border: 1px solid var(--rule-soft);
  background: var(--ink-soft);
  padding: 48px 36px;
  text-align: center;
  position: relative;
  transition: border-color .4s ease, transform .4s ease;
}
.tier:hover { border-color: var(--gold); transform: translateY(-4px); }
.tier.featured { border-color: var(--gold); }
.tier.featured::before {
  content: 'Most Popular';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink);
  font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  padding: 6px 18px;
}
.tier .label {
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
}
.tier .price {
  font-family: var(--serif-display); font-size: 3.2rem; font-weight: 400; font-style: italic;
  color: var(--ivory); margin: 22px 0 8px; line-height: 1;
}
.tier .price span { font-size: 1rem; font-style: normal; color: rgba(245,241,232,0.5); letter-spacing: 0.2em; }
.tier .duration { color: rgba(245,241,232,0.55); font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 28px; }

/* --------- Lists / checkmarks --------- */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  position: relative; padding: 14px 0 14px 36px;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 1.05rem; color: rgba(245,241,232,0.85);
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: ''; position: absolute; left: 0; top: 22px;
  width: 20px; height: 1px; background: var(--gold);
}

/* Program / cast list */
.program {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.program-row {
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule-soft);
  align-items: baseline;
}
.program-row:last-child { border-bottom: 0; }
.program-row .label {
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
}
.program-row .value {
  font-family: var(--serif-display); font-size: 1.3rem; color: var(--ivory);
}
.program-row .value small {
  display: block; margin-top: 4px; font-family: var(--serif-body);
  font-size: 1rem; font-style: italic; color: rgba(245,241,232,0.6);
}
@media (max-width: 680px) { .program-row { grid-template-columns: 1fr; gap: 4px; } }

/* --------- Patron tiers list --------- */
.patron-block { margin-bottom: 64px; }
.patron-block h3 {
  font-style: italic; color: var(--gold);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.patron-list {
  column-count: 2; column-gap: 48px;
  list-style: none; padding: 0;
}
.patron-list li {
  break-inside: avoid;
  padding: 10px 0;
  font-family: var(--serif-display);
  font-size: 1.15rem;
  color: var(--ivory);
  border-bottom: 1px dotted var(--rule-soft);
}
@media (max-width: 680px) { .patron-list { column-count: 1; } }

/* --------- Partner grid --------- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--rule-soft);
  border: 1px solid var(--rule-soft);
}
.partner-cell {
  background: var(--ink-soft);
  padding: 56px 32px;
  text-align: center;
  min-height: 180px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  transition: background .4s ease;
}
.partner-cell:hover { background: var(--ink-panel); }
.partner-cell .name {
  font-family: var(--serif-display); font-size: 1.35rem; color: var(--ivory);
}
.partner-cell .kind {
  font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}

/* --------- Quote --------- */
.quote {
  font-family: var(--serif-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.3; color: var(--ivory);
  text-align: center; max-width: 28ch; margin: 0 auto;
  position: relative;
}
.quote::before, .quote::after {
  color: var(--gold); font-family: var(--serif-display); font-size: 3rem; line-height: 0;
  position: relative; display: inline-block; vertical-align: middle;
}
.quote::before { content: '\201C'; margin-right: 6px; top: 12px; }
.quote::after { content: '\201D'; margin-left: 6px; top: 22px; }
.quote-attr {
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); text-align: center; margin-top: 32px;
}

/* --------- Newsletter --------- */
.newsletter {
  text-align: center;
  padding: clamp(72px, 10vw, 120px) var(--gutter);
  background: var(--ink-soft);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.newsletter h2 { font-style: italic; margin-bottom: 18px; }
.newsletter p { margin-bottom: 40px; max-width: 48ch; margin-left: auto; margin-right: auto; }
.news-form {
  display: flex; gap: 10px; flex-wrap: wrap;
  max-width: 640px; margin: 0 auto;
  border: 1px solid var(--rule); padding: 10px;
}
.news-form input {
  flex: 1 1 160px;
  background: transparent; border: 0;
  color: var(--ivory);
  font-family: var(--serif-body); font-size: 1rem;
  padding: 14px 18px; min-width: 120px;
}
.news-form input::placeholder { color: rgba(245,241,232,0.4); font-style: italic; }
.news-form input:focus { outline: none; background: rgba(201,169,97,0.06); }
.news-form button { flex: 0 0 auto; border: 0; }

/* --------- Forms --------- */
.form {
  display: grid; gap: 20px;
  max-width: 640px; margin: 0 auto;
}
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form .row { grid-template-columns: 1fr; } }
.form label {
  font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px; display: block;
}
.form input, .form textarea {
  width: 100%;
  background: transparent;
  border: 0; border-bottom: 1px solid var(--rule);
  color: var(--ivory);
  font-family: var(--serif-body); font-size: 1.1rem;
  padding: 12px 0;
}
.form input:focus, .form textarea:focus {
  outline: none; border-bottom-color: var(--gold);
}
.form textarea { min-height: 140px; resize: vertical; }
.form button { justify-self: start; margin-top: 12px; }

/* --------- Footer --------- */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--rule-soft);
  padding: 96px var(--gutter) 40px;
  color: var(--ivory);
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
@media (max-width: 880px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-brand .wordmark {
  font-family: var(--serif-display); font-size: 1.6rem; letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.footer-brand .wordmark em { font-style: italic; color: var(--gold); }
.footer-brand .mark {
  font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.footer-brand p { color: rgba(245,241,232,0.6); max-width: 40ch; }

.footer-col h4 {
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px; font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-family: var(--serif-body); font-size: 1rem;
  color: rgba(245,241,232,0.72);
}
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 0.98rem; color: rgba(245,241,232,0.72); margin-bottom: 8px; }

.footer-bottom {
  max-width: var(--max); margin: 72px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--rule-soft);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(245,241,232,0.4);
  flex-wrap: wrap;
}
.footer-social { display: flex; gap: 18px; }
.footer-social a {
  width: 38px; height: 38px; border: 1px solid var(--rule);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ivory); transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.footer-social a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* --------- Misc --------- */
.split-label {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.split-label .line { flex: 1; height: 1px; background: var(--rule); max-width: 80px; }

.aside-card {
  background: var(--ink-soft);
  border: 1px solid var(--rule-soft);
  padding: 48px 40px;
  position: relative;
}
.aside-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 48px; height: 1px; background: var(--gold);
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 1s ease, transform 1s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Selection */
::selection { background: var(--gold); color: var(--ink); }
