:root {
  --paper: #f2efe8;
  --paper-2: #e7e2d9;
  --ink: #151517;
  --night: #111113;
  --wine: #7b2c42;
  --sage: #32463f;
  --brass: #ad8752;
  --muted: #6b6762;
  --line: rgba(21, 21, 23, 0.16);
  --light-line: rgba(255, 255, 255, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  letter-spacing: 0;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 239, 232, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  text-decoration: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 600;
}

.brand small {
  color: var(--wine);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--wine);
}

.nav .nav-cta {
  padding: 12px 16px;
  background: var(--ink);
  color: var(--paper);
}

.mobile-nav {
  display: none;
}

.page-hero {
  min-height: 68vh;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 72px;
  align-items: center;
  padding: 72px 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
}

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: 76px;
  line-height: 0.96;
}

h2 {
  margin-bottom: 22px;
  font-size: 48px;
  line-height: 1;
}

h3 {
  font-size: 18px;
  line-height: 1.25;
}

.lead {
  max-width: 720px;
  margin-bottom: 30px;
  color: #45423f;
  font-size: 19px;
  line-height: 1.75;
}

.actions,
.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  cursor: pointer;
}

.button.primary {
  background: var(--ink);
  color: var(--paper);
}

.button.wine {
  border-color: var(--wine);
  background: var(--wine);
  color: #fff;
}

.button:hover,
.button:focus-visible {
  border-color: var(--wine);
  background: var(--wine);
  color: #fff;
}

.hero-art {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  background: var(--night);
  border-left: 8px solid var(--wine);
  overflow: hidden;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-art.social-card img {
  object-fit: contain;
}

.hero-monogram {
  color: var(--paper);
  text-align: center;
}

.hero-monogram strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 150px;
  font-weight: 500;
  line-height: 0.8;
}

.hero-monogram span {
  display: block;
  margin-top: 30px;
  color: var(--brass);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.signal-band {
  overflow: hidden;
  background: var(--night);
  color: var(--paper);
  border-bottom: 1px solid #000;
  padding: 16px 0;
  white-space: nowrap;
}

.signal-band div {
  display: inline-block;
  min-width: max-content;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: signalMove 30s linear infinite;
}

@keyframes signalMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}

.section.dark {
  background: var(--night);
  color: var(--paper);
  border-color: #000;
}

.section.sage {
  background: var(--sage);
  color: #fff;
  border-color: #24352f;
}

.section-heading {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 42px;
}

.section-heading p:last-child {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.75;
}

.dark .section-heading p:last-child,
.sage .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.release-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.release {
  min-width: 0;
  border-top: 1px solid var(--light-line);
  padding-top: 18px;
}

.release.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
  gap: 32px;
  align-items: center;
  border-top-color: var(--brass);
}

.release iframe,
.spotify-frame {
  width: 100%;
  border: 0;
  border-radius: 8px;
}

.release-copy {
  padding: 12px 0;
}

.release-copy p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.text-link {
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-underline-offset: 5px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.editorial-item {
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.editorial-item span {
  display: block;
  margin-bottom: 34px;
  color: var(--wine);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.editorial-item p {
  color: var(--muted);
  line-height: 1.65;
}

.video-stage {
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-stage iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.facts {
  border-top: 1px solid var(--line);
}

.fact {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 32px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.fact dt {
  color: var(--wine);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.fact dd {
  margin: 0;
  line-height: 1.65;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 72px;
}

.contact-direct {
  padding-top: 4px;
}

.contact-direct a {
  color: var(--wine);
  font-size: 20px;
  font-weight: 700;
  text-underline-offset: 6px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.45);
  color: var(--ink);
  padding: 14px;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--wine);
  font-size: 13px;
}

.site-footer {
  padding: 42px 0;
  background: #09090b;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.footer-title {
  margin-bottom: 8px;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
}

.footer-copy,
.footer-links {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer-links a {
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 68px;
  }

  .nav {
    display: none;
  }

  .mobile-nav {
    display: block;
    position: relative;
  }

  .mobile-nav summary {
    list-style: none;
    cursor: pointer;
    font-size: 24px;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav[open] div {
    position: absolute;
    right: 0;
    top: 38px;
    width: 230px;
    display: grid;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
  }

  .mobile-nav a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .hero-grid,
  .contact-layout,
  .release.featured {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .page-hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 56px 0;
  }

  .hero-art {
    min-height: 320px;
    order: -1;
  }

  h1 {
    font-size: 56px;
  }

  .section-heading,
  .fact {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 32px, 1180px);
  }

  .brand small {
    display: none;
  }

  .hero-grid {
    padding: 30px 0 48px;
  }

  .hero-art {
    min-height: 290px;
  }

  .hero-monogram strong {
    font-size: 112px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 38px;
  }

  .lead {
    font-size: 17px;
  }

  .section {
    padding: 64px 0;
  }

  .release-list,
  .editorial-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .release.featured,
  .field.full,
  .form-status {
    grid-column: auto;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@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;
  }
}
