@font-face {
  font-family: "Fredericka the Great";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/fredericka-the-great.ttf") format("truetype");
}

:root {
  --ink: #20263a;
  --ink-soft: #748195;
  --paper: #fffdf8;
  --white: #ffffff;
  --night: #313b58;
  --navy: #6d9aaa;
  --cyan: #bdebf3;
  --coral: #e9bd82;
  --gold: #faeab6;
  --mint: #effaf8;
  --line: rgba(32, 38, 58, 0.09);
  --shadow: 0 24px 70px rgba(92, 107, 130, 0.1);
  --font-base: "Zen Maru Gothic", system-ui, sans-serif;
  --font-display: "Fredericka the Great", "Kiwi Maru", "Zen Maru Gothic", system-ui, sans-serif;
  --font-ui: "M PLUS Rounded 1c", "Zen Maru Gothic", system-ui, sans-serif;
  --font-accent: "Zen Maru Gothic", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-base);
  letter-spacing: 0;
  overflow-x: clip;
  overflow-y: auto;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

::selection {
  background: transparent;
}

body.is-ready .site-loader {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

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

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

.site-shell {
  overflow: visible;
}

body.is-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.78s ease,
    transform 0.78s ease;
}

body.is-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 48% 42%, rgba(189, 235, 243, 0.34), transparent 28%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(250, 254, 254, 0.98));
  transition:
    opacity 0.58s ease,
    visibility 0.58s ease;
}

.site-loader img {
  width: clamp(180px, 18vw, 280px);
  filter: drop-shadow(0 18px 24px rgba(83, 96, 116, 0.12));
}

.site-loader span {
  position: absolute;
  top: calc(50% + clamp(58px, 5.5vw, 86px));
  left: 50%;
  width: min(180px, 42vw);
  height: 2px;
  overflow: hidden;
  background: rgba(109, 154, 170, 0.12);
  border-radius: 999px;
  transform: translateX(-50%);
}

.site-loader span::after {
  display: block;
  width: 42%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, rgba(157, 215, 228, 0), rgba(157, 215, 228, 0.92), rgba(157, 215, 228, 0));
  border-radius: inherit;
  animation: loader-sweep 1.15s ease-in-out infinite;
}

@keyframes loader-sweep {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(250%);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: linear-gradient(to bottom, rgba(255, 253, 248, 0.86), rgba(255, 253, 248, 0.48) 62%, rgba(255, 253, 248, 0));
  backdrop-filter: blur(14px);
  transition: background 0.25s ease, color 0.25s ease, padding 0.25s ease;
}

.site-header::after {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: -1px;
  left: clamp(18px, 4vw, 56px);
  height: 1px;
  content: "";
  background: linear-gradient(to right, transparent, rgba(109, 154, 170, 0.18), transparent);
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-block: 14px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.82);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: auto;
  height: clamp(58px, 4.8vw, 78px);
  filter: drop-shadow(0 10px 16px rgba(83, 96, 116, 0.14));
}

.site-nav {
  display: flex;
  gap: clamp(18px, 2.4vw, 34px);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: #9fd8e4;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

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

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 7px auto;
  background: currentColor;
}

.section-band {
  position: relative;
  padding: clamp(76px, 10vw, 136px) clamp(20px, 5vw, 72px);
}

.section-band.light {
  background: var(--paper);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.hero {
  display: block;
  min-height: 92vh;
  padding-top: clamp(72px, 7vw, 92px);
  padding-bottom: clamp(24px, 3vw, 40px);
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.86), transparent 42%),
    radial-gradient(circle at 74% 18%, rgba(189, 235, 243, 0.34), transparent 28%),
    radial-gradient(circle at 16% 84%, rgba(250, 234, 182, 0.38), transparent 30%),
    linear-gradient(135deg, #fffefb 0%, #fffaf0 48%, #f1fbfb 100%);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(94, 128, 142, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 128, 142, 0.1) 1px, transparent 1px);
  background-size: 92px 92px;
  animation: grid-drift 24s linear infinite;
  mask-image: linear-gradient(to bottom, transparent, black 16%, black 76%, transparent);
}

