:root {
  --bg: #f6f7f3;
  --ink: #17201b;
  --muted: #5b6760;
  --panel: #ffffff;
  --panel-soft: rgba(255, 255, 255, 0.74);
  --glass: rgba(255, 255, 255, 0.72);
  --band-bg: #e8ece4;
  --header-bg: rgba(246, 247, 243, 0.9);
  --header-border: rgba(216, 221, 212, 0.82);
  --footer-bg: #ffffff;
  --line: #d8ddd4;
  --accent: #126b55;
  --accent-dark: #0c4b3f;
  --accent-contrast: #ffffff;
  --accent-soft: rgba(18, 107, 85, 0.1);
  --gold: #c3912f;
  --steel: #34445a;
  --shadow: 0 18px 50px rgba(22, 32, 27, 0.12);
  --shadow-hover: 0 22px 60px rgba(22, 32, 27, 0.16);
  --hero-tint: linear-gradient(180deg, rgba(18, 107, 85, 0.08), transparent 440px);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

[data-theme="dark"] {
  --bg: #0e1512;
  --ink: #eaf0eb;
  --muted: #9fb0a6;
  --panel: #16201b;
  --panel-soft: rgba(34, 48, 40, 0.55);
  --glass: rgba(34, 48, 40, 0.6);
  --band-bg: #131c17;
  --header-bg: rgba(14, 21, 18, 0.82);
  --header-border: rgba(80, 100, 90, 0.4);
  --footer-bg: #131c17;
  --line: #2a372f;
  --accent: #4ec9a5;
  --accent-dark: #3bb38f;
  --accent-contrast: #06231b;
  --accent-soft: rgba(78, 201, 165, 0.14);
  --gold: #dcaa5a;
  --steel: #b6c2cb;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --shadow-hover: 0 22px 60px rgba(0, 0, 0, 0.55);
  --hero-tint: linear-gradient(180deg, rgba(78, 201, 165, 0.08), transparent 440px);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    var(--hero-tint),
    var(--bg);
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  z-index: 100;
  top: -100px;
  left: 16px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--header-border);
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.brand span {
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav a {
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

nav a:hover,
nav a:focus-visible {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-left: 6px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

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

.i-sun {
  display: none;
}

.i-moon {
  display: block;
}

[data-theme="dark"] .i-sun {
  display: block;
}

[data-theme="dark"] .i-moon {
  display: none;
}

main {
  overflow: clip;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  min-height: 76vh;
  padding: clamp(48px, 8vw, 104px) clamp(20px, 5vw, 72px) 40px;
}

.hero-copy,
.section {
  max-width: 1120px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.2rem, 9vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: var(--steel);
  font-size: 1rem;
  line-height: 1.3;
}

.lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.35rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 760;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
}

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

.button.primary {
  color: var(--accent-contrast);
  background: var(--accent);
}

.button.primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 12px 26px rgba(18, 107, 85, 0.28);
}

.button.secondary {
  color: var(--accent-dark);
  border-color: rgba(18, 107, 85, 0.24);
  background: var(--glass);
}

.button.secondary:hover {
  background: var(--panel);
}

@media (hover: none) {
  .button:hover {
    transform: none;
  }
}

.identity-panel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.panel-art {
  display: grid;
  place-items: center;
  min-height: 220px;
  background:
    linear-gradient(135deg, rgba(18, 107, 85, 0.92), rgba(52, 68, 90, 0.94)),
    #126b55;
}

.panel-art img {
  width: 78px;
  height: 78px;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.24));
}

.panel-art span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 4.5rem;
  font-weight: 860;
  line-height: 0.82;
}

.identity-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 4px 24px 20px;
}

.identity-list div {
  display: grid;
  grid-template-columns: minmax(148px, 0.8fr) minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.identity-list div:last-child {
  border-bottom: 0;
}

dt {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

dd {
  margin: 0;
  color: var(--ink);
  font-weight: 760;
}

.section {
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.section-heading {
  display: grid;
  gap: 0;
  max-width: 760px;
  margin-bottom: 30px;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
}

.product-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-media:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.product-media img {
  display: block;
  width: 100%;
  height: auto;
}

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(9, 7, 15, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.product-features li {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-soft);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

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

.genre-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.genre-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.genre-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.genre-body {
  padding: 16px 18px 20px;
}

.genre-badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.genre-card h3 {
  margin: 0 0 6px;
}

.genre-body .text-link {
  margin-top: 12px;
}

.product-copy p {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.68;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--accent-dark);
  font-weight: 780;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  transition: color 0.15s ease;
}

.text-link:hover {
  color: var(--accent);
}

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

.details-grid article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
}

.details-grid article {
  min-height: 168px;
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.details-grid article:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.details-grid p,
.contact-card p,
.band p,
.prose p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
  max-width: none;
  background: var(--band-bg);
}

.band > * {
  max-width: 880px;
}

.contact-section {
  padding-bottom: clamp(72px, 10vw, 126px);
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.contact-card > div {
  padding: 24px;
}

.contact-card > div + div {
  border-left: 1px solid var(--line);
}

.contact-card a,
.prose a {
  color: var(--accent-dark);
  font-weight: 760;
}

.contact-card a:hover,
.prose a:hover {
  color: var(--accent);
}

.policy {
  max-width: 980px;
  margin: 0 auto;
}

.policy-hero {
  padding-bottom: 26px;
}

.prose {
  padding-top: 16px;
}

.prose h2 {
  margin: 34px 0 12px;
  font-size: 1.45rem;
  line-height: 1.22;
}

.prose h2:first-child {
  margin-top: 0;
}

.not-found {
  max-width: 760px;
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.not-found .lead {
  margin-left: auto;
  margin-right: auto;
}

.not-found .hero-actions {
  justify-content: center;
}

footer {
  display: grid;
  gap: 6px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  background: var(--footer-bg);
}

footer p {
  margin: 0;
}

/* Scroll-reveal animation (progressive enhancement: hidden only when JS is on) */
.reveal {
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js .reveal {
  opacity: 0;
  transform: translateY(14px);
}

.reveal.is-visible,
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .hero,
  .band,
  .contact-card,
  .product-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

  .contact-card > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 18px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  nav a {
    padding-right: 8px;
    padding-left: 8px;
  }

  .brand span {
    white-space: normal;
  }

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

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

  .identity-panel {
    min-height: 0;
  }

  .identity-panel div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .panel-art {
    min-height: 174px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .skip-link,
  .theme-toggle,
  nav {
    display: none;
  }

  .site-header {
    position: static;
    border-bottom: 1px solid #999;
    background: #fff;
  }

  body {
    background: #fff;
    color: #000;
  }

  a {
    color: #000;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
