:root {
  --ivory: #fbf7f1;
  --cream: #f2e8df;
  --champagne: #ddc3ad;
  --rose: #bd7f82;
  --rose-dark: #875355;
  --ink: #2e2220;
  --muted: #74615b;
  --line: rgba(89, 55, 51, .18);
  --serif: "Bodoni 72", Didot, "Bodoni MT", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ivory); }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: #dca6a8; color: #2b1719; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  transform: translateY(-180%);
  background: var(--ink);
  color: white;
  padding: 12px 16px;
  border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 4vw, 70px);
  color: white;
  background: transparent;
  text-shadow: 0 1px 18px rgba(46, 24, 21, .28);
  transition:
    background-color .35s ease,
    color .35s ease,
    box-shadow .35s ease,
    text-shadow .35s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 247, 241, .94);
  text-shadow: none;
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  box-shadow: 0 1px 0 var(--line);
}

.wordmark {
  font: 500 clamp(1.3rem, 2vw, 1.8rem)/1 var(--serif);
  letter-spacing: .17em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
.site-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 46px); }
@media (min-width: 961px) {
  .wordmark,
  .site-nav {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
  }
  .site-header.is-scrolled .wordmark,
  .site-header.is-scrolled .site-nav { opacity: 1; visibility: visible; transform: translateY(0); }
}
.site-nav a {
  position: relative;
  text-decoration: none;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-social { opacity: .85; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  color: white;
  overflow: hidden;
  background: #d6af95;
}
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center; animation: heroZoom 16s ease-out both; }
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(52, 31, 27, .48) 0%, rgba(52, 31, 27, .12) 43%, rgba(52, 31, 27, 0) 68%),
              linear-gradient(0deg, rgba(30, 15, 13, .2), transparent 38%);
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  width: min(660px, 82vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 7vh clamp(24px, 7vw, 120px) 9vh;
}
@media (min-width: 961px) {
  .hero-content { padding-top: 0; padding-bottom: 4vh; }
}
.eyebrow {
  margin: 0 0 20px;
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font: 400 clamp(5.3rem, 12vw, 12rem)/.75 var(--serif);
  letter-spacing: -.055em;
  text-transform: uppercase;
  text-shadow: 0 3px 28px rgba(70, 35, 28, .18);
}
.hero-copy {
  margin: 32px 0 0;
  font: italic 400 clamp(1.25rem, 2vw, 1.8rem)/1.35 var(--serif);
  letter-spacing: .015em;
}
.hero-actions { display: flex; flex-wrap: nowrap; gap: 12px; margin-top: 34px; }
.hero-copy-break { display: none; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: rgba(255, 255, 255, .95); color: var(--rose-dark); }
.button-primary:hover { background: white; }
.button-ghost { border-color: rgba(255,255,255,.62); background: rgba(255,255,255,.08); color: white; backdrop-filter: blur(8px); }
.button-ghost:hover { background: rgba(255,255,255,.17); }
.button-dark { color: white; background: var(--ink); }
.button-dark:hover { background: var(--rose-dark); }
.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 34px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.scroll-cue i { width: 1px; height: 42px; background: rgba(255,255,255,.65); animation: scrollPulse 1.8s ease-in-out infinite; }

.manifesto {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 5vw, 70px);
  padding: 50px 24px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.manifesto p { margin: 0; font: 400 clamp(1.35rem, 2.35vw, 2.35rem)/1.2 var(--serif); }
.manifesto span { color: var(--rose); }

