@import url("https://fonts.googleapis.com/css2?family=Henny+Penny&family=Life+Savers:wght@400;700;800&display=swap");

:root {
  --bg: #fff8fd;
  --ink: #18060f;
  --ink-soft: #5d2140;
  --pink: #ff77c6;
  --pink-deep: #d10076;
  --pink-light: #ffe3f3;
  --pink-frost: #fff1f9;
  --blue: #89dcff;
  --green: #c5ff96;
  --yellow: #fff4a6;
  --red: #ff5f8f;
  --panel: rgba(255, 248, 253, 0.95);
  --shadow: 0 14px 0 #18060f;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Life Savers", serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.5) 0 2px, transparent 2.2px),
    radial-gradient(circle at 82% 18%, rgba(137, 220, 255, 0.45) 0 2px, transparent 2.2px),
    radial-gradient(circle at 24% 78%, rgba(255, 244, 166, 0.44) 0 2px, transparent 2.2px),
    radial-gradient(circle at 74% 72%, rgba(255, 86, 184, 0.35) 0 2px, transparent 2.2px),
    radial-gradient(circle at top left, rgba(255, 32, 166, 0.96) 0, transparent 34%),
    radial-gradient(circle at top right, rgba(255, 231, 244, 0.92) 0, transparent 32%),
    radial-gradient(circle at 50% 120%, rgba(255, 244, 166, 0.5) 0, transparent 36%),
    linear-gradient(180deg, #ffc1e3 0%, #ff169a 24%, #ff9ed4 56%, #fff0f8 100%);
  background-size: auto, 210px 210px, 260px 260px, 220px 220px, 280px 280px, auto, auto, auto;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(125deg, transparent 0 28%, rgba(255, 255, 255, 0.22) 38%, transparent 48%),
    linear-gradient(305deg, transparent 0 70%, rgba(255, 255, 255, 0.16) 79%, transparent 88%);
  pointer-events: none;
  z-index: -2;
}

.bg-burst {
  position: fixed;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.75;
  pointer-events: none;
  z-index: -2;
}

.bg-burst-a,
.bg-burst-c {
  width: 16rem;
  height: 16rem;
  background: rgba(255, 39, 160, 0.56);
  top: 4rem;
  right: -3rem;
}

.bg-burst-b,
.bg-burst-e {
  width: 18rem;
  height: 18rem;
  background: rgba(255, 222, 241, 0.72);
  bottom: 2rem;
  left: -5rem;
}

.bg-burst-d {
  width: 14rem;
  height: 14rem;
  background: rgba(255, 244, 166, 0.52);
  top: 10rem;
  left: -4rem;
}

.site-header,
.page-shell,
.hero,
.panel,
.trio-grid,
.gallery-grid,
.contact-layout {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0 0.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
  text-decoration: none;
  font-family: "Henny Penny", cursive;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.92);
  filter: saturate(1.08);
}

.brand-badge {
  display: grid;
  place-items: center;
  width: 5rem;
  height: 3rem;
  border: 3px solid var(--ink);
  border-radius: 40%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0) 32%),
    radial-gradient(circle at 32% 28%, #ffffff 0 12%, transparent 13%),
    linear-gradient(135deg, var(--pink-deep), var(--pink) 50%, var(--yellow));
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(-10deg);
}

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

.site-nav a,
.button,
.menu-toggle {
  border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: 4px 4px 0 var(--ink);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.site-nav a {
  padding: 0.8rem 1.1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 42%),
    rgba(255, 255, 255, 0.98);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.88rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.button:hover,
.button:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 var(--ink);
}

.menu-toggle {
  display: none;
  padding: 0.8rem 1rem;
  font: inherit;
  font-weight: 700;
  color: var(--ink);
  background: white;
  cursor: pointer;
}

.site-nav a.active {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 36%),
    linear-gradient(135deg, var(--pink-deep), #ff8ecf 50%, #fff6bd);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 2rem;
  padding: 4rem 0 2rem;
}

.eyebrow,
.section-kicker,
.mini-tag,
.chip {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero h1,
.page-intro h1,
.panel h2 {
  margin: 0 0 1rem;
  font-family: "Henny Penny", cursive;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  max-width: 8ch;
  letter-spacing: -0.04em;
  text-shadow:
    3px 3px 0 #ffffff,
    7px 7px 0 var(--ink);
  filter: saturate(1.08);
}

.lede,
.hero-copy p,
.panel p,
.gallery-card p,
.fact-box p,
.contact-card p,
.contact-form label {
  font-size: 1.05rem;
  line-height: 1.6;
}

.lede {
  max-width: 28rem;
  font-size: 1.15rem;
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.button.primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, var(--pink-light), var(--pink) 58%, var(--red));
}

.button.secondary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.12) 40%),
    linear-gradient(135deg, #ffffff, #fff0f8);
  color: var(--ink);
}

.hero-art {
  position: relative;
  min-height: 26rem;
}

