:root {
  --ink: #100f0d;
  --night: #071318;
  --deep: #0b2830;
  --pool: #0089a2;
  --pink: #ff3ca9;
  --gold: #f1c15e;
  --amber: #d9792b;
  --cream: #fff7e6;
  --paper: #ffffff;
  --muted: rgba(255, 247, 230, 0.76);
  --line: rgba(255, 247, 230, 0.18);
  --dark-line: rgba(16, 15, 13, 0.12);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 86px;
}

body {
  margin: 0;
  color: var(--cream);
  background: var(--night);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", system-ui, sans-serif;
  line-height: 1.75;
}

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

.desktop-break {
  display: inline;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 247, 230, 0.14);
  background: rgba(7, 19, 24, 0.84);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  font-size: 1.05rem;
  font-weight: 900;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px clamp(12px, 2vw, 26px);
  color: rgba(255, 247, 230, 0.8);
  font-size: 0.88rem;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.nav-icon {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 247, 230, 0.28);
}

.nav-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-youtube {
  color: var(--paper);
  font-weight: 900;
}

.nav-service {
  width: 28px;
  height: 28px;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 247, 230, 0.22), 0 8px 20px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-service:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255, 247, 230, 0.36), 0 10px 24px rgba(0, 0, 0, 0.24);
}

.nav-service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero {
  position: relative;
  min-height: calc(100vh - 69px);
  display: grid;
  align-items: end;
  padding: clamp(72px, 10vw, 136px) clamp(18px, 5vw, 76px) clamp(42px, 7vw, 84px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 19, 24, 0.94) 0%, rgba(7, 19, 24, 0.78) 34%, rgba(7, 19, 24, 0.16) 76%),
    linear-gradient(0deg, rgba(7, 19, 24, 0.92) 0%, rgba(7, 19, 24, 0) 34%),
    url("./assets/banner2.png") center / cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 60, 169, 0.18), transparent 32%, rgba(0, 137, 162, 0.2));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Hiragino Mincho ProN", serif;
  font-size: clamp(4.2rem, 9vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 4px 38px rgba(0, 0, 0, 0.54);
  word-break: keep-all;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Hiragino Mincho ProN", serif;
  font-size: clamp(2.1rem, 4.5vw, 5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.35;
}

.tagline {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--paper);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 900;
  line-height: 1.45;
}

.lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
}

.hero-actions,
.youtube-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid rgba(255, 247, 230, 0.2);
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), #fff0a8);
  box-shadow: 0 16px 38px rgba(241, 193, 94, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.secondary {
  color: var(--cream);
  border-color: rgba(255, 247, 230, 0.36);
  background: rgba(255, 247, 230, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.secondary.dark {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 32px rgba(16, 15, 13, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.listen-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 76px);
  background:
    linear-gradient(100deg, rgba(7, 19, 24, 0.96), rgba(11, 40, 48, 0.92)),
    linear-gradient(135deg, rgba(255, 60, 169, 0.12), rgba(241, 193, 94, 0.12));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.listen-copy p:not(.eyebrow),
.profile-text p,
.youtube-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

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

.stream-links a {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-items: center;
  min-height: 118px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 247, 230, 0.13), rgba(255, 247, 230, 0.06));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.stream-links a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 42%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.stream-links a:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 247, 230, 0.34);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.26);
}

.stream-links a:hover::after {
  opacity: 1;
}

.service-icon {
  display: grid;
  grid-row: 1 / span 2;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 2px solid rgba(255, 247, 230, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-name,
.story-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-weight: 900;
}

.stream-links strong {
  display: block;
  grid-column: 2;
  color: var(--paper);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.18;
}

.profile-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 76px);
  color: var(--ink);
  background: var(--cream);
}

.profile-feature img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.profile-text {
  max-width: 760px;
}

.profile-text .eyebrow,
.story-section .eyebrow,
.sound-section .eyebrow {
  color: var(--amber);
}

.profile-text p {
  color: rgba(16, 15, 13, 0.7);
}

.story-section {
  position: relative;
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 76px);
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(7, 19, 24, 0.98) 0%, rgba(7, 19, 24, 0.9) 44%, rgba(7, 19, 24, 0.74) 100%),
    radial-gradient(circle at 12% 18%, rgba(255, 60, 169, 0.18), transparent 31%),
    radial-gradient(circle at 92% 10%, rgba(241, 193, 94, 0.16), transparent 30%),
    url("./assets/performance-edm.png") center / cover;
}

