:root {
  --paper: #efe0c4;
  --paper-deep: #d5ba92;
  --ink: #2f261f;
  --muted: #806d5b;
  --line: rgba(63, 47, 34, .18);
  --white: #fffaf1;
  --header-h: 74px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 4vw, 68px);
  color: #4a372a;
  transition: background .35s ease, color .35s ease, backdrop-filter .35s ease, box-shadow .35s ease;
}

.site-header.scrolled {
  background: rgba(239, 224, 196, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.brand {
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: clamp(22px, 3vw, 48px);
  font-family: "Oswald", Arial, sans-serif;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-nav a,
.text-link,
.listen-links a,
.contact-links a,
footer a {
  position: relative;
}

.site-nav a::after,
.text-link::after,
.listen-links a::after,
.contact-links a::after,
footer a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transition: right .25s ease;
}

.site-nav a:hover::after,
.text-link:hover::after,
.listen-links a:hover::after,
.contact-links a:hover::after,
footer a:hover::after {
  right: 0;
}

.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-image: url("images/floating-giants-background.png");
  background-size: cover;
  background-position: center bottom;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255, 246, 228, .08) 0%, rgba(255,255,255,0) 55%),
    linear-gradient(to top, rgba(54, 35, 23, .18) 0%, rgba(54,35,23,0) 34%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 44px));
  margin-top: -11vh;
  text-align: center;
  color: #4a372a;
  text-shadow: 0 1px 18px rgba(255,248,233,.38);
}

.eyebrow {
  margin: 0 0 14px;
  font-family: "Oswald", Arial, sans-serif;
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  opacity: .72;
}

.hero h1 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(3.7rem, 8vw, 7.4rem);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: .045em;
  text-transform: uppercase;
}


.hero-release {
  margin: 24px 0 20px;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-style: italic;
  letter-spacing: .015em;
}

.text-link {
  display: inline-block;
  font-family: "Oswald", Arial, sans-serif;
  font-size: .74rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 1px solid rgba(74,55,42,.45);
  border-radius: 18px;
}

.scroll-cue span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 3px;
  height: 7px;
  border-radius: 4px;
  background: #4a372a;
  transform: translateX(-50%);
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
  0%, 100% { opacity: .15; transform: translate(-50%, 0); }
  45% { opacity: .9; }
  70% { opacity: .15; transform: translate(-50%, 13px); }
}

.release-section {
  padding: clamp(92px, 11vw, 170px) clamp(24px, 7vw, 120px);
  background:
    radial-gradient(circle at 70% 25%, rgba(255,255,255,.34), transparent 34%),
    linear-gradient(#f2e4cd, #e7d1ae);
}

.section-heading {
  width: min(1180px, 100%);
  margin: 0 auto clamp(45px, 6vw, 80px);
}

.section-heading h2,
.about-inner h2,
.contact-inner h2 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2.55rem, 5vw, 5.2rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: .025em;
}

.release-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  align-items: center;
  gap: clamp(44px, 7vw, 100px);
}

.album-frame {
  margin: 0;
  padding: clamp(8px, 1vw, 14px);
  background: rgba(255, 249, 238, .52);
  box-shadow:
    0 18px 48px rgba(77, 44, 26, .13),
    0 0 0 1px rgba(93, 63, 41, .10);
  transform: none;
}

.album-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.release-copy {
  max-width: 500px;
}

.release-kicker {
  margin: 0 0 18px;
  font-size: 1.55rem;
  font-style: italic;
}

.release-description {
  margin: 0 0 34px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.35;
}

.listen-links,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  font-family: "Oswald", Arial, sans-serif;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.placeholder-note {
  margin-top: 28px;
  max-width: 540px;
  color: var(--muted);
  font-size: .86rem;
  font-style: italic;
}

.about-section {
  min-height: 75svh;
  display: grid;
  align-items: center;
  padding: clamp(90px, 12vw, 180px) clamp(24px, 8vw, 150px);
  background:
    linear-gradient(rgba(39, 29, 23, .84), rgba(39,29,23,.91)),
    url("images/floating-giants-background.png") center bottom / cover fixed;
  color: #f3e8d7;
}

.about-inner {
  width: min(900px, 100%);
}

.about-inner p:not(.eyebrow) {
  max-width: 760px;
  margin: 26px 0 0;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.contact-section {
  padding: clamp(100px, 12vw, 180px) clamp(24px, 8vw, 150px);
  background: #e8d5b8;
}

.contact-inner {
  width: min(1000px, 100%);
  margin: 0 auto;
}

.contact-links {
  margin-top: 50px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(24px, 6vw, 90px);
  background: #2c241e;
  color: #e9dbc7;
  font-family: "Oswald", Arial, sans-serif;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

footer p { margin: 0; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 820px) {
  :root { --header-h: 66px; }

  .site-header {
    padding-inline: 20px;
  }

  .menu-toggle {
    display: grid;
    gap: 4px;
    padding: 9px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    top: 58px;
    right: 18px;
    display: none;
    min-width: 160px;
    padding: 18px 20px;
    flex-direction: column;
    gap: 17px;
    background: rgba(239, 224, 196, .96);
    box-shadow: 0 15px 35px rgba(52, 37, 26, .14);
  }

  .site-nav.open { display: flex; }

  .hero {
    background-position: 58% bottom;
  }

  .hero-copy {
    margin-top: -19vh;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13.5vw, 5rem);
    letter-spacing: .025em;
  }

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

  .release-copy {
    max-width: none;
  }

  .about-section {
    background-attachment: scroll;
  }

  footer {
    flex-direction: column;
  }
}

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