.hero-stack {
  position: absolute;
  inset: 0;
}

.hero-photo,
.deco-card,
.gallery-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo {
  position: absolute;
  border: 4px solid var(--ink);
  border-radius: 24px;
  box-shadow: 8px 8px 0 var(--ink);
  background: linear-gradient(180deg, #ffffff, var(--pink-frost));
  padding: 0.22rem;
}

.hero-photo-a {
  top: 0.5rem;
  left: 1rem;
  width: 8.5rem;
  height: 11rem;
  transform: rotate(-9deg);
}

.hero-photo-b {
  right: 0.5rem;
  top: 8rem;
  width: 9.5rem;
  height: 9.5rem;
  border-radius: 999px;
  transform: rotate(8deg);
}

.hero-photo-c {
  bottom: 0.75rem;
  left: 5rem;
  width: 7rem;
  height: 7rem;
  border-radius: 22px;
  transform: rotate(-5deg);
}

.orb {
  position: absolute;
  border: 4px solid var(--ink);
  border-radius: 50%;
  box-shadow: 8px 8px 0 var(--ink);
}

.orb-pink {
  top: 1rem;
  right: 2rem;
  width: 12rem;
  height: 12rem;
  background: radial-gradient(circle at 35% 35%, #ffffff 0 14%, var(--pink-deep) 15% 44%, var(--pink) 45% 100%);
}

.orb-blue {
  bottom: 5rem;
  left: 0;
  width: 10rem;
  height: 10rem;
  background: radial-gradient(circle at 35% 35%, #f2fcff 0 14%, var(--blue) 15% 100%);
}

.orb-green {
  bottom: 1rem;
  right: 4.5rem;
  width: 8rem;
  height: 8rem;
  background: radial-gradient(circle at 35% 35%, #fbfff2 0 14%, var(--green) 15% 100%);
}

.hero-card,
.panel,
.power-card,
.gallery-card,
.fact-box,
.contact-form,
.contact-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.2) 24%, rgba(255, 255, 255, 0) 42%),
    var(--panel);
  backdrop-filter: blur(10px);
  border: 4px solid var(--ink);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  position: relative;
}

.hero-card {
  position: absolute;
  left: 4rem;
  top: 7rem;
  max-width: 18rem;
  padding: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.12) 32%, rgba(255, 255, 255, 0) 48%),
    linear-gradient(180deg, rgba(255, 241, 249, 1), rgba(255, 201, 231, 0.98));
  transform: rotate(-4deg);
  border-radius: 30px;
}

.hero-card::before,
.power-card::before,
.gallery-card::before,
.fact-box::before,
.contact-card::before {
  content: "DOLL";
  position: absolute;
  top: -0.9rem;
  right: 1rem;
  padding: 0.25rem 0.65rem;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: linear-gradient(135deg, #fff4a6, #fffbe0);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  transform: rotate(6deg);
}

.gallery-card::before {
  content: "ART";
  background: linear-gradient(135deg, #89dcff, #c5ff96);
}

.fact-box::before {
  content: "FACT";
  background: linear-gradient(135deg, #ffbde0, #fff9fd);
}

.contact-card::before {
  content: "CONTACT";
  background: linear-gradient(135deg, #ffe4f4, #f6ffe7);
}

.hero-card::after,
.power-card::after,
.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(110deg, transparent 0 32%, rgba(255, 255, 255, 0.34) 42%, transparent 54%);
  pointer-events: none;
}

.hero-card h2,
.contact-card h2 {
  margin: 0.25rem 0;
  font-family: "Henny Penny", cursive;
  font-size: 2.3rem;
  line-height: 1;
  text-transform: uppercase;
}

.panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  padding: 2rem;
  margin-block: 2rem;
}

.panel::after,
.gallery-card::after,
.fact-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, transparent 0 34%, rgba(255, 255, 255, 0.44) 43%, transparent 54%);
  pointer-events: none;
}

.speech-card {
  align-self: center;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #ffffff, #ffe3f3 46%, #fff5bf);
  border: 3px solid var(--ink);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.5);
  position: relative;
}

.speech-card::after {
  content: "★";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.4rem;
}

.speech-title {
  margin-top: 0;
  font-family: "Henny Penny", cursive;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.sparkle-list {
  padding-left: 1.2rem;
  margin: 0;
}

.sparkle-list li + li {
  margin-top: 0.75rem;
}

.trio-grid,
.facts-grid,
.gallery-grid {
  display: grid;
  gap: 1.4rem;
  padding-bottom: 3rem;
}

.trio-grid {
  grid-template-columns: repeat(3, 1fr);
}

.power-card,
.fact-box,
.gallery-card {
  padding: 1.4rem;
}

.power-card h2,
.gallery-card h2,
.fact-box h2 {
  margin: 0.4rem 0 0.6rem;
  font-family: "Henny Penny", cursive;
  font-size: 2.15rem;
  line-height: 1;
  text-transform: uppercase;
}

.blossom {
  background: linear-gradient(180deg, rgba(255, 206, 232, 1), rgba(255, 249, 253, 0.98));
}

.bubbles {
  background: linear-gradient(180deg, rgba(255, 237, 248, 1), rgba(238, 251, 255, 0.98));
}

.buttercup {
  background: linear-gradient(180deg, rgba(255, 226, 244, 1), rgba(249, 255, 229, 0.98));
}

.page-intro {
  padding: 3rem 0 1.5rem;
}

.page-intro h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  max-width: 12ch;
  text-shadow:
    2px 2px 0 #fff7fb,
    5px 5px 0 var(--ink);
}

