:root {
  --bg: #f5f2ec;
  --bg-soft: #fbfaf7;
  --ink: #1b1c21;
  --muted: #616874;
  --line: rgba(27, 28, 33, 0.12);
  --sage: #7d9d95;
  --sage-deep: #5f7f77;
  --lavender: #8972aa;
  --card: rgba(255, 255, 255, 0.82);
  --shadow: 0 28px 80px rgba(27, 28, 33, 0.08);
  --radius-lg: 34px;
  --radius-md: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(125, 157, 149, 0.16), transparent 30%),
    radial-gradient(circle at right 18%, rgba(137, 114, 170, 0.1), transparent 28%),
    linear-gradient(180deg, #fbfaf7 0%, #f2eee6 100%);
}

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

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

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

.background-orb {
  position: fixed;
  z-index: -1;
  filter: blur(32px);
  opacity: 0.8;
  border-radius: 50%;
}

.background-orb-left {
  top: 4%;
  left: -140px;
  width: 320px;
  height: 320px;
  background: rgba(125, 157, 149, 0.18);
}

.background-orb-right {
  right: -120px;
  bottom: 14%;
  width: 260px;
  height: 260px;
  background: rgba(137, 114, 170, 0.14);
}

.site-shell {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(248, 245, 239, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(27, 28, 33, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-logo {
  width: 72px;
  height: auto;
  flex: 0 0 auto;
}

.brand-name {
  text-transform: uppercase;
}

.nav {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
}

.nav a,
.text-link {
  transition: color 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-shop-link {
  color: var(--sage-deep);
  font-weight: 700;
}

.hero,
.intro-section,
.contact-layout,
.footer {
  display: grid;
  gap: 28px;
}

.hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: start;
  padding: 24px 0 28px;
}

.intro-section {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
}

.contact-layout,
.footer {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1;
  letter-spacing: -0.05em;
}

h1 {
  max-width: 7ch;
  font-size: clamp(4rem, 12vw, 7rem);
}

h2 {
  font-size: clamp(2.5rem, 6vw, 4.3rem);
}

h3 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.hero-tagline {
  margin: 18px 0 0;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hero-lead,
.section-copy,
.panel p,
.release-copy p,
.contact-note p,
.shop-note,
.footer p,
.philosophy-card p,
.featured-release-copy p {
  color: var(--muted);
  line-height: 1.78;
}

.hero-lead {
  max-width: 56ch;
  margin: 22px 0 0;
  font-size: 1.02rem;
}

.hero-actions,
.featured-release-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 28px;
}

.featured-release-actions {
  margin-top: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fbfaf6;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-deep) 100%);
  box-shadow: 0 16px 34px rgba(95, 127, 119, 0.22);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.button[aria-disabled="true"] {
  opacity: 0.88;
}

.shop-note {
  margin: 14px 0 0;
  font-size: 0.94rem;
}

.featured-card,
.philosophy-card,
.panel,
.release-card,
.contact-form,
.contact-note {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.featured-card,
.philosophy-card,
.panel,
.release-card,
.contact-form,
.contact-note {
  border-radius: var(--radius-lg);
}

.featured-card,
.panel,
.release-card,
.contact-form,
.contact-note,
.philosophy-card {
  padding: 24px;
}

.featured-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.featured-meta {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(95, 127, 119, 0.3);
  border-radius: 999px;
  background: rgba(125, 157, 149, 0.16);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.featured-image,
.release-image-frame img {
  width: 100%;
  border-radius: 24px;
}

.featured-image {
  background: #000;
  object-fit: contain;
}

.featured-release-label,
.featured-release-format,
.release-format {
  margin: 0;
  color: var(--sage-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.featured-release-copy h2 {
  font-size: clamp(2.1rem, 5vw, 3.2rem);
}

.section {
  padding: 54px 0;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 780px;
  margin-bottom: 28px;
}

.section-copy {
  margin: 0;
}

.intro-button {
  justify-self: start;
  margin-top: 10px;
}

.philosophy-card h3 {
  margin-bottom: 14px;
}

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

.release-card,
.release-card-featured {
  display: grid;
  gap: 18px;
}

.release-card-featured,
.panel-wide {
  grid-column: span 2;
}

.release-card-featured {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
}

.release-image-frame {
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(240, 236, 228, 0.9));
}

.release-copy {
  display: grid;
  align-content: start;
  gap: 10px;
}

.release-copy h3 {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.release-artist {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.release-button {
  justify-self: start;
  margin-top: 6px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sage-deep);
  font-weight: 700;
}

.text-link::after {
  content: "→";
}

.catalog-disclaimer {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.panel-wide p {
  margin-top: 0;
}

.panel-wide p + p {
  margin-top: 14px;
}

.about-photo-panel {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
}

.about-photo-frame {
  overflow: hidden;
  border-radius: 24px;
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-copy {
  display: grid;
  gap: 12px;
  align-content: start;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 600;
}

.form-helper {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
}

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

.contact-note h3 {
  margin-bottom: 14px;
}

.noscript-note {
  display: block;
  margin-top: 10px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
}

.footer {
  align-items: start;
  padding: 24px 4px 0;
  font-size: 0.92rem;
}

.footer-logo {
  width: 120px;
  height: auto;
}

.footer p {
  margin: 0;
}

.footer div {
  display: grid;
  gap: 8px;
}

@media (max-width: 1080px) {
  .hero,
  .intro-section,
  .contact-layout,
  .footer,
  .release-card-featured,
  .about-photo-panel {
    grid-template-columns: 1fr;
  }

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

  .release-card-featured,
  .panel-wide {
    grid-column: span 1;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 20px, 1220px);
    padding-top: 16px;
  }

  .topbar {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
  }

  .nav {
    justify-content: flex-start;
    gap: 12px 16px;
  }

  .brand {
    align-items: center;
  }

  .brand-logo {
    width: 60px;
  }

  h1 {
    max-width: none;
    font-size: clamp(3rem, 18vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.3rem);
  }

  .section,
  .hero {
    padding-top: 28px;
  }

  .button,
  .release-button {
    width: 100%;
  }

  .hero-actions,
  .featured-release-actions {
    flex-direction: column;
  }

  .featured-card,
  .philosophy-card,
  .panel,
  .release-card,
  .contact-form,
  .contact-note {
    padding: 18px;
  }
}
