:root {
  --pink: #ff3399;
  --pink-deep: #ff0f86;
  --cyan: #33ccff;
  --cyan-soft: #8fe7ff;
  --yellow: #ffe45e;
  --ink: #111111;
  --cream: #fff8ef;
  --panel: rgba(255, 248, 239, 0.88);
  --panel-strong: rgba(255, 255, 255, 0.96);
  --line: rgba(17, 17, 17, 0.12);
  --shadow: 0 20px 50px rgba(17, 17, 17, 0.15);
  --radius: 28px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Trebuchet MS", "Aptos", "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 228, 94, 0.55), transparent 18%),
    radial-gradient(circle at 85% 12%, rgba(51, 204, 255, 0.32), transparent 22%),
    radial-gradient(circle at 50% 120%, rgba(255, 51, 153, 0.28), transparent 26%),
    linear-gradient(135deg, #ff4aa6 0%, #ff3399 26%, #3fd7ff 58%, #fff4cc 100%);
  background-attachment: fixed;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
figcaption,
li {
  overflow-wrap: break-word;
  word-break: normal;
}

iframe {
  border: 0;
}

code {
  font-family: inherit;
  font-weight: 700;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(transparent 0, rgba(255, 255, 255, 0.14) 50%, transparent 100%),
    repeating-linear-gradient(
      90deg,
      rgba(17, 17, 17, 0.05) 0,
      rgba(17, 17, 17, 0.05) 1px,
      transparent 1px,
      transparent 42px
    );
  mix-blend-mode: soft-light;
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 1.5rem), var(--max-width));
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 0.8rem;
  z-index: 10;
  margin-bottom: 1.5rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 51, 153, 0.9);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.brand-logo {
  width: min(290px, 48vw);
  height: auto;
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 0.7rem 1rem;
  font: inherit;
  font-weight: 700;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.site-nav a {
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  line-height: 1.25;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-current {
  background: var(--ink);
  color: white;
  transform: translateY(-2px);
}

.panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 239, 0.88)),
    var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero,
.split-showcase,
.cta-panel {
  margin-bottom: 1.5rem;
}

.split-showcase {
  margin-top: 1.5rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 1.4rem;
  padding: 1.3rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(1rem, 2vw, 2rem);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--pink-deep);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Arial Black", Impact, sans-serif;
  line-height: 1.08;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1 {
  font-size: clamp(2.5rem, 6.8vw, 5rem);
  max-width: 10ch;
  text-wrap: balance;
  margin-bottom: 0.35rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  max-width: 14ch;
  margin-bottom: 0.35rem;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.2;
  margin-bottom: 0.45rem;
}

.lead,
.hero-copy p,
.timeline-card p,
.mood-card p,
.story-panel p,
.site-footer p {
  font-size: 1.03rem;
  line-height: 1.65;
}

.lead,
.hero-copy p,
.timeline-card p,
.mood-card p,
.story-panel p,
.site-footer p,
.video-card figcaption {
  margin-top: 0;
}

.lead,
.hero-copy p,
.timeline-card p,
.mood-card p,
.story-panel p {
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.6rem 0;
}

.button,
.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.button-primary,
.cta-link {
  background: var(--ink);
  color: white;
}

.button-secondary {
  background: var(--cyan);
  color: var(--ink);
}

.hero-points {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding: 0.95rem 1rem;
  background: var(--panel-strong);
  border-radius: 18px;
  font-weight: 500;
  z-index: 1;
}

.hero-points li::before {
  content: "";
  position: absolute;
  inset: -0.18rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 51, 153, 0.96), rgba(255, 15, 134, 0.88));
  z-index: -1;
}

.hero-media {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

.hero-card,
.mini-card,
.photo-tile,
.video-card,
.mood-card,
.timeline-card,
.story-panel,
.archive-panel,
.inner-hero {
  overflow: hidden;
}

.tilt-card {
  position: relative;
  min-height: 100%;
  border-radius: calc(var(--radius) - 6px);
  background: linear-gradient(135deg, rgba(255, 51, 153, 0.12), rgba(51, 204, 255, 0.08));
  transform: rotate(-2deg);
  isolation: isolate;
  overflow: visible;
}

.tilt-card::before {
  content: "";
  position: absolute;
  inset: -0.9rem -1.1rem -1rem -1.2rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(51, 204, 255, 0.96), rgba(30, 176, 225, 0.88));
  transform: rotate(-5deg);
  box-shadow: 0 24px 48px rgba(51, 204, 255, 0.28);
  z-index: -1;
}

