:root {
  --ink: #151A1E;
  --ink-2: #0D1114;
  --paper: #F7F5EA;
  --museum-paper: #E6E3D6;
  --sage: #99BDA1;
  --teal: #2A7D78;
  --lime: #85EC6A;
  --butter: #FBFCD4;
  --rose: #EBC8D6;
  --muted: rgba(21, 26, 30, .68);
  --line: rgba(21, 26, 30, .12);
  --line-dark: rgba(247, 245, 234, .12);
  --shadow: 0 28px 90px rgba(13, 17, 20, .16);
  --radius: 26px;
  --max: 1220px;
  --serif: "Instrument Serif", "Newsreader", Georgia, serif;
  --sans: "Instrument Sans", Inter, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--sage); color: var(--ink); }

.site-bg {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
}
.site-bg::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 14% 10%, rgba(153, 189, 161, .28), transparent 30vw),
    radial-gradient(circle at 88% 2%, rgba(42, 125, 120, .16), transparent 28vw),
    linear-gradient(180deg, var(--paper), var(--museum-paper));
}
.site-bg::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(rgba(21,26,30,.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,26,30,.13) 1px, transparent 1px),
    radial-gradient(circle, rgba(21,26,30,.08) 1px, transparent 1.5px);
  background-size: 74px 74px, 74px 74px, 18px 18px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  transform: translateY(-160%);
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 100;
  width: min(var(--max), calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 62px;
  padding: 9px 10px 9px 18px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(21, 26, 30, .78);
  color: var(--paper);
  box-shadow: 0 18px 48px rgba(13,17,20,.18);
  backdrop-filter: blur(20px);
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.site-header.is-scrolled {
  background: rgba(13, 17, 20, .92);
  box-shadow: 0 20px 60px rgba(13,17,20,.28);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .16em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.desktop-nav a,
.mobile-nav a {
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.desktop-nav a {
  padding: 11px 10px;
  color: rgba(247,245,234,.72);
  font-size: 12px;
  font-weight: 750;
}
.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  background: rgba(247,245,234,.08);
  color: var(--paper);
}
.header-actions { display: flex; align-items: center; gap: 8px; }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--sage);
  color: var(--ink);
  font-size: 14px;
  font-weight: 820;
  line-height: 1;
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease, border-color .24s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: -70% -90%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
  transform: translateX(-65%) rotate(12deg);
  transition: transform .7s ease;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(21,26,30,.18);
}
.btn:hover::after { transform: translateX(65%) rotate(12deg); }
.btn:active { transform: scale(.97); }
.btn:focus-visible,
.icon-button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(133,236,106,.5);
  outline-offset: 3px;
}
.btn.secondary {
  background: rgba(255,255,255,.06);
  border-color: rgba(247,245,234,.14);
  color: var(--paper);
}
.btn.ink {
  background: var(--ink);
  color: var(--paper);
}
.btn.light {
  background: rgba(247,245,234,.72);
  border-color: rgba(21,26,30,.1);
  color: var(--ink);
}
.btn[aria-disabled="true"],
.btn:disabled {
  opacity: .52;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.icon-button {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  border: 1px solid rgba(247,245,234,.14);
  border-radius: 50%;
  background: rgba(247,245,234,.08);
  color: var(--paper);
}
.hamburger-lines {
  width: 18px;
  display: grid;
  gap: 5px;
}
.hamburger-lines span {
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 10%, rgba(153,189,161,.22), transparent 34vw),
    var(--ink);
  color: var(--paper);
}
.mobile-panel.is-open {
  display: grid;
  grid-template-rows: auto 1fr auto;
  animation: fadeIn .22s ease both;
}
.mobile-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-nav {
  display: grid;
  align-content: center;
  gap: 8px;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--serif);
  font-size: clamp(32px, 10vw, 56px);
}
.mobile-nav a[aria-current="page"] { color: var(--sage); }
.mobile-panel-foot { color: rgba(247,245,234,.62); font-size: 14px; }

main { min-height: 80vh; }
.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 132px 0 72px;
  overflow: hidden;
}
.hero.dark {
  background:
    radial-gradient(circle at 12% 12%, rgba(153,189,161,.2), transparent 28vw),
    linear-gradient(180deg, var(--ink), var(--ink-2));
  color: var(--paper);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, .86fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(21,26,30,.62);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.dark .eyebrow { color: rgba(247,245,234,.64); }
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 8px rgba(153,189,161,.12);
}
h1, h2, h3, p { margin-top: 0; }
.hero-title {
  max-width: 860px;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(58px, 8vw, 128px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: 0;
}
.page-title {
  max-width: 950px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(50px, 7vw, 104px);
  font-weight: 400;
  line-height: .92;
}
.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.48;
}
.dark .lead { color: rgba(247,245,234,.72); }
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.portrait-stage {
  position: relative;
  justify-self: center;
  width: min(440px, 100%);
}
.portrait-arch {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(21,26,30,.12);
  border-radius: 220px 220px 28px 28px;
  background: var(--museum-paper);
  box-shadow: var(--shadow);
}
.dark .portrait-arch { border-color: var(--line-dark); box-shadow: 0 36px 110px rgba(0,0,0,.32); }
.portrait-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  transition: transform .7s ease;
}
.portrait-arch:hover img { transform: scale(1.03); }
.portrait-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border: 1px solid rgba(247,245,234,.18);
  border-radius: 20px;
  background: rgba(21,26,30,.62);
  color: var(--paper);
  backdrop-filter: blur(14px);
}
.portrait-caption span {
  display: block;
  margin-bottom: 6px;
  color: rgba(247,245,234,.62);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.portrait-caption strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}
