@font-face {
  font-family: "BackToSchool";
  src: url("./assets/fonts/back-to-school.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "KGHappy";
  src: url("./assets/fonts/kg-happy.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "HalfTerm";
  src: url("./assets/fonts/half-term.ttf") format("truetype");
  font-display: swap;
}

:root {
  --ink: #572f42;
  --ink-deep: #38212f;
  --wine: #9f4056;
  --rose: #d56b7f;
  --pink: #f5b7c8;
  --peach: #ffd6b8;
  --paper: #fff9ec;
  --paper-deep: #f4e6cc;
  --lavender: #a898d8;
  --blue: #a7bce8;
  --sage: #b7cf9a;
  --gold: #e6af61;
  --shadow: 0 24px 60px rgba(74, 39, 56, 0.2);
  --soft-shadow: 0 12px 30px rgba(74, 39, 56, 0.16);
  --radius: 22px;
  --serif: Georgia, "Times New Roman", serif;
  --body: "Trebuchet MS", Verdana, sans-serif;
  --hand: "BackToSchool", "Comic Sans MS", cursive;
  --display: "KGHappy", "Trebuchet MS", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff8ed;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.age-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid #564ba4;
  outline-offset: 4px;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding-block: clamp(76px, 9vw, 132px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--ink-deep);
  border-radius: 10px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.kicker {
  margin: 0 0 7px;
  color: var(--wine);
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.07;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 12px 14px 11px 15px;
  font-family: var(--display);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 6px 0 rgba(56, 33, 47, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px) rotate(-0.4deg);
  box-shadow: 0 9px 0 rgba(56, 33, 47, 0.13);
}

.button:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 rgba(56, 33, 47, 0.13);
}

.button--ink {
  color: #fffdf7;
  background: var(--ink);
  border-color: var(--ink);
}

.button--ink:hover {
  background: var(--wine);
  border-color: var(--wine);
}

.button--paper {
  color: var(--ink);
  background: rgba(255, 250, 238, 0.9);
  border-color: rgba(87, 47, 66, 0.45);
}

.button--patreon {
  color: white;
  background: #e85b46;
  border-color: #e85b46;
}

/* Age gate */
.age-gate {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 1;
  visibility: visible;
  transition: opacity 400ms ease, visibility 400ms ease;
}

.age-gate.is-dismissed {
  opacity: 0;
  visibility: hidden;
}

.age-gate__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(63, 32, 49, 0.55), rgba(63, 32, 49, 0.68)),
    url("./assets/scenes/principal-office.webp") center / cover;
  filter: blur(5px);
  transform: scale(1.04);
}

.age-letter {
  position: relative;
  width: min(600px, 100%);
  padding: clamp(34px, 6vw, 58px);
  color: var(--ink-deep);
  background:
    repeating-linear-gradient(0deg, rgba(147, 86, 83, 0.035) 0 1px, transparent 1px 6px),
    var(--paper);
  border: 1px solid #d9c49e;
  box-shadow: 0 28px 100px rgba(30, 13, 23, 0.45);
  transform: rotate(-0.5deg);
}

.age-letter::after,
.principal-letter::after,
.notebook-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(159, 64, 86, 0.2);
  pointer-events: none;
}

.age-letter h1 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 7vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.age-letter p:not(.kicker) {
  font-family: var(--serif);
  font-size: 1.05rem;
}

.age-letter small {
  display: block;
  margin-top: 20px;
  opacity: 0.72;
}

.age-letter__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.academy-seal {
  position: absolute;
  top: 26px;
  right: 28px;
  display: grid;
  width: 58px;
  aspect-ratio: 1;
  place-items: center;
  color: #fff8ea;
  background: var(--wine);
  border: 5px double #f0b6b1;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 4px 8px rgba(63, 29, 44, 0.22);
  transform: rotate(8deg);
}

.paperclip {
  position: absolute;
  top: -12px;
  left: 40px;
  width: 18px;
  height: 58px;
  border: 3px solid #8c8391;
  border-radius: 12px;
  transform: rotate(8deg);
}

/* Header */
.notice-bar {
  position: relative;
  z-index: 50;
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 7px 20px;
  color: #fffdf8;
  background: var(--ink-deep);
  font-size: 0.82rem;
  text-align: center;
}

.notice-bar p {
  margin: 0;
}

.notice-bar a {
  color: #ffe2a8;
  font-weight: 700;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--ink-deep);
  background: rgba(255, 249, 236, 0.9);
  border-bottom: 1px solid rgba(87, 47, 66, 0.14);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 249, 236, 0.97);
  box-shadow: 0 8px 28px rgba(73, 40, 54, 0.12);
}