.tilt-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
}

.hero-badge {
  position: absolute;
  right: -1.5rem;
  bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--yellow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transform: rotate(-5deg);
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.mini-card {
  min-height: 180px;
  border-radius: 24px;
  background: var(--panel-strong);
}

.mini-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-card {
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background: var(--ink);
  color: white;
}

.quote-card p {
  margin: 0;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.2rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.section,
.inner-hero,
.story-panel,
.archive-panel,
.cta-panel {
  padding: 1.4rem;
}

.history-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 239, 0.9)),
    linear-gradient(135deg, rgba(255, 248, 239, 0.88), rgba(255, 248, 239, 0.88));
}

.history-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 24%, rgba(255, 51, 153, 0.34) 0 56px, transparent 57px),
    radial-gradient(circle at 24% 34%, rgba(255, 228, 94, 0.3) 0 22px, transparent 23px),
    radial-gradient(circle at 32% 18%, rgba(51, 204, 255, 0.3) 0 34px, transparent 35px),
    radial-gradient(circle at 74% 22%, rgba(51, 204, 255, 0.34) 0 62px, transparent 63px),
    radial-gradient(circle at 86% 34%, rgba(255, 51, 153, 0.28) 0 24px, transparent 25px),
    radial-gradient(circle at 66% 74%, rgba(255, 228, 94, 0.3) 0 56px, transparent 57px),
    radial-gradient(circle at 56% 68%, rgba(255, 51, 153, 0.24) 0 20px, transparent 21px),
    radial-gradient(circle at 26% 76%, rgba(51, 204, 255, 0.24) 0 48px, transparent 49px),
    radial-gradient(circle at 42% 82%, rgba(255, 228, 94, 0.22) 0 18px, transparent 19px),
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.18) 0 12px, transparent 13px),
    radial-gradient(circle at 58% 32%, rgba(255, 255, 255, 0.14) 0 8px, transparent 9px),
    radial-gradient(circle at 8% 62%, rgba(255, 228, 94, 0.22) 0 30px, transparent 31px),
    radial-gradient(circle at 18% 88%, rgba(255, 51, 153, 0.2) 0 16px, transparent 17px),
    radial-gradient(circle at 36% 58%, rgba(51, 204, 255, 0.22) 0 26px, transparent 27px),
    radial-gradient(circle at 48% 12%, rgba(255, 228, 94, 0.22) 0 18px, transparent 19px),
    radial-gradient(circle at 62% 18%, rgba(255, 51, 153, 0.2) 0 14px, transparent 15px),
    radial-gradient(circle at 72% 52%, rgba(51, 204, 255, 0.18) 0 22px, transparent 23px),
    radial-gradient(circle at 88% 14%, rgba(255, 228, 94, 0.22) 0 28px, transparent 29px),
    radial-gradient(circle at 92% 62%, rgba(255, 51, 153, 0.2) 0 18px, transparent 19px),
    radial-gradient(circle at 76% 88%, rgba(51, 204, 255, 0.2) 0 24px, transparent 25px),
    radial-gradient(circle at 6% 14%, rgba(51, 204, 255, 0.18) 0 14px, transparent 15px),
    radial-gradient(circle at 10% 44%, rgba(255, 51, 153, 0.18) 0 42px, transparent 43px),
    radial-gradient(circle at 14% 70%, rgba(255, 228, 94, 0.18) 0 12px, transparent 13px),
    radial-gradient(circle at 22% 12%, rgba(255, 228, 94, 0.2) 0 46px, transparent 47px),
    radial-gradient(circle at 30% 28%, rgba(255, 51, 153, 0.18) 0 12px, transparent 13px),
    radial-gradient(circle at 34% 46%, rgba(255, 228, 94, 0.18) 0 54px, transparent 55px),
    radial-gradient(circle at 38% 70%, rgba(255, 51, 153, 0.16) 0 28px, transparent 29px),
    radial-gradient(circle at 44% 8%, rgba(51, 204, 255, 0.16) 0 10px, transparent 11px),
    radial-gradient(circle at 46% 44%, rgba(51, 204, 255, 0.18) 0 40px, transparent 41px),
    radial-gradient(circle at 54% 52%, rgba(255, 228, 94, 0.18) 0 12px, transparent 13px),
    radial-gradient(circle at 60% 8%, rgba(255, 51, 153, 0.18) 0 36px, transparent 37px),
    radial-gradient(circle at 68% 40%, rgba(255, 228, 94, 0.16) 0 14px, transparent 15px),
    radial-gradient(circle at 70% 66%, rgba(255, 51, 153, 0.18) 0 44px, transparent 45px),
    radial-gradient(circle at 80% 8%, rgba(51, 204, 255, 0.16) 0 16px, transparent 17px),
    radial-gradient(circle at 84% 44%, rgba(255, 228, 94, 0.18) 0 52px, transparent 53px),
    radial-gradient(circle at 90% 30%, rgba(51, 204, 255, 0.16) 0 12px, transparent 13px),
    radial-gradient(circle at 94% 82%, rgba(255, 228, 94, 0.16) 0 36px, transparent 37px),
    radial-gradient(circle at 52% 90%, rgba(255, 51, 153, 0.16) 0 46px, transparent 47px),
    radial-gradient(circle at 24% 92%, rgba(51, 204, 255, 0.16) 0 34px, transparent 35px);
  background-repeat: no-repeat, no-repeat, no-repeat, center;
  background-size: auto;
  opacity: 1;
  z-index: -2;
}

