:root {
  --cream: #F4EDE3;
  --haze-top: #F8E6D4;
  --peach: #F0C9A0;
  --amber: #DD8442;
  --amber-deep: #C56F30;
  --forest: #2B3A30;
  --forest-deep: #222E26;
  --ink: #1C1812;
  --muted: #6E6256;
  --mist: #8FA0A6;
  --white: #FFFFFF;
  --maxw: 1120px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--haze-top) 0%, var(--cream) 22%, var(--cream) 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: 'Archivo', sans-serif;
  letter-spacing: -.02em;
  line-height: 1.02;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* eyebrow */
.eyebrow {
  font-family: 'Archivo';
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--amber-deep);
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow svg {
  flex: 0 0 auto;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Archivo';
  font-weight: 700;
  font-size: .86rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 2px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: .25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--amber);
  color: #231a10;
}

.btn-primary:hover {
  background: var(--amber-deep);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .7);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .14);
  border-color: #fff;
}

.btn-ink {
  background: var(--ink);
  color: var(--cream);
}

.btn-ink:hover {
  background: #000;
  transform: translateY(-2px);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

/* ===== NAV ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: .35s var(--ease);
}

header .navwrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header.scrolled {
  background: rgba(244, 237, 227, .92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(28, 24, 18, .08);
}

.nav-logo {
  height: 26px;
  width: auto;
  transition: .3s;
}

.nav-logo.dark {
  display: none;
}

header.scrolled .nav-logo.light {
  display: none;
}

header.scrolled .nav-logo.dark {
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-social {
  display: flex;
  gap: 16px;
}

.nav-social a {
  color: #fff;
  opacity: .85;
  transition: .2s;
}

header.scrolled .nav-social a {
  color: var(--ink);
}

.nav-social a:hover {
  opacity: 1;
  color: var(--amber);
}

header.scrolled .btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
}

header.scrolled .btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  background-image:
    linear-gradient(180deg,
      rgba(20, 16, 12, .4) 0%,
      rgba(20, 16, 12, .06) 26%,
      rgba(20, 16, 12, 0) 52%,
      rgba(244, 237, 227, .35) 100%),
    url('Webs.jpg');
  background-size: cover;
  background-position: center 46%;
  padding-bottom: 25%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  margin-top: clamp(88px, 12vh, 150px);
  padding: 0 24px;
  transform: translateY(18px);
  opacity: 1;
  animation: rise 1s var(--ease) .15s forwards;
}

.hero-logo {
  height: clamp(58px, 11vw, 118px);
  width: auto;
  margin: 0 auto 26px;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, .35));
}

.hero h1 {
  color: #fff;
  font-weight: 800;
  font-size: clamp(1.9rem, 5.4vw, 3.6rem);
  text-shadow: 0 4px 30px rgba(0, 0, 0, .4);
  max-width: 18ch;
  margin: 0 auto;
}

.hero p.sub {
  color: rgba(255, 255, 255, .92);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  margin: 18px auto 0;
  max-width: 34ch;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .45);
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}

.scrollcue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, .8);
  font-family: 'Archivo';
  font-size: .66rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bob 2.4s ease-in-out infinite;
}

@keyframes rise {
  to {
    transform: none;
    opacity: 1;
  }
}

@keyframes bob {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(7px);
  }
}

/* ridge divider */
.ridge {
  display: block;
  width: 160px;
  height: 24px;
  margin: 0 auto;
}

.ridge path {
  fill: none;
  stroke: var(--amber);
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
}

/* ===== SECTION base ===== */
.section {
  padding: clamp(74px, 11vw, 128px) 0;
}

.section-head {
  text-align: center;
  margin-bottom: 54px;
}

.section-head h2 {
  font-weight: 800;
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  margin-top: 16px;
  color: var(--ink);
}

.section-head .eyebrow {
  justify-content: center;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: .7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ===== RELEASE ===== */
.release {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}

.cover-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 26px 60px -24px rgba(28, 24, 18, .5);
  aspect-ratio: 1;
  display: flex;
  justify-content:center;
}

.cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 16, 12, .12);
  transition: .3s;
  cursor: pointer;
}

