:root {
  color-scheme: light;
  --ink: #211a1d;
  --paper: #fffaf4;
  --pink: #ff4f88;
  --coral: #ff7a59;
  --sun: #ffd166;
  --mint: #7bdcb5;
  --blue: #1d6f91;
  --charcoal: #121012;
  --shadow: 0 22px 70px rgba(33, 26, 29, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

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

.site-banner {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 22px;
  background: rgba(255, 250, 244, 0.78);
  border-bottom: 1px solid rgba(33, 26, 29, 0.1);
  backdrop-filter: blur(18px);
}

.wordmark {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  text-transform: lowercase;
}

nav a {
  padding: 9px 11px;
  border: 1px solid transparent;
}

nav a:hover,
nav a:focus-visible {
  border-color: rgba(33, 26, 29, 0.18);
  outline: none;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: 118px 24px 58px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(18, 16, 18, 0.86), rgba(18, 16, 18, 0.54) 45%, rgba(18, 16, 18, 0.12)),
    linear-gradient(145deg, rgba(255, 79, 136, 0.7), rgba(255, 209, 102, 0.28) 42%, rgba(123, 220, 181, 0.3)),
    url("assets/mae-standing.png") right bottom / auto 105% no-repeat,
    #f7d7c8;
}

.hero::after {
  content: "haalleerrrr";
  position: absolute;
  right: -44px;
  bottom: 8px;
  color: rgba(255, 250, 244, 0.2);
  font-size: 118px;
  font-weight: 950;
  line-height: 0.8;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  color: #fffaf4;
}

.kicker {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.94;
}

h1 {
  max-width: 100%;
  font-size: 76px;
  overflow-wrap: anywhere;
}

h2 {
  font-size: 42px;
}

.tagline {
  margin: 12px 0 0;
  color: var(--sun);
  font-size: 33px;
  font-weight: 900;
  line-height: 1;
}

.intro {
  max-width: 590px;
  margin: 22px 0 0;
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 17px;
  border: 2px solid transparent;
  font-size: 15px;
  font-weight: 900;
}

.button.primary {
  background: var(--sun);
  color: var(--ink);
}

.button.secondary {
  border-color: rgba(255, 250, 244, 0.7);
  color: #fffaf4;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.receipt-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) 1fr;
  align-items: stretch;
  background: var(--charcoal);
  color: #fffaf4;
}

.receipt-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px;
}

.receipt-copy h2 {
  color: #fffaf4;
}

.receipt-media {
  display: grid;
  grid-template-columns: 1fr minmax(180px, 260px);
  min-width: 0;
}

.receipt-media img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  opacity: 0.96;
}

.gallery-section,
.greeting,
.merch-section,
.video-section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.gallery-section,
.merch-section,
.video-section {
  padding: 78px 0 34px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-heading .kicker,
.greeting .kicker {
  color: var(--pink);
}

.merch-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 14px;
}

.merch-tile {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.merch-tile.featured-merch {
  grid-row: span 2;
  grid-column: span 1;
}

.merch-tile img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.featured-merch img {
  min-height: 534px;
}

.choker-mockup {
  background: #f7f7f7;
}

.choker-word {
  position: absolute;
  top: 13%;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  color: var(--pink);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 26px;
  font-weight: 700;
  text-shadow:
    0 0 1px #fffaf4,
    0 0 8px rgba(255, 79, 136, 0.55),
    0 2px 4px rgba(18, 16, 18, 0.55);
  white-space: nowrap;
  pointer-events: none;
}

.merch-tile figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 9px;
  background: rgba(255, 79, 136, 0.94);
  color: #fffaf4;
  font-size: 13px;
  font-weight: 900;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 230px;
  gap: 14px;
}

.photo-tile {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.photo-tile.tall {
  grid-row: span 2;
}

.photo-tile.wide {
  grid-column: span 2;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-tile figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 9px;
  background: rgba(255, 250, 244, 0.9);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

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

.video-grid video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--charcoal);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.greeting {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 38px;
  align-items: center;
  padding: 58px 0 82px;
}

.greeting-image {
  overflow: hidden;
  background: var(--mint);
  box-shadow: var(--shadow);
}

.greeting-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.greeting-copy {
  padding: 28px 0;
}

.greeting-copy p:not(.kicker) {
  max-width: 620px;
  font-size: 20px;
  line-height: 1.65;
}

.signoff {
  color: var(--blue);
  font-weight: 900;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  background: var(--ink);
  color: #fffaf4;
  font-size: 14px;
  font-weight: 900;
}

@media (max-width: 760px) {
  .site-banner {
    position: absolute;
    padding: 12px 14px;
  }

  .wordmark {
    font-size: 19px;
  }

  nav {
    gap: 2px;
    font-size: 13px;
  }

  nav a {
    padding: 8px 7px;
  }

  .hero {
    min-height: 86vh;
    padding: 92px 18px 34px;
    background:
      linear-gradient(180deg, rgba(18, 16, 18, 0.06), rgba(18, 16, 18, 0.9)),
      linear-gradient(145deg, rgba(255, 79, 136, 0.54), rgba(255, 209, 102, 0.26) 42%, rgba(123, 220, 181, 0.38)),
      url("assets/mae-standing.png") center top / auto 73% no-repeat,
      #f7d7c8;
  }

  .hero::after {
    right: -20px;
    bottom: 6px;
    font-size: 56px;
  }

  h1 {
    font-size: 47px;
  }

  h2 {
    font-size: 32px;
  }

  .tagline {
    font-size: 25px;
  }

  .intro,
  .greeting-copy p:not(.kicker) {
    font-size: 17px;
  }

  .hero-actions {
    gap: 9px;
  }

  .button {
    width: 100%;
  }

  .section-heading {
    display: block;
  }

  .receipt-band,
  .receipt-media,
  .merch-grid,
  .photo-grid,
  .video-grid,
  .greeting {
    grid-template-columns: 1fr;
  }

  .receipt-band img {
    min-height: 150px;
  }

  .merch-tile.featured-merch {
    grid-row: span 1;
  }

  .featured-merch img,
  .merch-tile img {
    min-height: 280px;
  }

  .choker-word {
    top: 12%;
    font-size: 22px;
  }

  .photo-grid {
    grid-auto-rows: 255px;
  }

  .photo-tile.tall {
    grid-row: span 1;
  }

  .photo-tile.wide {
    grid-column: span 1;
  }

  .greeting {
    gap: 18px;
    padding-top: 36px;
  }

  .greeting-image img {
    height: 440px;
  }

  .footer {
    flex-direction: column;
  }
}