.history-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 248, 239, 0.9), rgba(255, 248, 239, 0.68) 55%, rgba(255, 248, 239, 0.82));
  z-index: -1;
}

.photos-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.photos-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 51, 153, 0.18), transparent 14%),
    radial-gradient(circle at 82% 28%, rgba(51, 204, 255, 0.18), transparent 16%),
    radial-gradient(circle at 66% 78%, rgba(255, 228, 94, 0.16), transparent 14%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='320' viewBox='0 0 900 320'%3E%3Cg fill='none' stroke-linejoin='round'%3E%3Cg transform='translate(36 26) rotate(-7 92 120)'%3E%3Crect x='0' y='0' width='184' height='240' rx='24' fill='%23ff4aa6' fill-opacity='.18' stroke='%23ff3399' stroke-opacity='.52' stroke-width='8'/%3E%3Crect x='24' y='24' width='136' height='168' rx='16' fill='%23fff8ef' fill-opacity='.72' stroke='%23111111' stroke-opacity='.16' stroke-width='4'/%3E%3C/g%3E%3Cg transform='translate(264 132) rotate(5 136 82)'%3E%3Crect x='0' y='0' width='272' height='164' rx='24' fill='%2333ccff' fill-opacity='.18' stroke='%2333ccff' stroke-opacity='.5' stroke-width='8'/%3E%3Crect x='24' y='24' width='224' height='116' rx='16' fill='%23fff8ef' fill-opacity='.72' stroke='%23111111' stroke-opacity='.16' stroke-width='4'/%3E%3C/g%3E%3Cg transform='translate(612 24) rotate(8 92 120)'%3E%3Crect x='0' y='0' width='184' height='240' rx='24' fill='%23ffe45e' fill-opacity='.18' stroke='%23ffe45e' stroke-opacity='.56' stroke-width='8'/%3E%3Crect x='24' y='24' width='136' height='168' rx='16' fill='%23fff8ef' fill-opacity='.74' stroke='%23111111' stroke-opacity='.16' stroke-width='4'/%3E%3C/g%3E%3Cg transform='translate(566 172) rotate(-6 124 72)'%3E%3Crect x='0' y='0' width='248' height='144' rx='24' fill='%23ff3399' fill-opacity='.14' stroke='%23ff3399' stroke-opacity='.48' stroke-width='8'/%3E%3Crect x='24' y='24' width='200' height='96' rx='14' fill='%23fff8ef' fill-opacity='.7' stroke='%23111111' stroke-opacity='.14' stroke-width='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  background-repeat: no-repeat, no-repeat, no-repeat, center, no-repeat;
  background-size: auto, auto, auto, cover, auto;
  z-index: -2;
}

.photos-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 248, 239, 0.8), rgba(255, 248, 239, 0.62) 55%, rgba(255, 248, 239, 0.76));
  z-index: -1;
}

