/* Layout and components. Colors, fonts, and titles
   live in css/theme.css so look updates stay in one file. */

:root {
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-2xl: 4.5rem;
  --max-width: 72rem;
  --header-height: 4.25rem;
  --radius: 999px;
  --ease: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--scroll-thumb) color-mix(in srgb, var(--bg) 88%, var(--scroll-thumb));
  background-color: var(--bg);
}

html::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-track {
  background: color-mix(in srgb, var(--bg) 88%, var(--scroll-thumb));
}

html::-webkit-scrollbar-thumb {
  background: var(--scroll-thumb);
  border-radius: var(--radius);
  border: 2px solid color-mix(in srgb, var(--bg) 88%, var(--scroll-thumb));
}

html::-webkit-scrollbar-thumb:hover {
  background: var(--scroll-thumb-hover);
}

body {
  margin: 0;
  min-height: 100vh;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--page-glow);
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

html.is-lightbox-open iframe {
  content-visibility: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

/* Make the HTML hidden attribute win over display rules like .btn */
[hidden] {
  display: none !important;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  background: var(--pink);
  color: var(--black);
  padding: 0.6rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-height);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 var(--border);
}

.site-header__inner {
  position: relative;
  width: min(100% - 1.5rem, var(--max-width));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.logo {
  font-family: var(--font-script);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--pink-heading);
}

.nav {
  display: none;
  align-items: stretch;
  flex-direction: column;
  gap: 0.15rem;
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 0;
  right: 0;
  padding: 0.75rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: 0 16px 40px rgba(10, 10, 10, 0.28);
  z-index: 25;
}

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

.nav a {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--ease);
  padding: 0.75rem 0.85rem;
  border-radius: 0.7rem;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--pink);
}

.nav a[data-nav-shop],
.nav a[data-nav-subscribe] {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--cta-ghost-border);
  border-radius: var(--radius);
}

.nav a[data-nav-shop]:hover,
.nav a[data-nav-shop]:focus-visible,
.nav a[data-nav-subscribe]:hover,
.nav a[data-nav-subscribe]:focus-visible {
  background: var(--pink-soft);
  border-color: var(--pink);
}

.nav__icon {
  width: 0.95em;
  height: 0.95em;
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  transition: border-color var(--ease), background var(--ease);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--pink);
  background: var(--pink-soft);
}

.nav-toggle__bar {
  display: block;
  width: 14px;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--ease), opacity var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.theme-toggle {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  line-height: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  display: grid;
  place-items: center;
  transition: border-color var(--ease), background var(--ease);
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: var(--pink);
  background: var(--pink-soft);
}

.theme-toggle__icon {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.theme-toggle__icon--sun,
html[data-theme="light"] .theme-toggle__icon--moon {
  display: none;
}

html[data-theme="light"] .theme-toggle__icon--sun {
  display: block;
}

.hero,
.section {
  scroll-margin-top: var(--header-height);
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: stretch;
}

.hero__inner {
  width: min(100% - 1.5rem, var(--max-width));
  margin-inline: auto;
  padding: var(--space-xl) 0 var(--space-2xl);
  display: grid;
  gap: var(--space-xl);
  overflow: visible;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
  max-width: 36rem;
  /* Lets the name shrink inside the two-column grid instead of spilling. */
  min-width: 0;
}

.hero__eyebrow {
  margin: 0;
  color: var(--pink-heading);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 0.72em;
  height: 0.72em;
  margin-right: 0.42em;
  vertical-align: 0.02em;
  background: var(--pink);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.hero__title {
  margin: 0;
}

.hero__title.cutout-title {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.32em;
  width: 100%;
  font-size: clamp(1.65rem, 5vw, 3rem);
}

.hero__tagline {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 300;
}

.hero__promo {
  position: relative;
  display: block;
  width: fit-content;
  margin: 1.15rem auto 0.5rem;
  padding: 0.35rem 0.85rem;
  color: var(--pink-heading);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  animation: hero-promo-float 2.6s ease-in-out infinite;
}

.hero__promo-pointer {
  position: absolute;
  right: -1.55rem;
  bottom: -1.05rem;
  z-index: 2;
  width: 2.35rem;
  pointer-events: none;
  animation: promo-pointer-poke 1.7s ease-in-out infinite;
}

.hero__promo-pointer img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__promo-label {
  position: relative;
  display: inline-block;
  padding-bottom: 0.12em;
  color: var(--pink-heading);
  border-bottom: 2px solid var(--pink-heading);
}

.hero__promo-label::after {
  content: attr(data-hero-promo-label);
  position: absolute;
  left: 0;
  top: 0;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  white-space: nowrap;
  background-image: linear-gradient(
    105deg,
    transparent 0%,
    transparent 42%,
    rgba(255, 255, 255, 0.2) 47%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(255, 255, 255, 0.2) 53%,
    transparent 58%,
    transparent 100%
  );
  background-size: 280% 100%;
  background-position: 140% 0;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
  animation: promo-shine 6.4s ease-in-out infinite;
}

.hero__promo:hover .hero__promo-label::after,
.hero__promo:focus-visible .hero__promo-label::after {
  animation-duration: 4.8s;
}

.hero__promo-sparkle {
  position: absolute;
  z-index: 1;
  width: 0.72rem;
  height: 0.72rem;
  pointer-events: none;
  background: #fff;
  clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
  filter: drop-shadow(0 0 6px #fff) drop-shadow(0 0 10px var(--pink));
  animation: promo-twinkle 1.8s ease-in-out infinite;
}

.hero__promo-sparkle--1 {
  left: -0.35rem;
  top: 0.05rem;
}

.hero__promo-sparkle--2 {
  left: 16%;
  top: -0.38rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--pink);
  animation-delay: 0.28s;
}

.hero__promo-sparkle--3 {
  right: 12%;
  top: -0.28rem;
  width: 0.42rem;
  height: 0.42rem;
  animation-delay: 0.7s;
}

.hero__promo-sparkle--4 {
  right: -0.28rem;
  bottom: 0.08rem;
  width: 0.62rem;
  height: 0.62rem;
  background: var(--pink);
  animation-delay: 0.45s;
}

.hero__promo-sparkle--5 {
  left: 48%;
  bottom: -0.18rem;
  width: 0.36rem;
  height: 0.36rem;
  animation-delay: 0.95s;
}

.hero__promo:hover,
.hero__promo:focus-visible {
  filter: brightness(1.12);
}

@keyframes hero-promo-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.45rem);
  }
}

