
:root {
  --bg: #090b0b;
  --bg-soft: #101313;
  --panel: #141818;
  --text: #f4f0e8;
  --muted: #b7b0a4;
  --gold: #ffc400;
  --gold-deep: #b97817;
  --brown: #69240e;
  --line: rgba(255, 196, 0, .22);
  --max: 1180px;
  --radius: 28px;
  --shadow: 0 32px 90px rgba(0, 0, 0, .38);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 85% 8%, rgba(185, 120, 23, .12), transparent 28rem),
    linear-gradient(180deg, #090b0b 0%, #0c0f0f 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 999;
  padding: .8rem 1rem;
  background: var(--gold);
  color: #111;
  border-radius: 10px;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  min-height: 84px;
  padding: 1rem clamp(1rem, 3vw, 3rem);
  background: linear-gradient(180deg, rgba(7, 9, 9, .92), rgba(7, 9, 9, .3), transparent);
  transition: background .3s ease, backdrop-filter .3s ease;
}

.site-header.scrolled {
  background: rgba(7, 9, 9, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.brand { justify-self: start; }
.brand-wordmark { width: clamp(145px, 16vw, 225px); }

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.2rem);
}
.main-nav a,
.site-footer a,
.social-row a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 750;
  letter-spacing: .04em;
  transition: color .2s ease;
}
.main-nav a:hover,
.site-footer a:hover,
.social-row a:hover { color: var(--gold); }

.sound-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .62rem .9rem;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(15, 18, 18, .65);
  cursor: pointer;
}
.sound-button:hover { border-color: var(--gold); }
.sound-icon { color: var(--gold); font-size: 1.15rem; }
.sound-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }

.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  padding: 9rem max(1.4rem, calc((100vw - var(--max)) / 2)) 5rem;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 22%;
  background: linear-gradient(transparent, var(--bg));
}

.hero-glow {
  position: absolute;
  z-index: -3;
  width: 56vw;
  height: 56vw;
  max-width: 880px;
  max-height: 880px;
  right: -8vw;
  top: -8vw;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 196, 0, .28), rgba(185, 120, 23, .12) 35%, transparent 68%);
  filter: blur(16px);
  animation: pulseGlow 7s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  to { transform: scale(1.08); opacity: .76; }
}

.hero-grid {
  position: absolute;
  z-index: -4;
  inset: 0;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.forest-shadow {
  position: absolute;
  z-index: -2;
  bottom: -4rem;
  width: 34vw;
  height: 55%;
  opacity: .18;
  filter: blur(2px);
  background:
    linear-gradient(120deg, transparent 35%, #000 36% 42%, transparent 43%),
    linear-gradient(72deg, transparent 25%, #000 26% 33%, transparent 34%),
    linear-gradient(95deg, transparent 52%, #000 53% 61%, transparent 62%);
}
.forest-shadow-left { left: -5vw; transform: rotate(-4deg); }
.forest-shadow-right { right: -7vw; transform: scaleX(-1) rotate(-3deg); }

.hero-copy { position: relative; z-index: 3; max-width: 650px; }
.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .24em;
}
.hero-logo {
  width: min(100%, 650px);
  max-height: 240px;
  object-fit: contain;
  object-position: left center;
  margin-left: -1rem;
}
.hero-text {
  margin: 1.6rem 0 2rem;
  max-width: 600px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.9vw, 1.45rem);
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: .95rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .04em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary {
  background: var(--gold);
  color: #0a0a08;
  box-shadow: 0 12px 34px rgba(255, 196, 0, .19);
}
.button-ghost {
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.025);
}

.hero-wolf-wrap {
  position: relative;
  justify-self: end;
  width: min(46vw, 600px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.hero-wolf {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 38px 60px rgba(0,0,0,.42));
  animation: floatWolf 5.5s ease-in-out infinite;
}
@keyframes floatWolf {
  50% { transform: translateY(-13px) rotate(.4deg); }
}
.wolf-halo {
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  border: 1px solid var(--line);
  box-shadow:
    0 0 0 25px rgba(255,196,0,.035),
    0 0 0 60px rgba(255,196,0,.02);
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  color: var(--muted);
  text-decoration: none;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.scroll-hint b { color: var(--gold); font-size: 1.2rem; animation: bounce 1.8s infinite; }
@keyframes bounce { 50% { transform: translateY(6px); } }

.intro-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--gold);
  color: #0b0b09;
}
.intro-strip p {
  margin: 0;
  padding: .9rem 1rem;
  text-align: center;
  font-size: clamp(1rem, 3vw, 1.9rem);
  font-weight: 1000;
  letter-spacing: .18em;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) 1.4rem;
}

.section-heading {
  display: grid;
  grid-template-columns: .75fr 1.2fr;
  column-gap: 4rem;
  align-items: end;
  margin-bottom: 3rem;
}
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2,
.about-copy h2,
.contact-box h2 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: .96;
  letter-spacing: -.045em;
}
.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.3rem;
}
.feature-card {
  position: relative;
  min-height: 410px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .28s ease, border-color .28s ease;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(255,196,0,.35); }