.editorial-ticket {
  position: absolute;
  left: -34px;
  bottom: -28px;
  width: 248px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--sage);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(13,17,20,.2);
  transform: rotate(-3deg);
}
.ticket-body { padding: 18px; }
.ticket-label {
  color: rgba(21,26,30,.58);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.ticket-title {
  display: block;
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}
.ticket-edge {
  height: 12px;
  background-image: radial-gradient(circle at 10px 0, transparent 0, transparent 5px, var(--paper) 5px);
  background-size: 20px 12px;
}
.seal {
  position: absolute;
  top: 86px;
  left: -26px;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--butter);
  border: 1px solid rgba(21,26,30,.12);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  animation: rotate 22s linear infinite;
}

.hero-editorial {
  min-height: 92svh;
  background:
    radial-gradient(circle at 88% 8%, rgba(153,189,161,.22), transparent 30vw),
    linear-gradient(135deg, var(--paper) 0%, var(--paper) 54%, var(--museum-paper) 54%, var(--museum-paper) 100%);
}
.hero-editorial .hero-grid {
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: end;
}
.hero-editorial .hero-title {
  font-size: clamp(54px, 7vw, 108px);
}
.hero-editorial .portrait-stage {
  width: min(620px, 100%);
  justify-self: end;
}
.hero-editorial .portrait-arch {
  aspect-ratio: 5 / 4;
  border-radius: 34px 34px 180px 34px;
}
.hero-editorial .portrait-caption {
  left: 28px;
  right: auto;
  bottom: 28px;
  width: min(330px, calc(100% - 56px));
}

.hero-band {
  min-height: 82svh;
  align-items: end;
  padding-bottom: 0;
  background:
    linear-gradient(180deg, rgba(247,245,234,.88), rgba(230,227,214,.9)),
    radial-gradient(circle at 18% 10%, rgba(42,125,120,.16), transparent 30vw);
}
.hero-band .hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .78fr);
  align-items: end;
}
.hero-band .hero-title {
  max-width: 980px;
  font-size: clamp(52px, 7vw, 112px);
}
.hero-band .portrait-stage {
  width: min(430px, 100%);
  align-self: end;
}
.hero-band .portrait-arch {
  aspect-ratio: 4 / 5;
  border-radius: 240px 240px 0 0;
  box-shadow: none;
}
.hero-band .portrait-caption {
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  border-inline: 0;
  border-bottom: 0;
}

.hero-portraitLeft {
  min-height: 90svh;
  background:
    radial-gradient(circle at 76% 18%, rgba(235,200,214,.22), transparent 26vw),
    var(--paper);
}
.hero-portraitLeft .hero-grid {
  grid-template-columns: minmax(360px, .86fr) minmax(0, 1.14fr);
}
.hero-portraitLeft .hero-grid > .reveal:first-child {
  grid-column: 2;
  grid-row: 1;
}
.hero-portraitLeft .portrait-stage {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  width: min(460px, 100%);
}
.hero-portraitLeft .portrait-arch {
  border-radius: 36px 210px 36px 36px;
}
.hero-portraitLeft .portrait-caption {
  left: auto;
  right: -20px;
  bottom: 34px;
  width: min(290px, 74%);
  background: rgba(13,17,20,.72);
}

.hero-compact {
  min-height: 72svh;
  padding-bottom: 54px;
  background:
    linear-gradient(110deg, var(--ink) 0%, var(--ink) 58%, var(--teal) 58%, var(--teal) 100%);
  color: var(--paper);
}
.hero-compact .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 360px);
  gap: clamp(32px, 5vw, 70px);
}
.hero-compact .hero-title {
  font-size: clamp(48px, 6vw, 92px);
}
.hero-compact .portrait-stage {
  width: min(360px, 100%);
}
.hero-compact .portrait-arch {
  aspect-ratio: 1 / 1.05;
  border-radius: 32px;
  box-shadow: 0 28px 80px rgba(0,0,0,.26);
}
.hero-compact .portrait-caption {
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(21,26,30,.1);
  background: rgba(247,245,234,.5);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee span {
  padding: 18px 28px;
  color: rgba(21,26,30,.58);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section {
  position: relative;
  padding: clamp(76px, 10vw, 128px) 0;
  overflow: hidden;
}
.section.dark {
  background:
    radial-gradient(circle at 86% 12%, rgba(153,189,161,.16), transparent 28vw),
    var(--ink);
  color: var(--paper);
}
.section.paper { background: var(--paper); }
.section.museum { background: var(--museum-paper); }
.section-head {
  display: grid;
  grid-template-columns: .38fr 1fr;
  gap: clamp(26px, 6vw, 84px);
  align-items: start;
  margin-bottom: 54px;
}
.section-kicker {
  color: rgba(21,26,30,.58);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.dark .section-kicker { color: rgba(247,245,234,.58); }
.section-title {
  max-width: 860px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 400;
  line-height: .96;
}
.editorial-text {
  color: var(--muted);
  font-size: clamp(22px, 3vw, 42px);
  line-height: 1.14;
}
.dark .editorial-text,
.dark .muted { color: rgba(247,245,234,.68); }
.muted { color: var(--muted); line-height: 1.65; }

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
}
.image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--museum-paper);
  box-shadow: var(--shadow);
}
.image-card.arch { border-radius: 180px 180px 28px 28px; }
.image-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: 50% 24%;
  transition: transform .7s ease;
}
.image-card:hover img { transform: scale(1.03); }

