/* ==========================================================================
   Art 4 Everyone — 15 August 2026, Parque de Santa Catarina, Funchal
   Palette and shapes are taken from the hand-painted logo: warm paper,
   vermillion, violet, butter yellow, and thick wobbly outlines.
   ========================================================================== */

:root {
  --paper:        #FBF3E4;
  --paper-2:      #F5E8D2;
  --paper-3:      #EFDCBE;
  --ink:          #241B12;
  --ink-soft:     #5D4C3B;
  --red:          #C63A26;
  --red-deep:     #A62D1D;
  --violet:       #5F4FB6;
  --butter:       #F0C96A;
  --lime:         #DFDC93;

  --shadow-hard:  5px 5px 0 var(--ink);
  --shadow-soft:  0 12px 30px -18px rgba(36, 27, 18, .55);

  --wobble-1: 22px 16px 24px 18px / 18px 24px 16px 22px;
  --wobble-2: 16px 24px 18px 22px / 24px 16px 22px 18px;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body:    "Karla", ui-sans-serif, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --gutter:  clamp(1.15rem, 4vw, 2.5rem);
  --measure: 1160px;
  --header-h: 62px;
}

/* ── Reset-ish ─────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.22vw, 1.09rem);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Paper grain over the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .32;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--red-deep); }

:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  z-index: 200;
  transform: translateX(-50%);
  padding: .7rem 1.2rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: 0 0 12px 12px;
  text-decoration: none;
  font-weight: 700;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

.container {
  width: 100%;
  max-width: var(--measure);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ── Header ────────────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 2px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--ink);
  box-shadow: 0 6px 22px -18px rgba(36, 27, 18, .9);
}

.site-header__inner {
  max-width: var(--measure);
  margin-inline: auto;
  padding: .55rem var(--gutter);
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile: just the logo, centred, always visible. */
.site-header__inner { justify-content: center; }

.site-header__brand {
  display: block;
  flex: 0 0 auto;
  line-height: 0;
}
.site-header__brand img { width: auto; height: 34px; }

.site-header__nav { display: none; }
.site-header__inner > .cal { display: none; }

.site-header__nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.site-header__nav a:hover { border-bottom-color: var(--red); }

/* Desktop: logo on the left (fading in once the hero is passed),
   nav and calendar button on the right. */
