:root {
  --aqua: #00e2d1;
  --aqua-dark: #00aa9e;
  --ink: #11110f;
  --paper: #f3f0e8;
  --white: #fffef8;
  --line: rgba(17, 17, 15, 0.22);
  --display: "Archivo Black", sans-serif;
  --body: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { max-width: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
main, section, footer { min-width: 0; }
.hero > *, .manifesto-grid > *, .section-heading > *, .gallery-heading > *, .contact-grid > *, .site-footer > * { min-width: 0; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button { font: inherit; }
::selection { color: var(--ink); background: var(--aqua); }

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  background: var(--ink);
  color: white;
  transform: translateY(-110%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  transition: transform 0.35s ease, height 0.35s ease, background 0.35s ease;
}
.site-header.is-compact { height: 74px; background: rgba(243, 240, 232, 0.94); backdrop-filter: blur(12px); }
.site-header.is-hidden { transform: translateY(-100%); }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; font: 1rem/0.88 var(--display); text-decoration: none; letter-spacing: -0.04em; }
.brand-mark { width: 38px; height: 38px; fill: var(--ink); }
.site-nav { display: flex; align-items: center; gap: clamp(1.25rem, 2.5vw, 2.8rem); font-size: 0.88rem; font-weight: 700; }
.site-nav a { position: relative; text-decoration: none; }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -0.35rem; width: 100%; height: 2px; background: var(--ink); transform: scaleX(0); transform-origin: right; transition: transform 0.25s; }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 0.8rem 1.2rem; color: var(--paper); background: var(--ink); }
.nav-cta:hover { color: var(--ink); background: var(--aqua); }
.menu-toggle { display: none; }

