:root {
  --ink: #09070d;
  --paper: #f5f0e8;
  --pink: #ff2b91;
  --blue: #19c8ff;
  --yellow: #ffe63c;
  --violet: #7d49ff;
  --accent: var(--pink);
  --accent-2: var(--blue);
  --display: "Anton", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  overflow-x: hidden;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
::selection { background: var(--yellow); color: var(--ink); }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 30;
  opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1rem, 4vw, 4.5rem);
  background: rgba(9,7,13,.94);
  border-bottom: 3px solid var(--pink);
  box-shadow: 0 .45rem 0 rgba(25,200,255,.18);
  backdrop-filter: blur(14px);
}
.logo {
  text-decoration: none;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  letter-spacing: -.04em;
  line-height: .8;
  transform: rotate(-2deg);
  color: var(--yellow);
}
.logo b { color: var(--pink); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.status {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem .75rem;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: .22rem .22rem 0 var(--blue);
  transform: rotate(-1deg);
}
.status::before {
  content: "";
  width: .65rem;
  height: .65rem;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 .3rem rgba(255,43,145,.18);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse { 60%,100% { box-shadow: 0 0 0 .75rem rgba(255,43,145,0); } }

.btn {
  border: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  min-height: 3.2rem;
  padding: .75rem 1.15rem;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  box-shadow: .38rem .38rem 0 var(--pink);
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translate(-.18rem,-.18rem); box-shadow: .58rem .58rem 0 var(--pink); }
.btn:focus-visible, .persona:focus-visible, .close:focus-visible, input:focus-visible { outline: 3px solid white; outline-offset: 4px; }
.btn-small { min-height: 2.6rem; padding: .55rem .9rem; font-size: .8rem; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #050408;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(4,3,8,.98) 0%, rgba(4,3,8,.86) 31%, rgba(4,3,8,.13) 65%, rgba(4,3,8,.25) 100%), var(--hero-image, none);
  background-size: cover;
  background-position: center;
  transform: scale(1.015);
  animation: breathe 12s ease-in-out infinite alternate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  z-index: -1;
  background: linear-gradient(transparent, var(--ink));
}
@keyframes breathe { to { transform: scale(1.055); } }
.hero-copy {
  width: min(64rem, 100%);
  padding: 8.5rem clamp(1rem, 6vw, 6.8rem) 7rem;
}
.eyebrow {
  display: inline-block;
  margin: 0 0 1.2rem;
  padding: .42rem .7rem;
  background: var(--blue);
  color: var(--ink);
  font-size: .83rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 9.5ch;
  margin-bottom: 1.5rem;
  padding: .18em .2em .14em;
  background: rgba(9,7,13,.95);
  border-left: .09em solid var(--yellow);
  box-shadow: .08em .08em 0 var(--pink);
  font-family: var(--display);
  font-size: clamp(3.9rem, 8.6vw, 8.5rem);
  font-weight: 900;
  line-height: .96;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1 .line { display: block; color: var(--yellow); }
h1 .line:nth-child(2) { color: var(--blue); }
h1 .final-word { color: var(--pink); }
.hero-sub {
  max-width: 31rem;
  margin-bottom: 2rem;
  padding: .85rem 1rem;
  background: rgba(9,7,13,.82);
  border-left: 3px solid var(--blue);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.45;
  font-weight: 650;
}
.micro-copy { margin: 1rem 0 0; color: rgba(255,255,255,.7); font-size: .82rem; }
.side-note {
  position: absolute;
  right: 1rem;
  bottom: 9rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .72rem;
  color: rgba(255,255,255,.7);
}

.ticker {
  overflow: hidden;
  background: var(--yellow);
  color: var(--ink);
  border-block: 4px solid var(--ink);
  transform: rotate(-1.2deg) scale(1.02);
  position: relative;
  z-index: 5;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 25s linear infinite;
  font-family: var(--display);
  font-size: clamp(1.7rem, 4vw, 3.5rem);
  letter-spacing: .02em;
  line-height: 1;
  text-transform: uppercase;
  padding: .6rem 0 .45rem;
}
.ticker-track span::after { content: "✦"; margin: 0 1.4rem; color: var(--pink); }
@keyframes ticker { to { transform: translateX(-50%); } }

.manifesto {
  position: relative;
  padding: clamp(6rem, 10vw, 10rem) clamp(1rem, 6vw, 7rem);
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(2rem, 8vw, 8rem);
  align-items: start;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-size: .78rem;
}
.section-tag::before { content: ""; width: 2.8rem; height: 2px; background: currentColor; }
.manifesto h2 {
  margin: -.12em 0 1.5rem;
  font-family: var(--display);
  font-size: clamp(3.5rem, 8.4vw, 8.5rem);
  line-height: .96;
  letter-spacing: 0;
  text-transform: uppercase;
}
.manifesto h2 em { color: var(--pink); font-style: normal; }
.manifesto-copy { max-width: 43rem; font-size: clamp(1.1rem, 2vw, 1.35rem); line-height: 1.55; color: rgba(255,255,255,.75); }

.personas {
  --panel: #5c36d8;
  background: var(--panel);
  color: white;
  padding: clamp(5.5rem, 9vw, 9rem) clamp(1rem, 6vw, 7rem);
  transition: background .45s ease;
}
.personas-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}
.personas h2, .rules h2, .final h2 {
  margin: 0;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: .98;
  letter-spacing: .01em;
}
.personas h2 { color: var(--yellow); text-shadow: .06em .06em 0 var(--ink); max-width: 9ch; }
.rules h2 { max-width: 12ch; }
.personas-head p { max-width: 28rem; margin: 0; font-weight: 700; font-size: 1.06rem; line-height: 1.5; }
.persona-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 3px solid var(--ink);
  box-shadow: .7rem .7rem 0 var(--ink);
}
.persona {
  appearance: none;
  border: 0;
  border-right: 3px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  min-height: 9rem;
  padding: 1.1rem;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background .2s, color .2s, transform .2s;
}
.persona:last-child { border-right: 0; }
.persona:hover { background: var(--yellow); }
.persona.active { background: var(--ink); color: white; transform: translateY(-.55rem); }
.persona-num { font-size: .74rem; font-weight: 900; letter-spacing: .1em; }
.persona-name { font-family: var(--display); font-size: clamp(1.7rem, 3vw, 3rem); line-height: .88; text-transform: uppercase; }
.persona-stage {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
  min-height: 20rem;
  padding-top: clamp(4rem, 8vw, 7rem);
}
.big-quote { font-family: var(--display); font-size: clamp(2.6rem, 5.4vw, 5.6rem); line-height: 1; text-transform: uppercase; letter-spacing: .01em; text-shadow: .05em .05em 0 var(--ink); }
.now-playing {
  justify-self: end;
  width: min(100%, 35rem);
  border: 3px solid var(--ink);
  background: var(--ink);
  color: white;
  padding: 1.2rem;
  box-shadow: .75rem .75rem 0 rgba(255,255,255,.35);
  transform: rotate(1.5deg);
}
.np-label { color: var(--yellow); font-size: .72rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.np-title { margin: .7rem 0 .3rem; font-family: var(--display); font-size: 2.2rem; text-transform: uppercase; }
.np-note { margin: 0; color: rgba(255,255,255,.72); line-height: 1.5; }
.bars { height: 3rem; margin-top: 1.2rem; display: flex; align-items: end; gap: .25rem; }
.bars i { width: .36rem; background: var(--pink); animation: bars .8s ease-in-out infinite alternate; }
.bars i:nth-child(2n) { animation-delay: -.35s; background: var(--blue); }
.bars i:nth-child(3n) { animation-delay: -.65s; background: var(--yellow); }
@keyframes bars { from { height: 18%; } to { height: 100%; } }

.rules { padding: clamp(6rem, 10vw, 10rem) clamp(1rem, 6vw, 7rem); background: var(--paper); color: var(--ink); }

.rule-list { margin-top: 4rem; border-top: 3px solid var(--ink); }
.rule {
  display: grid;
  grid-template-columns: 5rem 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 3px solid var(--ink);
}
.rule span { font-weight: 950; color: var(--pink); }
.rule h3 { margin: 0; font-family: var(--display); font-size: clamp(2rem, 5vw, 4.5rem); text-transform: uppercase; letter-spacing: -.025em; }
.rule p { margin: 0; max-width: 29rem; font-size: 1.05rem; font-weight: 650; }

.final {
  position: relative;
  overflow: hidden;
  min-height: 80svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 7rem 1rem;
  background: var(--pink);
  color: var(--ink);
}
.final::before {
  content: "OUTLOUD OUTLOUD OUTLOUD";
  position: absolute;
  top: 5%;
  left: -5%;
  width: 110%;
  font-family: var(--display);
  font-size: 14vw;
  line-height: .8;
  color: transparent;
  -webkit-text-stroke: 2px rgba(9,7,13,.18);
  transform: rotate(-5deg);
  white-space: nowrap;
}
.final-inner { position: relative; z-index: 1; display: grid; justify-items: center; }
.final h2 { max-width: 11ch; font-size: clamp(3.4rem, 8.5vw, 8.5rem); line-height: 1; letter-spacing: .01em; color: var(--paper); text-shadow: .06em .06em 0 var(--ink); }
.final p { max-width: 36rem; margin: 1.7rem auto 2rem; font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 750; }
.final .btn { background: var(--ink); color: white; box-shadow: .45rem .45rem 0 var(--yellow); }
.footer { position: absolute; left: 1rem; right: 1rem; bottom: 1.2rem; display: flex; justify-content: space-between; gap: 1rem; font-size: .75rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }

dialog {
  width: min(34rem, calc(100% - 2rem));
  border: 3px solid var(--ink);
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 1rem 1rem 0 var(--pink);
}
dialog::backdrop { background: rgba(9,7,13,.82); backdrop-filter: blur(6px); }
.modal { padding: clamp(1.5rem, 5vw, 3rem); }
.modal h2 { margin-bottom: 1rem; font-family: var(--display); font-size: clamp(2.8rem, 8vw, 5rem); line-height: .85; text-transform: uppercase; }
.modal p { line-height: 1.55; }
.modal form { display: flex; gap: .7rem; margin-top: 1.5rem; }
.modal input { min-width: 0; flex: 1; border: 3px solid var(--ink); background: white; min-height: 3.2rem; padding: .7rem; font-size: 1rem; }
.close { position: absolute; top: .8rem; right: .8rem; width: 2.5rem; height: 2.5rem; border: 2px solid var(--ink); background: transparent; font-weight: 900; cursor: pointer; }
.success { display: none; padding: .9rem; background: #b9ff69; font-weight: 850; margin-top: 1rem; }


:root { padding-top: env(safe-area-inset-top,0px); padding-bottom: env(safe-area-inset-bottom,0px); }
.display { font-family: var(--display); text-transform: uppercase; letter-spacing: -.02em; line-height: .9; }

/* Programme strip */
.week { padding: clamp(5rem, 9vw, 8rem) clamp(1rem, 6vw, 7rem); background: var(--ink); }
.week-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.6rem; }
.week-head h2 { margin: 0; font-family: var(--display); text-transform: uppercase; font-size: clamp(3.2rem, 7.5vw, 7.5rem); line-height: .84; letter-spacing: -.03em; max-width: 9ch; }
.week-head h2 em { font-style: normal; color: var(--yellow); }
.week-head p { max-width: 26rem; margin: 0; color: rgba(255,255,255,.72); font-weight: 650; line-height: 1.5; }
.days { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 3px solid var(--paper); box-shadow: .7rem .7rem 0 var(--blue); }
.day { padding: 1.3rem 1.1rem 1.4rem; border-right: 3px solid var(--paper); display: grid; grid-template-rows: auto auto 1fr auto; gap: .5rem; min-height: 15rem; background: var(--ink); }
.day:last-child { border-right: 0; }
.day-name { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.9rem, 3.4vw, 3.2rem); line-height: .9; color: var(--yellow); }
.day-title { font-weight: 900; font-size: 1.05rem; letter-spacing: .01em; }
.day p { margin: 0; color: rgba(255,255,255,.72); font-size: .95rem; line-height: 1.45; }
.day-time { font-weight: 800; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }
.day.peak { background: var(--pink); color: var(--ink); }
.day.peak .day-name { color: var(--ink); }
.day.peak p { color: rgba(9,7,13,.78); }
.day.peak .day-time { color: var(--ink); }
.day.ticket .day-name { color: var(--blue); }

/* Rooms */
.rooms { padding: clamp(5rem, 9vw, 8rem) clamp(1rem, 6vw, 7rem); background: var(--violet); color: white; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: stretch; position: relative; overflow: hidden; }
.rooms::before { content: "BOOK IT"; position: absolute; right: -2vw; bottom: -3vw; font-family: var(--display); font-size: 22vw; line-height: .8; color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.14); pointer-events: none; }
.room { position: relative; z-index: 1; border: 3px solid var(--ink); background: var(--paper); color: var(--ink); padding: clamp(1.4rem, 3vw, 2.4rem); display: grid; gap: 1rem; align-content: start; box-shadow: .8rem .8rem 0 var(--ink); }
.room.dark { background: var(--ink); color: var(--paper); box-shadow: .8rem .8rem 0 var(--yellow); }
.room h3 { margin: 0; font-family: var(--display); text-transform: uppercase; font-size: clamp(2.4rem, 5vw, 4.6rem); line-height: .86; letter-spacing: -.03em; }
.room h3 span { color: var(--pink); }
.room.dark h3 span { color: var(--yellow); }
.room p { margin: 0; font-weight: 650; line-height: 1.5; font-size: 1.05rem; }
.room ul { margin: 0; padding: 0; list-style: none; display: grid; gap: .45rem; font-weight: 800; font-size: .92rem; }
.room li { display: flex; gap: .6rem; align-items: baseline; }
.room li::before { content: ""; flex: none; width: .7rem; height: .7rem; background: var(--pink); transform: rotate(45deg); translate: 0 -.05rem; }
.room.dark li::before { background: var(--yellow); }
.room .btn { justify-self: start; margin-top: .4rem; }
.room.dark .btn { background: var(--yellow); box-shadow: .38rem .38rem 0 var(--blue); }
.room-tag { display: inline-block; justify-self: start; padding: .4rem .65rem; background: var(--pink); color: white; font-size: .74rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; transform: rotate(-2deg); }
.room.dark .room-tag { background: var(--blue); color: var(--ink); }