.nav {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--ink-deep);
  text-decoration: none;
}

.brand__crop {
  position: relative;
  display: block;
  width: 50px;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f6b7ca;
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(70, 31, 48, 0.18);
}

.brand__crop img {
  width: 125%;
  max-width: none;
  height: auto;
  transform: translate(-10%, -10%);
}

.brand__copy {
  display: grid;
  line-height: 1.05;
}

.brand__copy strong {
  font-family: var(--hand);
  font-size: 1.5rem;
  font-weight: 500;
}

.brand__copy small {
  margin-top: 3px;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
}

.nav__links > a {
  position: relative;
  padding-block: 7px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav__links > a:not(.nav__play)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav__links > a:hover::after {
  transform: scaleX(1);
}

.nav__play {
  padding: 10px 16px !important;
  color: white;
  background: var(--wine);
  border-radius: 10px 12px 9px 13px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink-deep);
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: max(690px, calc(100svh - 110px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: url("./assets/scenes/academy.webp") center 48% / cover no-repeat;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(62, 35, 47, 0.56) 0%, rgba(62, 35, 47, 0.22) 48%, rgba(62, 35, 47, 0.06) 72%),
    linear-gradient(0deg, rgba(59, 36, 49, 0.22), transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: 82px 112px;
}

.hero__note {
  position: relative;
  width: min(600px, 100%);
  padding: clamp(34px, 5vw, 58px);
  background:
    linear-gradient(90deg, transparent 44px, rgba(211, 104, 125, 0.19) 45px 47px, transparent 48px),
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(111, 137, 171, 0.13) 31px 32px),
    rgba(255, 250, 237, 0.95);
  border: 1px solid rgba(214, 188, 152, 0.9);
  box-shadow: var(--shadow);
  transform: rotate(-0.55deg);
}

.hero__note::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 50%;
  width: 128px;
  height: 30px;
  background: rgba(235, 204, 170, 0.78);
  box-shadow: 0 1px 2px rgba(83, 46, 62, 0.1);
  transform: translateX(-50%) rotate(1deg);
}

