:root {
  --brown: #351209;
  --brown-soft: #56200d;
  --cream: #fff4d8;
  --paper: #fffbef;
  --gold: #ffba18;
  --orange: #ff5b12;
  --line: rgba(74, 28, 9, .16);
}

* { box-sizing: border-box; }

html { background: var(--brown); }

body {
  margin: 0;
  min-width: 320px;
  color: var(--brown);
  background: var(--brown);
  font-family: "DM Sans", system-ui, sans-serif;
}

a { color: inherit; }

.shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 28px clamp(22px, 5vw, 76px) 24px;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 187, 24, .23), transparent 29rem),
    radial-gradient(circle at 88% 75%, rgba(255, 91, 18, .16), transparent 32rem),
    var(--paper);
}

.shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.11'/%3E%3C/svg%3E");
}

.topbar,
.hero,
footer { position: relative; z-index: 1; }

.topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1320px;
  margin: 0 auto;
}

.mini-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--brown);
  border-radius: 50%;
  background: var(--gold);
  font-weight: 800;
  letter-spacing: -.05em;
  box-shadow: 3px 3px 0 var(--brown);
}

.eyebrow {
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 1.03fr) minmax(440px, .97fr);
  align-items: center;
  gap: clamp(28px, 5vw, 88px);
  width: min(1320px, 100%);
  min-height: calc(100svh - 156px);
  margin: 0 auto;
}

.logo-wrap {
  position: relative;
  transform: rotate(-2deg);
}

.logo-wrap::before {
  content: "";
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  left: 9%;
  top: 12%;
  border-radius: 50%;
  background: var(--orange);
  opacity: .1;
  filter: blur(3px);
}

.logo {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 24px rgba(53, 18, 9, .15));
}

.content { max-width: 570px; }

.kicker {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: .95;
  letter-spacing: -.055em;
}

.intro {
  max-width: 480px;
  margin: 20px 0 26px;
  color: #6f4634;
  font-size: 1.05rem;
  line-height: 1.6;
}

.platforms { display: grid; gap: 12px; }

.platform {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 12px 18px 12px 12px;
  border: 2px solid var(--brown);
  border-radius: 18px;
  text-decoration: none;
  font-size: 1.18rem;
  font-weight: 800;
  box-shadow: 5px 5px 0 var(--brown);
  transition: transform .18s ease, box-shadow .18s ease;
}

.platform:hover,
.platform:focus-visible {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--brown);
}

.platform:focus-visible { outline: 4px solid rgba(255, 91, 18, .32); outline-offset: 4px; }
.platform small { display: block; margin-bottom: 2px; font-size: .72rem; font-weight: 700; opacity: .7; }
.platform-icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 13px; background: rgba(255,255,255,.72); font-size: 1.7rem; }
.rings { font-size: 2.1rem; line-height: 1; transform: rotate(6deg); }
.play { font-size: 1.25rem; }
.arrow { font-size: 1.45rem; }
.platform-itunes { background: var(--gold); }
.platform-spotify { background: #82d94f; }
.platform-youtube { color: var(--cream); background: var(--orange); }

.sun { position: absolute; border: 2px solid rgba(53, 18, 9, .09); border-radius: 50%; pointer-events: none; }
.sun-one { width: 420px; height: 420px; right: -270px; top: -250px; box-shadow: 0 0 0 36px rgba(255,186,24,.045), 0 0 0 72px rgba(255,186,24,.035); }
.sun-two { width: 300px; height: 300px; left: -220px; bottom: -170px; box-shadow: 0 0 0 32px rgba(255,91,18,.04), 0 0 0 64px rgba(255,91,18,.03); }

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #775341;
  font-size: .78rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .shell { padding-top: 20px; }
  .hero { grid-template-columns: 1fr; gap: 8px; padding: 30px 0 48px; }
  .logo-wrap { width: min(620px, 92%); margin: 0 auto; }
  .content { max-width: 640px; margin: 0 auto; text-align: center; }
  .intro { margin-left: auto; margin-right: auto; }
  .platform { text-align: left; }
}

@media (max-width: 540px) {
  .shell { padding-left: 16px; padding-right: 16px; }
  .eyebrow { font-size: .68rem; line-height: 1.35; }
  .logo-wrap { width: 105%; margin-left: -2.5%; }
  .kicker { font-size: .72rem; }
  h1 { font-size: clamp(2.65rem, 14vw, 4rem); }
  .intro { margin-top: 16px; font-size: .98rem; }
  .platform { min-height: 70px; border-radius: 15px; }
  .platform-icon { width: 46px; height: 46px; }
  footer { flex-direction: column; align-items: center; text-align: center; }
}

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