.hero::after {
  position: absolute;
  top: -8%;
  right: -10%;
  bottom: -8%;
  z-index: 0;
  width: min(54vw, 740px);
  content: "";
  background:
    linear-gradient(150deg, rgba(185, 226, 234, 0.62), rgba(233, 248, 249, 0.28) 58%, rgba(255, 255, 255, 0.04));
  clip-path: polygon(24% 0, 100% 0, 82% 100%, 0 100%);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-floaties {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.floatie {
  position: absolute;
  display: block;
  opacity: 0.44;
  filter: drop-shadow(0 14px 18px rgba(109, 154, 170, 0.08));
  transform: translate3d(0, 0, 0);
  animation: floatie-drift var(--float-time, 18s) ease-in-out infinite alternate;
}

.floatie::before {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--float-fill, rgba(189, 235, 243, 0.3));
  border: 1px solid var(--float-line, rgba(109, 154, 170, 0.18));
  border-radius: inherit;
  backdrop-filter: blur(2px);
}

.floatie-01 {
  --float-fill: rgba(255, 220, 235, 0.46);
  --float-line: rgba(221, 137, 184, 0.18);
  --float-time: 20s;
  top: 19%;
  left: 9%;
  width: 26px;
  height: 26px;
  border-radius: 999px;
}

.floatie-02 {
  --float-fill: rgba(189, 235, 243, 0.34);
  --float-line: rgba(116, 178, 193, 0.18);
  --float-time: 24s;
  top: 24%;
  left: 38%;
  width: 54px;
  height: 22px;
  border-radius: 999px;
  animation-delay: -5s;
}

.floatie-03 {
  --float-fill: rgba(250, 234, 182, 0.38);
  --float-line: rgba(233, 189, 130, 0.18);
  --float-time: 19s;
  top: 62%;
  left: 7%;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  animation-delay: -9s;
}

.floatie-04 {
  --float-fill: rgba(216, 162, 202, 0.26);
  --float-line: rgba(216, 162, 202, 0.2);
  --float-time: 22s;
  top: 74%;
  left: 34%;
  width: 42px;
  height: 42px;
  border-radius: 999px 999px 999px 6px;
  animation-delay: -3s;
}

.floatie-05 {
  --float-fill: rgba(255, 255, 255, 0.54);
  --float-line: rgba(109, 154, 170, 0.15);
  --float-time: 26s;
  top: 15%;
  right: 31%;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  animation-delay: -12s;
}

.floatie-06 {
  --float-fill: rgba(189, 235, 243, 0.28);
  --float-line: rgba(116, 178, 193, 0.16);
  --float-time: 21s;
  right: 11%;
  bottom: 22%;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  animation-delay: -7s;
}

.floatie-07 {
  --float-fill: rgba(255, 220, 235, 0.34);
  --float-line: rgba(221, 137, 184, 0.14);
  --float-time: 23s;
  top: 48%;
  right: 42%;
  width: 18px;
  height: 54px;
  border-radius: 999px;
  animation-delay: -15s;
}

.floatie-08 {
  --float-fill: rgba(250, 234, 182, 0.34);
  --float-line: rgba(233, 189, 130, 0.16);
  --float-time: 25s;
  right: 4%;
  bottom: 8%;
  width: 62px;
  height: 24px;
  border-radius: 999px;
  animation-delay: -11s;
}

.floatie-09 {
  --float-fill: rgba(255, 220, 235, 0.3);
  --float-line: rgba(221, 137, 184, 0.13);
  --float-time: 27s;
  --float-x: 12px;
  top: 11%;
  left: 24%;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  animation-delay: -4s;
}

.floatie-10 {
  --float-fill: rgba(189, 235, 243, 0.26);
  --float-line: rgba(116, 178, 193, 0.14);
  --float-time: 29s;
  --float-x: 28px;
  top: 39%;
  left: 18%;
  width: 72px;
  height: 14px;
  border-radius: 999px;
  animation-delay: -18s;
}

.floatie-11 {
  --float-fill: rgba(250, 234, 182, 0.3);
  --float-line: rgba(233, 189, 130, 0.14);
  --float-time: 24s;
  --float-x: 10px;
  top: 84%;
  left: 16%;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  animation-delay: -14s;
}

.floatie-12 {
  --float-fill: rgba(255, 255, 255, 0.48);
  --float-line: rgba(109, 154, 170, 0.13);
  --float-time: 30s;
  --float-x: 18px;
  top: 33%;
  left: 53%;
  width: 24px;
  height: 24px;
  border-radius: 999px 999px 999px 5px;
  animation-delay: -20s;
}

.floatie-13 {
  --float-fill: rgba(216, 162, 202, 0.22);
  --float-line: rgba(216, 162, 202, 0.14);
  --float-time: 31s;
  --float-x: 22px;
  top: 58%;
  left: 46%;
  width: 18px;
  height: 46px;
  border-radius: 999px;
  animation-delay: -8s;
}

.floatie-14 {
  --float-fill: rgba(189, 235, 243, 0.24);
  --float-line: rgba(116, 178, 193, 0.13);
  --float-time: 26s;
  --float-x: 14px;
  top: 20%;
  right: 17%;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  animation-delay: -16s;
}

.floatie-15 {
  --float-fill: rgba(255, 220, 235, 0.24);
  --float-line: rgba(221, 137, 184, 0.12);
  --float-time: 32s;
  --float-x: 24px;
  right: 24%;
  bottom: 34%;
  width: 58px;
  height: 16px;
  border-radius: 999px;
  animation-delay: -22s;
}

.floatie-16 {
  --float-fill: rgba(250, 234, 182, 0.28);
  --float-line: rgba(233, 189, 130, 0.13);
  --float-time: 28s;
  --float-x: 12px;
  right: 16%;
  bottom: 7%;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  animation-delay: -6s;
}

.floatie-03::before,
.floatie-05::before,
.floatie-11::before,
.floatie-14::before {
  transform: rotate(18deg);
}

.floatie-04::before,
.floatie-12::before {
  transform: rotate(-45deg);
}

@keyframes floatie-drift {
  0% {
    transform: translate3d(0, 0, 0) rotate(-6deg);
  }

  50% {
    transform: translate3d(var(--float-x, 18px), -18px, 0) rotate(7deg);
  }

  100% {
    transform: translate3d(calc(var(--float-x, 18px) * -0.7), 16px, 0) rotate(14deg);
  }
}

.hero-copy {
  z-index: 5;
  width: min(56vw, 690px);
}

.hero-backline {
  position: absolute;
  right: -0.08em;
  bottom: 0.05em;
  z-index: 1;
  color: rgba(128, 171, 185, 0.11);
  font-size: clamp(120px, 19vw, 290px);
  font-weight: 900;
  line-height: 0.76;
  pointer-events: none;
  text-transform: uppercase;
}

.hero-spark {
  position: absolute;
  z-index: 1;
  width: 150px;
  aspect-ratio: 1;
  border: 1px solid rgba(109, 154, 170, 0.14);
  animation: soft-float 7.8s ease-in-out infinite alternate;
  transform: rotate(18deg);
}

.hero-spark.one {
  top: 23%;
  left: 46%;
  background: rgba(255, 255, 255, 0.5);
}

.hero-spark.two {
  right: 16%;
  bottom: 14%;
  width: 92px;
  animation-delay: -2.4s;
  background: rgba(250, 234, 182, 0.26);
}

@keyframes grid-drift {
  to {
    background-position: 92px 92px;
  }
}

@keyframes soft-float {
  from {
    transform: translate3d(0, 0, 0) rotate(18deg);
  }

  to {
    transform: translate3d(10px, -14px, 0) rotate(23deg);
  }
}

.eyebrow {
  margin: 0 0 16px;
  color: #b99562;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(70px, 8.5vw, 116px);
  line-height: 0.84;
  font-weight: 400;
  color: #9fcbd8;
  background: linear-gradient(118deg, #82c6d5 0%, #d8a2ca 48%, #efc58a 100%);
  background-clip: text;
  text-shadow: 0 18px 32px rgba(135, 171, 188, 0.16);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: title-bloom 6.5s ease-in-out infinite alternate;
}

@keyframes title-bloom {
  from {
    filter: drop-shadow(0 12px 14px rgba(130, 198, 213, 0.08));
  }

  to {
    filter: drop-shadow(0 20px 22px rgba(216, 162, 202, 0.13));
  }
}

h2 {
  margin-bottom: 0;
  font-family: var(--font-accent);
  font-size: clamp(36px, 6vw, 82px);
  line-height: 0.98;
  font-weight: 900;
}

h3 {
  font-family: var(--font-accent);
  line-height: 1.35;
}

.hero-lead {
  width: min(520px, 100%);
  color: var(--ink-soft);
  font-family: var(--font-accent);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 700;
  line-height: 1.75;
}

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

.social-actions {
  position: relative;
  z-index: 6;
  width: min(900px, 100%);
  filter: drop-shadow(0 14px 22px rgba(88, 106, 126, 0.07));
  transform: translateY(-10px);
}

.social-button {
  --link-accent: #9fd8e4;
  --link-tint: rgba(189, 235, 243, 0.26);
  --link-glow: rgba(143, 196, 208, 0.12);
  position: relative;
  display: inline-flex;
  min-width: 160px;
  min-height: 72px;
  align-items: center;
  gap: 0;
  padding: 13px 18px 13px 78px;
  overflow: hidden;
  color: #263448;
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 255, 255, 0.98), transparent 22%),
    radial-gradient(circle at 94% 16%, rgba(255, 255, 255, 0.82), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 253, 248, 0.86)),
    linear-gradient(135deg, var(--link-tint), rgba(189, 235, 243, 0.18));
  border: 1px solid rgba(95, 139, 156, 0.2);
  border-radius: 999px;
  box-shadow:
    0 16px 34px rgba(72, 92, 116, 0.13),
    0 0 0 1px rgba(255, 255, 255, 0.74),
    0 0 0 2px var(--link-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -16px 28px rgba(255, 255, 255, 0.32),
    inset 0 -18px 28px var(--link-glow);
  backdrop-filter: blur(16px) saturate(1.28);
  font-family: var(--font-ui);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.social-button::before {
  position: absolute;
  top: 9px;
  right: 14px;
  width: 36px;
  height: 18px;
  content: "";
  background: rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  filter: blur(0.2px);
}

.social-button::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, transparent 24%, rgba(255, 255, 255, 0.56), transparent 68%),
    radial-gradient(circle at 16% 74%, rgba(189, 235, 243, 0.24), transparent 22%);
  opacity: 0;
  transform: translateX(-38%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-button:hover {
  border-color: var(--link-accent);
  box-shadow:
    0 28px 58px rgba(72, 92, 116, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.82),
    0 0 0 3px var(--link-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -16px 28px rgba(255, 255, 255, 0.32),
    inset 0 -20px 30px var(--link-glow);
  transform: translateY(-3px);
}

.social-button:hover::after {
  opacity: 1;
  transform: translateX(38%);
}

.social-code {
  position: absolute;
  top: 50%;
  left: 16px;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  color: #2c3c52;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.96), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), var(--link-tint));
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  box-shadow:
    0 10px 22px rgba(72, 92, 116, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

.social-code img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.social-button strong,
.social-button small {
  display: block;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.social-button strong {
  color: #26384f;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.05;
}

.social-button small {
  margin: 0 0 6px;
  color: #637589;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.social-button.youtube {
  --link-accent: #f1a6a8;
  --link-tint: rgba(255, 213, 218, 0.92);
  --link-glow: rgba(241, 166, 168, 0.13);
}

.social-button.x {
  --link-accent: #a6bfce;
  --link-tint: rgba(225, 239, 246, 0.94);
  --link-glow: rgba(139, 169, 186, 0.12);
}

.social-button.tiktok {
  --link-accent: #94d8d8;
  --link-tint: rgba(209, 247, 247, 0.94);
  --link-glow: rgba(106, 203, 205, 0.12);
}

.social-button.marshmallow {
  --link-accent: #e9a8c9;
  --link-tint: rgba(255, 223, 239, 0.96);
  --link-glow: rgba(221, 137, 184, 0.13);
}

.social-button.marshmallow .social-code img {
  width: 31px;
  height: 31px;
}

.social-button.wishlist {
  --link-accent: #e7ca7f;
  --link-tint: rgba(255, 238, 190, 0.96);
  --link-glow: rgba(219, 185, 96, 0.12);
}

.hero-video-row {
  display: flex;
  width: min(820px, 100%);
  align-items: flex-start;
  gap: 18px;
  margin-top: 56px;
  margin-left: clamp(22px, 2.5vw, 46px);
}

.hero-video-photo {
  position: relative;
  display: block;
  width: min(360px, calc(50% - 9px));
  padding: 12px 12px 14px;
  color: #425167;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 252, 244, 0.84));
  border: 1px solid rgba(109, 154, 170, 0.12);
  border-radius: 6px;
  box-shadow:
    0 22px 44px rgba(88, 106, 126, 0.13),
    0 2px 0 rgba(255, 255, 255, 0.88) inset;
  transform-origin: 50% 50%;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hero-video-photo.is-left {
  transform: rotate(-1.5deg);
}

.hero-video-photo.is-right {
  margin-top: 10px;
  transform: rotate(0.6deg);
}

.hero-video-photo:hover {
  box-shadow:
    0 28px 56px rgba(88, 106, 126, 0.18),
    0 2px 0 rgba(255, 255, 255, 0.9) inset;
}

.hero-video-photo.is-left:hover,
.hero-video-photo.is-right:hover {
  transform: rotate(-2.2deg) translateY(-4px);
}

.hero-video-photo.is-right:hover {
  transform: rotate(-0.1deg) translateY(-4px);
}

.photo-tape {
  position: absolute;
  top: -17px;
  left: 50%;
  z-index: 3;
  width: 116px;
  height: 32px;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.46), transparent 24%, rgba(255, 255, 255, 0.56) 54%, transparent),
    rgba(197, 231, 244, 0.78);
  border: 1px solid rgba(116, 178, 193, 0.18);
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(88, 106, 126, 0.08);
  transform: translateX(-50%) rotate(2deg);
}

.hero-video-photo.is-right .photo-tape {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.38), transparent 24%, rgba(255, 255, 255, 0.46) 54%, transparent),
    rgba(250, 234, 182, 0.72);
  border-color: rgba(233, 189, 130, 0.16);
  transform: translateX(-50%) rotate(-3deg);
}

.photo-frame {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #f8fbfb;
  border-radius: 4px;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(1.04);
  transition: transform 0.24s ease;
}

.hero-video-photo:hover .photo-frame img {
  transform: scale(1.025);
}

.photo-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(to top, rgba(38, 52, 72, 0.22), transparent 42%),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.45), transparent 18%);
}