:focus-visible {
  outline: 3px solid var(--aqua-dark);
  outline-offset: 4px;
}
.shows :focus-visible,
.contact :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--aqua);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 49% 51%;
  padding-top: 96px;
  background: var(--aqua);
  overflow: hidden;
}
.hero-copy { z-index: 2; align-self: center; padding: 6vh 2vw 10vh 6vw; }
.eyebrow, .section-index { margin: 0 0 2.4rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 0.7rem; }
.eyebrow span { width: 28px; height: 2px; background: currentColor; }
h1, h2, h3 { margin: 0; font-family: var(--display); font-weight: 400; letter-spacing: -0.065em; text-transform: uppercase; }
h1 { max-width: 8ch; font-size: clamp(4.3rem, 9vw, 10.2rem); line-height: 0.78; }
h1 em, h2 em { color: transparent; font-style: normal; -webkit-text-stroke: 2px var(--ink); }
.hero-intro { max-width: 36rem; margin: 3rem 0 0; font-size: clamp(1.05rem, 1.35vw, 1.35rem); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 2rem; margin-top: 2.4rem; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 1.8rem; min-width: 260px; padding: 1.15rem 1.3rem; font-weight: 700; text-decoration: none; transition: color 0.25s, background 0.25s, transform 0.25s; }
.button:hover { transform: translateY(-3px); }
.button-dark { color: var(--paper); background: var(--ink); }
.button-dark:hover { color: var(--ink); background: var(--white); }
.text-link { padding-bottom: 0.25rem; border-bottom: 1px solid currentColor; font-weight: 600; text-decoration: none; }
.hero-visual { position: relative; min-height: calc(100svh - 96px); padding: 3vh 3vw 8rem 0; }
.image-frame { height: 100%; overflow: hidden; background: #173f40; clip-path: polygon(9% 0, 100% 0, 100% 93%, 0 100%, 0 8%); }
.image-frame::after { content: ""; position: absolute; inset: 3vh 3vw 8rem 0; background: linear-gradient(120deg, rgba(0,226,209,.22), transparent 48%); clip-path: polygon(9% 0, 100% 0, 100% 93%, 0 100%, 0 8%); pointer-events: none; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 55% center; filter: saturate(0.65) contrast(1.12); }
.vertical-note { position: absolute; z-index: 2; top: 30%; right: 1.3vw; margin: 0; color: var(--white); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.25em; writing-mode: vertical-rl; }
.orbit { position: absolute; z-index: 3; left: -3.4rem; bottom: 6rem; width: 142px; height: 142px; display: grid; place-content: center; text-align: center; border: 2px solid var(--ink); border-radius: 50%; background: var(--paper); transform: rotate(-8deg); }
.orbit::after { content: ""; position: absolute; inset: 7px; border: 1px solid var(--ink); border-radius: 50%; }
.orbit span { font: 2.15rem/1 var(--display); letter-spacing: -0.06em; }
.orbit small { margin-top: 0.3rem; font-size: 0.62rem; font-weight: 700; line-height: 1.1; letter-spacing: 0.08em; text-transform: uppercase; }
.hero-ticker { position: absolute; z-index: 4; right: 0; bottom: 0; left: 0; padding: 0.85rem 0; color: var(--paper); background: var(--ink); overflow: hidden; }
.hero-ticker div { display: flex; align-items: center; width: max-content; animation: ticker 24s linear infinite; }
.hero-ticker span { padding: 0 2rem; font: 1rem var(--display); letter-spacing: 0.03em; }
.hero-ticker i { width: 7px; height: 7px; border-radius: 50%; background: var(--aqua); }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-pad { padding: clamp(5.5rem, 10vw, 10rem) 6vw; }
.manifesto { background: var(--paper); }
.manifesto-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 7vw; }
.manifesto h2, .section-heading h2 { font-size: clamp(3rem, 6.5vw, 7.5rem); line-height: 0.9; }
.manifesto-copy { padding-top: 0.6rem; }
.manifesto-copy > p { max-width: 40rem; margin: 0 0 1.5rem; font-size: clamp(1.15rem, 1.7vw, 1.65rem); line-height: 1.5; }
.manifesto-copy > p + p { font-size: 1rem; line-height: 1.7; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.stats div { display: flex; flex-direction: column; gap: 0.3rem; }
.stats strong { font: clamp(2rem, 3.5vw, 4rem)/1 var(--display); letter-spacing: -0.07em; }
.stats span { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; }

.shows { color: var(--paper); background: var(--ink); }
.shows .section-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; margin-bottom: 5rem; }
.shows .section-index { color: var(--aqua); }
.shows h2 { text-align: right; }
.shows h2 em { -webkit-text-stroke-color: var(--paper); }
.show-list { border-top: 1px solid rgba(243,240,232,.25); }
.show-card { position: relative; min-height: 370px; display: grid; grid-template-columns: 12% 54% 34%; padding: 2.2rem 0; border-bottom: 1px solid rgba(243,240,232,.25); overflow: hidden; }
.show-number { color: var(--aqua); font: 0.78rem var(--display); }
.show-content { position: relative; z-index: 2; }
.show-tag { margin: 0 0 1.3rem; color: var(--aqua); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.show-content h3 { font-size: clamp(2.8rem, 5.4vw, 6.2rem); line-height: 0.83; }
.show-content > p:not(.show-tag) { max-width: 34rem; margin: 1.8rem 0; color: rgba(243,240,232,.72); line-height: 1.65; }
.show-content a { font-size: 0.85rem; font-weight: 700; text-underline-offset: 0.4rem; }
.show-shape { align-self: center; justify-self: center; width: min(20vw, 240px); aspect-ratio: 1; transition: transform 0.5s cubic-bezier(.2,.8,.2,1); }
.show-card:hover .show-shape { transform: rotate(24deg) scale(1.08); }
.shape-one { border: 3px solid var(--aqua); border-radius: 50%; background: repeating-radial-gradient(circle, transparent 0 11px, rgba(0,226,209,.2) 12px 14px); }
.shape-two { background: var(--aqua); clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%); }
.shape-three { border: 3px solid var(--aqua); border-radius: 50% 0 50% 0; transform: rotate(45deg); background: linear-gradient(135deg, transparent 49%, var(--aqua) 50% 52%, transparent 53%); }
.show-card:hover .shape-three { transform: rotate(69deg) scale(1.08); }