@keyframes promo-shine {
  0%,
  28% {
    background-position: 140% 0;
  }
  72%,
  100% {
    background-position: -140% 0;
  }
}

@keyframes promo-pointer-poke {
  0%,
  100% {
    transform: rotate(10deg) translate(0, 0);
  }
  50% {
    transform: rotate(5deg) translate(-0.12rem, -0.1rem);
  }
}

@keyframes promo-twinkle {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.45) rotate(0deg);
  }
  45% {
    opacity: 1;
    transform: scale(1.15) rotate(18deg);
  }
  70% {
    opacity: 0.7;
    transform: scale(0.8) rotate(-8deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__promo,
  .hero__promo-label::after,
  .hero__promo-sparkle,
  .hero__promo-pointer,
  .music-banner {
    animation: none;
  }

  .hero__promo-label::after {
    content: none;
  }

  .hero__promo-sparkle {
    opacity: 0.7;
    transform: none;
  }

  .hero__promo-pointer {
    transform: rotate(10deg);
  }

  .about__preview,
  .about__rest {
    transition: none;
  }

  .gallery__card,
  .gallery__card.is-in,
  .gallery__card.is-out {
    transition: none;
    filter: none;
    transform: none;
    opacity: 1;
  }

  .gallery__card:hover,
  .gallery__card:focus-visible {
    border-color: var(--border);
  }

  .gallery-overlay__item:hover,
  .gallery-overlay__item:focus-visible {
    border-color: var(--border);
  }

  .gallery-zoom,
  .gallery-zoom[open],
  .gallery-zoom__image {
    animation: none;
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform var(--ease), opacity var(--ease), background var(--ease);
}

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

.btn--primary {
  background: var(--cta-bg);
  color: var(--cta-text);
}

.btn--ghost {
  border: 1px solid var(--cta-ghost-border);
  background: transparent;
  color: var(--text);
}

.hero__media {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0.75rem;
}

.hero__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--hero-visual);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
}

.hero__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  word-break: break-word;
}

.section {
  position: relative;
  padding: var(--space-2xl) 0;
  overflow: visible;
}

.section__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 1.5rem, var(--max-width));
  margin-inline: auto;
}

