@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/site/fonts/plus-jakarta-sans-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("assets/site/fonts/newsreader-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("assets/site/fonts/newsreader-italic-variable.ttf") format("truetype");
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
}

:root {
  --ink: #151a17;
  --ink-2: #2d352f;
  --paper: #f5f2e9;
  --paper-2: #ebe6d9;
  --white: #fffdf7;
  --lime: #d9f26a;
  --sky: #aac6e3;
  --muted: #656d67;
  --line: rgba(21, 26, 23, .17);
  --serif: "Newsreader", Georgia, serif;
  --sans: "Plus Jakarta Sans", Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --gutter: clamp(1.15rem, 4vw, 4.5rem);
  --content: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: contain;
}
img { display: block; max-width: 100%; }
button, input { font: inherit; }
button, a { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.is-locked { overflow: hidden; }
.access-gate { position: fixed; inset: 0; z-index: 5000; display: grid; grid-template-columns: 1.15fr .85fr; min-height: 100svh; background: var(--ink); color: var(--white); transition: opacity .24s ease; }
.access-gate.is-unlocking { opacity: 0; pointer-events: none; }
.access-gate__image { min-width: 0; background: linear-gradient(90deg, rgba(21,26,23,.18), transparent), url("assets/site/photos/cross-country-xl.webp") 58% center / cover no-repeat; }
.access-gate__panel { display: flex; flex-direction: column; justify-content: space-between; min-width: 0; padding: clamp(2rem, 5vw, 5rem); background: var(--ink); }
.access-gate__panel > img { width: clamp(9rem, 14vw, 12rem); height: auto; margin: -1.3rem 0; }
.access-gate__panel > div { max-width: 36rem; padding: 4rem 0 2rem; }
.access-gate__panel > div > p:first-child { margin: 0 0 1.2rem; color: var(--lime); font-size: .65rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.access-gate h1 { margin: 0; font-family: var(--serif); font-size: clamp(4.2rem, 7vw, 7.8rem); font-weight: 500; letter-spacing: -.055em; line-height: .82; }
.access-gate h1 em { font-weight: 400; }
.access-gate__panel > div > p:last-child { max-width: 31rem; margin: 1.75rem 0 0; color: rgba(255,255,255,.63); }
.access-gate form { max-width: 36rem; }
.access-gate label { display: block; margin-bottom: .6rem; font-size: .66rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.access-gate form > div { display: flex; min-height: 3.7rem; }
.access-gate input { min-width: 0; flex: 1; border: 1px solid rgba(255,255,255,.28); border-right: 0; border-radius: 0; padding: 0 1rem; outline: 0; background: rgba(255,255,255,.06); color: var(--white); font-size: 1rem; }
.access-gate input:focus { border-color: var(--lime); box-shadow: inset 0 0 0 1px var(--lime); }
.access-gate button { min-width: 7.2rem; border: 0; background: var(--lime); color: var(--ink); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.access-gate button:disabled { cursor: wait; opacity: .72; }
.access-gate__error { min-height: 1.5rem; margin: .6rem 0 0; color: #ffd2ca; font-size: .78rem; }
.access-gate.is-shaking .access-gate__panel { animation: gate-shake .25s ease; }
@keyframes gate-shake { 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link { position: fixed; top: .5rem; left: .5rem; z-index: 1000; padding: .8rem 1rem; background: var(--lime); color: var(--ink); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 4px; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.75rem;
  padding: 0 var(--gutter);
  border-bottom: 1px solid rgba(255, 255, 255, .24);
  color: var(--white);
}
.site-header--solid { position: relative; background: var(--ink); }
.wordmark { display: inline-flex; align-items: center; text-decoration: none; }
.wordmark img { display: block; width: clamp(8.2rem, 11vw, 10.5rem); height: auto; margin: -1rem 0; }
.site-header nav { display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 3rem); }
.site-header nav a { display: grid; min-height: 2.75rem; place-items: center; font-size: .68rem; font-weight: 750; letter-spacing: .15em; text-decoration: none; text-transform: uppercase; }
.site-header nav a:last-child { padding: 0 1.1rem; border: 1px solid rgba(255,255,255,.55); }
.site-header nav a:hover { color: var(--lime); }

.hero { position: relative; display: grid; min-height: min(860px, 88svh); align-content: end; overflow: hidden; color: var(--white); }
.hero-media, .hero-media img, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: 58% 48%; }
.hero-shade { background: linear-gradient(90deg, rgba(12,17,14,.88) 0%, rgba(12,17,14,.55) 42%, rgba(12,17,14,.05) 72%), linear-gradient(0deg, rgba(12,17,14,.7), transparent 52%); }
.hero-copy { position: relative; z-index: 2; width: min(50rem, 70vw); padding: 10rem var(--gutter) 10rem; }
.overline { margin: 0 0 1.15rem; font-size: .65rem; font-weight: 750; letter-spacing: .19em; line-height: 1.3; text-transform: uppercase; }
.hero h1, h2 { margin: 0; font-family: var(--serif); font-weight: 500; letter-spacing: -.055em; line-height: .88; }
.hero h1 { font-size: clamp(4rem, 8.4vw, 8.2rem); }
.hero h1 em, h2 em { font-weight: 400; }
.hero-copy > p:last-child { max-width: 28rem; margin: 1.6rem 0 0; color: rgba(255,255,255,.76); font-size: clamp(1rem, 1.4vw, 1.18rem); }

.focus-frame { position: absolute; top: 35%; right: 19%; z-index: 2; width: clamp(8rem, 15vw, 13rem); aspect-ratio: 1; border: 1px solid rgba(255,255,255,.64); border-radius: 50%; opacity: .75; pointer-events: none; }
.focus-frame::before, .focus-frame::after { position: absolute; top: 50%; left: 50%; background: rgba(255,255,255,.68); content: ""; transform: translate(-50%, -50%); }
.focus-frame::before { width: 34%; height: 1px; }
.focus-frame::after { width: 1px; height: 34%; }
.focus-frame span { position: absolute; width: 1.2rem; height: 1.2rem; border-color: var(--lime); }
.focus-frame span:nth-child(1) { top: -.2rem; left: -.2rem; border-top: 3px solid var(--lime); border-left: 3px solid var(--lime); }
.focus-frame span:nth-child(2) { top: -.2rem; right: -.2rem; border-top: 3px solid var(--lime); border-right: 3px solid var(--lime); }
.focus-frame span:nth-child(3) { right: -.2rem; bottom: -.2rem; border-right: 3px solid var(--lime); border-bottom: 3px solid var(--lime); }
.focus-frame span:nth-child(4) { bottom: -.2rem; left: -.2rem; border-bottom: 3px solid var(--lime); border-left: 3px solid var(--lime); }

.hero-search { position: absolute; right: var(--gutter); bottom: 3.2rem; z-index: 3; width: min(37rem, 47vw); padding: 1.35rem; background: rgba(245,242,233,.96); color: var(--ink); box-shadow: 0 1.6rem 5rem rgba(0,0,0,.24); backdrop-filter: blur(12px); }
.hero-search > label { display: block; margin-bottom: .7rem; font-family: var(--serif); font-size: 1.25rem; font-weight: 520; }
.search-control { display: flex; align-items: center; min-height: 3.5rem; border: 1px solid var(--line); background: var(--white); }
.search-control:focus-within { outline: 3px solid var(--lime); outline-offset: 2px; }
.search-control > svg { flex: 0 0 auto; width: 1.15rem; height: 1.15rem; margin-left: 1rem; color: var(--muted); }
.search-control input { width: 100%; min-width: 0; height: 3.5rem; padding: 0 .9rem; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: .93rem; }
.search-control--hero button { display: inline-flex; flex: 0 0 auto; align-items: center; justify-content: center; gap: .65rem; min-height: 3.5rem; padding: 0 1.2rem; border: 0; background: var(--ink); color: var(--white); font-size: .66rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.search-control--hero button svg { width: 1.05rem; height: 1.05rem; transition: transform .2s var(--ease); }
.search-control--hero button:hover { background: #29322c; }
.search-control--hero button:hover svg { transform: translateX(.25rem); }
.quick-filters { display: flex; align-items: center; flex-wrap: wrap; gap: .45rem; margin-top: .9rem; }
.quick-filters span { margin-right: .2rem; color: var(--muted); font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.quick-filters button { min-height: 2rem; padding: .3rem .65rem; border: 1px solid var(--line); border-radius: 2rem; background: transparent; color: var(--ink-2); font-size: .7rem; }
.quick-filters button:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }

.event-finder { max-width: var(--content); margin: 0 auto; padding: clamp(5rem, 9vw, 8.5rem) var(--gutter); }
.event-heading { display: grid; grid-template-columns: 1fr minmax(18rem, .42fr); align-items: end; gap: 3rem; margin-bottom: clamp(3rem, 6vw, 5rem); }
h2 { font-size: clamp(3.3rem, 6.5vw, 6.4rem); }
.event-heading > p { max-width: 29rem; margin: 0 0 .2rem; color: var(--muted); }
.finder-bar { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.2rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.finder-bar .search-control { width: min(32rem, 60%); }
.finder-bar > p { margin: 0; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.clear-search { display: grid; flex: 0 0 2.75rem; width: 2.75rem; height: 2.75rem; place-items: center; margin-right: .4rem; border: 0; background: transparent; color: var(--muted); }
.clear-search[hidden] { display: none; }
.clear-search svg { width: 1.05rem; height: 1.05rem; }

.event-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.5rem; padding: 2.25rem 0 0; }
.event-card { grid-column: span 4; min-width: 0; }
.event-card:nth-child(3n + 2) { margin-top: 2.75rem; }
.event-card-action { position: relative; display: block; width: 100%; padding: 0; overflow: hidden; border: 0; background: #d9d5c9; color: var(--white); text-align: left; text-decoration: none; }
.event-card-action picture { display: block; aspect-ratio: 4 / 5; overflow: hidden; }
.event-card-action img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease), filter .25s ease; }
.event-card-action::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,14,12,.75), transparent 52%); content: ""; pointer-events: none; }
.event-number { position: absolute; top: .9rem; left: .9rem; z-index: 2; display: grid; min-width: 2.3rem; height: 2.3rem; place-items: center; padding: 0 .55rem; border-radius: 2rem; background: var(--lime); color: var(--ink); font-size: .65rem; font-weight: 800; letter-spacing: .08em; }
.event-state { position: absolute; top: .9rem; right: .9rem; z-index: 2; padding: .45rem .65rem; background: rgba(21,26,23,.78); color: var(--white); font-size: .59rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; backdrop-filter: blur(8px); }
.event-overlay { position: absolute; inset: auto 0 0; z-index: 2; padding: 1.4rem; }
.event-overlay > span { display: block; margin-bottom: .5rem; color: rgba(255,255,255,.73); font-size: .61rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.event-overlay h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.65rem, 2.5vw, 2.55rem); font-weight: 510; line-height: 1; letter-spacing: -.03em; }
.event-overlay i { display: flex; align-items: center; gap: .5rem; margin-top: 1rem; font-size: .62rem; font-style: normal; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.event-overlay i svg { width: 1rem; height: 1rem; }
.event-card-action:hover img { transform: scale(1.025); filter: brightness(.9); }
.event-card-action:active img { transform: scale(1.01); }
.event-card-meta { display: flex; justify-content: space-between; gap: 1rem; padding: .85rem .1rem 0; color: var(--muted); font-size: .68rem; font-weight: 650; letter-spacing: .06em; text-transform: uppercase; }
.event-card[hidden] { display: none; }

.demo-note { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 1rem; margin-top: 1.5rem; padding: 1rem 1.15rem; border-left: 3px solid var(--sky); background: rgba(170,198,227,.18); color: var(--muted); font-size: .78rem; }
.demo-note[hidden] { display: none; }
.demo-note span { padding-top: .08rem; color: var(--ink); font-size: .61rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; white-space: nowrap; }
.demo-note p { margin: 0; }
.load-more { display: flex; align-items: center; justify-content: center; gap: .8rem; min-width: 13rem; min-height: 3.25rem; margin: 3rem auto 0; padding: 0 1.25rem; border: 1px solid var(--ink); background: transparent; color: var(--ink); font-size: .67rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.load-more:hover { background: var(--ink); color: var(--white); }
.load-more[hidden] { display: none; }

.empty-state { padding: 5rem 1rem; border-bottom: 1px solid var(--line); text-align: center; }
.empty-state[hidden] { display: none; }
.empty-state > span { font-family: var(--serif); font-size: 5rem; line-height: 1; color: var(--paper-2); }
.empty-state h3 { margin: .75rem 0 .4rem; font-family: var(--serif); font-size: 2rem; font-weight: 520; }
.empty-state p { margin: 0 auto 1.25rem; max-width: 31rem; color: var(--muted); }
.empty-state button { min-height: 2.8rem; padding: 0 1rem; border: 1px solid var(--ink); background: var(--ink); color: var(--white); font-size: .67rem; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }

.gallery-bridge { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: clamp(4rem, 7vw, 6rem); padding: 2rem; background: var(--ink); color: var(--white); }
.gallery-bridge > div { display: flex; align-items: center; gap: 1.25rem; }
.gallery-bridge p { margin: 0; color: rgba(255,255,255,.64); font-size: .82rem; line-height: 1.55; }
.gallery-bridge p strong { color: var(--white); }
.gallery-bridge > a { display: inline-flex; align-items: center; gap: .7rem; min-height: 3rem; padding: 0 1rem; border: 1px solid rgba(255,255,255,.35); color: var(--white); font-size: .66rem; font-weight: 750; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; white-space: nowrap; }
.gallery-bridge > a:hover { border-color: var(--lime); background: var(--lime); color: var(--ink); }
.gallery-bridge > a svg { width: 1rem; height: 1rem; }
.pixieset-mark { display: grid; flex: 0 0 2.8rem; grid-template-columns: 1fr 1fr; gap: .18rem; width: 2.8rem; height: 2.8rem; padding: .55rem; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; transform: rotate(45deg); }
.pixieset-mark i { display: block; border: 1px solid var(--lime); }

.work-samples { max-width: var(--content); margin: 0 auto; padding: clamp(5rem, 9vw, 8.5rem) var(--gutter); }
.work-samples__heading { display: grid; grid-template-columns: 1fr minmax(18rem, .42fr); align-items: end; gap: 3rem; margin-bottom: clamp(3rem, 6vw, 5rem); }
.work-samples__heading > p { max-width: 31rem; margin: 0 0 .35rem; color: var(--muted); }
.work-samples__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.5rem; }
.work-samples figure { position: relative; margin: 0; overflow: hidden; background: #d9d5c9; }
.work-samples figure:first-child { grid-row: span 2; }
.work-samples figure:first-child img { aspect-ratio: 3 / 4.35; }
.work-samples figure:not(:first-child) img { aspect-ratio: 16 / 10; }
.work-samples img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.work-samples figure::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,14,12,.76), transparent 48%); content: ""; pointer-events: none; }
.work-samples figcaption { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; display: grid; gap: .35rem; padding: clamp(1.2rem, 2.4vw, 2rem); color: var(--white); }
.work-samples figcaption strong { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3.2rem); font-weight: 500; letter-spacing: -.035em; line-height: 1; }
.work-samples figcaption span { color: rgba(255,255,255,.7); font-size: .73rem; }
.work-samples figure:hover img { transform: scale(1.018); }

