:root {
  --ink: #07090d;
  --ink-soft: #0e1218;
  --mist: #9eb3b0;
  --moon: #d4c4a8;
  --moon-bright: #f0e6d4;
  --teal: #5f8f8a;
  --teal-deep: #2a4543;
  --fog: rgba(158, 179, 176, 0.12);
  --line: rgba(240, 230, 212, 0.14);
  --text: rgba(240, 230, 212, 0.92);
  --text-dim: rgba(158, 179, 176, 0.82);
  --display: "Fraunces", "Times New Roman", serif;
  --body: "Figtree", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--body);
  color: var(--text);
  background: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--moon);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--moon-bright);
}

.sky {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 60% at 70% 10%, rgba(95, 143, 138, 0.16), transparent 55%),
    radial-gradient(ellipse 70% 50% at 15% 80%, rgba(212, 196, 168, 0.06), transparent 50%),
    linear-gradient(165deg, #0a1014 0%, var(--ink) 45%, #050608 100%);
}

.sky__grain {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.sky__roots {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background:
    url("/assets/roots-texture.jpg") center / cover no-repeat;
  mix-blend-mode: soft-light;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
  animation: drift 28s var(--ease) infinite alternate;
}

.orb--a {
  width: min(52vw, 420px);
  height: min(52vw, 420px);
  top: 8%;
  right: 8%;
  background: radial-gradient(circle, rgba(95, 143, 138, 0.45), transparent 70%);
}

.orb--b {
  width: min(40vw, 320px);
  height: min(40vw, 320px);
  bottom: 18%;
  left: 4%;
  background: radial-gradient(circle, rgba(212, 196, 168, 0.22), transparent 70%);
  animation-delay: -10s;
  animation-duration: 34s;
}

.orb--c {
  width: min(28vw, 220px);
  height: min(28vw, 220px);
  top: 42%;
  left: 42%;
  background: radial-gradient(circle, rgba(42, 69, 67, 0.55), transparent 70%);
  animation-delay: -18s;
  animation-duration: 40s;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-3%, 4%, 0) scale(1.08);
  }
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-content: end;
  padding: 0;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.04);
  animation: heroKen 18s var(--ease) both;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.28) 0%, rgba(7, 9, 13, 0.18) 35%, rgba(7, 9, 13, 0.72) 68%, rgba(7, 9, 13, 0.96) 100%),
    linear-gradient(90deg, rgba(7, 9, 13, 0.55) 0%, transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 5.5rem 0 2.75rem;
}

.hero__brand {
  font-family: var(--display);
  font-size: clamp(2.9rem, 8.5vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.94;
  margin: 0 0 0.65rem;
  color: var(--moon-bright);
  text-shadow: 0 2px 28px rgba(7, 9, 13, 0.55);
  animation: rise 1.1s var(--ease) 0.12s both;
}

.hero__headline {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 22ch;
  margin: 0 0 0.7rem;
  color: var(--mist);
  animation: rise 1.1s var(--ease) 0.24s both;
}

.hero__lead {
  max-width: 40ch;
  margin: 0 0 1.35rem;
  color: rgba(240, 230, 212, 0.78);
  font-size: 1.02rem;
  animation: rise 1.1s var(--ease) 0.36s both;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  animation: rise 1.1s var(--ease) 0.48s both;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.94rem;
  text-decoration: none;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.cta:hover {
  transform: translateY(-1px);
}

.cta--primary {
  background: linear-gradient(135deg, var(--moon) 0%, #b8a888 100%);
  color: var(--ink);
}

.cta--primary:hover {
  color: var(--ink);
  background: linear-gradient(135deg, var(--moon-bright) 0%, var(--moon) 100%);
}

.cta--ghost {
  border: 1px solid var(--line);
  color: var(--moon-bright);
  background: rgba(14, 18, 24, 0.45);
  backdrop-filter: blur(8px);
}

.cta--ghost:hover {
  border-color: rgba(240, 230, 212, 0.28);
  color: var(--moon-bright);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroKen {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.02);
  }
}

/* —— Sections —— */
.section {
  padding: 2.75rem 0;
  border-top: 1px solid var(--line);
}

.section--tight {
  padding: 2.25rem 0;
}

.section__label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 0.45rem;
}

.section h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.65rem, 3.2vw, 2.2rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.55rem;
  color: var(--moon-bright);
}

.section__intro {
  max-width: 52ch;
  color: var(--text-dim);
  margin: 0 0 1.35rem;
}

.about-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .about-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
  }
}

.answer-first {
  max-width: 58ch;
  font-size: 1.05rem;
  color: var(--text);
  margin: 0;
}

.about-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  min-height: 220px;
  box-shadow: 0 0 0 1px var(--line);
  animation: rise 1.2s var(--ease) 0.2s both;
}

.about-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center 55%;
}

.about-visual figcaption {
  position: absolute;
  left: 0.85rem;
  bottom: 0.7rem;
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 230, 212, 0.78);
  text-shadow: 0 1px 10px rgba(7, 9, 13, 0.8);
}

.path-band {
  position: relative;
  z-index: 1;
  min-height: 7.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.path-band__media {
  position: absolute;
  inset: 0;
}

.path-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: saturate(0.85) brightness(0.72);
}

.path-band__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.82) 0%, rgba(7, 9, 13, 0.35) 45%, rgba(7, 9, 13, 0.75) 100%),
    linear-gradient(180deg, rgba(7, 9, 13, 0.2), rgba(7, 9, 13, 0.55));
}

.path-band__copy {
  position: relative;
  z-index: 1;
  min-height: 7.5rem;
  display: flex;
  align-items: center;
  padding: 1.35rem 0;
}

.path-band__copy p {
  margin: 0;
  max-width: 42ch;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  color: var(--moon-bright);
  line-height: 1.3;
}

.album-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 900px) {
  .album-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1.35rem;
  }
}

.album {
  display: grid;
  gap: 0.55rem;
  padding: 0.85rem 0.9rem 0.95rem;
  background:
    linear-gradient(165deg, rgba(14, 18, 24, 0.72), rgba(7, 9, 13, 0.35)),
    url("/assets/roots-texture.jpg") center / cover;
  background-blend-mode: normal, soft-light;
  box-shadow: inset 0 0 0 1px var(--line);
}

.album h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.12rem;
  margin: 0;
  color: var(--moon);
}

.album p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.92rem;
}

.album iframe {
  width: 100%;
  min-height: 152px;
  border: 0;
  border-radius: 10px;
  background: var(--ink-soft);
  box-shadow: 0 0 0 1px var(--line);
}

.album--featured iframe {
  min-height: 352px;
}

.album--featured {
  grid-column: 1 / -1;
}

.dsp-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.faq-list {
  display: grid;
  gap: 0;
  max-width: 720px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--moon-bright);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--teal);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: 0.55rem 0 0;
  color: var(--text-dim);
  max-width: 58ch;
}

.footer {
  padding: 2.25rem 0 3rem;
  border-top: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  justify-content: space-between;
  align-items: baseline;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.1rem;
}

.footer a {
  text-decoration: none;
  color: var(--mist);
}

.footer a:hover {
  color: var(--moon-bright);
}