@media (min-width: 820px) {
  .site-header__inner { justify-content: flex-start; }

  .site-header__brand {
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .3s ease, transform .3s ease;
    pointer-events: none;
  }
  .site-header.is-scrolled .site-header__brand {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .site-header__brand img { height: 30px; }

  .site-header__nav { display: flex; margin-left: auto; gap: 1.6rem; }
  .site-header__inner > .cal { display: inline-block; }
}

/* ── Buttons ───────────────────────────────────────────────────────────── */

.btn {
  --btn-bg: var(--paper);
  --btn-fg: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .78rem 1.4rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .14s ease, box-shadow .14s ease, background-color .14s ease;
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}

.btn--sm { padding: .5rem 1rem; font-size: .9rem; box-shadow: 3px 3px 0 var(--ink); }
.btn--sm:hover { box-shadow: 5px 5px 0 var(--ink); }

.btn--primary { --btn-bg: var(--red); --btn-fg: #FFF6E7; }
.btn--ghost   { --btn-bg: var(--butter); --btn-fg: var(--ink); }
.btn--cream   { --btn-bg: var(--paper); --btn-fg: var(--ink); }

.btn--outline-cream {
  --btn-bg: transparent;
  --btn-fg: #FFF3E2;
  border-color: #FFF3E2;
  box-shadow: 4px 4px 0 #7E1D10;
}
.btn--outline-cream:hover { box-shadow: 6px 6px 0 #7E1D10; }
.btn--outline-cream:active { box-shadow: 1px 1px 0 #7E1D10; }

/* ── Add-to-calendar menu ──────────────────────────────────────────────── */
/* A <details> element, so it still works with JavaScript switched off. */

.cal { position: relative; display: inline-block; }

.cal > summary { list-style: none; cursor: pointer; }
.cal > summary::-webkit-details-marker { display: none; }
.cal > summary::marker { content: ""; }

.cal__menu {
  /* Anchored to the button's left edge rather than centred on it, so the
     menu cannot spill off the side of a narrow screen. */
  position: absolute;
  top: calc(100% + .7rem);
  left: 0;
  z-index: 70;
  min-width: max(240px, 100%);
  max-width: min(300px, calc(100vw - 2rem));
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: .4rem;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 16px;
  box-shadow: 5px 5px 0 var(--ink);
  text-align: left;
}

.cal__opt {
  padding: .6rem .8rem;
  border-radius: 10px;
  color: var(--ink);
  font-weight: 700;
  font-size: .97rem;
  line-height: 1.25;
  text-decoration: none;
}
.cal__opt:hover,
.cal__opt:focus-visible { background: var(--butter); }
.cal__opt small {
  display: block;
  font-weight: 400;
  font-size: .8rem;
  color: var(--ink-soft);
}

/* Keep the menu on screen when the button sits at the right-hand edge. */
.site-header .cal__menu { left: auto; right: 0; }

/* ── Hero ──────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  padding-top: clamp(2.2rem, 6vw, 4.2rem);
  overflow: hidden;
}

.hero__wash {
  position: absolute;
  inset: -12% -20% auto -20%;
  height: 130%;
  z-index: -1;
  background:
    radial-gradient(42% 38% at 14% 12%, rgba(95, 79, 182, .30), transparent 68%),
    radial-gradient(46% 40% at 86% 6%,  rgba(198, 58, 38, .26), transparent 66%),
    radial-gradient(50% 44% at 50% 96%, rgba(240, 201, 106, .40), transparent 70%),
    radial-gradient(34% 30% at 78% 62%, rgba(223, 220, 147, .40), transparent 70%);
  filter: blur(12px);
}

.hero__inner { text-align: center; }

.kicker {
  display: inline-block;
  margin: 0 0 clamp(1rem, 3vw, 1.6rem);
  padding: .38rem 1rem;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--violet);
  font-size: clamp(.76rem, .72rem + .2vw, .86rem);
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero__logo {
  /* The block keeps the footprint the full-width logo had, and the artwork is
     centred inside it, so shrinking the logo leaves the surrounding spacing
     exactly where it was. Ratio 0.588 is the logo's own 1200:705. */
  margin: 0 auto clamp(1.2rem, 3.4vw, 2rem);
  width: min(500px, 76vw);
  min-height: calc(min(500px, 76vw) * 0.588);
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, opacity;
}
.hero__logo picture {
  display: block;
  width: 84%;
}
.hero__logo img {
  width: 100%;
  filter: drop-shadow(0 14px 22px rgba(36, 27, 18, .22));
  animation: logo-float 7s ease-in-out infinite;
}

/* Gentle idle drift. The scroll effect is applied to the parent, so the
   two transforms never fight over the same element. */
@keyframes logo-float {
  0%, 100% { transform: translateY(0) rotate(-0.7deg); }
  50%      { transform: translateY(-9px) rotate(0.7deg); }
}

.hero__lead {
  max-width: 34ch;
  margin-inline: auto;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 1rem + 1.05vw, 1.7rem);
  line-height: 1.35;
  color: var(--ink);
}

.hero__meta {
  list-style: none;
  margin: clamp(1.4rem, 4vw, 2rem) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem .75rem;
}
.hero__meta li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem 1rem;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
  font-size: clamp(.88rem, .85rem + .18vw, 1rem);
}
.hero__meta-icon { font-size: 1.05em; }

.hero__actions {
  margin-top: clamp(1.5rem, 4vw, 2.2rem);
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  justify-content: center;
}

.hero__note {
  margin: 1.15rem 0 0;
  color: var(--ink-soft);
  font-size: .96rem;
  font-style: italic;
}

/* ── "Hosted by" credit ────────────────────────────────────────────────── */

.hosted-by {
  margin: .85rem 0 0;
  font-size: .95rem;
  color: var(--ink-soft);
}
.hosted-by a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--red);
  padding-bottom: 1px;
  vertical-align: bottom;
}
.hosted-by a:hover { color: var(--red-deep); border-bottom-color: var(--ink); }
.hosted-by svg { flex: 0 0 auto; }
.hosted-by picture { display: block; flex: 0 0 auto; line-height: 0; }

.hosted-by__avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  object-fit: cover;
}

/* ── Host section ──────────────────────────────────────────────────────── */

.host {
  max-width: 640px;
  margin-inline: auto;
  padding: clamp(1.7rem, 4vw, 2.6rem);
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--wobble-2);
  box-shadow: 7px 7px 0 var(--violet);
  text-align: center;
}
.host .eyebrow { text-align: center; }
.host .h2 { margin-bottom: .8rem; }
.host__text {
  margin-bottom: 1.6rem;
  color: var(--ink-soft);
}

.host__label {
  margin: 0 0 .9rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Profile chip */
.ig-card {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.4rem;
  padding: .5rem 1.1rem .5rem .5rem;
  background: var(--paper-2);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform .14s ease, box-shadow .14s ease;
}
.ig-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}

.ig-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2.5px solid var(--ink);
  object-fit: cover;
}

.ig-card__id {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.25;
  text-align: left;
}
.ig-card__id strong { font-size: 1.05rem; }
.ig-card__handle {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .88rem;
  color: var(--ink-soft);
}