.hero h1 {
  margin: 0 0 18px;
  color: var(--ink-deep);
  font-family: var(--hand);
  font-size: clamp(4rem, 8vw, 7.4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.72;
}

.hero h1 span {
  display: block;
  margin: 0 0 17px 4px;
  font-family: var(--display);
  font-size: 0.16em;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.hero__lede {
  max-width: 50ch;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.65;
}

.hero__actions,
.chapter__actions,
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__fineprint {
  margin: 19px 0 0;
  color: rgba(56, 33, 47, 0.72);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 50%;
  display: grid;
  justify-items: center;
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-shadow: 0 2px 10px rgba(37, 17, 29, 0.8);
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero__scroll b {
  font-size: 1.5rem;
  animation: bob 1.8s ease-in-out infinite;
}

@keyframes bob {
  50% { transform: translateY(5px); }
}

.hero__petals i {
  position: absolute;
  z-index: 1;
  top: -40px;
  width: 16px;
  height: 9px;
  background: rgba(255, 223, 230, 0.88);
  border-radius: 80% 10% 80% 10%;
  animation: petal 11s linear infinite;
}

.hero__petals i:nth-child(1) { left: 8%; animation-delay: -2s; }
.hero__petals i:nth-child(2) { left: 34%; animation-delay: -7s; animation-duration: 14s; }
.hero__petals i:nth-child(3) { left: 59%; animation-delay: -4s; animation-duration: 12s; }
.hero__petals i:nth-child(4) { left: 77%; animation-delay: -9s; animation-duration: 15s; }
.hero__petals i:nth-child(5) { left: 93%; animation-delay: -5s; animation-duration: 13s; }

@keyframes petal {
  from { transform: translate3d(0, -5vh, 0) rotate(0); }
  50% { transform: translate3d(45px, 50vh, 0) rotate(180deg); }
  to { transform: translate3d(-20px, 108vh, 0) rotate(380deg); }
}

/* Invitation board */
.invitation {
  padding-block: clamp(60px, 8vw, 110px);
  background: #ead6f2;
}

.invitation__board {
  position: relative;
  min-height: 1060px;
  background: #e6bcae url("./assets/corkboard.png") center / cover no-repeat;
  border: 14px solid #dca874;
  border-right-color: #bd7d55;
  border-bottom-color: #b8754f;
  box-shadow: var(--shadow), inset 0 0 30px rgba(94, 50, 45, 0.2);
}

.principal-letter {
  position: absolute;
  z-index: 3;
  top: 110px;
  left: 50%;
  width: min(590px, calc(100% - 48px));
  padding: clamp(34px, 5.5vw, 62px);
  color: #4e3540;
  background:
    repeating-linear-gradient(0deg, rgba(156, 101, 83, 0.025) 0 1px, transparent 1px 5px),
    #fff7e8;
  border: 1px solid #e0ceb3;
  box-shadow: 0 18px 32px rgba(64, 33, 42, 0.25);
  font-family: var(--serif);
  line-height: 1.64;
  transform: translateX(-50%) rotate(-0.3deg);
}

.principal-letter h2 {
  margin-bottom: 25px;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  text-align: center;
}

.principal-letter p {
  margin-bottom: 17px;
}

.principal-letter em {
  color: var(--wine);
  font-weight: 700;
}

.principal-letter blockquote {
  margin: 26px -10px;
  padding: 20px 26px;
  color: var(--wine);
  border-top: 1px solid #d9adad;
  border-bottom: 1px solid #d9adad;
  font-size: 1.22rem;
  font-style: italic;
  line-height: 1.45;
  text-align: center;
}

.letter-salutation,
.letter-signoff {
  font-family: var(--hand) !important;
  font-size: 2.25rem;
  line-height: 1.05 !important;
}

.letter-signoff {
  margin-top: 26px;
  text-align: right;
  transform: rotate(-2deg);
}

.letter-welcome {
  color: var(--ink-deep);
  font-size: 1.16rem;
  font-weight: 700;
  text-align: center;
}

.letter-fold {
  position: absolute;
  inset: 50% 0 auto;
  border-top: 1px solid rgba(157, 120, 104, 0.1);
  box-shadow: 0 -1px rgba(255, 255, 255, 0.5);
}

.wax-seal {
  position: absolute;
  right: 50px;
  bottom: 40px;
  display: grid;
  width: 58px;
  aspect-ratio: 1;
  place-items: center;
  color: #f6d2bd;
  background: #a64558;
  border: 5px double #c86b72;
  border-radius: 48% 53% 49% 51%;
  font-family: var(--serif);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 4px 7px rgba(70, 32, 44, 0.25);
  transform: rotate(9deg);
}

.pinned-photo,
.bulletin {
  position: absolute;
  z-index: 4;
  box-shadow: var(--soft-shadow);
}

.pinned-photo {
  width: 190px;
  padding: 12px 12px 40px;
  background: #fffdf8;
  transform: rotate(-6deg);
}

.pinned-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.pinned-photo strong {
  position: absolute;
  right: 10px;
  bottom: 5px;
  left: 10px;
  font-family: var(--hand);
  font-size: 1.7rem;
  font-weight: 400;
  text-align: center;
}

.pinned-photo--lazuli {
  top: 70px;
  left: 38px;
}

.pushpin {
  position: absolute;
  z-index: 2;
  top: -9px;
  left: 50%;
  width: 20px;
  aspect-ratio: 1;
  background: radial-gradient(circle at 35% 30%, #f9e0ff 0 18%, #8f68b8 20% 70%, #63447f 72%);
  border-radius: 50%;
  box-shadow: 1px 4px 5px rgba(45, 26, 36, 0.34);
  transform: translateX(-50%);
}

.bulletin {
  width: 220px;
  padding: 30px 24px 24px;
  background: #fff8d8;
}

.bulletin h3 {
  margin: 0 0 10px;
  font-family: var(--hand);
  font-size: 2.2rem;
  font-weight: 500;
}

.bulletin p:not(.kicker) {
  font-size: 0.88rem;
  line-height: 1.5;
}

.bulletin--demo {
  right: 38px;
  top: 84px;
  background: #fff2c5;
  transform: rotate(4deg);
}

.bulletin--patreon {
  right: 32px;
  bottom: 52px;
  background: #e8ecff;
  transform: rotate(-3deg);
}

.tape {
  position: absolute;
  top: -12px;
  left: 50%;
  width: 98px;
  height: 28px;
  opacity: 0.76;
  transform: translateX(-50%) rotate(-2deg);
}

.tape--pink { background: #ef9eb2; }
.tape--blue { background: #9eb4df; }

.text-link {
  color: var(--wine);
  font-size: 0.82rem;
  font-weight: 800;
  text-underline-offset: 4px;
}

/* Chapter */
.chapter {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.chapter__scene {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(76, 43, 59, 0.48), rgba(76, 43, 59, 0.08)),
    url("./assets/scenes/classroom.webp") center / cover no-repeat;
}

.chapter__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: clamp(32px, 6vw, 78px);
  padding-block: 90px;
}

.notebook-card {
  position: relative;
  padding: clamp(34px, 5vw, 58px);
  background:
    linear-gradient(90deg, transparent 38px, rgba(211, 104, 125, 0.17) 39px 41px, transparent 42px),
    repeating-linear-gradient(0deg, transparent 0 29px, rgba(94, 119, 163, 0.13) 29px 30px),
    rgba(255, 250, 237, 0.97);
  box-shadow: var(--shadow);
  transform: rotate(-0.7deg);
}

.notebook-card h2 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}

.checklist {
  display: grid;
  gap: 10px;
  margin: 26px 0 32px;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  color: var(--wine);
  font-family: var(--hand);
  font-size: 1.5rem;
  transform: rotate(-8deg);
}

.chapter-polaroid {
  margin: 0;
  padding: 14px 14px 54px;
  background: #fffdf8;
  box-shadow: var(--shadow);
  transform: rotate(3.5deg);
}

.chapter-polaroid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 82% center;
}

.chapter-polaroid figcaption {
  margin-top: 13px;
  font-family: var(--hand);
  font-size: 1.9rem;
  line-height: 1;
  text-align: center;
}

/* Shared heading */
.section-heading {
  margin-bottom: clamp(38px, 5vw, 62px);
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 62ch;
  margin: 0 auto;
}

.section-heading--compact {
  margin-bottom: 38px;
}

/* Campus */
.campus {
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 202, 215, 0.55), transparent 25%),
    radial-gradient(circle at 87% 75%, rgba(170, 185, 230, 0.55), transparent 28%),
    #f9eddf;
}

.campus-tour {
  padding: clamp(16px, 2.5vw, 28px);
  background: #fff9ec;
  border: 1px solid #dcc6ac;
  box-shadow: var(--shadow);
}

.campus-view {
  position: relative;
  overflow: hidden;
  background: #7c6c7b;
  border: 8px solid #f2dfc3;
}

.campus-view > img {
  width: 100%;
  aspect-ratio: 16 / 8.3;
  object-fit: cover;
  transition: opacity 180ms ease, transform 600ms ease;
}

.campus-view.is-changing > img {
  opacity: 0.25;
  transform: scale(1.015);
}

.campus-view__caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(410px, calc(100% - 36px));
  padding: 20px 24px;
  color: var(--ink-deep);
  background: rgba(255, 249, 236, 0.92);
  box-shadow: 0 10px 25px rgba(54, 31, 43, 0.2);
  backdrop-filter: blur(9px);
}