.story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 247, 230, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 247, 230, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 72%);
  pointer-events: none;
}

.story-section::after {
  content: "";
  position: absolute;
  right: clamp(20px, 7vw, 110px);
  bottom: -90px;
  width: min(520px, 46vw);
  height: 260px;
  border: 1px solid rgba(241, 193, 94, 0.22);
  border-radius: 50%;
  transform: rotate(-10deg);
  pointer-events: none;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 38px;
}

.story-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: end;
  max-width: none;
  margin-bottom: clamp(36px, 6vw, 72px);
}

.story-heading h2 {
  max-width: 900px;
}

.story-heading > p {
  margin: 0 0 10px;
  padding-left: 24px;
  border-left: 1px solid rgba(241, 193, 94, 0.48);
  color: rgba(255, 247, 230, 0.68);
  font-size: 0.98rem;
}

.story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 247, 230, 0.2);
  border-bottom: 1px solid rgba(255, 247, 230, 0.14);
}

.story-grid::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 35%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.story-grid article {
  position: relative;
  min-height: 310px;
  padding: clamp(26px, 4vw, 42px);
  border-right: 1px solid rgba(255, 247, 230, 0.14);
  background: linear-gradient(180deg, rgba(255, 247, 230, 0.1), rgba(255, 247, 230, 0.035));
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, background-color 180ms ease;
}

.story-grid article:last-child {
  border-right: 0;
}

.story-grid article::before {
  content: "";
  position: absolute;
  top: -7px;
  left: clamp(26px, 4vw, 42px);
  width: 13px;
  height: 13px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--night);
  box-shadow: 0 0 0 8px rgba(241, 193, 94, 0.08), 0 0 24px rgba(241, 193, 94, 0.26);
}

.story-grid article:hover {
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(255, 247, 230, 0.14), rgba(255, 247, 230, 0.05));
}

.story-grid span {
  margin-bottom: 28px;
  color: rgba(241, 193, 94, 0.66);
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  line-height: 0.85;
}

.story-grid h3 {
  color: var(--paper);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.story-grid p {
  margin-bottom: 0;
  color: rgba(255, 247, 230, 0.7);
  font-size: 0.98rem;
}

.sound-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
  padding: clamp(56px, 8vw, 98px) clamp(18px, 5vw, 76px);
  color: var(--ink);
  background: linear-gradient(135deg, #fff7e6, #ffe4b5);
}

.keyword-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.production-note {
  max-width: 680px;
  color: rgba(16, 15, 13, 0.68);
}

.keyword-list li {
  padding: 18px 22px;
  border: 1px solid rgba(16, 15, 13, 0.12);
  background: rgba(255, 255, 255, 0.58);
  color: rgba(16, 15, 13, 0.78);
  font-weight: 900;
}

.youtube-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(26px, 5vw, 68px);
  align-items: center;
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 76px);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 247, 230, 0.94), rgba(255, 247, 230, 0.76)),
    url("./assets/banner2.png") center / cover;
}

.youtube-copy {
  max-width: 780px;
}

.youtube-copy p {
  color: rgba(16, 15, 13, 0.72);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 76px);
  color: rgba(255, 247, 230, 0.72);
  background: var(--night);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold);
  font-weight: 900;
}

@media (max-width: 980px) {
  .hero {
    min-height: 760px;
    background-position: 62% center;
  }

  .listen-panel,
  .profile-feature,
  .sound-section,
  .youtube-section {
    grid-template-columns: 1fr;
  }

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

  .story-heading {
    grid-template-columns: 1fr;
  }

  .story-heading > p {
    max-width: 560px;
  }

  .story-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 247, 230, 0.14);
  }

  .story-grid article:last-child {
    border-bottom: 0;
  }

  .youtube-links {
    max-width: 560px;
  }
}

@media (max-width: 680px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    position: static;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 8px 16px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 700px;
    padding-top: 58px;
    background-position: 65% center;
  }

  h1 {
    font-size: 3.9rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .tagline {
    font-size: 1.18rem;
  }

  .button {
    width: 100%;
  }

  .desktop-break {
    display: none;
  }

  .stream-links {
    grid-template-columns: 1fr;
  }

  .stream-links a {
    min-height: 96px;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 680px;
    background-position: 68% center;
  }

  h1 {
    font-size: 3.25rem;
  }
}