.photo-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  background: rgba(255, 253, 248, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(38, 52, 72, 0.1);
  transform: translate(-50%, -50%);
}

.photo-play::before {
  width: 0;
  height: 0;
  margin-left: 4px;
  content: "";
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid rgba(116, 178, 193, 0.78);
}

.photo-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 2px 0;
  font-family: var(--font-ui);
}

.photo-caption small {
  color: #9a8b74;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.photo-caption strong {
  color: #4a5a70;
  font-size: 13px;
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.button.primary {
  color: #263448;
  border-color: #bdebf3;
  background: rgba(189, 235, 243, 0.92);
}

.button.ghost {
  color: var(--ink);
  border-color: rgba(49, 59, 88, 0.16);
  background: rgba(255, 255, 255, 0.38);
}

.button.small {
  min-height: 40px;
  padding-inline: 18px;
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.hero-visual {
  position: absolute;
  right: clamp(-94px, -5.4vw, -62px);
  bottom: -158px;
  z-index: 3;
  width: min(57vw, 760px);
  height: min(118vh, 980px);
  animation: hero-drift 8.5s ease-in-out infinite alternate;
  filter: drop-shadow(0 34px 34px rgba(82, 100, 122, 0.16));
}

@keyframes hero-drift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-8px, -12px, 0);
  }
}