/* Founding strip */
.founding { display: flex; align-items: center; justify-content: center; gap: 1.2rem; flex-wrap: wrap; padding: 1.1rem 1rem; background: var(--blue); color: var(--ink); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: .9rem; border-block: 4px solid var(--ink); }
.founding strong { font-family: var(--display); font-size: 1.9rem; letter-spacing: 0; line-height: 1; }
.founding .count { padding: .25rem .6rem; background: var(--ink); color: var(--yellow); }

/* Modal additions */
.modal form { flex-wrap: wrap; }
.modal form input[type=email] { flex: 1 1 100%; }
.modal .row { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; flex: 1 1 100%; }
.modal label { display: grid; gap: .3rem; font-weight: 800; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.modal select, .modal input[type=text] { border: 3px solid var(--ink); background: white; min-height: 3.2rem; padding: .7rem; font-size: 1rem; width: 100%; }
.modal .why { flex: 1 1 100%; display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; }
.modal .why input { position: absolute; opacity: 0; pointer-events: none; }
.modal .why span { display: block; text-align: center; padding: .7rem .4rem; border: 3px solid var(--ink); font-weight: 900; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; cursor: pointer; background: white; }
.modal .why input:checked + span { background: var(--ink); color: var(--yellow); }
.modal .why label { position: relative; }
.modal .fine { flex: 1 1 100%; margin: 0; font-size: .78rem; color: rgba(9,7,13,.65); font-weight: 600; text-transform: none; letter-spacing: 0; }
.modal form .btn { flex: 1 1 100%; }
.nav-address { display: none; }
.footer address { font-style: normal; }

@media (max-width: 1000px) { .days { grid-template-columns: repeat(2, 1fr); } .day { border-bottom: 3px solid var(--paper); } .day:nth-child(2n) { border-right: 0; } .day:last-child { grid-column: 1 / -1; border-bottom: 0; } .rooms { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .days { grid-template-columns: 1fr; } .day { border-right: 0; min-height: 0; } .day:last-child { grid-column: auto; } .modal .why { grid-template-columns: 1fr; } .modal .row { grid-template-columns: 1fr; } .founding { text-align: center; } }

@media (max-width: 850px) {
  .nav .btn { display: none; }
  .hero::before { background-image: linear-gradient(90deg, rgba(4,3,8,.97) 0%, rgba(4,3,8,.68) 52%, rgba(4,3,8,.2) 100%), var(--hero-image, none); background-position: 61% center; }
  .hero-copy { align-self: end; padding-bottom: 8.5rem; }
  .side-note { display: none; }
  .manifesto, .persona-stage { grid-template-columns: 1fr; }
  .personas-head { align-items: start; flex-direction: column; }
  .persona-grid { grid-template-columns: repeat(2, 1fr); }
  .persona:nth-child(2) { border-right: 0; }
  .persona:nth-child(-n+2) { border-bottom: 3px solid var(--ink); }
  .persona.active { transform: none; }
  .now-playing { justify-self: stretch; }
  .rule { grid-template-columns: 3rem 1fr; }
  .rule p { grid-column: 2; }
}
@media (max-width: 520px) {
  h1 { font-size: clamp(3.35rem, 17vw, 5.4rem); }
  .status { font-size: .66rem; letter-spacing: .08em; }
  .persona-grid { grid-template-columns: 1fr; }
  .persona { min-height: 7rem; border-right: 0; border-bottom: 3px solid var(--ink); }
  .persona:last-child { border-bottom: 0; }
  .modal form { flex-direction: column; }
  .footer { align-items: center; flex-direction: column; }
}
@media (max-width: 520px) {
  .status { padding: .45rem .6rem; font-size: .62rem; }
  .status::before { display: none; }
  .logo { font-size: 1.5rem; }
  .manifesto h2, .week-head h2, .room h3 { font-size: clamp(2.4rem, 11vw, 3.6rem); overflow-wrap: anywhere; }
  .personas h2, .rules h2 { font-size: clamp(2.6rem, 12vw, 3.8rem); }
  .final { padding-bottom: 2rem; min-height: 0; }
  .final .btn { margin-bottom: 3rem; }
  .footer { position: static; margin-top: 1rem; gap: .5rem; }
  .rooms::before { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}

/* ------------------------------------------------------------------ */
/* CMS additions (P2). Everything above this line is the locked design, */
/* lifted verbatim from site/index.html; only the hero's inline base64   */
/* background became the --hero-image custom property. Below are the     */
/* few rules the CMS needs for content the one-pager never had: nav      */
/* links, text pages, footer socials and the Zynthio credit.            */
/* ------------------------------------------------------------------ */
.nav-link { font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; opacity: .8; }
.nav-link:hover { opacity: 1; }

.page { padding: 9rem clamp(1rem, 5vw, 4.5rem) 5rem; }
.page-inner { max-width: 48rem; margin: 0 auto; }
.page-inner h1 { font-family: var(--display); font-size: clamp(2.6rem, 7vw, 5rem); line-height: .95; letter-spacing: .01em; text-transform: uppercase; margin: 0 0 2rem; }
.page-inner h2 { font-family: var(--display); font-size: clamp(1.4rem, 3vw, 2.1rem); text-transform: uppercase; letter-spacing: .02em; margin: 2.4rem 0 .8rem; }
.page-inner p { font-size: 1.02rem; line-height: 1.65; font-weight: 500; opacity: .92; }
.page-inner a { color: var(--blue); }
.faq details { border-top: 1px solid rgba(245,240,232,.16); padding: .9rem 0; }
.faq summary { cursor: pointer; font-weight: 800; }

.gallery { padding: 4rem clamp(1rem, 5vw, 4.5rem); }
.gallery-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); }
.gallery figure { margin: 0; }
.gallery img { width: 100%; height: 18rem; object-fit: cover; display: block; }
.gallery figcaption { font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding-top: .5rem; opacity: .75; }

/* Footer when it is not sitting inside the pink closing panel. */
.page-footer { position: relative; background: var(--pink); color: var(--ink); padding: 2.4rem clamp(1rem, 5vw, 4.5rem) 1.6rem; }
.page-footer .footer { position: static; left: auto; right: auto; bottom: auto; }

.footer .socials { display: inline-flex; gap: .8rem; }
.footer .socials a { text-decoration: none; }
.footer .made-with { display: inline-flex; align-items: center; gap: .4rem; text-decoration: none; opacity: .55; }
.footer .made-with:hover { opacity: .9; }
.footer .made-with img { height: 19px; width: auto; display: block; }