.campus-view__caption strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.2;
}

.campus-view__caption p {
  margin: 7px 0 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.campus-stops {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 18px;
}

.campus-stop {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: white;
  background: var(--ink-deep);
  border: 3px solid transparent;
  cursor: pointer;
  box-shadow: 0 5px 10px rgba(60, 33, 47, 0.14);
  transition: transform 180ms ease, border-color 180ms ease;
}

.campus-stop:hover,
.campus-stop.is-active {
  border-color: var(--wine);
  transform: translateY(-3px);
}

.campus-stop img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.72;
}

.campus-stop span {
  position: absolute;
  inset: auto 0 0;
  padding: 24px 10px 8px;
  background: linear-gradient(transparent, rgba(42, 24, 35, 0.85));
  font-family: var(--display);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Cast */
.cast {
  background:
    linear-gradient(rgba(122, 72, 62, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 72, 62, 0.28) 1px, transparent 1px),
    #d59f7d;
  background-size: 36px 36px;
}

.cast__paper {
  position: relative;
  padding: clamp(40px, 6vw, 76px);
  background:
    repeating-linear-gradient(0deg, rgba(125, 147, 183, 0.08) 0 1px, transparent 1px 34px),
    #fff9ee;
  box-shadow: var(--shadow);
}

.cast__paper::before,
.cast__paper::after {
  content: "";
  position: absolute;
  top: -13px;
  width: 140px;
  height: 30px;
  background: rgba(224, 192, 156, 0.78);
}

.cast__paper::before { left: 9%; transform: rotate(-3deg); }
.cast__paper::after { right: 9%; transform: rotate(3deg); }

.cast-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(15px, 2vw, 25px);
}