.hero-visual-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  opacity: 0;
  transform: translate3d(10px, 16px, 0) scale(0.985);
  transition:
    opacity 1.35s ease,
    transform 1.35s ease;
  will-change: opacity, transform;
}

.hero-visual-image.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-visual-guitar {
  object-position: 42% 100%;
}

.hero-visual-mic {
  object-position: 50% 46%;
  transform: translate3d(8px, 16px, 0) scale(0.965);
}

.hero-visual-mic.is-active {
  transform: translate3d(-4px, 0, 0) scale(1.05);
}

.hero-visual-flowers {
  object-position: 50% 48%;
  transform: translate3d(10px, 18px, 0) scale(0.97);
}

.hero-visual-flowers.is-active {
  transform: translate3d(0, 0, 0) scale(1.04);
}

.hero-visual-stretch {
  object-position: 42% 54%;
  transform: translate3d(0, 16px, 0) scale(1.02);
}

.hero-visual-stretch.is-active {
  transform: translate3d(-54px, 0, 0) scale(1.18);
}

.hero-visual-cheer {
  object-position: 50% 100%;
  transform: translate3d(8px, 16px, 0) scale(0.975);
}

.hero-visual-cheer.is-active {
  transform: translate3d(-8px, 0, 0) scale(1.02);
}