.section-stickers {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.section-sticker {
  position: absolute;
  display: block;
  width: 2.55rem;
  height: auto;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  filter:
    drop-shadow(2px 0 0 #fff)
    drop-shadow(-2px 0 0 #fff)
    drop-shadow(0 2px 0 #fff)
    drop-shadow(0 -2px 0 #fff)
    drop-shadow(0 8px 10px rgba(18, 16, 14, 0.18));
}

html[data-theme="dark"] .section-sticker {
  filter:
    drop-shadow(2px 0 0 #f4f1ec)
    drop-shadow(-2px 0 0 #f4f1ec)
    drop-shadow(0 2px 0 #f4f1ec)
    drop-shadow(0 -2px 0 #f4f1ec)
    drop-shadow(0 10px 12px rgba(0, 0, 0, 0.42));
}

.section-sticker--glyph {
  width: 2.2rem;
  aspect-ratio: 1;
  background: var(--pink);
  -webkit-mask: var(--sticker-src) center / contain no-repeat;
  mask: var(--sticker-src) center / contain no-repeat;
}

.contact .section-sticker--b {
  --sticker-src: url("../public/images/stickers/message.svg");
}

.mailing .section-sticker--b {
  --sticker-src: url("../public/images/stickers/at.svg");
}

.mailing .section-sticker--a {
  filter:
    drop-shadow(2px 0 0 var(--pink))
    drop-shadow(-2px 0 0 var(--pink))
    drop-shadow(0 2px 0 var(--pink))
    drop-shadow(0 -2px 0 var(--pink))
    drop-shadow(0 8px 10px rgba(18, 16, 14, 0.18));
}

html[data-theme="dark"] .mailing .section-sticker--a {
  filter:
    drop-shadow(2px 0 0 #f4f1ec)
    drop-shadow(-2px 0 0 #f4f1ec)
    drop-shadow(0 2px 0 #f4f1ec)
    drop-shadow(0 -2px 0 #f4f1ec)
    drop-shadow(0 10px 12px rgba(0, 0, 0, 0.42));
}

/* Phones: keep stickers next to the section title so they show on arrival. */
.music .section-sticker--a { left: 0.4rem; top: 0.9rem; bottom: auto; transform: rotate(-16deg); }
.music .section-sticker--b { right: 3.35rem; top: 2.35rem; bottom: auto; transform: rotate(18deg); }
.videos .section-sticker--a { left: 0.4rem; top: 2.2rem; bottom: auto; transform: rotate(12deg); }
.videos .section-sticker--b { right: 3.35rem; top: 0.75rem; bottom: auto; transform: rotate(-10deg); }
.updates .section-sticker--a { left: 0.4rem; top: 0.85rem; bottom: auto; transform: rotate(-12deg); }
.updates .section-sticker--b { right: 3.35rem; top: 2.5rem; bottom: auto; transform: rotate(14deg); }
.gallery .section-sticker--a { left: 0.4rem; top: 2.15rem; bottom: auto; transform: rotate(-8deg); }
.gallery .section-sticker--b { right: 3.35rem; top: 0.7rem; bottom: auto; transform: rotate(16deg); }
.contact .section-sticker--a { left: 0.4rem; top: 0.8rem; bottom: auto; transform: rotate(10deg); }
.contact .section-sticker--b { right: 3.35rem; top: 2.4rem; bottom: auto; transform: rotate(-14deg); }
.mailing .section-sticker--a { left: 0.4rem; top: 2.2rem; bottom: auto; transform: rotate(-11deg); }
.mailing .section-sticker--b { right: 3.35rem; top: 0.7rem; bottom: auto; transform: rotate(15deg); }

html.is-lightbox-open .section-stickers {
  opacity: 0;
}

@media (max-width: 430px) {
  .section-sticker {
    width: 2.2rem;
  }

  .section-sticker--glyph {
    width: 1.95rem;
  }

  .music .section-sticker--b,
  .videos .section-sticker--b,
  .updates .section-sticker--b,
  .gallery .section-sticker--b,
  .contact .section-sticker--b,
  .mailing .section-sticker--b {
    right: 3.15rem;
  }
}

@media (min-width: 800px) and (max-width: 1279px) {
  .section-sticker {
    width: 3.1rem;
  }

  .section-sticker--glyph {
    width: 2.55rem;
  }

  .music .section-sticker--a,
  .videos .section-sticker--a,
  .updates .section-sticker--a,
  .gallery .section-sticker--a,
  .contact .section-sticker--a,
  .mailing .section-sticker--a {
    left: 0.55rem;
  }

  .music .section-sticker--b,
  .videos .section-sticker--b,
  .updates .section-sticker--b,
  .gallery .section-sticker--b,
  .contact .section-sticker--b,
  .mailing .section-sticker--b {
    right: 3.55rem;
  }
}

@media (min-width: 1280px) {
  .section {
    --sticker-gutter: calc((100% - min(100% - 1.5rem, var(--max-width))) / 2);
    --sticker-gap: 2.25rem;
    --sticker-size: min(4.8rem, max(0px, calc(var(--sticker-gutter) - var(--sticker-gap) - 0.9rem)));
    --sticker-inset: max(0.9rem, calc(var(--sticker-gutter) - var(--sticker-size) - var(--sticker-gap)));
  }

  .section-sticker {
    width: min(4.6rem, var(--sticker-size));
  }

  .section-sticker--glyph {
    width: min(3.5rem, var(--sticker-size));
  }

  .section .section-sticker--a {
    left: var(--sticker-inset);
  }

  .section .section-sticker--b {
    right: var(--sticker-inset);
  }

  .music .section-sticker--a { top: 18%; bottom: auto; width: min(5.2rem, var(--sticker-size)); }
  .music .section-sticker--b { top: auto; bottom: 12%; width: min(4.5rem, var(--sticker-size)); }
  .videos .section-sticker--a { top: auto; bottom: 16%; width: min(5rem, var(--sticker-size)); }
  .videos .section-sticker--b { top: 22%; bottom: auto; width: min(3.6rem, var(--sticker-size)); }
  .updates .section-sticker--a { top: 28%; bottom: auto; width: min(4.7rem, var(--sticker-size)); }
  .updates .section-sticker--b { top: auto; bottom: 18%; width: min(4.1rem, var(--sticker-size)); }
  .gallery .section-sticker--a { top: auto; bottom: 20%; width: min(4.9rem, var(--sticker-size)); }
  .gallery .section-sticker--b { top: 24%; bottom: auto; width: min(3.4rem, var(--sticker-size)); }
  .contact .section-sticker--a { top: auto; bottom: 14%; width: min(4.4rem, var(--sticker-size)); }
  .contact .section-sticker--b { top: 26%; bottom: auto; width: min(3.5rem, var(--sticker-size)); }
  .mailing .section-sticker--a { top: 22%; bottom: auto; width: min(3.9rem, var(--sticker-size)); }
  .mailing .section-sticker--b { top: auto; bottom: 16%; width: min(3.4rem, var(--sticker-size)); }
}

.section__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  overflow: visible;
}

.section__eyebrow {
  margin: 0 0 var(--space-xs);
  color: var(--pink-heading);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section__title {
  position: relative;
  margin: 0.2em 0 0.15em;
}

.section__title.cutout-title {
  font-size: clamp(1.45rem, 4.2vw, 2.35rem);
}

.about .section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.about .section__eyebrow::after {
  content: "";
  width: var(--title-star-size);
  height: var(--title-star-size);
  background: var(--title-star-color);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  transform: rotate(var(--title-star-rotate));
  flex-shrink: 0;
}

.section__title--script {
  display: inline-block;
  max-width: 100%;
  margin: 0.2em 0 0.55em;
  font-family: var(--font-body);
  font-size: clamp(1.85rem, 5vw, 2.85rem);
  font-weight: 600;
  font-style: normal;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--text);
  text-wrap: balance;
  background: none;
}

html[data-theme="dark"] .section__title--script {
  color: var(--text);
}

@media (max-width: 799px) {
  .hero__title.cutout-title {
    font-size: clamp(1.5rem, 8.4vw, 2.15rem);
  }

  .hero__promo-pointer {
    right: -1.2rem;
    bottom: -0.85rem;
    width: 1.95rem;
  }

  .section__title.cutout-title {
    font-size: clamp(1.2rem, 6vw, 1.7rem);
  }

  .section__title--script {
    margin: 0.2em 0 0.45em;
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .about .section__eyebrow::after {
    width: var(--title-star-size-mobile);
    height: var(--title-star-size-mobile);
  }
}

.cutout-title {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.28em 0.42em;
  line-height: 1;
}

.contact .cutout-title,
.mailing .cutout-title {
  justify-content: center;
}

.cutout-word {
  display: inline-flex;
  align-items: flex-end;
}

.cutout-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0.72em;
  margin-inline: var(--cutout-gap, -0.04em);
  padding: var(--cutout-pad-y, 0.1em) var(--cutout-pad-x, 0.12em) calc(var(--cutout-pad-y, 0.1em) * 0.7);
  font-family: var(--cutout-font, var(--font-cutout));
  font-weight: var(--cutout-weight, 700);
  font-style: var(--cutout-style, normal);
  font-size: var(--cutout-size, 1em);
  line-height: 0.82;
  letter-spacing: 0;
  color: var(--cutout-fg, #fff);
  background: var(--cutout-bg, var(--black));
  box-shadow: 0 0 0 2px var(--cutout-ring, transparent);
  transform:
    translateY(var(--cutout-shift, 0))
    rotate(var(--cutout-tilt, 0deg))
    scaleX(var(--cutout-squash, 1));
}

.about__inner {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

/* Phones: a tall 4/5 photo pushes the text off screen, so use a square
   crop here and switch back to the portrait crop on wider screens. */
.about {
  padding-block: var(--space-xl);
}

.about__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 70% 15%, var(--wash-strong), transparent 55%),
    var(--bg-elevated);
}

.about__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  word-break: break-word;
}

.about__copy {
  display: flex;
  flex-direction: column;
  /* Phones and tablets: heading first, photo under it. Desktop keeps
     the HTML order (photo left, copy right). */
  order: -1;
}

.about__text {
  display: flex;
  flex-direction: column;
  align-items: start;
}

@media (max-width: 799px) {
  .about__text p {
    max-width: none;
  }
}

.about__text p {
  margin: 0 0 var(--space-md);
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 34rem;
}

.about__preview,
.about__rest {
  display: grid;
  width: 100%;
  transition:
    grid-template-rows 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}

.about__preview {
  grid-template-rows: 1fr;
  opacity: 1;
}

.about__rest {
  grid-template-rows: 0fr;
  opacity: 0;
}

.about.is-expanded .about__preview {
  grid-template-rows: 0fr;
  opacity: 0;
}

.about.is-expanded .about__rest {
  grid-template-rows: 1fr;
  opacity: 1;
}

.about__preview-inner,
.about__rest-inner {
  overflow: hidden;
  min-height: 0;
}

.about__signoff {
  color: var(--text);
  font-family: var(--font-body);
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.55;
  white-space: pre-line;
}

.about__more-toggle {
  align-self: start;
  margin: 0.15rem 0 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--pink-heading);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.about__more-toggle:hover,
.about__more-toggle:focus-visible {
  color: var(--pink);
}

.about.is-expanded .about__inner {
  align-items: start;
}

.about__linktree {
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: var(--space-sm);
  padding: 0.58rem 1.15rem 0.58rem 1rem;
  border-radius: 999px;
  background: var(--pink);
  color: #fff6f0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--pink) 34%, transparent);
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}

.about__linktree::before {
  content: "♡";
  font-size: 1.05em;
  line-height: 1;
}

.about__linktree:hover,
.about__linktree:focus-visible {
  background: color-mix(in srgb, var(--pink) 86%, #5a3140);
  box-shadow: 0 10px 22px color-mix(in srgb, var(--pink) 42%, transparent);
  transform: translateY(-2px);
}

.music {
  background: linear-gradient(180deg, var(--wash), transparent 42%);
}

.music-banner {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0 0 var(--space-xl);
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--pink) 32%, var(--border));
  background: #161314;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--ease), filter var(--ease);
}

.music-banner:hover,
.music-banner:focus-visible {
  border-color: var(--pink);
  filter: brightness(1.06);
}

.music-banner__art {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 70% 50%;
}

.music-banner__panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 5.75rem;
  overflow: hidden;
  isolation: isolate;
}

.music-banner__wash {
  position: absolute;
  inset: -18%;
  width: 136%;
  height: 136%;
  object-fit: cover;
  object-position: 78% 50%;
  filter: blur(16px) saturate(1.08);
  opacity: 0.62;
  z-index: 0;
}

.music-banner__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(18, 14, 16, 0.28),
    rgba(18, 14, 16, 0.62)
  );
}

.music-banner__promo {
  position: relative;
  z-index: 2;
  display: block;
  width: fit-content;
  margin: 0.35rem 1.7rem 0.55rem 0.4rem;
  padding: 0.35rem 0.85rem;
  color: var(--pink-heading);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.track {
  display: grid;
  gap: 0.85rem;
}

.track--featured {
  margin-bottom: var(--space-lg);
}

.track__media {
  min-height: 9.5rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.track--featured .track__media {
  min-height: 11rem;
  border-color: var(--pink);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--pink) 35%, transparent);
}

.track__embed,
.track__media iframe {
  width: 100%;
  height: 152px;
  border: 0;
  display: block;
}

.track--featured .track__embed,
.track--featured .track__media iframe {
  height: 232px;
}

.track__placeholder {
  min-height: inherit;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 1rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  word-break: break-word;
  background:
    radial-gradient(circle at 20% 0%, var(--wash-strong), transparent 55%),
    var(--bg-elevated);
}

.track__title {
  margin: 0;
  font-size: 1.05rem;
}

.track__artist {
  margin: 0.2rem 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.music__grid,
.music__extra,
.videos__grid,
.videos__extra {
  display: grid;
  gap: var(--space-md);
}

.videos {
  background: linear-gradient(180deg, transparent, var(--wash), transparent 70%);
}

.video {
  display: grid;
  gap: 0.85rem;
}

.video--featured {
  margin-bottom: var(--space-lg);
}

.video__media {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.video--featured .video__media {
  border-color: var(--pink);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--pink) 35%, transparent);
}

.video__embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.video__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  word-break: break-word;
  background:
    radial-gradient(circle at 80% 10%, var(--wash-strong), transparent 50%),
    var(--bg-elevated);
}

.video__title {
  margin: 0;
  font-size: 1.05rem;
}

.video--featured .video__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.video__caption {
  margin: 0.2rem 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.shorts {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

.shorts__header {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.shorts__header .btn {
  min-height: 2.1rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.shorts__title {
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(1.65rem, 3.6vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--pink-heading);
}

.shorts__row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(9.75rem, 42vw);
  gap: var(--space-md);
  overflow-x: auto;
  padding-bottom: 0.45rem;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--scroll-thumb) transparent;
}

.shorts__row::-webkit-scrollbar {
  height: 8px;
}

.shorts__row::-webkit-scrollbar-thumb {
  background: var(--scroll-thumb);
  border-radius: var(--radius);
}

.short {
  scroll-snap-align: start;
  display: grid;
  gap: 0.7rem;
  min-width: 0;
}

.short__media {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: border-color var(--ease);
}

.short__media:hover,
.short__media:focus-within {
  border-color: var(--pink);
}

.short__media .video__embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.short__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.46);
  border: 1px solid var(--cta-ghost-border);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.short__play::after {
  content: "";
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 0.42rem 0 0.42rem 0.7rem;
  border-color: transparent transparent transparent var(--white);
}

.short__title {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
  min-height: 2.7em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

.gallery {
  background: linear-gradient(180deg, transparent, var(--wash), transparent 70%);
}

.gallery__stage {
  position: relative;
  display: grid;
  align-items: center;
}

.gallery__viewport {
  display: grid;
  grid-template-columns: repeat(var(--gallery-cols, 1), minmax(0, 1fr));
  gap: var(--space-md);
  min-height: 0;
  touch-action: pan-y;
}

.gallery__card {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  aspect-ratio: 2 / 3;
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: inherit;
  cursor: pointer;
  transform-origin: center 70%;
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.4s ease,
    border-color var(--ease);
}

.gallery__card:hover,
.gallery__card:focus-visible {
  border-color: var(--pink);
}

.gallery__card.is-in {
  opacity: 0;
  transform: scale(1.08) rotate(var(--gallery-in-rot, 8deg));
  filter: blur(8px);
}

.gallery__card.is-out {
  opacity: 0;
  transform: scale(0.86) rotate(var(--gallery-out-rot, -8deg));
  filter: blur(10px);
  pointer-events: none;
}

.gallery__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  background: var(--bg-elevated);
}

.gallery__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  border: 1px solid var(--cta-ghost-border);
  border-radius: 50%;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  color: var(--text);
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
}

.gallery__arrow svg {
  width: 1.2rem;
  height: 1.2rem;
}

.gallery__arrow:hover,
.gallery__arrow:focus-visible {
  background: var(--pink-soft);
  border-color: var(--pink);
  color: var(--pink-heading);
}

.gallery__arrow--prev {
  left: 0.55rem;
}

.gallery__arrow--next {
  right: 0.55rem;
}

.gallery__show-all {
  display: flex;
  width: min(100%, 22rem);
  min-height: 3.2rem;
  margin: 2.25rem auto 0;
}

.gallery-overlay[open] {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.gallery-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 1rem;
  border: 0;
  background: rgba(10, 10, 10, 0.58);
}

.gallery-overlay::backdrop {
  background: rgba(10, 10, 10, 0.45);
}

.gallery-overlay__panel {
  display: flex;
  flex-direction: column;
  width: min(100%, var(--max-width));
  max-height: min(92vh, 54rem);
  margin: 4.5rem auto 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: var(--bg);
}

.gallery-overlay__bar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 1rem 1rem 0.85rem;
  background: var(--bg);
}

.gallery-overlay__title {
  margin: 0;
  font-family: var(--font-script);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--pink-heading);
}

.gallery-overlay__close {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  border: 1px solid var(--cta-ghost-border);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
}

.gallery-overlay__close svg {
  width: 1.15rem;
  height: 1.15rem;
}

.gallery-overlay__close:hover,
.gallery-overlay__close:focus-visible {
  background: var(--pink-soft);
  border-color: var(--pink);
}

.gallery-overlay__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: min-content;
  align-content: start;
  align-items: start;
  gap: var(--space-md);
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 0 1rem 1.25rem;
  overscroll-behavior: contain;
}

.gallery-overlay__item {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  aspect-ratio: 2 / 3;
  height: auto;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: inherit;
  cursor: pointer;
  content-visibility: auto;
  contain-intrinsic-size: auto 28rem;
  transition: border-color var(--ease);
}

.gallery-overlay__item:hover,
.gallery-overlay__item:focus-visible {
  border-color: var(--pink);
}

.gallery-overlay__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  background: var(--bg-elevated);
}

.gallery-zoom[open] {
  display: grid;
  place-items: center;
  animation: gallery-zoom-fade 0.28s ease both;
}

.gallery-zoom {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 4.25rem 0.6rem 0.6rem;
  border: 0;
  background: rgba(10, 10, 10, 0.82);
}

.gallery-zoom::backdrop {
  background: rgba(10, 10, 10, 0.55);
}

@keyframes gallery-zoom-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.gallery-zoom__image {
  max-width: min(96vw, 100%);
  max-height: calc(100dvh - 5.1rem);
  width: auto;
  height: auto;
  border-radius: 0.85rem;
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(10, 10, 10, 0.5);
  animation: gallery-zoom-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes gallery-zoom-in {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.gallery-zoom__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  border: 1px solid var(--cta-ghost-border);
  border-radius: 50%;
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.gallery-zoom__close svg {
  width: 1.15rem;
  height: 1.15rem;
}

.gallery-zoom__close:hover,
.gallery-zoom__close:focus-visible {
  background: var(--pink-soft);
  border-color: var(--pink);
  color: var(--pink);
}

.updates__grid {
  display: grid;
  gap: var(--space-md);
}

.update {
  display: flex;
  flex-direction: column;
  align-items: start;
  height: 100%;
  padding: var(--space-lg);
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: transform var(--ease), border-color var(--ease);
}

.update:hover {
  transform: translateY(-3px);
  border-color: var(--pink);
}

.update__date {
  margin: 0 0 var(--space-sm);
  color: var(--pink);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.update__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
}

.update__text {
  margin: var(--space-xs) 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.update__link {
  margin-top: var(--space-md);
  color: var(--pink);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease);
}

.update__link:hover,
.update__link:focus-visible {
  border-bottom-color: var(--pink);
}

.socials__icon {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
}

/* Right-side rail, under the header. Smaller on phones so it can sit
   in the edge without covering the page. Footer still has the same icons. */
.social-rail:not([hidden]) {
  display: flex;
  position: fixed;
  top: calc(var(--header-height) + 0.7rem);
  bottom: auto;
  right: max(0.3rem, env(safe-area-inset-right));
  z-index: 15;
  flex-direction: column;
  align-items: center;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity var(--ease), visibility var(--ease);
}

.social-rail.is-away {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.social-rail__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-rail__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.78rem;
  height: 2.78rem;
  border-radius: 50%;
  border: 1px solid var(--cta-ghost-border);
  color: var(--pink);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(10px);
  transition: transform var(--ease), background var(--ease), border-color var(--ease);
}

.social-rail__link .socials__icon {
  width: 1.32rem;
  height: 1.32rem;
}

.social-rail__link:hover,
.social-rail__link:focus-visible {
  transform: translateY(-1px);
  border-color: var(--pink);
  background: var(--pink-soft);
}

.mailing {
  background: linear-gradient(180deg, transparent, var(--wash));
}

.mailing__inner {
  max-width: 34rem;
  margin-inline: auto;
  text-align: center;
}

.mailing__text {
  margin: var(--space-xs) 0 var(--space-lg);
  color: var(--text-muted);
  font-size: 1.05rem;
}

.mailing__label {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: left;
}

.mailing__row {
  display: grid;
  gap: 0.65rem;
}

.mailing__input {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font: inherit;
}

.mailing__input::placeholder {
  color: var(--text-muted);
}

.mailing__input:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
}

.mailing__form button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.mailing__form button[disabled]:hover {
  transform: none;
}

/* Spam trap: off screen but still reachable by bots that read the HTML. */
.mailing__hp {
  position: absolute;
  left: -5000px;
}

.mailing__note {
  min-height: 1.4rem;
  margin: var(--space-md) 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.mailing__note--error {
  color: var(--pink);
}

.contact__inner {
  max-width: 38rem;
  margin-inline: auto;
  text-align: center;
}

.contact__text {
  margin: var(--space-xs) 0 var(--space-lg);
  color: var(--text-muted);
  font-size: 1.05rem;
}

.contact__form {
  position: relative;
  display: grid;
  gap: var(--space-md);
  text-align: left;
}

.contact__row {
  display: grid;
  gap: var(--space-md);
}

.contact__field {
  display: grid;
  gap: var(--space-xs);
}

.contact__label {
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact__input {
  width: 100%;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font: inherit;
}

.contact__input::placeholder {
  color: var(--text-muted);
}

.contact__input:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
}

.contact__textarea {
  resize: vertical;
  min-height: 8rem;
  border-radius: 1rem;
  padding: 0.9rem 1.1rem;
  line-height: 1.5;
}

/* Spam trap: off screen but still reachable by bots that read the HTML. */
.contact__hp {
  position: absolute;
  left: -5000px;
}

.contact__button {
  justify-self: center;
}

.contact__button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.contact__button[disabled]:hover {
  transform: none;
}

.contact__note {
  min-height: 1.4rem;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  text-align: center;
}

.contact__note--error {
  color: var(--pink);
}

.contact__direct {
  margin: var(--space-md) 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact__direct-link {
  color: var(--pink);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease);
  overflow-wrap: anywhere;
}

.contact__direct-link:hover,
.contact__direct-link:focus-visible {
  border-bottom-color: var(--pink);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: var(--space-xl) 0 var(--space-lg);
}

.site-footer__inner {
  width: min(100% - 1.5rem, var(--max-width));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
}

.site-footer__signoff {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  color: var(--pink-heading);
  text-align: center;
  white-space: pre-line;
}

.site-footer__copy {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.site-footer__nav,
.site-footer__socials,
.site-footer__extras {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__nav {
  margin-top: var(--space-xs);
}

.site-footer__nav a,
.site-footer__extras a,
.site-footer__top {
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color var(--ease);
}

.site-footer__socials {
  gap: 0.55rem;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  color: var(--text-muted);
  transition: color var(--ease), background var(--ease);
}

.site-footer__social-link .socials__icon {
  width: 1.15rem;
  height: 1.15rem;
}

.site-footer__signoff:hover,
.site-footer__signoff:focus-visible,
.site-footer__nav a:hover,
.site-footer__nav a:focus-visible,
.site-footer__social-link:hover,
.site-footer__social-link:focus-visible,
.site-footer__extras a:hover,
.site-footer__extras a:focus-visible,
.site-footer__top:hover,
.site-footer__top:focus-visible {
  color: var(--pink);
}

.site-footer__top {
  margin-top: var(--space-xs);
  color: var(--pink);
}

.placeholder-section {
  min-height: 40vh;
}

@media (min-width: 800px) {
  .nav-toggle {
    display: none;
  }

  .nav,
  .nav.is-open {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 1.15rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav a {
    position: relative;
    padding: 0.15rem 0 0.4rem;
  }

  .nav a[data-nav-shop],
  .nav a[data-nav-subscribe] {
    padding: 0.32rem 0.8rem;
  }

  .nav a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 99px;
    background: var(--pink);
  }

  .nav a[data-nav-shop].is-active::after,
  .nav a[data-nav-subscribe].is-active::after {
    content: none;
  }

  .nav a[data-nav-shop].is-active,
  .nav a[data-nav-subscribe].is-active {
    background: var(--pink-soft);
    border-color: var(--pink);
  }

  .hero__inner {
    width: min(100% - 2rem, 80rem);
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 1.35fr);
    align-items: center;
    min-height: calc(100svh - var(--header-height));
    padding: 0;
  }

  /* Lilita One is compact, so the hero name can stay a bit bigger. */
  .hero__title {
    font-size: clamp(2.7rem, 6vw, 4.6rem);
  }

  .hero__visual {
    /* Keep the square cover fully in frame on short laptop screens. */
    width: min(100%, calc(100svh - var(--header-height) - 6.75rem));
  }

  .about {
    padding-block: var(--space-2xl);
  }

  .about__visual {
    aspect-ratio: 4 / 5;
  }

  .about__inner {
    grid-template-columns: 0.85fr 1fr;
    gap: var(--space-xl);
  }

  .about__copy {
    order: 0;
  }

  .music-banner {
    grid-template-columns: minmax(15rem, 20.5rem) minmax(0, 1fr);
  }

  .music-banner__art {
    height: 100%;
    min-height: 16.5rem;
    aspect-ratio: auto;
  }

  .music-banner__panel {
    min-height: 16.5rem;
  }

  .music-banner__panel::after {
    background: linear-gradient(
      90deg,
      rgba(18, 14, 16, 0.08),
      rgba(18, 14, 16, 0.52) 45%,
      rgba(18, 14, 16, 0.66)
    );
  }

  .music-banner__promo {
    font-size: 1.28rem;
    margin: 0 2rem 0.4rem 0.5rem;
  }

  .music__grid,
  .music__extra,
  .videos__grid,
  .videos__extra {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shorts__row {
    grid-auto-flow: unset;
    grid-auto-columns: unset;
    grid-template-columns: repeat(auto-fit, minmax(11rem, 14.5rem));
    justify-content: start;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .shorts__header .btn {
    min-height: 2.85rem;
    padding: 0.7rem 1.35rem;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
  }

  .gallery__stage {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.85rem;
  }

  .gallery__arrow {
    position: static;
    transform: none;
  }

  .gallery__show-all {
    width: auto;
    min-width: 10.5rem;
    margin-top: 1.5rem;
  }

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

  /* Cards share the row evenly, whether there are 1, 2, or 3 of them. */
  .updates__grid {
    grid-template-columns: repeat(var(--updates-count, 3), minmax(0, 1fr));
  }

  .updates__grid[data-count="1"] {
    --updates-count: 1;
    max-width: 32rem;
  }

  .updates__grid[data-count="2"] {
    --updates-count: 2;
  }

  .mailing__row {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

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

  .social-rail:not([hidden]) {
    right: max(0.45rem, env(safe-area-inset-right));
  }

  .social-rail__list {
    gap: 0.75rem;
  }

  .social-rail__link {
    width: 3.23rem;
    height: 3.23rem;
  }

  .social-rail__link .socials__icon {
    width: 1.58rem;
    height: 1.58rem;
  }
}

@media (min-width: 1100px) {
  .hero__title {
    font-size: clamp(3.2rem, 6.2vw, 5.5rem);
  }

  .music__grid,
  .music__extra,
  .videos__grid,
  .videos__extra {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .social-rail:not([hidden]) {
    right: max(0.55rem, env(safe-area-inset-right));
  }

  .social-rail__list {
    gap: 0.83rem;
  }

  .social-rail__link {
    width: 3.68rem;
    height: 3.68rem;
  }

  .social-rail__link .socials__icon {
    width: 1.73rem;
    height: 1.73rem;
  }
}