.videos-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.videos-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 26%, rgba(255, 51, 153, 0.16), transparent 12%),
    radial-gradient(circle at 82% 30%, rgba(51, 204, 255, 0.18), transparent 13%),
    radial-gradient(circle at 68% 74%, rgba(255, 228, 94, 0.18), transparent 12%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='320' viewBox='0 0 900 320'%3E%3Cg fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cg transform='translate(36 26) rotate(-8 120 92)'%3E%3Crect x='0' y='0' width='240' height='170' rx='28' fill='%23ff4aa6' fill-opacity='.20' stroke='%23ff3399' stroke-opacity='.55' stroke-width='8'/%3E%3Crect x='28' y='28' width='184' height='96' rx='18' fill='%23fff8ef' fill-opacity='.64' stroke='%23111111' stroke-opacity='.18' stroke-width='4'/%3E%3Cpath d='M72 150 L42 192' stroke='%23ff3399' stroke-opacity='.45' stroke-width='8'/%3E%3Cpath d='M168 150 L198 192' stroke='%23ff3399' stroke-opacity='.45' stroke-width='8'/%3E%3Cpath d='M98 -8 L122 18' stroke='%23ff3399' stroke-opacity='.5' stroke-width='8'/%3E%3Cpath d='M142 -8 L118 18' stroke='%23ff3399' stroke-opacity='.5' stroke-width='8'/%3E%3Ccircle cx='96' cy='142' r='8' fill='%23ffe45e' fill-opacity='.8'/%3E%3Ccircle cx='122' cy='142' r='8' fill='%2333ccff' fill-opacity='.8'/%3E%3C/g%3E%3Cg transform='translate(360 122) rotate(7 112 78)'%3E%3Crect x='0' y='0' width='224' height='156' rx='26' fill='%2333ccff' fill-opacity='.18' stroke='%2333ccff' stroke-opacity='.55' stroke-width='8'/%3E%3Crect x='24' y='24' width='176' height='88' rx='16' fill='%23fff8ef' fill-opacity='.62' stroke='%23111111' stroke-opacity='.16' stroke-width='4'/%3E%3Cpath d='M70 138 L46 180' stroke='%2333ccff' stroke-opacity='.42' stroke-width='8'/%3E%3Cpath d='M154 138 L178 180' stroke='%2333ccff' stroke-opacity='.42' stroke-width='8'/%3E%3Cpath d='M92 -8 L114 16' stroke='%2333ccff' stroke-opacity='.5' stroke-width='8'/%3E%3Cpath d='M132 -8 L110 16' stroke='%2333ccff' stroke-opacity='.5' stroke-width='8'/%3E%3Ccircle cx='100' cy='130' r='8' fill='%23ffe45e' fill-opacity='.82'/%3E%3Ccircle cx='126' cy='130' r='8' fill='%23ff3399' fill-opacity='.78'/%3E%3C/g%3E%3Cg transform='translate(654 28) rotate(-5 92 66)'%3E%3Crect x='0' y='0' width='184' height='132' rx='22' fill='%23ffe45e' fill-opacity='.18' stroke='%23ffe45e' stroke-opacity='.56' stroke-width='8'/%3E%3Crect x='22' y='20' width='140' height='74' rx='14' fill='%23fff8ef' fill-opacity='.62' stroke='%23111111' stroke-opacity='.16' stroke-width='4'/%3E%3Cpath d='M54 118 L34 152' stroke='%23ffe45e' stroke-opacity='.42' stroke-width='8'/%3E%3Cpath d='M130 118 L150 152' stroke='%23ffe45e' stroke-opacity='.42' stroke-width='8'/%3E%3Cpath d='M78 -8 L94 12' stroke='%23ffe45e' stroke-opacity='.52' stroke-width='8'/%3E%3Cpath d='M110 -8 L94 12' stroke='%23ffe45e' stroke-opacity='.52' stroke-width='8'/%3E%3Ccircle cx='80' cy='108' r='7' fill='%2333ccff' fill-opacity='.8'/%3E%3Ccircle cx='104' cy='108' r='7' fill='%23ff3399' fill-opacity='.76'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, center;
  background-size: auto, auto, auto, auto, cover;
  z-index: -2;
}

.videos-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 248, 239, 0.88), rgba(255, 248, 239, 0.66) 56%, rgba(255, 248, 239, 0.8));
  z-index: -1;
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.section-heading-with-image {
  grid-template-columns: minmax(0, 1fr) 460px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.section-heading-image {
  margin: 0;
  justify-self: center;
  width: 100%;
  max-width: 460px;
}

.section-heading-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.mood-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.mood-card {
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  border: 1px solid var(--line);
}

.mood-number {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--pink-deep);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 2rem;
}