/* Latest three posts */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.5rem, 1.6vw, .8rem);
  margin-bottom: 1.7rem;
}

.ig-post {
  display: block;
  border: 2.5px solid var(--ink);
  border-radius: 10px;
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform .16s ease, box-shadow .16s ease;
}
.ig-post img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .35s ease;
}
.ig-post:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--red);
}
.ig-post:hover img { transform: scale(1.05); }

/* ── Scrolling photo strip ─────────────────────────────────────────────── */

.strip {
  margin-top: clamp(2.4rem, 6vw, 4rem);
  padding-block: clamp(1rem, 2.5vw, 1.6rem);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.strip__track {
  display: flex;
  width: max-content;
  animation: strip-scroll var(--strip-duration, 55s) linear infinite;
}
.strip__set { display: flex; }

.snap {
  margin: 0 clamp(.7rem, 2vw, 1.2rem) 0 0;
  height: clamp(165px, 24vw, 270px);
  border: 3px solid var(--ink);
  border-radius: 6px;
  background: var(--paper);
  padding: 6px 6px 22px;
  box-shadow: var(--shadow-soft);
  flex: 0 0 auto;
}
.snap img { height: 100%; width: auto; border-radius: 2px; }
.snap:nth-child(odd)  { transform: rotate(-1.6deg); }
.snap:nth-child(even) { transform: rotate(1.4deg); }

/* One cycle scrolls exactly one set out of view, so the next copy lands where
   it started. main.js measures that set and adds however many copies the
   window needs; the 50% default is the no-JS fallback for two sets. */
@keyframes strip-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(var(--strip-shift, 50%) * -1)); }
}

/* ── Sections ──────────────────────────────────────────────────────────── */

.section {
  position: relative;
  padding-block: clamp(3.2rem, 8vw, 6rem);
  scroll-margin-top: calc(var(--header-h) + 12px);
}
.section--tight { padding-block: clamp(2.4rem, 5vw, 3.6rem); }
.section--paper2 { background: var(--paper-2); }

.eyebrow {
  margin: 0 0 .6rem;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--red-deep);
}

.h2 {
  font-size: clamp(1.85rem, 1.35rem + 2.4vw, 3.2rem);
  margin-bottom: clamp(1rem, 2.5vw, 1.6rem);
}
.h2--center { text-align: center; }
.h2--center + .pills,
.h2--center + .features,
.h2--center + .gallery { margin-top: clamp(1.6rem, 4vw, 2.6rem); }

.section--paper2 .eyebrow,
.h2--center { text-align: center; }

/* ── Detail cards ──────────────────────────────────────────────────────── */

.cards {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--wobble-1);
  padding: clamp(1.3rem, 3vw, 1.8rem);
  text-align: center;
  box-shadow: var(--shadow-hard);
}
.card:nth-child(2) { border-radius: var(--wobble-2); box-shadow: 5px 5px 0 var(--violet); }
.card:nth-child(3) { box-shadow: 5px 5px 0 var(--red); }

.card__icon { font-size: 1.8rem; line-height: 1; }
.card__title {
  margin: .5rem 0 .4rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: var(--ink-soft);
}
.card__lead {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 1rem + .7vw, 1.45rem);
  line-height: 1.25;
}
.card__link {
  display: inline-block;
  margin-top: .7rem;
  font-weight: 700;
  font-size: .93rem;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.note-band {
  margin: clamp(1.2rem, 3vw, 1.8rem) auto 0;
  max-width: 46ch;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.02rem, .96rem + .5vw, 1.25rem);
  color: var(--ink-soft);
}

/* ── Split (about) ─────────────────────────────────────────────────────── */

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr minmax(0, 460px); }
}

.split__text p { color: var(--ink-soft); }
.split__text .lead-out {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 1rem + .6vw, 1.35rem);
  line-height: 1.35;
  color: var(--ink);
  padding-left: 1rem;
  border-left: 5px solid var(--butter);
}

.split__media {
  margin: 0;
  justify-self: center;
  max-width: 460px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  padding: 10px 10px 14px;
  box-shadow: 10px 10px 0 var(--violet);
  transform: rotate(-1.4deg);
}
.split__media img { border-radius: 3px; }

/* ── Pills ─────────────────────────────────────────────────────────────── */

.pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem .65rem;
}
.pills li {
  padding: .6rem 1.15rem;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
  font-size: clamp(.92rem, .88rem + .25vw, 1.05rem);
  box-shadow: 3px 3px 0 var(--ink);
}
.pills li:nth-child(4n+1) { background: var(--butter); }
.pills li:nth-child(4n+2) { background: var(--lime); }
.pills li:nth-child(4n+3) { background: var(--paper); }
.pills li:nth-child(4n)   { background: #E9D9F2; }
.pills__empty {
  background: var(--red) !important;
  color: #FFF3E2;
  font-style: italic;
}

.centered-note {
  margin: clamp(1.5rem, 4vw, 2.2rem) auto 0;
  max-width: 50ch;
  text-align: center;
  color: var(--ink-soft);
}

/* ── Features ──────────────────────────────────────────────────────────── */

.features {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .features { grid-template-columns: repeat(2, 1fr); }
}

.feature {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--wobble-1);
  overflow: hidden;
  box-shadow: var(--shadow-hard);
  display: flex;
  flex-direction: column;
}
.feature:nth-child(2) {
  border-radius: var(--wobble-2);
  box-shadow: 5px 5px 0 var(--red);
}

.feature__media { margin: 0; }
.feature__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 38%;
  border-bottom: 3px solid var(--ink);
}

.feature__body { padding: clamp(1.2rem, 3vw, 1.7rem); }
.feature__title {
  font-size: clamp(1.25rem, 1.1rem + .8vw, 1.6rem);
  margin-bottom: .5rem;
}
.feature__body p { color: var(--ink-soft); }

/* ── Gallery ───────────────────────────────────────────────────────────── */

.gallery {
  display: grid;
  gap: clamp(.7rem, 2vw, 1.1rem);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px)  { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1060px) { .gallery { grid-template-columns: repeat(4, 1fr); } }

.shot {
  display: block;
  padding: 0;
  margin: 0;
  border: 3px solid var(--ink);
  border-radius: 6px;
  background: var(--paper);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}
.shot img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform .35s ease;
}
.shot:hover { transform: translateY(-4px) rotate(-.8deg); box-shadow: 0 18px 30px -20px rgba(36,27,18,.8); }
.shot:hover img { transform: scale(1.04); }

/* ── Closing ───────────────────────────────────────────────────────────── */

.closing {
  position: relative;
  background: var(--red);
  color: #FFF3E2;
  padding-block: clamp(3.4rem, 9vw, 6rem);
  border-block: 3px solid var(--ink);
  text-align: center;
  overflow: hidden;
}
.closing::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(38% 46% at 12% 22%, rgba(95, 79, 182, .55), transparent 70%),
    radial-gradient(40% 44% at 88% 78%, rgba(240, 201, 106, .40), transparent 70%);
  pointer-events: none;
}
.closing__inner { position: relative; z-index: 1; }

.closing__title {
  display: flex;
  flex-direction: column;
  gap: .18em;
  font-size: clamp(1.9rem, 1.3rem + 3.2vw, 3.6rem);
  margin-bottom: clamp(1.4rem, 3.5vw, 2rem);
}
.closing__punch { color: var(--butter); }

.closing__meta { font-size: clamp(1rem, .95rem + .35vw, 1.15rem); }
.closing__meta p { margin-bottom: .25rem; }
.hero__actions--center { justify-content: center; }

/* ── Footer ────────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--paper-3);
  padding-block: clamp(2.2rem, 5vw, 3.2rem);
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.site-footer__logo { width: min(240px, 60vw); height: auto; }
.site-footer p { color: var(--ink-soft); font-size: .95rem; }

/* ── Lightbox ──────────────────────────────────────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(24, 17, 11, .93);
  animation: fade-in .18s ease;
}
.lightbox[hidden] { display: none; }

.lightbox__figure {
  margin: 0;
  max-width: min(900px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
}
.lightbox__figure img {
  max-width: 100%;
  max-height: calc(100vh - 9rem);
  width: auto;
  border: 3px solid var(--paper);
  border-radius: 6px;
  object-fit: contain;
}
.lightbox__figure figcaption {
  color: #F2E6D2;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  text-align: center;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: var(--butter); transform: scale(1.07); }

.lightbox__close { top: clamp(.8rem, 3vw, 1.6rem); right: clamp(.8rem, 3vw, 1.6rem); }
.lightbox__nav { top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.07); }
.lightbox__nav--prev { left: clamp(.5rem, 2.5vw, 1.6rem); }
.lightbox__nav--next { right: clamp(.5rem, 2.5vw, 1.6rem); }

@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

body.is-locked { overflow: hidden; }

/* ── Reveal on scroll ──────────────────────────────────────────────────── */

.will-reveal {
  opacity: 0;
  transform: translateY(22px);
}
.will-reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .6s ease, transform .6s cubic-bezier(.2, .7, .3, 1);
}

/* ── Motion & print ────────────────────────────────────────────────────── */

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

@media print {
  .site-header, .strip, .lightbox, .btn { display: none !important; }
  body { background: #fff; }
  body::before { display: none; }
}
