:root {
  color-scheme: light;
  --ink: #142033;
  --muted: #607089;
  --line: #d9e1ec;
  --paper: #f7f8f4;
  --white: #ffffff;
  --blue: #164f9f;
  --blue-dark: #0c315f;
  --gold: #b68a38;
  --green: #356b52;
  --brick: #8b3f30;
  --shadow: 0 18px 54px rgba(20, 32, 51, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 248, 244, .92);
  border-bottom: 1px solid rgba(20, 32, 51, .1);
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  box-shadow: 0 12px 32px rgba(20, 32, 51, .1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: .98rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a,
.nav-toggle,
.button {
  border-radius: 7px;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a {
  padding: 10px 12px;
  color: #243149;
  font-size: .9rem;
}

.site-nav a:hover {
  background: #e8edf4;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 9px 12px;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100svh - 150px));
  display: grid;
  align-items: end;
  padding: clamp(70px, 10vw, 112px) clamp(18px, 5vw, 72px) clamp(28px, 5vw, 48px);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--blue-dark);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 24, 45, .88) 0%, rgba(9, 35, 66, .68) 45%, rgba(9, 35, 66, .18) 100%);
}

.hero-copy {
  max-width: 760px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.footer h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(2.45rem, 4.7vw, 3.85rem);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
}

.primary {
  background: var(--white);
  color: var(--blue-dark);
}