.music-section { position: relative; min-height: 920px; overflow: hidden; background: #bd876d; }
.music-backdrop, .music-backdrop img { position: absolute; inset: 0; width: 100%; height: 100%; }
.music-backdrop img { object-fit: cover; object-position: center; }
.music-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(56,28,20,.06), rgba(56,28,20,.12)); }
.music-inner { position: relative; z-index: 2; min-height: 920px; display: grid; place-items: center; padding: 100px clamp(20px, 6vw, 100px); }
.release-card {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(360px, 1.2fr);
  gap: clamp(35px, 6vw, 90px);
  align-items: center;
  padding: clamp(26px, 4vw, 56px);
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 3px;
  background: rgba(250, 240, 232, .82);
  box-shadow: 0 35px 90px rgba(59, 31, 23, .2);
  backdrop-filter: blur(18px) saturate(115%);
  -webkit-backdrop-filter: blur(18px) saturate(115%);
}
.cover-art { box-shadow: 0 26px 60px rgba(62,32,25,.24); }
.release-copy h2,
.about-copy h2,
.section-heading h2,
.instagram-section h2 {
  margin: 0;
  font: 400 clamp(3.5rem, 6.8vw, 7.4rem)/.84 var(--serif);
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.release-copy > p:not(.eyebrow):not(.release-status) { max-width: 560px; margin: 24px 0 0; color: var(--muted); line-height: 1.7; }
.release-status { display: flex; align-items: center; gap: 10px; margin: 24px 0 0; font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; }
.release-status span { width: 8px; height: 8px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 0 5px rgba(189,127,130,.16); }
.platforms { display: grid; gap: 12px; margin-top: 30px; }
.platform-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 67px;
  padding: 12px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.55);
  background:
    linear-gradient(135deg, rgba(255,255,255,.55), rgba(238,205,196,.22) 45%, rgba(189,127,130,.16)),
    rgba(255,255,255,.28);
  background-clip: padding-box;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.65),
    inset 0 -12px 20px -14px rgba(189,127,130,.35),
    0 8px 24px -12px rgba(135,83,85,.35);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  color: var(--ink);
  cursor: pointer;
  overflow: hidden;
}
.platform-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 30%);
  pointer-events: none;
}
.platform-button svg { position: relative; width: 25px; height: 25px; fill: currentColor; flex: none; overflow: visible; }
.platform-button span { position: relative; display: grid; gap: 3px; }
.platform-button strong { font-size: .82rem; letter-spacing: .04em; }
.platform-button small { color: var(--muted); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; }
a.platform-button {
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
a.platform-button:hover,
a.platform-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(189,127,130,.65);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.75),
    inset 0 -12px 20px -14px rgba(189,127,130,.45),
    0 14px 30px -14px rgba(135,83,85,.5);
}

.about-section {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  min-height: 780px;
  background: var(--cream);
}
.about-image { min-height: 650px; overflow: hidden; }
.about-image picture, .about-image img { width: 100%; height: 100%; }
.about-image img { object-fit: cover; object-position: center; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.about-image:hover img { transform: scale(1.025); }
.about-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(60px, 9vw, 150px); }
.about-copy p:not(.eyebrow) { max-width: 520px; margin: 26px 0 0; color: var(--muted); font-size: clamp(1rem, 1.3vw, 1.18rem); line-height: 1.8; }
.text-link {
  display: inline-flex;
  gap: 12px;
  margin-top: 36px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translate(3px,-3px); }

