@charset "UTF-8";
:root {
  --radius: 8px;
  --radius-control: 6px;
  --ink: #202521;
  --muted: #5c655f;
  --paper: #fff;
  --pale: #f2f3f0;
  --line: #d4d8d2;
  --accent: #a82722;
  --space: clamp(20px, 5vw, 80px);
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}
body {
  margin: 0;
}
button,
input,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-underline-offset: 0.25em;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 750;
  letter-spacing: -0.045em;
  text-wrap: balance;
  line-height: 1.08;
}
h2,
h3 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}
h4 {
  font-size: 1rem;
}
p {
  font-size: 1rem;
  line-height: 1.7;
}
p + p {
  margin-top: 1rem;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
button:disabled {
  cursor: wait;
  opacity: 0.6;
}
.section {
  padding: 64px var(--space);
  max-width: 1600px;
  margin: auto;
}
.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--accent);
  margin-bottom: 18px;
}
.prose {
  max-width: 70ch;
}
.prose p:first-child {
  margin-top: 24px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 15px 21px;
  background: var(--accent);
  color: white;
  border: 1px solid var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  min-height: 50px;
  transition: background 0.2s;
}
.button:hover {
  background: #801d19;
  border-color: #801d19;
  color: #fff;
}
.button.light {
  background: white;
  border-color: white;
  color: var(--ink);
}
.button.light:hover {
  background: #801d19;
  border-color: #801d19;
  color: #fff;
}
.skip {
  position: fixed;
  top: -100px;
  left: 1rem;
  background: white;
  padding: 1rem;
  z-index: 20;
}
.skip:focus {
  top: 1rem;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--space);
  border-bottom: 1px solid var(--line);
  min-height: 88px;
  max-width: 1600px;
  margin: auto;
}
.brand img {
  width: 218px;
  height: auto;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-header nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 0;
}
.site-header nav a:hover {
  color: var(--accent);
}
.site-header nav .nav-contact {
  padding: 12px 18px;
  border: 1px solid var(--line);
  display: flex;
  gap: 24px;
}
.menu-toggle {
  display: none;
}
.hero {
  width: 100%;
  min-height: 580px;
  height: min(76svh, 780px);
  margin: 0;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 0;
  background: #202b26;
  color: white;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(12, 22, 18, .92) 0%, rgba(12, 22, 18, .65) 26%, rgba(12, 22, 18, .12) 58%, transparent 80%);
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  border-radius: 0;
}
.hero-content {
  width: 100%;
  padding: clamp(28px, 4vw, 64px) max(var(--space), calc((100% - 1600px) / 2 + var(--space)));
}
.hero .eyebrow {
  display: inline-block;
  margin: 0 0 20px;
  color: #fff;
  font-size: .8rem;
  letter-spacing: .15em;
  border-left: 3px solid #d75144;
  padding-left: 12px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.7vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.04em;
  text-wrap: initial;
}
.hero .button {
  margin-top: 28px;
  background: white;
  border-color: white;
  color: var(--ink);
  gap: 28px;
}
.hero .button:hover {
  background: #801d19;
  border-color: #801d19;
  color: #fff;
}
.hero-label {
  position: absolute;
  bottom: 28px;
  right: 28px;
  max-width: 36%;
  color: #e2e8e3;
  font-size: .75rem;
  line-height: 1.5;
}
.welcome-layout {
  max-width: 1600px;
  margin: auto;
  padding: 60px var(--space);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.intro.section {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.intro > div:last-child {
  order: 0;
}
.intro h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
  margin-bottom: 20px;
}
.welcome-emoji {
  font-size: 0.55em;
  white-space: nowrap;
}
.intro-art {
  order: 1;
  width: 100%;
  opacity: 0.75;
}
.intro-art .photo {
  background: white;
}
.intro-art img {
  width: 100%;
  height: auto;
}
.intro-art .zoom {
  display: none;
}
.film {
  align-self: center;
}
.video-start {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: var(--ink);
  color: white;
}
.video-start > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-start > span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 15px;
  text-align: left;
  align-items: center;
  background: rgba(25, 30, 26, 0.95);
  padding: 18px;
  font-size: 1rem;
  font-weight: 600;
}
.video-start b {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--accent);
  font-size: 1rem;
}
.video-start small {
  grid-column: 2;
  font-size: 0.8rem;
  font-weight: 400;
  color: #d6dcd4;
}
.film iframe {
  width: 100%;
  aspect-ratio: 4/3;
  border: 0;
}
.photo {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--pale);
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.photo:hover img {
  transform: scale(1.02);
}
.zoom {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: white;
  color: var(--ink);
  font-size: 1.1rem;
}
.events {
  background: var(--pale);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 30px;
}
.section-heading .eyebrow {
  order: 2;
  margin: 0;
}
.events-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.events-status {
  max-width: 65ch;
}
.exhibition-preview {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: white;
  margin-bottom: 24px;
}
.exhibition-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  align-self: start;
}
.exhibition-media .photo:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/10;
}
.exhibition-media .photo {
  border-radius: 0;
  min-height: 0;
  aspect-ratio: 4/3;
}
.exhibition-copy {
  padding: clamp(24px, 3vw, 44px);
  align-self: center;
}
.exhibition-copy h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  margin-bottom: 20px;
}
@media (max-width: 700px) {
  .exhibition-preview {
    grid-template-columns: 1fr;
  }
  .exhibition-preview .photo {
    min-height: 0;
    aspect-ratio: 4/3;
  }
}
.past-events {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.past-events summary {
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
}
.past-events summary::marker {
  color: var(--accent);
}
.past-events summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}
.past-events .events-layout {
  padding: 4px 0 24px;
}
.posters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}
.posters .photo {
  background: white;
  border: 1px solid var(--line);
}
.posters img {
  width: 100%;
  height: auto;
  aspect-ratio: 1600/1154;
  object-fit: contain;
}
.dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}
.dates article {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px;
  background: white;
  border-left: 4px solid var(--accent);
}
.date-number {
  font-size: 3rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: var(--accent);
}
.date-number span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  margin-top: 5px;
}
.dates h4 {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 5px;
}
.dates p {
  line-height: 1.4;
}
.dates p + p {
  margin-top: 3px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.layouts h2 {
  max-width: 560px;
}
.plan {
  padding: 20px;
  border: 1px solid var(--line);
  background: white;
}
.plan img {
  height: auto;
  object-fit: contain;
}
.control {
  display: block;
  margin: 40px 0;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.control > div {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 40px;
}
.control h2 {
  font-size: 1.75rem;
}
.control .prose {
  max-width: none;
  columns: 2;
  column-gap: 30px;
}
.control .prose p:first-child {
  margin: 0;
}
.control p {
  font-size: 0.95rem;
}
.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.photo-pair .photo {
  aspect-ratio: 3/2;
}
.club {
  background: var(--pale);
}
.club .split {
  grid-template-columns: 0.85fr 1.15fr;
}
.club .photo {
  aspect-ratio: 4/3;
}
.history {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
}
.history-text {
  max-width: none;
  columns: 2;
  column-gap: 30px;
}
.history-text p {
  font-size: 0.95rem;
}
.history-text p:first-child {
  margin-top: 0;
}
.history-text p {
  break-inside: avoid;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding-top: 0;
  padding-bottom: 0;
}
.gallery .photo {
  grid-column: span 2;
  aspect-ratio: 4/3;
}
.gallery .photo:nth-child(7n + 1),
.gallery .photo:nth-child(7n + 2) {
  grid-column: span 3;
  aspect-ratio: 3/2;
}
.gallery .photo:nth-child(7n + 6),
.gallery .photo:nth-child(7n + 7) {
  grid-column: span 3;
  aspect-ratio: 3/2;
}
.gallery .photo:last-child {
  grid-column: span 6;
  aspect-ratio: 3/1;
}
.passion {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 60px;
}
.passion .prose p:first-child {
  margin-top: 0;
}
footer {
  background: var(--ink);
  color: #fff;
  padding: 38px max(var(--space), calc((100% - 1600px) / 2 + var(--space))) 22px;
  border-top: 5px solid var(--accent);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid #4a514b;
}
.footer-top h2 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  letter-spacing: -0.035em;
}
.footer-top .button {
  flex-shrink: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 40px;
  padding: 28px 0;
}
.footer-grid p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #d5dad3;
}
.footer-grid p + p {
  margin-top: 6px;
}
.footer-grid > div > p:first-child {
  color: white;
  margin-bottom: 12px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #4a514b;
  padding-top: 18px;
  font-size: 0.8rem;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-size: 0.875rem;
  text-decoration: none;
}
.social-links a:hover {
  text-decoration: underline;
}
.social-links svg {
  flex-shrink: 0;
}
.footer-socials {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 23rem;
}
.footer-bottom {
  align-items: flex-start;
}
.footer-bottom > span,
.footer-bottom > a {
  padding-top: 12px;
}
.community-link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  min-height: 44px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid #4a514b;
  color: #d5dad3;
  font-size: 0.875rem;
  line-height: 1.5;
  text-decoration: none;
}
.community-link svg {
  flex-shrink: 0;
}
.community-link strong,
.community-link span > span {
  display: block;
}
.community-link:hover strong {
  text-decoration: underline;
}
@media (max-width: 700px) {
  .footer-socials {
    flex-basis: 100%;
    max-width: none;
  }
}
.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-page > [hidden] {
  display: none;
}
.contact-intro h1 {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  margin-bottom: 24px;
}
.contact-intro > p {
  max-width: 55ch;
}
.email-link {
  display: inline-block;
  font-weight: 600;
  margin: 20px 0 28px;
  overflow-wrap: anywhere;
}
.contact-intro .photo {
  aspect-ratio: 3/2;
}
.contact-page form {
  align-self: start;
  padding: 30px;
  background: var(--pale);
  border-top: 4px solid var(--accent);
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 22px;
  min-width: 0;
}
legend {
  margin-bottom: 12px;
  padding: 0;
}
form label {
  display: block;
  font-size: 0.95rem;
}
form > label {
  margin-bottom: 22px;
}
form span {
  color: var(--muted);
  font-size: 0.85rem;
}
.name-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
input,
textarea {
  display: block;
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  padding: 12px;
  border: 1px solid #afb8af;
  border-radius: var(--radius-control);
  background: white;
  color: var(--ink);
}
textarea {
  resize: vertical;
}
form .button span {
  color: white;
}
#form-status {
  font-size: 0.9rem;
  margin-top: 16px;
}
.form-hint:empty {
  display: none;
}
.honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.error-page {
  min-height: 50vh;
}
.error-page h1 {
  font-size: 3rem;
  margin-bottom: 24px;
}
@media (max-width: 1050px) {
  .site-header nav {
    gap: 18px;
  }
  .brand img {
    width: 190px;
  }
  .welcome-layout {
    gap: 30px;
  }
  .split {
    gap: 30px;
  }
  .history,
  .passion {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .history-text {
    columns: 2;
  }
  .passion .prose {
    max-width: none;
    columns: 2;
    column-gap: 30px;
  }
  .passion .prose p {
    break-inside: avoid;
  }
  .control .prose {
    columns: 1;
  }
  .footer-grid {
    gap: 25px;
  }
}
@media (max-width: 700px) {
  .section {
    padding: 38px var(--space);
  }
  .site-header {
    min-height: 76px;
    padding: 14px var(--space);
    flex-wrap: wrap;
    gap: 10px;
  }
  .brand img {
    width: 174px;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    padding: 9px 12px;
    background: white;
    border: 1px solid var(--line);
    font-size: 0.9rem;
  }
  .site-header nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    padding: 12px 0;
  }
  .js .site-header nav {
    display: none;
  }
  .js .site-header nav.open {
    display: flex;
  }
  .hero {
    margin-top: 0;
    height: 68svh;
    min-height: 470px;
    max-height: 630px;
  }
  .hero-content { padding: 24px 20px 54px; }
  .hero .eyebrow { margin-bottom: 16px; font-size: .7rem; }
  .hero h1 { font-size: clamp(1.45rem, 6.2vw, 2.4rem); line-height: 1.15; }
  .hero .button { margin-top: 22px; min-height: 46px; padding: 12px 15px; font-size: .85rem; }
  .hero-photo { object-position: 56% center; }
  .hero-label { bottom: 17px; left: 20px; right: 20px; max-width: none; font-size: .68rem; }
  .welcome-layout {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 35px var(--space);
  }
  .intro.section {
    padding: 0;
    gap: 22px;
  }
  .intro h2 {
    font-size: 1.75rem;
  }
  .welcome-emoji {
    font-size: 0.5em;
  }
  .film {
    width: 100%;
  }
  .video-start,
  .film iframe {
    aspect-ratio: 16/10;
  }
  .video-start > span {
    padding: 12px;
    font-size: 0.9rem;
  }
  .video-start b {
    width: 38px;
    height: 38px;
  }
  .section-heading {
    display: block;
    margin-bottom: 22px;
  }
  .section-heading .eyebrow {
    margin-bottom: 12px;
  }
  .events h2 {
    font-size: 1.8rem;
  }
  .posters {
    gap: 14px;
    grid-template-columns: 1fr;
  }
  .dates {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .dates article {
    padding: 18px;
  }
  .split,
  .club .split {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .control {
    margin: 28px 0;
    padding: 25px 0;
  }
  .control > div {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .control h2 {
    font-size: 1.6rem;
  }
  .plan {
    padding: 12px;
  }
  .photo-pair {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }
  .photo-pair .photo {
    aspect-ratio: 4/3;
  }
  .history-text {
    columns: 1;
  }
  .history,
  .passion {
    gap: 22px;
  }
  .gallery.section {
    padding: 0 var(--space);
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .gallery .photo,
  .gallery .photo:nth-child(n) {
    grid-column: span 1;
    aspect-ratio: 1/1;
  }
  .gallery .photo:nth-child(5n + 1) {
    grid-column: span 2;
    aspect-ratio: 4/3;
  }
  .gallery .photo:last-child {
    grid-column: span 1;
    aspect-ratio: 1/1;
  }
  .passion .prose {
    columns: 1;
  }
  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 24px;
  }
  .footer-top h2 {
    font-size: 1.4rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
    padding: 24px 0;
  }
  .footer-grid > div:last-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.8rem;
  }
  .contact-page {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact-intro h1 {
    font-size: 3.5rem;
  }
  .contact-intro .photo {
    display: block;
    aspect-ratio: 16/9;
  }
  .contact-page form {
    padding: 22px;
  }
  .name-fields {
    grid-template-columns: 1fr;
  }
  .contact-body .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
  }
}
.lightbox {
  border: 0;
  background: #0a1922;
  color: #fff;
  max-width: 96vw;
  width: 1400px;
  max-height: 94svh;
  padding: 4rem 3.5rem 1.5rem;
}
.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.9);
}
.lightbox figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lightbox img {
  max-height: 74svh;
  object-fit: contain;
  width: auto;
}
.lightbox figcaption {
  font-size: 0.9rem;
  text-align: center;
}
.lightbox button {
  background: #fff;
  color: var(--ink);
  border: 0;
  padding: 0.8rem;
  min-width: 44px;
  min-height: 44px;
}
.close-lightbox {
  position: absolute;
  right: 1rem;
  top: 0.8rem;
}
.previous,
.next {
  position: absolute;
  top: 48%;
}
.previous {
  left: 0.5rem;
}
.next {
  right: 0.5rem;
}
body.modal-open {
  overflow: hidden;
}