.timeline {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}
.timeline-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  padding: 32px;
  background: rgba(247,245,234,.82);
}
.timeline-year {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 78px);
  line-height: .9;
}
.timeline-item h3 { margin-bottom: 8px; font-size: 22px; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.editorial-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247,245,234,.72);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.dark .editorial-card {
  border-color: var(--line-dark);
  background: rgba(247,245,234,.055);
}
.editorial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(42,125,120,.38);
}
.editorial-card h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}
.empty-state {
  padding: 42px;
  border: 1px dashed rgba(21,26,30,.2);
  border-radius: var(--radius);
  background: rgba(247,245,234,.56);
}
.dark .empty-state { border-color: rgba(247,245,234,.2); background: rgba(247,245,234,.06); }

.business-diagram {
  display: grid;
  gap: 18px;
  text-align: center;
}
.diagram-node {
  width: min(560px, 100%);
  margin: 0 auto;
  padding: 28px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
}
.diagram-node.light {
  background: var(--sage);
  color: var(--ink);
}
.diagram-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.diagram-arrow {
  color: rgba(21,26,30,.34);
  font-size: 34px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}
.filter-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(247,245,234,.62);
  color: rgba(21,26,30,.72);
  font-size: 13px;
  font-weight: 760;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247,245,234,.68);
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
label {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(21,26,30,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.55);
  color: var(--ink);
  padding: 14px 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
textarea { min-height: 150px; resize: vertical; }
input:focus, textarea:focus, select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 5px rgba(42,125,120,.12);
  background: rgba(255,255,255,.78);
}
.field-error {
  min-height: 16px;
  color: #8B1E25;
  font-size: 13px;
}
.form-status {
  min-height: 22px;
  color: var(--muted);
  font-size: 14px;
}
.form-status.success { color: #1F6B45; }
.form-status.error { color: #8B1E25; }

.site-footer {
  background: var(--ink-2);
  color: rgba(247,245,234,.68);
  padding: 76px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 44px;
}
.footer-brand {
  color: var(--paper);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: .16em;
}
.footer-nav {
  display: grid;
  gap: 10px;
}
.footer-nav a:hover { color: var(--paper); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}
.reveal.is-visible {
  animation: reveal .78s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes rotate { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .icon-button { display: grid; }
}
@media (max-width: 960px) {
  .hero-grid,
  .split,
  .section-head,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 118px; }
  .portrait-stage,
  .hero-editorial .portrait-stage,
  .hero-band .portrait-stage,
  .hero-portraitLeft .portrait-stage,
  .hero-compact .portrait-stage {
    width: min(430px, 100%);
    justify-self: center;
  }
  .hero-portraitLeft .hero-grid > .reveal:first-child,
  .hero-portraitLeft .portrait-stage {
    grid-column: auto;
    grid-row: auto;
  }
  .hero-editorial .hero-grid,
  .hero-band .hero-grid,
  .hero-portraitLeft .hero-grid,
  .hero-compact .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-band {
    min-height: auto;
    padding-bottom: 64px;
  }
  .hero-compact {
    min-height: auto;
    background:
      radial-gradient(circle at 78% 8%, rgba(153,189,161,.16), transparent 34vw),
      var(--ink);
  }
  .grid-3, .grid-2, .diagram-row { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 40px, var(--max)); }
  .site-header { top: 10px; width: calc(100% - 20px); }
  .brand { font-size: 12px; letter-spacing: .12em; }
  .header-actions .btn { display: none; }
  .hero-title { font-size: clamp(52px, 17vw, 74px); }
  .page-title { font-size: clamp(44px, 14vw, 66px); }
  .portrait-caption,
  .hero-editorial .portrait-caption,
  .hero-band .portrait-caption,
  .hero-portraitLeft .portrait-caption,
  .hero-compact .portrait-caption {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: -28px auto 0;
    border-radius: 18px;
  }
  .editorial-ticket { position: relative; left: auto; bottom: auto; width: calc(100% - 28px); margin: -16px auto 0; }
  .form-grid { grid-template-columns: 1fr; }
  .action-row .btn { width: 100%; }
  .footer-bottom { flex-direction: column; }
}