.play:hover {
  background: rgba(20, 16, 12, .28);
}

.play span {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.play:hover span {
  transform: scale(1.08);
}

.release-info .eyebrow {
  margin-bottom: 14px;
}

.release-info h3 {
  font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  color: var(--ink);
}

.release-info .desc {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 16px 0 26px;
  max-width: 42ch;
}

.release-info .actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-bottom:2%
}

.embed-slot {
  margin-top: 26px;
  border: 1px dashed rgba(110, 98, 86, .4);
  border-radius: 6px;
  padding: 18px;
  font-size: .82rem;
  color: var(--muted);
  background: rgba(255, 255, 255, .4);
}

/* ===== WORLD ===== */
.world {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.world h2 {
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--ink);
  margin-bottom: 22px;
}

.world p {
  font-size: clamp(1.05rem, 1.9vw, 1.3rem);
  color: #4a3f33;
  max-width: 54ch;
  margin: 0 auto;
}

.world .embed-slot {
  max-width: 560px;
  margin: 34px auto 0;
  text-align: center;
}

/* ===== ABOUT ===== */
.about {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.about-fig {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-fig::after {
  content: "";
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  width: 62%;
  height: 26px;
  background: radial-gradient(ellipse, rgba(28, 24, 18, .22), transparent 70%);
  filter: blur(4px);
}

.about-fig img {
  height: clamp(300px, 40vw, 440px);
  width: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 18px 30px rgba(28, 24, 18, .18));
}

.about-text .eyebrow {
  margin-bottom: 14px;
}

.about-text h2 {
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3rem);
  color: var(--ink);
}

.about-text p {
  color: #4a3f33;
  font-size: 1.1rem;
  margin-top: 18px;
  max-width: 48ch;
}

.about-text .inline-links {
  margin-top: 24px;
  display: flex;
  gap: 24px;
  font-family: 'Archivo';
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.about-text .inline-links a {
  color: var(--amber-deep);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: .2s;
}

.about-text .inline-links a:hover {
  border-color: var(--amber-deep);
}

/* ===== FOLLOW ===== */
.follow {
  background: var(--forest);
  color: #fff;
  text-align: center;
}

.follow h2 {
  font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 3rem);
  color: #fff;
}

.follow p {
  color: rgba(255, 255, 255, .8);
  font-size: 1.12rem;
  margin: 16px auto 0;
  max-width: 44ch;
}

.follow-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn-spotify {
  background: #1DB954;
  color: #04210f;
}

.btn-spotify:hover {
  background: #1ed760;
  transform: translateY(-2px);
}

.btn-social {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .4);
  color: #fff;
}

.btn-social:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .1);
}

.emailform {
  display: flex;
  gap: 10px;
  max-width: 430px;
  margin: 36px auto 0;
  flex-wrap: wrap;
  justify-content: center;
}

.emailform input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border-radius: 2px;
  border: 1.5px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-family: 'Inter';
  font-size: .95rem;
}

.emailform input::placeholder {
  color: rgba(255, 255, 255, .55);
}

.emailform input:focus {
  outline: none;
  border-color: var(--amber);
}

.follow .note {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
  margin-top: 14px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, .82);
  padding: 60px 0 34px;
}

.foot-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.foot-brand img {
  height: 30px;
  margin-bottom: 14px;
}

.foot-brand p {
  font-family: 'Archivo';
  font-weight: 500;
  color: rgba(255, 255, 255, .6);
  font-size: .95rem;
}

.foot-col h4 {
  font-family: 'Archivo';
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}

.foot-col a {
  display: block;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 8px;
  font-size: .95rem;
  transition: .2s;
}

.foot-col a:hover {
  color: #fff;
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 44px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .45);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 820px) {
  .nav-social {
    display: none;
  }

  .release,
  .about {
    grid-template-columns: 1fr;
  }

  .about-fig {
    order: -1;
  }

  .release-info,
  .about-text {
    text-align: center;
  }

  .release-info .desc,
  .about-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .release-info .actions,
  .about-text .inline-links {
    justify-content: center;
  }
}