.gallery { background: var(--paper); }
.gallery-heading { display: grid; grid-template-columns: .55fr 1.3fr .65fr; align-items: end; gap: 4vw; margin-bottom: 5rem; }
.gallery-heading .section-index { align-self: start; }
.gallery-heading h2 { font-size: clamp(3rem, 5.6vw, 6.5rem); line-height: .9; }
.gallery-heading p:last-child { margin: 0; line-height: 1.65; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: minmax(90px, 8vw); gap: 1rem; }
.gallery-item { position: relative; grid-column: span 4; grid-row: span 3; min-width: 0; margin: 0; overflow: hidden; background: var(--ink); }
.gallery-item-wide { grid-column: span 8; grid-row: span 4; }
.gallery-item-tall { grid-row: span 5; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.05); transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .7s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,17,15,.68), transparent 42%); pointer-events: none; }
.gallery-item:hover img { transform: scale(1.035); filter: saturate(1) contrast(1.02); }
.gallery-item figcaption { position: absolute; z-index: 2; right: 1.2rem; bottom: 1.1rem; left: 1.2rem; display: flex; justify-content: space-between; gap: 1rem; color: var(--white); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.gallery-item figcaption span { color: var(--aqua); }

.quote-section { position: relative; min-height: 650px; display: grid; place-items: center; background: var(--aqua); overflow: hidden; }
.quote-mark { position: absolute; top: -16vw; left: -2vw; color: rgba(17,17,15,.1); font: 50vw/1 var(--display); }
.quote-section figure { position: relative; max-width: 1050px; margin: 0; text-align: center; }
.quote-section blockquote { margin: 0; font: clamp(2.3rem, 5vw, 5.8rem)/1.02 var(--display); letter-spacing: -0.06em; text-transform: uppercase; }
.quote-section figcaption { margin-top: 2.3rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.quote-section figcaption span { display: block; margin-bottom: 0.6rem; font-size: 1rem; letter-spacing: 0.25em; }

.journey .section-heading { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 7rem; }
.journey .section-heading h2 { text-align: right; }
.journey-line { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 2rem; }
.journey-line::before { content: ""; position: absolute; top: 8px; left: 0; right: 0; height: 1px; background: var(--ink); }
.journey-line article { position: relative; padding-top: 2.2rem; }
.journey-line article::before { content: ""; position: absolute; top: 3px; left: 0; width: 11px; height: 11px; border-radius: 50%; background: var(--aqua); outline: 3px solid var(--paper); }
.journey-line span { font: clamp(1.5rem, 2.5vw, 2.8rem) var(--display); letter-spacing: -0.05em; text-transform: uppercase; }
.journey-line p { margin: 0.8rem 0 0; font-size: 0.8rem; line-height: 1.5; }

.contact { position: relative; color: var(--paper); background: var(--ink); overflow: hidden; }
.contact-ring { position: absolute; right: -8vw; bottom: -22vw; width: 55vw; height: 55vw; border: 8vw solid rgba(0,226,209,.08); border-radius: 50%; }
.contact .section-index { color: var(--aqua); }
.contact-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; }
.contact h2 { color: var(--aqua); font-size: clamp(4rem, 8vw, 9rem); line-height: 0.8; }
.contact-grid > div > p { max-width: 31rem; margin: 2.5rem 0 0; color: rgba(243,240,232,.7); font-size: 1.1rem; line-height: 1.65; }
.contact-links { align-self: end; }
.contact-links a { position: relative; display: grid; grid-template-columns: 1fr auto; padding: 1.5rem 0; border-bottom: 1px solid rgba(243,240,232,.3); font-size: clamp(1.2rem, 2vw, 2rem); font-weight: 500; text-decoration: none; }
.contact-links a:first-child { border-top: 1px solid rgba(243,240,232,.3); }
.contact-links a span { grid-column: 1 / -1; margin-bottom: 0.45rem; color: var(--aqua); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-links a b { color: var(--aqua); font-weight: 400; transition: transform .25s; }
.contact-links a:hover b { transform: translate(4px, -4px); }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 2rem; padding: 3rem 4vw; color: var(--paper); background: var(--ink); border-top: 1px solid rgba(243,240,232,.15); }
.footer-brand .brand-mark { fill: var(--aqua); }
.socials { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.socials a { font-size: 0.75rem; font-weight: 700; text-decoration: none; }
.socials a:hover { color: var(--aqua); }
.site-footer > p { justify-self: end; margin: 0; color: rgba(243,240,232,.5); font-size: 0.7rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .site-header { height: 78px; padding: 0 1.3rem; }
  .menu-toggle { z-index: 2; display: flex; align-items: center; gap: .7rem; padding: .7rem 0; border: 0; background: transparent; font-size: .75rem; font-weight: 700; text-transform: uppercase; }
  .menu-icon, .menu-icon::after { display: block; width: 24px; height: 2px; background: var(--ink); transition: transform .25s; }
  .menu-icon { position: relative; }
  .menu-icon::after { content: ""; position: absolute; top: 7px; }
  .menu-toggle[aria-expanded="true"] .menu-icon { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-icon::after { top: 0; transform: rotate(90deg); }
  .site-nav { position: fixed; inset: 0; display: flex; visibility: hidden; flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.5rem; padding: 6rem 2rem; background: var(--aqua); clip-path: inset(0 0 0 100%); transition: clip-path .4s cubic-bezier(.7,0,.2,1), visibility 0s .4s; }
  .site-nav.is-open { visibility: visible; clip-path: inset(0); transition-delay: 0s; }
  .site-nav a { font: 2.3rem/1 var(--display); letter-spacing: -.05em; text-transform: uppercase; }
  .site-nav .nav-cta { margin-top: 1rem; color: var(--paper); }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 78px; }
  .hero-copy { padding: 4rem 1.3rem 3rem; }
  h1 { max-width: 100%; font-size: clamp(2.4rem, 12vw, 4.2rem); }
  .hero-intro { margin-top: 2.2rem; }
  .hero-visual { min-height: 68vh; padding: 0 1.3rem 5.5rem; }
  .image-frame, .image-frame::after { clip-path: polygon(7% 0,100% 0,100% 93%,0 100%,0 7%); }
  .image-frame::after { inset: 0 1.3rem 5.5rem; }
  .image-frame img { object-position: 58% center; }
  .vertical-note { right: 2rem; }
  .orbit { left: 2rem; bottom: 3.3rem; width: 118px; height: 118px; }
  .manifesto-grid, .contact-grid { grid-template-columns: 1fr; }
  .manifesto-grid { gap: 3rem; }
  .show-card { grid-template-columns: 12% 60% 28%; }
  .gallery-heading { grid-template-columns: 1fr 1.6fr; }
  .gallery-heading p:last-child { grid-column: 2; }
  .gallery-grid { grid-auto-rows: minmax(80px, 12vw); }
  .journey-line { grid-template-columns: repeat(3, 1fr); row-gap: 3.5rem; }
  .journey-line::before { display: none; }
  .journey-line article { border-top: 1px solid var(--ink); }
  .contact-grid { gap: 4rem; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .socials { grid-column: 1 / -1; grid-row: 1; justify-content: flex-start; }
}

@media (max-width: 600px) {
  .section-pad { padding: 5.5rem 1.3rem; }
  .brand { font-size: .85rem; }
  .brand-mark { width: 33px; height: 33px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.5rem; }
  .button { width: 100%; min-width: 0; }
  .stats { gap: 1rem; }
  .stats strong { font-size: 2.2rem; }
  .manifesto h2, .section-heading h2 { font-size: clamp(2.35rem, 11.8vw, 3rem); }
  .shows .section-heading, .journey .section-heading { display: block; margin-bottom: 3.5rem; }
  .shows h2, .journey .section-heading h2 { text-align: left; }
  .show-card { min-height: 510px; grid-template-columns: 2.5rem 1fr; padding: 1.8rem 0; }
  .show-content h3 { font-size: 2.4rem; }
  .show-shape { position: absolute; right: -2rem; bottom: 1.5rem; width: 145px; opacity: .45; }
  .gallery-heading { display: block; margin-bottom: 3rem; }
  .gallery-heading h2 { font-size: clamp(2.35rem, 11.8vw, 2.75rem); }
  .gallery-heading p:last-child { margin-top: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 165px; gap: .65rem; }
  .gallery-item, .gallery-item-tall { grid-column: span 1; grid-row: span 1; }
  .gallery-item-wide { grid-column: 1 / -1; grid-row: span 2; }
  .gallery-item figcaption { right: .8rem; bottom: .75rem; left: .8rem; font-size: .6rem; }
  .quote-section { min-height: 560px; }
  .journey-line { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.2rem; }
  .journey-line span { font-size: 1.45rem; }
  .contact h2 { font-size: clamp(3rem, 16vw, 3.5rem); }
  .contact-links { min-width: 0; }
  .contact-links a { grid-template-columns: minmax(0, 1fr) auto; min-width: 0; font-size: 1.05rem; overflow-wrap: anywhere; }
  .site-footer { grid-template-columns: 1fr; padding: 2.5rem 1.3rem; }
  .site-footer > p { justify-self: start; }
}

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