.facts-grid {
  grid-template-columns: repeat(2, 1fr);
}

.fact-box.pink {
  background: linear-gradient(135deg, #ffbde0, #fff9fd);
}

.fact-box.blue {
  background: linear-gradient(135deg, #ffeaf5, #f2fcff);
}

.fact-box.green {
  background: linear-gradient(135deg, #ffe4f4, #f6ffe7);
}

.fact-box.yellow {
  background: linear-gradient(135deg, #fff4bc, #fffcef);
}

.timeline-list {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.timeline-dot {
  width: 1rem;
  height: 1rem;
  margin-top: 0.5rem;
  flex: 0 0 auto;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--pink);
}

.timeline-dot.danger {
  background: var(--green);
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-art {
  display: flex;
  align-items: end;
  min-height: 15rem;
  padding: 0;
  margin-bottom: 1rem;
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 -6px 0 rgba(34, 21, 37, 0.16);
  overflow: hidden;
  position: relative;
}

.gallery-trigger {
  width: 100%;
  appearance: none;
  cursor: zoom-in;
  background: transparent;
}

.gallery-trigger:focus-visible {
  outline: 4px solid white;
  outline-offset: 4px;
}

.gallery-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, transparent 0 48%, rgba(255, 255, 255, 0.4) 54%, transparent 60%);
  pointer-events: none;
}

.gallery-photo {
  position: absolute;
  inset: 0;
}

.gallery-art span {
  display: inline-block;
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.4rem 0.7rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.2) 42%),
    rgba(255, 247, 251, 0.92);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(18, 4, 11, 0.82);
  cursor: zoom-out;
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  padding: 1rem;
  border: 4px solid var(--ink);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.18) 30%, rgba(255, 255, 255, 0) 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 241, 249, 0.98));
  box-shadow: 0 18px 0 var(--ink);
}

.lightbox-image {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border: 3px solid var(--ink);
  border-radius: 20px;
  background: white;
}

.lightbox-close {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 3rem;
  height: 3rem;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-deep), #ff9bd6);
  box-shadow: 4px 4px 0 var(--ink);
  color: white;
  font: inherit;
  font-size: 1.6rem;
  font-weight: 800;
  cursor: pointer;
}

.lightbox-title {
  margin: 0.9rem 0 0;
  text-align: center;
  font-family: "Henny Penny", cursive;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.deco-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 3rem;
}

.deco-strip.compact {
  grid-template-columns: repeat(4, 1fr);
}

.deco-card {
  aspect-ratio: 1 / 1;
  border: 4px solid var(--ink);
  border-radius: 24px;
  box-shadow: 8px 8px 0 var(--ink);
  background: linear-gradient(180deg, #ffffff, #fff3fa);
  padding: 0.2rem;
}

.tilt-left {
  transform: rotate(-4deg);
}

.tilt-right {
  transform: rotate(4deg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  padding-bottom: 3rem;
}

.contact-form,
.contact-card {
  padding: 1.5rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 3px solid var(--ink);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.24) 40%),
    rgba(255, 255, 255, 0.92);
  font: inherit;
  color: var(--ink);
  box-shadow: inset 0 -4px 0 rgba(22, 9, 16, 0.12);
}

.form-note {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.12) 32%, rgba(255, 255, 255, 0) 46%),
    linear-gradient(180deg, rgba(255, 217, 239, 1), rgba(255, 246, 251, 0.99));
}

.contact-polaroids {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-stickers {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.5rem;
  font-size: 2rem;
}

@media (max-width: 900px) {
  .hero,
  .panel,
  .contact-layout,
  .trio-grid,
  .facts-grid,
  .gallery-grid,
  .deco-strip,
  .deco-strip.compact {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 21rem;
  }

  .lightbox-dialog {
    padding: 0.75rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

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

  .site-nav {
    display: none;
    width: 100%;
    padding-top: 0.5rem;
  }

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

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

  .hero {
    padding-top: 2rem;
  }

  .hero-card {
    left: 1rem;
    top: 8rem;
  }

  .hero-photo-a {
    width: 7rem;
    height: 9rem;
  }

  .hero-photo-b {
    width: 8rem;
    height: 8rem;
  }

  .hero-photo-c {
    left: 2rem;
  }
}