.editorial-section { padding: clamp(85px, 10vw, 160px) clamp(18px, 4.5vw, 75px); }
.section-heading { max-width: 760px; margin: 0 auto clamp(55px, 7vw, 100px); text-align: center; }
.editorial-grid {
  max-width: 1560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: clamp(14px, 2vw, 30px);
}
.editorial { position: relative; margin: 0; overflow: hidden; background: #eadbd0; }
.editorial-tall { grid-row: 1 / span 2; aspect-ratio: .82; }
.editorial-wide { aspect-ratio: 16/9; }
.editorial picture, .editorial img { width: 100%; height: 100%; }
.editorial img { object-fit: cover; transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.editorial-tall img { object-position: center; }
.editorial:hover img { transform: scale(1.035); }
.editorial figcaption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  padding: 10px 14px;
  background: rgba(251,247,241,.78);
  backdrop-filter: blur(10px);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.sweet-section { position: relative; min-height: 540px; overflow: hidden; background: #dfc3ae; }
.sweet-section picture, .sweet-section img { width: 100%; height: 100%; min-height: 540px; }
.sweet-section img { object-fit: cover; object-position: center; }
.sweet-section::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 25%, rgba(66,34,31,.05), rgba(66,34,31,.25)); }
.sweet-copy { position: absolute; z-index: 2; right: clamp(28px, 7vw, 120px); top: 50%; transform: translateY(-50%); color: white; text-align: right; text-shadow: 0 2px 24px rgba(70,36,29,.25); }
.sweet-copy blockquote { margin: 0; font: italic 400 clamp(2rem, 4vw, 4.8rem)/1.05 var(--serif); }

.instagram-section { min-height: 520px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 80px 24px; text-align: center; background: #f7f0ea; }
.instagram-section h2 { font-size: clamp(3rem, 8vw, 8.5rem); text-transform: none; letter-spacing: -.055em; }
.instagram-section .button { margin-top: 38px; }

.closing { position: relative; min-height: min(66vw, 720px); overflow: hidden; background: #c9a98f; }
.closing picture, .closing img { position: absolute; inset: 0; width: 100%; height: 100%; }
.closing img { object-fit: cover; object-position: center; }
.closing::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(55,30,27,.24), transparent 50%); }
.closing-copy { position: absolute; z-index: 2; left: clamp(24px, 7vw, 120px); top: 50%; transform: translateY(-50%); color: white; }
.closing-copy p { margin: 0; font: 400 clamp(2.2rem, 5vw, 6.4rem)/.94 var(--serif); text-transform: uppercase; letter-spacing: -.035em; }
.closing-copy p + p { margin-top: 8px; font-style: italic; }

.footer {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 34px clamp(22px, 4vw, 70px);
  border-top: 1px solid var(--line);
  background: var(--ivory);
}
.footer p, .footer-links { margin: 0; color: var(--muted); font-size: .64rem; letter-spacing: .15em; text-transform: uppercase; }
.footer-links { display: flex; justify-content: flex-end; gap: 22px; }
.footer-links a { text-decoration: none; color: var(--ink); }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@keyframes heroZoom { from { transform: scale(1.03); } to { transform: scale(1); } }
@keyframes scrollPulse { 0%,100% { transform: scaleY(.65); transform-origin: top; opacity: .35; } 50% { transform: scaleY(1); opacity: 1; } }

@media (max-width: 960px) {
  :root { --header-h: 68px; }
  .menu-toggle {
    position: relative;
    z-index: 102;
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 0;
    border-radius: 50%;
    color: inherit;
    background: rgba(255,255,255,.12);
    cursor: pointer;
  }
  .menu-toggle span { display: block; width: 19px; height: 1px; background: currentColor; transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    color: var(--ink);
    background: rgba(251,247,241,.97);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { font-size: .85rem; }
  .hero-media img { object-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(49,27,24,.55), rgba(49,27,24,.06) 75%); }
  .hero-content { width: 70vw; padding-left: 28px; }
  .hero h1 { font-size: clamp(4.8rem, 16vw, 8rem); }
  .release-card { grid-template-columns: 1fr; max-width: 680px; }
  .cover-art { max-width: 450px; }
  .about-section { grid-template-columns: 1fr; }
  .about-image { min-height: 72vw; max-height: 760px; }
  .about-copy { padding: 85px 8vw; }
  .sweet-section img { object-position: 42% center; }
  .sweet-copy { right: 5vw; }
  .footer { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 680px) {
  .site-header { padding-inline: 18px; }
  .wordmark { font-size: 1.18rem; }
  .hero { min-height: 100svh; }
  .hero-media img { object-position: 66% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(42,24,21,.66), rgba(42,24,21,.07) 92%), linear-gradient(0deg, rgba(32,18,16,.35), transparent 45%); }
  .hero-content { min-height: 100svh; width: 88vw; justify-content: flex-end; padding: 130px 20px 112px; }
  .hero h1 { font-size: clamp(4.8rem, 22vw, 7.2rem); }
  .hero-copy { font-size: 1.2rem; }
  .hero-copy-break { display: inline; }
  .hero-actions { flex-direction: column; flex-wrap: nowrap; width: 100%; }
  .hero-actions .button { width: 100%; }
  .scroll-cue { display: none; }
  .manifesto { flex-direction: column; gap: 18px; min-height: 280px; }
  .manifesto p { font-size: 1.5rem; }
  .music-section, .music-inner { min-height: auto; }
  .music-backdrop img { object-position: 67% center; }
  .music-inner { padding: 70px 14px; }
  .release-card { padding: 18px; gap: 34px; }
  .release-copy h2, .about-copy h2, .section-heading h2 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .about-image { min-height: 106vw; }
  .about-image img { object-position: 62% center; }
  .about-copy { padding: 70px 24px; }
  .editorial-section { padding-inline: 12px; }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-tall { grid-row: auto; aspect-ratio: 4/5; }
  .editorial-wide { aspect-ratio: 4/3; }
  .sweet-section, .sweet-section picture, .sweet-section img { min-height: 620px; }
  .sweet-section img { object-position: 30% center; }
  .sweet-section::after { background: linear-gradient(0deg, rgba(52,26,23,.45), transparent 62%); }
  .sweet-copy { left: 24px; right: 24px; top: auto; bottom: 40px; transform: none; text-align: left; }
  .instagram-section { min-height: 430px; }
  .instagram-section h2 { font-size: clamp(2.75rem, 14vw, 5rem); }
  .closing { min-height: 720px; }
  .closing img { object-position: 70% center; }
  .closing::after { background: linear-gradient(0deg, rgba(50,25,22,.55), transparent 70%); }
  .closing-copy { left: 22px; right: 22px; top: auto; bottom: 48px; transform: none; }
  .closing-copy p { font-size: clamp(2.5rem, 12vw, 4.6rem); }
  .footer-links { flex-direction: column; gap: 9px; }
}

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

/* Clear but deliberately quiet project disclosure. */
.about-copy p.disclosure {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: .78rem;
  line-height: 1.7;
  letter-spacing: .035em;
}