.hero-visual-standing {
  object-position: 48% 48%;
  transform: translate3d(8px, 14px, 0) scale(0.98);
}

.hero-visual-standing.is-active {
  transform: translate3d(-18px, 0, 0) scale(1.1);
}

.hero-visual-umbrella {
  object-fit: contain;
  object-position: 50% 55%;
  transform: translate3d(8px, 14px, 0) scale(0.985);
}

.hero-visual-umbrella.is-active {
  transform: translate3d(-10px, 0, 0) scale(1.08);
}

.hero-ring {
  position: absolute;
  top: 16%;
  right: 4%;
  z-index: -1;
  width: 92%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 48%, rgba(255, 255, 255, 0.22) 49%, transparent 64%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(189, 235, 243, 0.08));
  animation: ring-breathe 9s ease-in-out infinite alternate;
}

@keyframes ring-breathe {
  from {
    opacity: 0.78;
    transform: scale(0.99) rotate(0deg);
  }

  to {
    opacity: 1;
    transform: scale(1.025) rotate(3deg);
  }
}

.scroll-note {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 28px;
  z-index: 1;
  color: rgba(38, 52, 72, 0.56);
  font-size: 12px;
  font-weight: 800;
  writing-mode: vertical-rl;
}

.ticker {
  min-height: 14px;
  color: #687489;
  overflow: hidden;
  background: rgba(250, 234, 182, 0.72);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 22s linear infinite;
}

.ticker span {
  padding: 15px 34px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 42px;
}

.section-heading.row {
  flex-direction: row;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

time,
.muted {
  color: var(--ink-soft);
}

.profile {
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.4) 46%, rgba(240, 251, 250, 0.62)),
    radial-gradient(circle at 100% 12%, rgba(189, 235, 243, 0.34), transparent 34%),
    radial-gradient(circle at 10% 86%, rgba(250, 234, 182, 0.32), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #fffaf0 52%, #f0fbfa 100%);
}

.profile::before {
  position: absolute;
  inset: 34px clamp(20px, 5vw, 72px);
  pointer-events: none;
  content: "";
  border: 1px solid rgba(109, 154, 170, 0.1);
  border-radius: 28px;
  mask-image: linear-gradient(115deg, black, transparent 62%);
}

.profile::after {
  position: absolute;
  top: 14%;
  right: -6%;
  width: min(42vw, 520px);
  height: 62%;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(110deg, transparent 0 28%, rgba(189, 235, 243, 0.2) 28% 42%, transparent 42% 58%, rgba(255, 220, 235, 0.18) 58% 72%, transparent 72%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
  transform: rotate(-7deg);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.profile-layout {
  position: relative;
  z-index: 1;
  align-items: center;
}

.profile-heading {
  position: relative;
}

.profile-kana {
  width: min(420px, 100%);
  margin: 24px 0 0;
  color: #7b8aa0;
  font-family: var(--font-ui);
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.profile-tags span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 16px;
  color: #53677d;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.96), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(238, 250, 252, 0.64));
  border: 1px solid rgba(109, 154, 170, 0.14);
  border-radius: 999px;
  box-shadow:
    0 12px 24px rgba(88, 106, 126, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-card {
  position: relative;
  padding: clamp(24px, 3vw, 36px);
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.98), transparent 25%),
    radial-gradient(circle at 88% 0%, rgba(189, 235, 243, 0.3), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 253, 248, 0.66));
  border: 1px solid rgba(109, 154, 170, 0.14);
  border-radius: 22px;
  box-shadow:
    0 28px 70px rgba(78, 96, 118, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.72) inset,
    inset 0 -24px 44px rgba(189, 235, 243, 0.08);
  backdrop-filter: blur(16px) saturate(1.18);
}

.profile-card::before {
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(116, 178, 193, 0.36), transparent);
}