.brand-callout { display: grid; grid-template-columns: 1fr .55fr; gap: clamp(3rem, 8vw, 9rem); padding: clamp(5rem, 9vw, 8.5rem) var(--gutter); background: var(--paper-2); }
.brand-callout > div:first-child { max-width: 52rem; }
.brand-callout__copy { align-self: end; max-width: 34rem; padding-bottom: .5rem; }
.brand-callout__copy > p { margin: 0 0 1.5rem; color: var(--muted); }
.text-link { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 3.5rem; padding-bottom: .4rem; border-bottom: 1px solid currentColor; font-size: .7rem; font-weight: 750; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.text-link svg { flex: 0 0 1.1rem; width: 1.1rem; height: 1.1rem; transition: transform .2s var(--ease); }
.text-link:hover svg { transform: translateX(.25rem); }

.contact-page { background: var(--paper); }
.contact-hero { display: grid; grid-template-columns: minmax(0, .85fr) minmax(22rem, 1.15fr); min-height: calc(100svh - 5.75rem); background: var(--ink); color: var(--white); }
.contact-hero__copy { align-self: center; max-width: 45rem; padding: clamp(5rem, 9vw, 9rem) var(--gutter); }
.contact-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(5rem, 9vw, 9rem); font-weight: 500; letter-spacing: -.055em; line-height: .8; }
.contact-hero h1 em { font-weight: 400; }
.contact-hero__copy > p:last-child { max-width: 35rem; margin: 2rem 0 0; color: rgba(255,255,255,.68); font-size: clamp(1rem, 1.3vw, 1.2rem); }
.contact-hero__image { position: relative; min-height: 42rem; margin: 0; overflow: hidden; }
.contact-hero__image::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(21,26,23,.3), transparent 25%); content: ""; }
.contact-hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.contact-hero figcaption { position: absolute; right: 1.5rem; bottom: 1.4rem; left: 1.5rem; z-index: 2; display: flex; justify-content: space-between; gap: 1rem; color: var(--white); font-size: .59rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-intro { display: grid; grid-template-columns: 1fr .55fr; align-items: end; gap: clamp(3rem, 8vw, 9rem); max-width: var(--content); margin: 0 auto; padding: clamp(5rem, 9vw, 8.5rem) var(--gutter); }
.contact-intro > p { max-width: 34rem; margin: 0 0 .5rem; color: var(--muted); }
.enquiry-grid { display: grid; grid-template-columns: 1fr 1fr; max-width: var(--content); margin: 0 auto; padding: 0 var(--gutter) clamp(5rem, 9vw, 8.5rem); }
.enquiry-grid article { position: relative; min-height: 32rem; padding: clamp(2rem, 5vw, 4.5rem); border: 1px solid var(--line); }
.enquiry-grid article + article { border-left: 0; background: var(--paper-2); }
.enquiry-number { position: absolute; top: 1.35rem; right: 1.5rem; color: var(--muted); font-family: var(--serif); font-size: 1.4rem; }
.enquiry-grid h3 { max-width: 30rem; margin: 0 0 1.5rem; font-family: var(--serif); font-size: clamp(2.5rem, 4vw, 4.5rem); font-weight: 500; letter-spacing: -.045em; line-height: .94; }
.enquiry-grid article > p:not(.overline) { max-width: 35rem; color: var(--muted); }
.enquiry-grid .text-link { position: absolute; right: clamp(2rem, 5vw, 4.5rem); bottom: clamp(2rem, 5vw, 4rem); left: clamp(2rem, 5vw, 4.5rem); }
.email-panel { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 3rem; padding: clamp(5rem, 9vw, 8.5rem) var(--gutter); background: var(--sky); }
.email-panel > a { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-width: 0; padding: 1.2rem 0; border-bottom: 1px solid var(--ink); font-size: clamp(.9rem, 1.6vw, 1.3rem); font-weight: 700; letter-spacing: .02em; text-decoration: none; overflow-wrap: anywhere; }
.email-panel > a svg { flex: 0 0 1.3rem; width: 1.3rem; height: 1.3rem; }

footer { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; gap: 2rem; padding: 3rem var(--gutter); background: var(--ink); color: var(--white); }
.wordmark--footer { justify-self: start; }
.wordmark--footer img { width: 9.5rem; margin: -.8rem 0; }
footer > p { margin: 0; color: rgba(255,255,255,.49); font-size: .62rem; font-weight: 650; letter-spacing: .11em; text-transform: uppercase; }
footer > p:nth-child(2) { justify-self: center; }
footer > p:last-child { justify-self: end; }

.toast { position: fixed; right: 1rem; bottom: 1rem; z-index: 100; max-width: 27rem; padding: 1rem 1.2rem; background: var(--lime); color: var(--ink); box-shadow: 0 1rem 3rem rgba(0,0,0,.22); font-size: .85rem; font-weight: 650; opacity: 0; transform: translateY(.8rem); pointer-events: none; transition: opacity .2s ease, transform .2s var(--ease); }
.toast.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hero { min-height: 760px; }
  .hero-copy { width: 74vw; padding-bottom: 15.5rem; }
  .hero-search { right: var(--gutter); bottom: 2.2rem; left: var(--gutter); width: auto; }
  .focus-frame { top: 27%; right: 11%; }
  .event-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .event-heading > p { max-width: 36rem; }
  .work-samples__heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .event-card { grid-column: span 6; }
  .event-card:nth-child(3n + 2) { margin-top: 0; }
  .event-card:nth-child(even) { margin-top: 2rem; }
  .brand-callout, .contact-intro { grid-template-columns: 1fr; }
  .brand-callout__copy { align-self: start; }
  .contact-hero { grid-template-columns: 1fr; }
  .contact-hero__image { min-height: 34rem; }
  .contact-hero__copy { padding-bottom: 4rem; }
  .email-panel { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .access-gate { grid-template-columns: 1fr; }
  .access-gate__image { display: none; }
  .access-gate__panel { padding: 1.5rem; }
  .access-gate h1 { font-size: clamp(4rem, 20vw, 6rem); }
  .access-gate form > div { flex-direction: column; gap: .6rem; }
  .access-gate input { min-height: 3.5rem; border-right: 1px solid rgba(255,255,255,.28); }
  .access-gate button { min-height: 3.5rem; }
  .site-header { height: 4.8rem; }
  .wordmark img { width: 7.2rem; }
  .site-header nav { gap: .25rem; }
  .site-header nav a { font-size: .58rem; }
  .site-header nav a:first-child { display: none; }
  .hero { min-height: 760px; }
  .hero-media img { object-position: 59% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(12,17,14,.83), rgba(12,17,14,.18)), linear-gradient(0deg, rgba(12,17,14,.78), transparent 60%); }
  .hero-copy { width: 100%; padding: 8rem var(--gutter) 17rem; }
  .hero h1 { font-size: clamp(3.8rem, 17vw, 5rem); }
  .hero-copy > p:last-child { max-width: 19rem; }
  .focus-frame { top: 27%; right: 7%; width: 7.5rem; }
  .hero-search { right: .8rem; bottom: .8rem; left: .8rem; padding: 1rem; }
  .hero-search > label { font-size: 1.05rem; }
  .search-control--hero { flex-wrap: wrap; }
  .search-control--hero input { width: calc(100% - 3rem); }
  .search-control--hero button { width: 100%; }
  .quick-filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: .15rem; scrollbar-width: none; }
  .quick-filters::-webkit-scrollbar { display: none; }
  .quick-filters button { flex: 0 0 auto; }
  .event-finder { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  h2 { font-size: clamp(3.2rem, 15vw, 4.4rem); }
  .event-heading { margin-bottom: 2.5rem; }
  .finder-bar { align-items: stretch; flex-direction: column; gap: .8rem; }
  .finder-bar .search-control { width: 100%; }
  .event-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .event-card { grid-column: auto; }
  .event-card:nth-child(even) { margin-top: 0; }
  .event-card-action picture { aspect-ratio: 4 / 4.6; }
  .gallery-bridge { align-items: stretch; flex-direction: column; padding: 1.4rem; }
  .gallery-bridge > a { justify-content: space-between; white-space: normal; }
  .work-samples { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .work-samples__heading { margin-bottom: 2.5rem; }
  .work-samples__grid { grid-template-columns: 1fr; }
  .work-samples figure:first-child { grid-row: auto; }
  .work-samples figure:first-child img, .work-samples figure:not(:first-child) img { aspect-ratio: 4 / 4.7; }
  .brand-callout { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .demo-note { grid-template-columns: 1fr; gap: .35rem; }
  .contact-hero { min-height: auto; }
  .contact-hero__copy { padding-top: 5.5rem; }
  .contact-hero h1 { font-size: clamp(4.8rem, 23vw, 7rem); }
  .contact-hero__image { min-height: 30rem; }
  .contact-intro { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .enquiry-grid { grid-template-columns: 1fr; }
  .enquiry-grid article { min-height: 30rem; padding: 2rem 1.5rem; }
  .enquiry-grid article + article { border-top: 0; border-left: 1px solid var(--line); }
  .enquiry-grid .text-link { right: 1.5rem; bottom: 2rem; left: 1.5rem; }
  .email-panel { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  footer { grid-template-columns: 1fr; align-items: start; }
  footer > p:nth-child(2), footer > p:last-child { justify-self: start; }
  .toast { right: .75rem; bottom: .75rem; left: .75rem; max-width: none; }
}

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