.feature-video { grid-column: span 5; }
.feature-music { grid-column: span 7; display: grid; grid-template-columns: .88fr 1.12fr; }
.feature-projects { grid-column: 3 / span 8; min-height: 330px; }

.card-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  height: 100%;
  padding: clamp(1.6rem, 3vw, 2.6rem);
}
.card-kicker { color: var(--gold); font-size: .72rem; font-weight: 900; letter-spacing: .2em; }
.card-copy h3 { margin: 0 0 .8rem; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1; }
.card-copy p { color: var(--muted); margin: 0 0 1.4rem; }
.card-copy a { text-decoration: none; font-weight: 850; margin-top: .35rem; }
.card-copy a:hover { color: var(--gold); }

.card-number {
  position: absolute;
  right: 1.2rem;
  top: .2rem;
  color: rgba(255,196,0,.12);
  font-size: 8rem;
  font-weight: 1000;
  line-height: 1;
}
.feature-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(255,196,0,.28), transparent 18%),
    linear-gradient(135deg, transparent 30%, rgba(105,36,14,.55));
}
.card-cover { width: 100%; height: 100%; object-fit: cover; }
.feature-projects::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 84% 48%, rgba(255,196,0,.15), transparent 28%);
}
.project-lines {
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image:
    linear-gradient(135deg, transparent 0 44%, rgba(255,196,0,.14) 45% 45.5%, transparent 46%),
    linear-gradient(45deg, transparent 0 60%, rgba(255,255,255,.05) 61% 61.5%, transparent 62%);
}

.about {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}
.about-art {
  position: relative;
  padding: 1.2rem;
}
.about-art::before {
  content: "";
  position: absolute;
  inset: 11%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,196,0,.2), transparent 66%);
  filter: blur(10px);
}
.about-art img { position: relative; filter: drop-shadow(0 30px 60px rgba(0,0,0,.36)); }
.about-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.07rem; max-width: 680px; }

.contact { padding-top: 3rem; }
.contact-box {
  position: relative;
  padding: clamp(2rem, 6vw, 5.5rem);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at 80% 20%, rgba(255,196,0,.18), transparent 26rem),
    linear-gradient(145deg, #151919, #0e1111);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.contact-box::after {
  content: "LET'S GO";
  position: absolute;
  right: -1rem;
  bottom: -2.5rem;
  color: rgba(255,196,0,.04);
  font-size: clamp(5rem, 15vw, 14rem);
  line-height: 1;
  font-weight: 1000;
  white-space: nowrap;
}
.contact-box > * { position: relative; z-index: 1; }
.contact-box > p:not(.eyebrow) { color: var(--muted); }
.contact-mail {
  display: inline-block;
  margin: 1rem 0 2.2rem;
  color: var(--gold);
  font-size: clamp(1.2rem, 3vw, 2.25rem);
  font-weight: 900;
  text-decoration: none;
}
.contact-mail.disabled { cursor: default; opacity: .72; }
.social-row { display: flex; flex-wrap: wrap; gap: 1rem 2rem; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 2rem clamp(1.4rem, 4vw, 4rem);
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
  font-size: .88rem;
}
.footer-logo { width: 130px; }
.site-footer p { margin: 0; text-align: center; }
.site-footer > div { justify-self: end; display: flex; gap: 1.2rem; }