.student-card {
  position: relative;
  margin: 0;
  padding: 9px 9px 42px;
  background: #fffdf8;
  box-shadow: 0 8px 18px rgba(67, 38, 50, 0.14);
  transform: rotate(var(--tilt, -1deg));
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.student-card:nth-child(2n) { --tilt: 1.2deg; }
.student-card:nth-child(3n) { --tilt: -1.7deg; }
.student-card:nth-child(5n) { --tilt: 2deg; }

.student-card:hover {
  z-index: 2;
  box-shadow: 0 16px 30px rgba(67, 38, 50, 0.2);
  transform: translateY(-6px) rotate(0deg);
}

.student-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #f5c3d6;
}

.student-card:nth-child(6n + 1) img { background: #b7c9ee; }
.student-card:nth-child(6n + 2) img { background: #fff0b4; }
.student-card:nth-child(6n + 3) img { background: #ffb08b; }
.student-card:nth-child(6n + 4) img { background: #aaa0dd; }
.student-card:nth-child(6n + 5) img { background: #cce0ad; }
.student-card:nth-child(6n + 6) img { background: #efb2d2; }

.student-card span {
  position: absolute;
  right: 8px;
  bottom: 5px;
  left: 8px;
  font-family: var(--hand);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1;
  text-align: center;
}

/* Patreon */
.patreon {
  position: relative;
  overflow: hidden;
  color: #fff9ef;
  background: #593b53;
}

.patreon__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(65, 35, 52, 0.92), rgba(65, 35, 52, 0.6) 48%, rgba(65, 35, 52, 0.83)),
    url("./assets/scenes/library.webp") center / cover no-repeat;
  filter: saturate(0.8);
  transform: scale(1.02);
}

.patreon__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.65fr);
  align-items: start;
  gap: clamp(35px, 6vw, 80px);
}

.patreon__intro {
  position: sticky;
  top: 118px;
}

.patreon__intro .kicker {
  color: #ffc8cf;
}

.patreon__intro h2 {
  color: white;
}

.patreon__intro p:not(.kicker) {
  max-width: 42ch;
  margin-bottom: 28px;
  color: rgba(255, 249, 239, 0.84);
}

.patreon-board {
  padding: clamp(22px, 4vw, 38px);
  color: var(--ink-deep);
  background: #fff8e9;
  box-shadow: 0 26px 60px rgba(31, 14, 24, 0.32);
  transform: rotate(0.35deg);
}

.patreon-tabs {
  display: inline-flex;
  gap: 7px;
  padding: 5px;
  background: #eadfcf;
  border-radius: 11px;
}

.patreon-tab {
  padding: 9px 14px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.patreon-tab.is-active {
  color: white;
  background: var(--wine);
  box-shadow: 0 4px 10px rgba(87, 47, 66, 0.2);
}

.feed-status {
  margin: 18px 0;
  color: #78636d;
  font-size: 0.8rem;
}

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

.post-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid #e2d4c0;
  box-shadow: 0 7px 18px rgba(68, 38, 50, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.post-card:hover {
  box-shadow: 0 14px 28px rgba(68, 38, 50, 0.17);
  transform: translateY(-4px) rotate(-0.4deg);
}

.post-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.post-card__visual {
  position: relative;
  overflow: hidden;
  background: #d6c1d2;
}

.post-card__visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 450ms ease, filter 220ms ease;
}

.post-card:hover .post-card__visual img {
  transform: scale(1.035);
}

.post-card.is-locked .post-card__visual img {
  filter: blur(13px) saturate(0.7) brightness(0.75);
  transform: scale(1.12);
}

.post-card.is-locked:hover .post-card__visual img {
  transform: scale(1.15);
}

.post-card__lock {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 7px;
  color: white;
  text-shadow: 0 2px 10px rgba(37, 17, 29, 0.75);
}

.post-card__lock b {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  background: rgba(87, 47, 66, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  font-size: 1.15rem;
  backdrop-filter: blur(5px);
}

.post-card__lock span {
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-card__body {
  padding: 18px;
}

.post-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 7px;
  color: #806c75;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.post-card__badge {
  color: #aa4558;
}

.post-card h3 {
  margin: 0;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 600;
}

.post-card__open {
  display: inline-block;
  margin-top: 14px;
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 800;
}

.patreon-board__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px dashed #bea99e;
}

.patreon-board__footer p {
  margin: 0;
  color: #7d6872;
  font-size: 0.77rem;
}

.lock-mini {
  color: var(--wine);
}

.see-more {
  flex: 0 0 auto;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

/* Gallery */
.gallery {
  background:
    radial-gradient(circle at 18% 20%, rgba(213, 107, 127, 0.13), transparent 24%),
    radial-gradient(circle at 82% 72%, rgba(168, 152, 216, 0.17), transparent 28%),
    linear-gradient(rgba(151, 123, 166, 0.07) 1px, transparent 1px),
    #f7eafa;
  background-size: auto, auto, 100% 32px, auto;
}

.yearbook {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(18px, 2.5vw, 30px);
  align-items: start;
  padding: clamp(38px, 5vw, 68px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 44%, rgba(92, 58, 62, 0.05) 49.8%, rgba(255, 255, 255, 0.35) 50.2%, transparent 56%),
    repeating-linear-gradient(0deg, transparent 0 35px, rgba(122, 142, 168, 0.06) 35px 36px),
    #fff7e4;
  border: 1px solid #dac6a7;
  border-radius: 4px 13px 7px 10px;
  box-shadow: 0 28px 65px rgba(74, 39, 56, 0.22), inset 0 0 40px rgba(130, 87, 55, 0.08);
  isolation: isolate;
}

.yearbook::before {
  position: absolute;
  z-index: 0;
  top: 18px;
  bottom: 18px;
  left: 50%;
  width: 2px;
  content: "";
  background: linear-gradient(transparent, rgba(107, 76, 72, 0.2) 9%, rgba(107, 76, 72, 0.2) 91%, transparent);
  box-shadow: -7px 0 16px rgba(75, 53, 49, 0.08), 7px 0 16px rgba(255, 255, 255, 0.7);
}

.yearbook > * {
  z-index: 1;
}

.scrapbook-heading {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 680px;
  margin-bottom: 8px;
  color: var(--ink);
  text-align: center;
  transform: rotate(-0.5deg);
}

.scrapbook-heading span,
.scrapbook-heading small {
  display: block;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.scrapbook-heading strong {
  display: block;
  margin: 3px 0 6px;
  font-family: var(--hand);
  font-size: clamp(2rem, 4.6vw, 3.7rem);
  font-weight: 400;
  line-height: 1;
}

.scrapbook-heading small {
  color: #936b72;
  font-size: 0.62rem;
}

.yearbook-photo {
  position: relative;
  padding: 11px 11px 68px;
  background: #fffdf8;
  border: 1px solid rgba(103, 70, 69, 0.12);
  cursor: zoom-in;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.yearbook-photo::before {
  position: absolute;
  z-index: 2;
  top: -10px;
  left: 50%;
  width: 78px;
  height: 23px;
  content: "";
  background: rgba(247, 201, 157, 0.72);
  box-shadow: 0 1px 2px rgba(67, 43, 38, 0.15);
  transform: translateX(-50%) rotate(-2deg);
}

.yearbook-photo:hover {
  z-index: 3;
  box-shadow: var(--shadow);
  transform: rotate(0) translateY(-5px);
}

.yearbook-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.yearbook-photo span {
  position: absolute;
  right: 10px;
  bottom: 7px;
  left: 10px;
  color: var(--ink);
  font-family: var(--hand);
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  line-height: 0.95;
  text-align: center;
}

.yearbook-photo--one { grid-column: 1 / span 5; transform: rotate(-1.8deg); }
.yearbook-photo--two { grid-column: 8 / span 5; margin-top: 28px; transform: rotate(2.2deg); }
.yearbook-photo--three { grid-column: 1 / span 4; margin-top: 16px; transform: rotate(1.6deg); }
.yearbook-photo--four { grid-column: 5 / span 4; margin-top: -2px; transform: rotate(-1.5deg); }
.yearbook-photo--five { grid-column: 9 / span 4; margin-top: 18px; transform: rotate(1.4deg); }

/* Final CTA */
.final-cta {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  padding-block: 80px;
  overflow: hidden;
  background: url("./assets/scenes/garden.webp") center / cover no-repeat;
}

.final-cta__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(73, 43, 58, 0.24), rgba(73, 43, 58, 0.44));
}

.final-cta__letter {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: clamp(40px, 7vw, 76px);
  color: var(--ink-deep);
  background: rgba(255, 249, 236, 0.96);
  border: 1px solid #dbc3a7;
  box-shadow: var(--shadow);
  text-align: center;
  transform: rotate(-0.35deg);
}

.final-cta__letter::before,
.final-cta__letter::after {
  content: "";
  position: absolute;
  top: -13px;
  width: 112px;
  height: 28px;
  background: rgba(229, 191, 158, 0.8);
}

.final-cta__letter::before { left: 35px; transform: rotate(-5deg); }
.final-cta__letter::after { right: 35px; transform: rotate(5deg); }

.final-cta__actions {
  justify-content: center;
  margin-top: 28px;
}

/* Footer */
.site-footer {
  padding-block: 48px 22px;
  color: #f8ebdd;
  background: var(--ink-deep);
}

.footer__inner,
.footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer__brand .brand__crop {
  width: 64px;
}

.footer__brand .brand__crop img {
  width: 125%;
  height: auto;
}

.footer__brand strong {
  font-family: var(--hand);
  font-size: 2rem;
  font-weight: 500;
}

.footer__brand p {
  margin: 0;
  color: rgba(248, 235, 221, 0.68);
  font-size: 0.78rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  color: #fff5ea;
  border: 1px solid rgba(255, 245, 234, 0.22);
  border-radius: 10px;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.social-links img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer__legal {
  margin-top: 35px;
  padding-top: 20px;
  color: rgba(248, 235, 221, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Sound */
.sound-desk {
  position: fixed;
  z-index: 250;
  right: 18px;
  bottom: 18px;
}

.sound-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 188px;
  padding: 10px 14px 10px 10px;
  color: var(--ink-deep);
  background: rgba(255, 249, 236, 0.95);
  border: 1px solid rgba(87, 47, 66, 0.23);
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(58, 31, 44, 0.22);
  text-align: left;
  backdrop-filter: blur(12px);
}

.sound-icon {
  display: grid;
  width: 38px;
  aspect-ratio: 1;
  place-items: center;
  color: white;
  background: var(--wine);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.sound-toggle > span:last-child {
  display: grid;
  line-height: 1.2;
}

.sound-toggle strong {
  font-size: 0.75rem;
}

.sound-toggle small {
  margin-top: 2px;
  color: #86717a;
  font-size: 0.65rem;
}

.sound-toggle[aria-pressed="true"] .sound-icon {
  background: var(--sage);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 6px rgba(183, 207, 154, 0.22); }
}

/* Lightbox */
.lightbox {
  width: min(1050px, calc(100% - 34px));
  max-height: calc(100svh - 34px);
  padding: 12px 12px 54px;
  overflow: visible;
  background: #fffdf8;
  border: 0;
  box-shadow: 0 28px 100px rgba(28, 12, 21, 0.55);
}

.lightbox::backdrop {
  background: rgba(44, 24, 36, 0.86);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: calc(100svh - 130px);
  object-fit: contain;
}

.lightbox p {
  position: absolute;
  right: 20px;
  bottom: 7px;
  left: 20px;
  margin: 0;
  font-family: var(--hand);
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
}

.lightbox__close {
  position: absolute;
  z-index: 2;
  top: -16px;
  right: -16px;
  display: grid;
  width: 44px;
  aspect-ratio: 1;
  place-items: center;
  color: white;
  background: var(--wine);
  border: 3px solid white;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.noscript {
  position: fixed;
  z-index: 10001;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 14px;
  color: white;
  background: var(--ink-deep);
  text-align: center;
}

/* Responsive */
@media (max-width: 1080px) {
  .nav__links {
    gap: 13px;
  }

  .nav__links > a {
    font-size: 0.72rem;
  }

  .pinned-photo--lazuli {
    left: 22px;
    width: 155px;
  }

  .bulletin {
    width: 180px;
    padding-inline: 19px;
  }

  .bulletin--demo { right: 18px; }
  .bulletin--patreon { right: 18px; }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav__links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    justify-items: center;
    gap: 4px;
    padding: 14px 20px 22px;
    background: rgba(255, 249, 236, 0.98);
    border-bottom: 1px solid rgba(87, 47, 66, 0.14);
    box-shadow: 0 15px 28px rgba(67, 36, 49, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-9px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav__links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__links > a {
    font-size: 0.78rem;
  }

  .chapter__content,
  .patreon__content {
    grid-template-columns: 1fr;
  }

  .chapter-polaroid {
    width: min(620px, 90%);
    margin-inline: auto;
  }

  .patreon__intro {
    position: relative;
    top: auto;
    max-width: 650px;
    text-align: center;
    margin-inline: auto;
  }

  .patreon__intro p:not(.kicker) {
    margin-inline: auto;
  }

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

  .pinned-photo,
  .bulletin {
    display: none;
  }

  .invitation__board {
    min-height: auto;
    padding: 70px 24px;
    background-position: center;
  }

  .principal-letter {
    position: relative;
    top: auto;
    left: auto;
    margin-inline: auto;
    transform: rotate(-0.3deg);
  }

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

@media (max-width: 680px) {
  html {
    scroll-padding-top: 86px;
  }

  .shell {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding-block: 70px;
  }

  .notice-bar {
    display: block;
    padding-block: 7px;
    line-height: 1.3;
  }

  .notice-bar a {
    display: none;
  }

  .nav {
    min-height: 64px;
  }

  .brand__crop {
    width: 44px;
  }

  .brand__crop img {
    width: 125%;
    height: auto;
  }

  .brand__copy small {
    display: none;
  }

  .hero {
    min-height: 760px;
    align-items: end;
    background-position: 61% center;
  }

  .hero__veil {
    background: linear-gradient(0deg, rgba(54, 31, 42, 0.72) 0%, rgba(54, 31, 42, 0.06) 72%);
  }

  .hero__content {
    padding-block: 180px 90px;
  }

  .hero__note {
    padding: 38px 26px 32px;
    background:
      repeating-linear-gradient(0deg, transparent 0 31px, rgba(111, 137, 171, 0.11) 31px 32px),
      rgba(255, 250, 237, 0.96);
  }

  .hero h1 {
    font-size: clamp(3.5rem, 18vw, 5.2rem);
  }

  .hero__actions .button,
  .chapter__actions .button,
  .final-cta__actions .button,
  .age-letter__actions .button {
    width: 100%;
  }

  .hero__scroll {
    display: none;
  }

  .invitation {
    padding-block: 38px;
  }

  .invitation__board {
    width: calc(100% - 16px);
    padding: 42px 10px;
    border-width: 8px;
    background: #d7a181;
  }

  .principal-letter {
    width: 100%;
    padding: 40px 25px 46px;
  }

  .principal-letter h2 {
    font-size: 2.35rem;
  }

  .principal-letter blockquote {
    margin-inline: 0;
    padding-inline: 12px;
    font-size: 1.03rem;
  }

  .letter-salutation,
  .letter-signoff {
    font-size: 1.8rem;
  }

  .wax-seal {
    right: 24px;
    bottom: 30px;
    width: 50px;
  }

  .chapter {
    min-height: auto;
  }

  .chapter__content {
    padding-block: 70px;
  }

  .notebook-card {
    padding: 40px 25px;
  }

  .notebook-card h2 {
    font-size: 2.75rem;
  }

  .chapter-polaroid {
    width: 88%;
    transform: rotate(1deg);
  }

  .campus-tour {
    width: calc(100% - 16px);
    padding: 9px;
  }

  .campus-view {
    border-width: 4px;
  }

  .campus-view > img {
    aspect-ratio: 4 / 3;
  }

  .campus-view__caption {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    box-shadow: none;
  }

  .campus-stops {
    gap: 8px;
  }

  .cast__paper {
    width: calc(100% - 16px);
    padding: 48px 14px;
  }

  .cast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .student-card {
    padding: 6px 6px 35px;
  }

  .student-card span {
    font-size: 1.55rem;
  }

  .patreon__content {
    width: calc(100% - 24px);
  }

  .patreon-board {
    padding: 18px 12px 22px;
  }

  .patreon-tabs {
    width: 100%;
  }

  .patreon-tab {
    flex: 1;
    padding-inline: 7px;
    font-size: 0.64rem;
  }

  .post-grid {
    grid-template-columns: 1fr;
  }

  .patreon-board__footer {
    display: grid;
  }

  .yearbook {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 16px 34px;
    background:
      repeating-linear-gradient(0deg, transparent 0 35px, rgba(122, 142, 168, 0.06) 35px 36px),
      #fff7e4;
  }

  .yearbook::before {
    display: none;
  }

  .scrapbook-heading {
    grid-column: auto;
    padding-inline: 8px;
  }

  .yearbook-photo,
  .yearbook-photo--one,
  .yearbook-photo--two,
  .yearbook-photo--three,
  .yearbook-photo--four,
  .yearbook-photo--five {
    grid-column: auto;
    width: 92%;
    margin: 0 auto;
  }

  .final-cta {
    min-height: 580px;
  }

  .final-cta__letter {
    width: calc(100% - 24px);
    padding: 46px 24px;
  }

  .footer__inner,
  .footer__legal {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .footer__brand {
    display: grid;
    justify-items: center;
  }

  .social-links {
    justify-content: center;
  }

  .sound-desk {
    right: 10px;
    bottom: 10px;
  }

  .sound-toggle {
    min-width: 0;
    padding: 8px;
    border-radius: 50%;
  }

  .sound-toggle > span:last-child {
    display: none;
  }
}

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

  .hero__petals {
    display: none;
  }
}