.profile-card::after {
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 170px;
  height: 170px;
  content: "";
  background:
    radial-gradient(circle, transparent 48%, rgba(255, 255, 255, 0.42) 49%, transparent 66%),
    rgba(250, 234, 182, 0.16);
  border-radius: 50%;
}

.profile-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(109, 154, 170, 0.1);
}

.profile-card-head img {
  width: min(190px, 46%);
  height: auto;
  filter: drop-shadow(0 12px 16px rgba(83, 96, 116, 0.12));
}

.profile-card-head span {
  color: #8b9bae;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.profile-copy p {
  position: relative;
  z-index: 1;
  color: var(--ink-soft);
  font-family: var(--font-accent);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  line-height: 2.1;
}

.profile-copy .profile-quote {
  margin-top: 22px;
  padding: 18px 20px;
  color: #4f657a;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(245, 252, 253, 0.72));
  border: 1px solid rgba(109, 154, 170, 0.1);
  border-radius: 16px;
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.9;
}

.profile-data {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 34px 0 0;
}

.profile-data div {
  padding: 18px;
  border: 1px solid rgba(109, 154, 170, 0.14);
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.9), transparent 26%),
    rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.profile-data dt {
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-data dd {
  margin: 8px 0 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.contact {
  text-align: center;
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 253, 248, 0.96)),
    linear-gradient(135deg, #ffffff, #f0fbfa);
}

.contact-inner {
  width: min(820px, 100%);
}

.contact h2 {
  margin-bottom: clamp(16px, 1.8vw, 26px);
}

.contact p {
  width: min(680px, 100%);
  margin: 0 auto;
  color: var(--ink-soft);
  line-height: 1.9;
}

.contact-link,
.form-fallback {
  position: relative;
  display: inline-flex;
  min-width: 220px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 0 26px;
  color: #35465c;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.98), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(235, 250, 252, 0.72));
  border: 1px solid rgba(109, 154, 170, 0.18);
  border-radius: 999px;
  box-shadow:
    0 18px 34px rgba(78, 96, 118, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 900;
  transition:
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.contact-link:hover,
.form-fallback:hover {
  box-shadow:
    0 24px 44px rgba(78, 96, 118, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  transform: translateY(-3px);
}

.form-page {
  min-height: 100vh;
  padding-top: clamp(132px, 13vw, 176px);
  background:
    radial-gradient(circle at 84% 14%, rgba(189, 235, 243, 0.3), transparent 30%),
    radial-gradient(circle at 12% 80%, rgba(250, 234, 182, 0.32), transparent 28%),
    linear-gradient(135deg, #fffefb 0%, #ffffff 48%, #f2fbfb 100%);
}

.form-page-inner {
  width: min(940px, 100%);
  text-align: center;
}

.form-title {
  margin-bottom: 18px;
  font-size: clamp(72px, 9vw, 126px);
}

.form-lead {
  width: min(620px, 100%);
  margin: 0 auto 34px;
  color: var(--ink-soft);
  font-family: var(--font-accent);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 700;
  line-height: 1.9;
}

.form-frame-wrap {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 252, 253, 0.86));
  border: 1px solid rgba(109, 154, 170, 0.14);
  border-radius: 14px;
  box-shadow:
    0 24px 60px rgba(78, 96, 118, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.google-form-frame {
  display: block;
  width: 100%;
  height: min(1280px, 120vh);
  min-height: 960px;
  border: 0;
  background: #fff;
}

.form-fallback {
  min-width: 190px;
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: #59657a;
  background: #f8fbfb;
  border-top: 1px solid var(--line);
}

.top-float {
  position: fixed;
  right: clamp(16px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 40;
  display: none;
  width: clamp(226px, 19vw, 268px);
  height: clamp(132px, 11vw, 154px);
  color: #41546a;
  border-radius: 26px;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 18px 28px rgba(78, 96, 118, 0.16));
  transform: translateY(12px);
  transition:
    filter 0.22s ease,
    opacity 0.24s ease,
    transform 0.22s ease;
}

.top-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.top-float:hover {
  filter: drop-shadow(0 24px 34px rgba(78, 96, 118, 0.21));
  transform: translateY(-4px);
}

.top-float:focus {
  outline: none;
}

.top-float:focus-visible {
  outline: 2px solid rgba(116, 178, 193, 0.38);
  outline-offset: 6px;
}

.top-float-bubble {
  position: absolute;
  right: clamp(70px, 6.5vw, 84px);
  bottom: clamp(58px, 5vw, 70px);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px 1px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.96), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 252, 253, 0.88));
  border: 1px solid rgba(109, 154, 170, 0.18);
  border-radius: 24px 24px 12px 24px;
  box-shadow:
    0 10px 24px rgba(78, 96, 118, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.top-float-bubble::before,
.top-float-bubble::after {
  position: absolute;
  content: "";
  clip-path: polygon(0 4%, 100% 54%, 0 100%);
}

.top-float-bubble::before {
  right: -21px;
  bottom: 3px;
  width: 31px;
  height: 26px;
  background: rgba(109, 154, 170, 0.18);
  filter: drop-shadow(3px 5px 7px rgba(78, 96, 118, 0.09));
  transform: rotate(6deg);
}

.top-float-bubble::after {
  right: -18px;
  bottom: 5px;
  width: 28px;
  height: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 252, 253, 0.88));
  transform: rotate(7deg);
}

.top-float-sticker {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: clamp(76px, 7.6vw, 104px);
  filter: drop-shadow(0 16px 20px rgba(78, 96, 118, 0.18));
}

.top-float-sticker img {
  width: 100%;
  height: auto;
  object-position: center bottom;
}

@media (min-width: 1440px) {
  .site-header {
    padding-inline: clamp(84px, 6vw, 128px);
  }

  .site-header::after {
    right: clamp(84px, 6vw, 128px);
    left: clamp(84px, 6vw, 128px);
  }

  .section-band {
    padding-right: clamp(92px, 6.2vw, 132px);
    padding-left: clamp(92px, 6.2vw, 132px);
  }

  .section-inner {
    width: min(1320px, 100%);
  }

  .hero {
    min-height: 92vh;
    padding-top: clamp(150px, 15vh, 176px);
    padding-bottom: 52px;
  }

  .hero-copy {
    width: min(50vw, 940px);
  }

  .hero::after {
    right: -8%;
    width: min(56vw, 1040px);
  }

  .hero-backline {
    right: 0.02em;
    bottom: 0.02em;
    font-size: clamp(260px, 18vw, 360px);
  }

  .hero-spark.one {
    top: 18%;
    left: 49%;
    width: 178px;
  }

  .hero-spark.two {
    right: 13%;
    bottom: 16%;
    width: 112px;
  }

  .brand-logo {
    height: clamp(78px, 5vw, 96px);
  }

  h1 {
    font-size: clamp(126px, 7.8vw, 154px);
  }

  .hero-lead {
    width: min(620px, 100%);
    font-size: 20px;
  }

  .hero-actions {
    margin-top: 34px;
  }

  .social-actions {
    width: min(900px, 48vw);
  }

  .social-button {
    min-width: 166px;
  }

  .hero-visual {
    right: clamp(-86px, -4.4vw, -58px);
    bottom: -246px;
    width: min(51vw, 980px);
    height: min(112vh, 1160px);
  }

  .hero-ring {
    top: 12%;
    right: 2%;
    width: 98%;
  }

  .scroll-note {
    right: clamp(92px, 6.2vw, 132px);
  }
}

@media (max-width: 1120px) {
  .profile-layout {
    grid-template-columns: 1fr;
  }

  .profile-heading,
  .profile-card {
    width: min(760px, 100%);
  }

  .profile-card {
    justify-self: end;
  }
}

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

  .nav-toggle {
    display: block;
    color: inherit;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    color: var(--ink);
    background: rgba(247, 245, 239, 0.96);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 16px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 108px;
    padding-bottom: 86px;
  }

  .hero-copy {
    width: min(680px, 100%);
  }

  .hero::after {
    width: 62vw;
  }

  .hero-visual {
    right: -184px;
    bottom: -112px;
    width: min(68vw, 540px);
    height: min(82vh, 680px);
    opacity: 0.9;
  }

  .hero-video-row {
    width: min(680px, 100%);
    margin-left: 0;
  }

  .hero-video-photo {
    width: min(320px, calc(50% - 9px));
  }

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

  .profile-data {
    grid-template-columns: 1fr;
  }

  .section-heading.row {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 88vh;
    padding-top: 104px;
    padding-bottom: 68px;
    overflow: hidden;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero::after {
    top: auto;
    right: -42%;
    bottom: -8%;
    width: 108vw;
    height: 43vh;
    clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  }

  .hero-backline {
    right: -0.18em;
    bottom: 0.82em;
    font-size: 118px;
    writing-mode: vertical-rl;
  }

  .hero-spark {
    display: none;
  }

  .hero-visual {
    position: absolute;
    right: -256px;
    bottom: -144px;
    z-index: 1;
    width: 382px;
    height: 600px;
    opacity: 0.9;
    pointer-events: none;
  }

  .hero-ring {
    display: none;
  }

  h1 {
    font-size: clamp(46px, 15.8vw, 66px);
  }

  .brand-logo {
    height: 48px;
  }

  .hero-actions,
  .hero-video-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero .button,
  .hero .social-button,
  .hero-video-photo {
    width: min(280px, 78vw);
  }

  .hero-video-photo.is-right {
    margin-top: -2px;
  }

  .contact-link,
  .form-fallback {
    width: min(280px, 78vw);
  }

  .scroll-note {
    display: none;
  }

  .top-float {
    right: 14px;
    bottom: 14px;
    width: 198px;
    height: 118px;
  }

  .top-float-bubble {
    right: 54px;
    bottom: 50px;
    min-height: 36px;
    padding-inline: 12px;
    font-size: 11px;
  }

  .top-float-sticker {
    width: 68px;
  }
}

/* Responsive hardening for browser zoom and narrow devices. */
.site-shell,
main,
.section-band,
.section-inner,
.hero-copy,
.social-actions,
.hero-video-row,
.contact-inner,
.form-page-inner,
.form-frame-wrap {
  max-width: 100%;
  min-width: 0;
}

h1,
h2,
h3,
p,
a,
strong,
small,
dd {
  overflow-wrap: anywhere;
}

.social-button,
.hero-video-photo,
.contact-link,
.form-fallback {
  min-width: 0;
}

.social-actions {
  align-items: stretch;
}

.social-button {
  flex: 0 1 168px;
  max-width: 168px;
}

.hero-video-photo {
  flex: 1 1 300px;
}

@media (max-width: 1360px) {
  .hero {
    min-height: auto;
    padding-top: clamp(118px, 11vw, 150px);
    padding-bottom: clamp(52px, 6vw, 78px);
  }

  .hero-copy {
    width: min(62vw, 700px);
  }

  .social-actions {
    width: min(650px, 58vw);
  }

  .hero-video-row {
    width: min(720px, 60vw);
    margin-left: 0;
  }

  .hero-visual {
    right: clamp(-132px, -8vw, -72px);
    bottom: -190px;
    width: min(54vw, 720px);
    height: min(104vh, 900px);
  }
}

@media (max-width: 1120px) {
  .site-header {
    padding-inline: clamp(20px, 5vw, 52px);
  }

  .hero {
    padding-top: clamp(112px, 14vw, 140px);
  }

  .hero-copy {
    width: min(720px, 100%);
  }

  .social-actions,
  .hero-video-row {
    width: min(720px, 100%);
  }

  .hero-visual {
    z-index: 1;
    right: clamp(-236px, -19vw, -150px);
    bottom: clamp(-172px, -15vw, -110px);
    width: min(72vw, 650px);
    height: min(82vh, 720px);
    opacity: 0.5;
  }

  .hero-ring {
    opacity: 0.52;
  }

  .hero-video-row {
    margin-top: 44px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 16px clamp(16px, 5vw, 28px);
  }

  .site-header.is-scrolled,
  .site-header.is-open {
    padding-block: 12px;
  }

  .brand-logo {
    height: clamp(48px, 12vw, 62px);
  }

  .hero {
    min-height: auto;
    padding: clamp(96px, 24vw, 128px) clamp(18px, 5vw, 34px) 56px;
  }

  .hero::after {
    right: -44%;
    bottom: -4%;
    width: 112vw;
    height: 50%;
  }

  .hero-backline {
    right: -0.16em;
    bottom: 1.15em;
    font-size: clamp(92px, 24vw, 136px);
    writing-mode: vertical-rl;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(54px, 16vw, 86px);
    line-height: 0.9;
  }

  .hero-lead {
    max-width: 28em;
    font-size: 15px;
    line-height: 1.75;
  }

  .social-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    transform: none;
  }

  .social-button {
    width: 100%;
    max-width: none;
    min-height: 64px;
    padding: 12px 12px 12px 62px;
  }

  .social-code {
    left: 12px;
    width: 42px;
    height: 42px;
  }

  .social-code img {
    width: 22px;
    height: 22px;
  }

  .social-button strong {
    font-size: 13px;
    line-height: 1.15;
  }

  .social-button small {
    margin-bottom: 5px;
    font-size: 8px;
  }

  .hero-video-row {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin-top: 42px;
  }

  .hero-video-photo,
  .hero-video-photo.is-left,
  .hero-video-photo.is-right {
    width: min(360px, 100%);
    margin-top: 0;
  }

  .photo-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .hero-visual {
    right: -210px;
    bottom: -92px;
    width: 430px;
    height: 560px;
    opacity: 0.26;
  }

  .hero-ring,
  .scroll-note {
    display: none;
  }

  .ticker {
    min-height: 10px;
  }

  .contact {
    padding-top: clamp(64px, 15vw, 94px);
    padding-bottom: clamp(70px, 16vw, 104px);
  }

  .contact h2 {
    font-size: clamp(34px, 10.5vw, 58px);
    line-height: 1.12;
  }

  .contact p {
    font-size: 15px;
    line-height: 1.9;
  }

  .site-footer {
    text-align: center;
  }

  .form-page {
    min-height: auto;
    padding-top: clamp(108px, 24vw, 136px);
  }

  .form-title {
    font-size: clamp(58px, 17vw, 94px);
  }

  .form-lead {
    font-size: 15px;
  }

  .form-frame-wrap {
    border-radius: 10px;
  }

  .google-form-frame {
    min-height: 820px;
    height: 1120px;
  }
}

@media (max-width: 430px) {
  .section-band {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-floaties {
    opacity: 0.72;
  }

  .floatie-05,
  .floatie-07,
  .floatie-08,
  .floatie-13,
  .floatie-15 {
    display: none;
  }

  .social-actions {
    grid-template-columns: 1fr;
    width: min(320px, 100%);
  }

  .social-button {
    min-height: 62px;
  }

  .hero-video-row {
    width: min(360px, 100%);
  }

  .hero-visual {
    right: -246px;
    bottom: -112px;
    opacity: 0.2;
  }

  .contact-link,
  .form-fallback {
    width: min(320px, 100%);
    padding-inline: 18px;
  }

  .form-lead br {
    display: none;
  }

  .google-form-frame {
    min-height: 760px;
    height: 1040px;
  }
}

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