.music-panel {
  position: fixed;
  z-index: 80;
  right: 1rem;
  bottom: 1rem;
  width: min(360px, calc(100vw - 2rem));
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(10, 12, 12, .94);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transform: translateY(140%);
  transition: transform .35s ease;
}
.music-panel.open { transform: translateY(0); }
.music-panel div { display: grid; }
.music-panel span { color: var(--muted); font-size: .82rem; }
.music-close {
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto auto; }
  .menu-toggle {
    display: grid;
    gap: 4px;
    width: 42px; height: 42px;
    place-content: center;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 50%;
    background: rgba(15,18,18,.8);
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { display: block; width: 18px; height: 2px; background: var(--text); }
  .main-nav {
    position: absolute;
    top: 76px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .7rem;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    background: rgba(10,12,12,.96);
    backdrop-filter: blur(16px);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: .8rem 1rem; }
  .sound-label { display: none; }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 7.5rem;
  }
  .hero-copy { margin: 0 auto; }
  .hero-logo { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-wolf-wrap { justify-self: center; width: min(80vw, 520px); margin-top: -1rem; }
  .scroll-hint { display: none; }

  .section-heading { grid-template-columns: 1fr; gap: 1rem; }
  .card-grid { grid-template-columns: 1fr; }
  .feature-video, .feature-music, .feature-projects { grid-column: auto; }
  .feature-music { grid-template-columns: 1fr; }
  .card-cover { aspect-ratio: 1; height: auto; }
  .about { grid-template-columns: 1fr; }
  .about-art { max-width: 520px; margin: 0 auto; }
}

@media (max-width: 620px) {
  .site-header { padding-inline: .8rem; min-height: 72px; }
  .brand-wordmark { width: 124px; }
  .hero { padding-inline: 1rem; }
  .hero-logo { width: 100%; }
  .hero-text br { display: none; }
  .feature-card { min-height: 360px; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .footer-logo, .site-footer > div { justify-self: center; }
}


/* Brand emblem + language switcher */
.brand-combo {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
}

.brand-emblem {
  width: clamp(42px, 4.4vw, 62px);
  height: clamp(42px, 4.4vw, 62px);
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 7px 14px rgba(0,0,0,.32));
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: .55rem;
}

.language-switcher {
  position: relative;
}

.language-button {
  min-width: 53px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  padding: .55rem .62rem;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(15,18,18,.72);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}

.language-button:hover,
.language-button[aria-expanded="true"] {
  border-color: var(--gold);
  background: rgba(20,23,23,.95);
}

.selected-language-flag {
  font-size: 1.22rem;
  line-height: 1;
}

.language-chevron {
  color: var(--muted);
  font-size: .76rem;
  transform: translateY(-1px);
  transition: transform .2s ease;
}

.language-button[aria-expanded="true"] .language-chevron {
  transform: translateY(1px) rotate(180deg);
}

.language-menu {
  position: absolute;
  z-index: 90;
  top: calc(100% + .55rem);
  right: 0;
  min-width: 72px;
  padding: .38rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(10,12,12,.97);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(0,0,0,.42);
}

.language-menu[hidden] {
  display: none;
}

.language-menu button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .48rem;
  padding: .6rem .55rem;
  color: var(--text);
  border: 0;
  border-radius: 11px;
  background: transparent;
  font: inherit;
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .08em;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button.active {
  color: var(--gold);
  background: rgba(255,196,0,.08);
}

.language-menu button span:first-child {
  font-size: 1.1rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .header-actions {
    gap: .4rem;
  }

  .brand-emblem {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 620px) {
  .brand-combo {
    gap: .42rem;
  }

  .brand-emblem {
    width: 36px;
    height: 36px;
  }

  .brand-combo .brand-wordmark {
    width: 104px;
  }

  .language-button {
    min-width: 46px;
    height: 40px;
    padding-inline: .48rem;
  }
}

@media (max-width: 430px) {
  .brand-combo .brand-wordmark {
    display: none;
  }
}