.secondary {
  border: 1px solid rgba(255, 255, 255, .5);
  color: var(--white);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(26px, 5vw, 58px);
  display: grid;
  grid-template-columns: repeat(3, minmax(88px, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 8px;
  background: rgba(255, 255, 255, .18);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  padding: 16px 18px;
  background: rgba(10, 32, 58, .48);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  font-size: 1.55rem;
  line-height: 1;
}

.hero-panel span {
  margin-top: 5px;
  color: rgba(255, 255, 255, .76);
  font-size: .78rem;
  font-weight: 800;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.quick-strip a {
  min-height: 104px;
  padding: 22px clamp(18px, 4vw, 54px);
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.quick-strip span,
.quick-strip strong {
  display: block;
}

.quick-strip span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-strip strong {
  margin-top: 8px;
  color: var(--blue-dark);
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.15;
}

.mobile-priority {
  display: none;
}

.section {
  padding: clamp(54px, 8vw, 112px) clamp(18px, 5vw, 72px);
  scroll-margin-top: 86px;
}

.split,
.archive {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.section h2 {
  max-width: 820px;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
}

.section p {
  color: var(--muted);
}

.agenda {
  display: grid;
  gap: 12px;
}

.start-info {
  background: #f8faf7;
}

.agenda article,
.agenda-card,
.timeline article,
.company-card,
.people-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.agenda article {
  padding: 20px;
}

.agenda-card {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.agenda-card summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  min-height: 104px;
  padding: 20px;
  list-style: none;
}

.agenda-card summary::-webkit-details-marker {
  display: none;
}

.agenda-card summary::after,
.result-card summary::after,
.company-card summary::after,
.festival-gallery summary::after,
.archive-card summary::after {
  content: "+";
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  justify-self: end;
  color: var(--gold);
  font-weight: 900;
}

.agenda-card[open] summary::after,
.result-card[open] summary::after,
.company-card[open] summary::after,
.archive-card details[open] summary::after {
  content: "-";
}

.agenda-card summary strong {
  grid-column: 1;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.2;
}

.agenda-card p {
  margin: 0;
  padding: 0 20px 18px;
}

.agenda-card a {
  margin: 0 20px 18px;
  max-width: calc(100% - 40px);
}

.agenda-card a {
  display: inline-flex;
  color: var(--blue-dark);
  font-weight: 900;
}

.agenda-card.highlight {
  border-color: rgba(22, 79, 159, .28);
  box-shadow: 0 12px 32px rgba(20, 32, 51, .08);
}

.event-list {
  display: grid;
  gap: 8px;
  margin: 0 20px 16px;
}

.event-list p {
  margin: 0;
  padding: 10px 12px;
  border-radius: 7px;
  background: #f8fafc;
  color: var(--muted);
  font-weight: 800;
}

.compact-list {
  padding-top: 0;
}

.compact-result {
  padding-top: 0;
}

.agenda span,
.timeline span {
  color: var(--brick);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.agenda h3,
.timeline h3 {
  margin: 8px 0 6px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.agenda p,
.timeline p {
  margin: 0;
}

.tradition {
  background: #102b4e;
  color: var(--white);
}

.tradition .section-heading {
  max-width: 900px;
}

.tradition .section-heading h2,
.tradition .timeline h3 {
  color: var(--white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.timeline article {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
  padding: 22px;
}

.timeline p {
  color: rgba(255, 255, 255, .75);
}

.feature,
.festival {
  background: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.feature-photo {
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 10px 0 10px 28px;
  border-top: 1px solid var(--line);
  color: #273247;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  margin: 9px 0 0 -22px;
  border-radius: 50%;
  background: var(--green);
}

.shooting {
  background: #f4f7f3;
}

.results-deck {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.shooting h2 {
  max-width: 900px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.result-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.result-card summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  align-items: center;
  min-height: 96px;
  padding: 20px;
  list-style: none;
}

.result-card summary::-webkit-details-marker {
  display: none;
}

.result-card summary span,
.archive-card span {
  color: var(--brick);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.result-card summary strong {
  grid-column: 1;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.15;
}

.result-content {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 0 20px 20px;
}

.result-content img {
  width: 112px;
  aspect-ratio: 1 / 1;
  border-radius: 7px;
  object-fit: cover;
  object-position: center 22%;
}

.result-content h3,
.archive-card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.result-content p {
  margin: 0;
  font-size: .95rem;
}

.download-list {
  display: grid;
  gap: 8px;
  padding: 0 20px 20px;
  max-width: 100%;
}

.download-list a,
.company-card a,
.text-link {
  color: var(--blue-dark);
  font-weight: 900;
}

.download-list a {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f8fafc;
  text-decoration: none;
}

details {
  margin-top: 16px;
}

.result-card,
.agenda-card,
.company-card,
.festival-gallery {
  margin-top: 0;
}

summary {
  cursor: pointer;
  color: var(--blue-dark);
  font-weight: 900;
}

.nested {
  margin-top: 12px;
}

.mini-gallery,
.archive-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.mini-gallery img,
.archive-gallery img {
  width: 100%;
  aspect-ratio: 1 / .78;
  object-fit: cover;
  border-radius: 7px;
}

.festival {
  background: #ffffff;
}

.festival-board {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 14px;
  align-items: start;
}

.festival-lead,
.festival-step {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf7;
  overflow: hidden;
}

.festival-lead {
  grid-row: span 4;
  display: grid;
}

.festival-lead img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
}

.festival-lead div {
  padding: 22px;
}

.festival-lead span,
.festival-step span,
.archive-item span {
  color: var(--brick);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.festival-lead h3 {
  margin: 8px 0 8px;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.festival-lead p {
  margin: 0;
}

.festival-step {
  margin: 0;
}

.festival-step summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  min-height: 92px;
  padding: 18px 20px;
  list-style: none;
}

.festival-step summary::-webkit-details-marker {
  display: none;
}

.festival-step summary strong {
  grid-column: 1;
  color: var(--ink);
  line-height: 1.15;
}

.festival-step p {
  margin: 0;
  padding: 0 20px 20px;
}

.festival-step summary::after {
  content: "+";
  grid-column: 2;
  grid-row: 1;
  color: var(--gold);
  font-weight: 900;
}

.festival-step[open] summary::after {
  content: "-";
}

/*
.festival-photo {
  min-height: 430px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.festival-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.festival-copy {
  display: grid;
  align-content: center;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf7;
}

.festival-copy h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.festival-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.festival-facts div {
  padding: 16px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.festival-facts strong,
.festival-facts span {
  display: block;
}

.festival-facts strong {
  color: var(--blue-dark);
  font-size: 1.45rem;
}

.festival-facts span {
  color: var(--muted);
  font-weight: 800;
}

.festival-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.festival-row article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.festival-row span {
  color: var(--brick);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.festival-row h3 {
  margin: 8px 0;
  line-height: 1.15;
}

.festival-row p {
  margin: 0;
}
*/

.festival-gallery {
  margin-top: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf7;
}

.festival-gallery h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
}

.section-heading.compact {
  display: block;
  margin-bottom: 28px;
}

.section-heading.compact h2 {
  max-width: 720px;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.company-card {
  min-height: 142px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(20, 32, 51, .06);
}

.company-card summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  min-height: 142px;
  align-content: space-between;
  padding: 18px;
  list-style: none;
  background: linear-gradient(135deg, #ffffff 0%, #f4f7f3 100%);
}

.company-card summary::-webkit-details-marker {
  display: none;
}

.company-grid strong {
  font-size: 1.22rem;
}

.company-grid span,
.people-grid span {
  color: var(--muted);
  font-weight: 800;
}

.company-card p {
  margin: 0;
  padding: 0 18px 6px;
  font-size: .92rem;
}

.company-card a {
  display: block;
  margin: 8px 18px 0;
  overflow-wrap: anywhere;
  font-size: .9rem;
}

.company-card a:last-child {
  margin-bottom: 22px;
}

.people {
  background: #eef2f5;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.people-grid article {
  overflow: hidden;
}

.people-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.people-grid strong,
.people-grid span {
  display: block;
  padding: 0 14px;
}

.people-grid strong {
  padding-top: 14px;
  line-height: 1.15;
}

.people-grid span {
  padding-bottom: 16px;
  font-size: .88rem;
}

.gallery {
  background: var(--white);
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr .8fr 1.1fr;
  grid-auto-rows: 210px;
  gap: 10px;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.photo-grid img:nth-child(1),
.photo-grid img:nth-child(6) {
  grid-row: span 2;
}

@media (hover: hover) and (pointer: fine) {
  .mini-gallery img,
  .archive-gallery img,
  .archive-body img,
  .photo-grid img {
    position: relative;
    z-index: 1;
    transform-origin: center;
    transition: transform .24s ease, box-shadow .24s ease;
    will-change: transform;
  }

  .mini-gallery img:hover,
  .archive-gallery img:hover,
  .archive-body img:hover,
  .photo-grid img:hover {
    z-index: 8;
    transform: scale(1.5);
    box-shadow: 0 18px 42px rgba(13, 31, 51, .28);
  }
}

.archive {
  background: #edf2f4;
}

.archive code {
  padding: 2px 6px;
  border-radius: 5px;
  background: rgba(20, 32, 51, .08);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.archive-list {
  display: grid;
  gap: 10px;
}

.archive-more {
  margin: 0;
}

.archive-more > summary {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 18px;
  border: 1px solid rgba(20, 32, 51, .12);
  border-radius: 8px;
  background: #ffffff;
  color: var(--blue-dark);
  list-style: none;
}

.archive-more > summary::-webkit-details-marker {
  display: none;
}

.archive-more > summary::after {
  content: "+";
  margin-left: 10px;
  color: var(--gold);
  font-weight: 900;
}

.archive-more[open] > summary::after {
  content: "-";
}

.archive-more-list {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.archive-item {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 32, 51, .12);
  border-radius: 8px;
  background: #ffffff;
}

.archive-item summary {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 72px;
  padding: 18px 20px;
  list-style: none;
}

.archive-item summary::-webkit-details-marker {
  display: none;
}

.archive-item summary strong {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.2;
}

.archive-item summary::after {
  content: "+";
  color: var(--gold);
  font-weight: 900;
}

.archive-item[open] summary::after {
  content: "-";
}

.archive-body {
  display: grid;
  grid-template-columns: minmax(220px, 34%) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 0 24px 24px;
}

.archive-body.no-image {
  grid-template-columns: 1fr;
}

.archive-body img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 7px;
}

.archive-body p {
  margin: 0;
}

.archive-body .text-link {
  grid-column: 2;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 2px;
  padding: 10px 14px;
  border: 1px solid rgba(13, 56, 104, .18);
  border-radius: 7px;
  background: var(--blue-dark);
  color: #ffffff;
  line-height: 1.1;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(13, 56, 104, .14);
}

.archive-body .text-link:hover {
  background: #092f5b;
}

.archive-card {
  overflow: hidden;
  padding: 0 0 20px;
  border: 1px solid rgba(20, 32, 51, .12);
  border-radius: 8px;
  background: #ffffff;
}

.archive-card > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.archive-card span,
.archive-card h3,
.archive-card p,
.archive-card .text-link,
.archive-card details {
  margin-left: 20px;
  margin-right: 20px;
}

.archive-card span {
  display: block;
  margin-top: 18px;
}

.archive-card h3 {
  margin-top: 8px;
}

.archive-card p {
  margin-top: 8px;
}

.footer {
  padding: 0 clamp(18px, 5vw, 72px) 42px;
  background: #071d36;
  color: var(--white);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
  padding: 34px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.footer-brand {
  display: flex;
  align-items: center;
  flex: 1 1 360px;
  gap: 18px;
}

.footer-mark {
  width: 92px;
  max-height: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .92;
}

.footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .76);
}

.footer a {
  color: var(--white);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-links a {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 7px;
  text-decoration: none;
}

.map-panel {
  margin: 24px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.footer-top .map-panel {
  flex: 1 1 420px;
  margin: 0;
}

.map-panel summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  align-items: center;
  min-height: 72px;
  padding: 18px 20px;
  color: var(--white);
  list-style: none;
}

.map-panel summary::-webkit-details-marker {
  display: none;
}

.map-panel summary span {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-panel summary strong {
  grid-column: 1;
  font-size: 1.1rem;
  line-height: 1.2;
}

.map-panel summary::after {
  content: "+";
  grid-column: 2;
  grid-row: 1;
  color: var(--gold);
  font-weight: 900;
}

.map-panel[open] summary::after {
  content: "-";
}

.map-frame {
  display: grid;
  gap: 12px;
  padding: 0 20px 20px;
}

.map-frame iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
}

.map-frame a {
  justify-self: start;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 7px;
  text-decoration: none;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(240px, .65fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
  padding-top: 30px;
}

.contact-panel h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.contact-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, .72);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr) auto;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-form .wide {
  grid-column: 1 / 3;
}

.contact-form label span {
  color: rgba(255, 255, 255, .78);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 7px;
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  align-self: end;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.mobile-dock {
  display: none;
}

@media (max-width: 1120px) {
  .hero-panel {
    position: static;
    width: min(100%, 520px);
    margin-top: 34px;
  }

  .company-grid,
  .people-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .site-header {
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 10px 16px;
  }

  .brand small {
    white-space: normal;
  }

  .brand {
    flex: 1;
  }

  .nav-toggle {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 12px;
    right: 12px;
    display: none;
    width: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(247, 248, 244, .98);
    box-shadow: 0 18px 50px rgba(20, 32, 51, .18);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
  }

  .hero {
    min-height: calc(100svh - 66px);
    padding-top: 46px;
    padding-bottom: 76px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(7, 24, 45, .82) 0%, rgba(9, 35, 66, .68) 100%);
  }

  .quick-strip,
  .split,
  .archive,
  .feature-grid,
  .festival-board,
  .timeline,
  .footer,
  .footer-top,
  .contact-panel,
  .results-deck {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    display: none;
  }

  .mobile-priority {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
    background: #ffffff;
  }

  .mobile-priority a {
    display: grid;
    gap: 4px;
    min-height: 78px;
    align-content: center;
    padding: 11px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    text-decoration: none;
  }

  .mobile-priority span {
    color: var(--brick);
    font-size: .68rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-priority strong {
    font-size: .92rem;
    line-height: 1.12;
  }

  .quick-strip a {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-photo {
    min-height: 340px;
  }

  .festival-lead {
    grid-row: auto;
  }

  .festival-lead img {
    aspect-ratio: 16 / 9;
  }

  .archive-item summary {
    grid-template-columns: 1fr auto;
  }

  .archive-item summary span {
    grid-column: 1 / -1;
  }

  .agenda {
    gap: 10px;
  }

  .agenda article {
    padding: 16px;
  }

  .section-heading.compact {
    display: block;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .footer-links,
  .footer-top {
    justify-content: flex-start;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top .map-panel {
    width: 100%;
    flex: none;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form .wide {
    grid-column: auto;
  }

  .mobile-dock {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 8px;
    background: rgba(7, 29, 54, .94);
    box-shadow: 0 18px 48px rgba(7, 29, 54, .28);
    backdrop-filter: blur(16px);
  }

  .mobile-dock a {
    min-height: 50px;
    display: grid;
    place-items: center;
    border-right: 1px solid rgba(255, 255, 255, .14);
    color: #ffffff;
    font-size: .92rem;
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-dock a:last-child {
    border-right: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 9px 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand {
    gap: 9px;
  }

  .brand strong {
    font-size: .9rem;
  }

  .brand small {
    font-size: .7rem;
    line-height: 1.15;
  }

  .nav-toggle {
    min-height: 40px;
    padding: 8px 11px;
  }

  .site-nav {
    top: 60px;
    grid-template-columns: 1fr 1fr;
  }

  .site-nav a {
    min-height: 42px;
    padding: 9px 10px;
    font-size: .86rem;
  }

  .hero {
    align-items: center;
    min-height: auto;
    padding: 28px 20px 56px;
  }

  .hero h1 {
    font-size: clamp(1.88rem, 8.4vw, 2.18rem);
    line-height: 1.04;
  }

  .hero-copy > p:not(.eyebrow) {
    margin-top: 12px;
    font-size: .92rem;
    line-height: 1.45;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
    gap: 9px;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-actions .button {
    width: auto;
    min-height: 44px;
    padding: 10px 12px;
    font-size: .92rem;
  }

  .company-grid,
  .people-grid,
  .archive-grid,
  .archive-body {
    grid-template-columns: 1fr;
  }

  .archive-body img {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .archive-body {
    padding: 0 16px 18px;
    gap: 14px;
  }

  .archive-body .text-link {
    grid-column: 1;
    justify-self: stretch;
  }

  .mini-gallery,
  .archive-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-panel {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 18px;
  }

  .hero-panel div {
    padding: 11px 8px;
  }

  .hero-panel strong {
    font-size: 1.28rem;
  }

  .hero-panel span {
    font-size: .68rem;
    line-height: 1.15;
  }

  .mobile-priority {
    background: #ffffff;
  }

  .mobile-priority a {
    min-height: 74px;
  }

  .section {
    padding: 40px 18px;
  }

  .section h2 {
    font-size: 1.86rem;
    line-height: 1.08;
  }

  .start-info {
    padding-top: 48px;
  }

  .agenda-card summary,
  .festival-step summary,
  .archive-item summary {
    min-height: 76px;
    padding: 15px 16px;
  }

  .agenda-card summary strong,
  .festival-step summary strong,
  .archive-item summary strong {
    font-size: 1rem;
  }

  .event-list {
    margin: 0 16px 14px;
  }

  .event-list p,
  .download-list a {
    padding: 9px 10px;
    font-size: .9rem;
  }

  .agenda-card p {
    padding-left: 16px;
    padding-right: 16px;
  }

  .agenda-card a,
  .festival-step p {
    margin-left: 16px;
    margin-right: 16px;
  }

  .agenda-card a {
    max-width: calc(100% - 32px);
  }

  .result-content {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
    padding: 0 16px 16px;
  }

  .result-content img {
    width: 76px;
  }

  .timeline article,
  .festival-lead div,
  .festival-gallery {
    padding: 16px;
  }

  .festival-lead h3 {
    font-size: 1.45rem;
  }

  .mini-gallery,
  .archive-gallery {
    gap: 6px;
  }

  .mini-gallery img,
  .archive-gallery img {
    border-radius: 6px;
  }

  .company-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .company-card {
    min-height: 108px;
  }

  .company-card summary {
    min-height: 108px;
    padding: 14px;
  }

  .company-grid strong {
    font-size: 1.05rem;
  }

  .company-grid span {
    font-size: .84rem;
  }

  .company-card p {
    padding: 0 14px 4px;
  }

  .company-card a {
    margin-left: 14px;
    margin-right: 14px;
  }

  .people-grid article {
    display: grid;
    grid-template-columns: 82px 1fr;
    align-items: center;
  }

  .people-grid img {
    width: 82px;
    height: 92px;
    aspect-ratio: auto;
  }

  .people-grid strong {
    padding-top: 0;
  }

  .people-grid span {
    padding-bottom: 0;
  }

  .photo-grid {
    grid-auto-rows: 138px;
    gap: 8px;
  }

  .archive-body {
    gap: 10px;
    padding: 0 16px 16px;
  }

  .archive-body img {
    aspect-ratio: 16 / 10;
  }

  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .footer-top {
    padding: 28px 0;
  }

  .footer-brand {
    gap: 13px;
  }

  .footer-mark {
    width: 64px;
  }

  .footer h2 {
    font-size: 1.28rem;
    line-height: 1.12;
  }

  .map-panel summary {
    min-height: 66px;
    padding: 15px 16px;
  }

  .map-frame {
    padding: 0 16px 16px;
  }

  .map-frame iframe {
    min-height: 240px;
  }

  .contact-panel {
    padding-top: 24px;
  }

  .contact-form {
    padding: 14px;
  }

  .footer {
    padding-bottom: calc(98px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 380px) {
  .brand small {
    display: none;
  }

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero h1 {
    font-size: 1.86rem;
  }

  .mobile-priority {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 10px;
    background: #ffffff;
  }

  .mobile-priority a {
    min-height: 70px;
    padding: 9px 7px;
  }

  .mobile-priority span {
    font-size: .62rem;
  }

  .mobile-priority strong {
    font-size: .82rem;
  }

  .company-grid {
    grid-template-columns: 1fr;
  }

  .mobile-dock a {
    font-size: .82rem;
  }
}