.split-showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
}

.archive-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  align-items: start;
}

.archive-stack img,
.image-row img,
.photo-tile img {
  width: 100%;
  height: auto;
}

.archive-stack img {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.35rem;
  object-fit: contain;
  max-height: 560px;
  margin: 0 auto;
}

.text-link {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--pink-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.timeline-section {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.timeline-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.4rem;
  padding: 1.4rem;
}

.timeline-year {
  display: inline-flex;
  align-items: flex-start;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
  color: var(--pink-deep);
}

.year-suffix {
  display: inline-block;
  font-size: 0.62em;
  line-height: 1;
  vertical-align: top;
  transform: translateY(0.08em);
}

.image-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: 1rem;
}

.image-row-wide {
  grid-template-columns: repeat(5, 1fr);
}

.image-row img {
  border-radius: 18px;
  min-height: 0;
  background: rgba(255, 255, 255, 0.8);
  object-fit: contain;
}

.history-feature-row img {
  height: 320px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  align-items: start;
  margin-top: 1rem;
}

.photo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  transform: translateZ(0);
  padding: 0.5rem;
}

.photo-tile img {
  border-radius: 18px;
  cursor: zoom-in;
}

.enlargeable {
  cursor: zoom-in;
}

.photo-tile:nth-child(4n + 1) {
  transform: rotate(-1.2deg);
}

.photo-tile:nth-child(4n + 2) {
  transform: rotate(0.8deg);
}

.photo-tile:nth-child(4n + 3) {
  transform: rotate(-0.4deg);
}

.photo-tile:nth-child(4n + 4) {
  transform: rotate(1deg);
}

.video-section {
  margin-bottom: 1.5rem;
}

.videos-hero + .video-section {
  margin-top: 1.5rem;
}

.section-title-row {
  margin: 0 0 0.9rem;
}

.video-section .section-title-row h2 {
  max-width: none;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.video-card {
  padding: 1rem;
  background: rgba(17, 17, 17, 0.88);
  color: white;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.video-card figcaption {
  margin-bottom: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.video-card iframe,
.video-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: black;
}

.video-link-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 0.85rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.video-link-card:hover,
.video-link-card:focus-visible {
  transform: translateY(-3px);
}

.video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
}

.video-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.play-pill {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.82);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.video-link-copy {
  display: grid;
  gap: 0.25rem;
  padding: 0 0.15rem 0.15rem;
}

.video-link-copy strong {
  font-size: 1rem;
  line-height: 1.35;
}

.video-link-copy span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(17, 17, 17, 0.82);
  z-index: 40;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-image {
  width: auto;
  height: auto;
  max-width: min(92vw, 1200px);
  max-height: 86vh;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  background: white;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  border: 0;
  border-radius: 999px;
  background: white;
  color: var(--ink);
  padding: 0.8rem 1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.memorial {
  margin-bottom: 1.5rem;
  padding: 1.1rem 1.4rem;
  text-align: center;
  background: rgba(255, 248, 239, 0.92);
}

.memorial p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
}

.site-footer {
  padding: 1rem 0 0.5rem;
  text-align: center;
  color: white;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero,
  .split-showcase,
  .mood-grid,
  .cta-panel,
  .timeline-card,
  .photo-grid,
  .video-grid,
  .image-row,
  .image-row-wide,
  .archive-stack {
    grid-template-columns: 1fr;
  }

  .tilt-card {
    transform: none;
  }

  .photo-tile {
    transform: none !important;
  }

  .section-heading-with-image {
    grid-template-columns: 1fr;
  }

  .timeline-year {
    margin-bottom: 0.2rem;
  }

  .site-header {
    border-radius: 28px;
    flex-wrap: wrap;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding-top: 0.6rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    text-align: center;
  }

  h1 {
    font-size: clamp(2.4rem, 14vw, 4rem);
  }

  .brand-logo {
    width: min(220px, 58vw);
  }

  .hero,
  .section,
  .inner-hero,
  .story-panel,
  .archive-panel,
  .cta-panel {
    padding: 1rem;
  }

  .lightbox {
    display: none !important;
  }

  .photo-tile img {
    cursor: default;
  }

  .enlargeable {
    cursor: default;
  }
}