.photo,
.video-start,
.film iframe,
.dates article,
.contact-page form,
.lightbox,
.lightbox img {
  border-radius: var(--radius);
}

.button,
.nav-contact,
.menu-toggle,
.zoom,
.video-start b,
.lightbox button {
  border-radius: var(--radius-control);
}



@media (max-width: 700px) {
  .lightbox {
    max-width: 100vw;
    padding: 4rem 2.8rem 1rem;
  }
  .lightbox img {
    max-height: 70svh;
  }
}

.instagram-section{border-top:1px solid var(--line);background:var(--pale)}
.instagram-heading{display:flex;justify-content:space-between;align-items:end;gap:28px;margin-bottom:28px}
.instagram-heading>p{font-size:.9rem;color:var(--muted)}
.instagram-consent{display:flex;align-items:center;justify-content:space-between;gap:24px;margin-bottom:24px}
.instagram-consent p{font-size:.9rem;max-width:65ch;color:var(--muted)}
.instagram-consent .button{flex-shrink:0}
.instagram-load[hidden],.reel-placeholder[hidden]{display:none}
.reels-grid{display:grid;grid-template-columns:repeat(2,minmax(0,440px));gap:24px;align-items:start}
.reel-card{min-width:0;background:white;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden}
.reel-heading{padding:20px;border-bottom:1px solid var(--line)}
.reel-heading>span{font-size:.75rem;letter-spacing:.1em;color:var(--accent);font-weight:700}
.reel-heading h3{font-size:1.1rem;letter-spacing:-.02em;line-height:1.3;margin-top:8px}
.reel-placeholder{min-height:220px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:16px;color:var(--muted);background:#edf0eb}
.reel-content iframe{display:block;width:100%;height:660px;border:0;background:white}
.reel-direct{display:block;padding:17px 20px;font-size:.875rem}
.instagram-status{margin-top:18px;font-size:.875rem;color:var(--muted)}
.instagram-status:empty{display:none}
@media(max-width:1050px){.instagram-consent{align-items:flex-start;flex-direction:column}.reels-grid{gap:12px}.reel-heading{padding:16px}.reel-direct{padding:16px}}
@media(max-width:700px){.instagram-heading{align-items:flex-start;flex-direction:column;gap:16px}.reels-grid{grid-template-columns:1fr}.reel-placeholder{min-height:140px}.reel-content iframe{height:640px}}


.exhibition-preview { display: block; }
.exhibition-copy { max-width: 960px; }
.exhibition-visuals { display: grid; grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr); gap: 20px; align-items: start; padding: 0 clamp(24px, 3vw, 44px) clamp(24px, 3vw, 44px); }
.exhibition-media .photo { border-radius: var(--radius); }
.exhibition-video { margin: 0; min-width: 0; }
.exhibition-video video { display: block; width: 100%; height: auto; aspect-ratio: 9/16; background: #202521; border-radius: var(--radius); }
.exhibition-video figcaption { font-size: .85rem; color: var(--muted); margin-top: 10px; }
@media (max-width: 700px) { .exhibition-visuals { grid-template-columns: 1fr; } .exhibition-video { width: min(100%, 340px); justify-self: center; } }

/* Full-width section backgrounds with a shared content alignment. */
#page > .section,
.welcome-layout,
.site-header {
  max-width: none;
  padding-inline: max(var(--space), calc((100% - 1600px) / 2 + var(--space)));
}
