:root {
  --ink: #171514;
  --paper: #f7f1e7;
  --paper-strong: #fffaf1;
  --teal: #0b5b59;
  --terra: #a33d2d;
  --amber: #d59731;
  --blue: #2c5f87;
  --line: rgba(23, 21, 20, 0.16);
  --shadow: 0 22px 60px rgba(23, 21, 20, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--paper-strong);
  background: rgba(12, 21, 20, 0.74);
  border-bottom: 1px solid rgba(255, 250, 241, 0.18);
  backdrop-filter: blur(18px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 50%;
}

.nav {
  gap: clamp(12px, 2.6vw, 28px);
  font-size: 0.92rem;
}

.nav a {
  opacity: 0.9;
}

.nav-cta {
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper-strong);
  border-radius: 999px;
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-person,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-person {
  z-index: -1;
  width: min(43vw, 560px);
  height: 74%;
  inset: auto clamp(22px, 6vw, 86px) 7% auto;
  object-fit: cover;
  object-position: 48% center;
  opacity: 0.98;
  border: 1px solid rgba(255, 250, 241, 0.26);
  border-radius: 8px;
  box-shadow: 0 32px 110px rgba(12, 17, 16, 0.62);
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-overlay {
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(12, 17, 16, 0.93) 0%, rgba(12, 17, 16, 0.72) 44%, rgba(12, 17, 16, 0.36) 100%),
    linear-gradient(0deg, rgba(12, 17, 16, 0.72), rgba(12, 17, 16, 0.08) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 8vw, 112px);
  padding-top: 70px;
  color: var(--paper-strong);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 13vw, 9rem);
  line-height: 0.84;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
}

p {
  line-height: 1.7;
}

.hero-copy {
  max-width: 600px;
  color: rgba(255, 250, 241, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions,
.player-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
}

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

.button.secondary {
  color: var(--paper-strong);
  border-color: rgba(255, 250, 241, 0.5);
}

.button.full {
  width: 100%;
}

.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
}

.strip div {
  padding: 24px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.strip strong,
.strip span {
  display: block;
}

.strip span {
  margin-top: 4px;
  color: rgba(23, 21, 20, 0.62);
}

.section {
  padding: clamp(64px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.buy-section p {
  color: rgba(23, 21, 20, 0.68);
  font-size: 1.06rem;
}

.section-heading.compact {
  max-width: 560px;
  margin-bottom: 0;
}

.music-section {
  background: #f2eadc;
}

.process-section {
  background: #e8ded0;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step-grid article {
  padding: 24px;
  background: rgba(255, 250, 241, 0.68);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.step-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--terra);
  font-weight: 900;
}

.player-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(18px, 4vw, 34px);
  background: var(--ink);
  color: var(--paper-strong);
  box-shadow: var(--shadow);
}

.now-playing {
  display: flex;
  align-items: center;
  gap: 18px;
}

.disc {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--paper-strong) 0 8%, transparent 9% 18%, var(--ink) 19% 22%, transparent 23%),
    conic-gradient(from 20deg, var(--amber), var(--teal), var(--blue), var(--terra), var(--amber));
}

.label,
.product-type {
  display: block;
  margin-bottom: 6px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.icon-button,
.play-button {
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  color: var(--paper-strong);
  background: rgba(255, 250, 241, 0.12);
  border-radius: 50%;
}

.icon-button {
  width: 44px;
  height: 44px;
  font-size: 1.65rem;
}

.play-button {
  width: 58px;
  height: 58px;
  background: var(--terra);
  font-size: 1.2rem;
}

.progress {
  grid-column: 1 / -1;
  height: 5px;
  overflow: hidden;
  background: rgba(255, 250, 241, 0.18);
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--amber);
}

.track-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.track-card,
.product-card,
.catalog-list article {
  padding: 22px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.track-card {
  cursor: pointer;
  text-align: left;
}

.track-card.is-active {
  border-color: var(--terra);
  box-shadow: inset 0 0 0 1px var(--terra);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 1fr);
  gap: clamp(26px, 6vw, 88px);
  align-items: center;
  background: var(--teal);
  color: var(--paper-strong);
}

.poem-panel {
  padding-left: clamp(18px, 4vw, 58px);
  border-left: 3px solid var(--amber);
}

.poem-panel p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4vw, 3.5rem);
  line-height: 1.15;
}

.text-link {
  font-weight: 800;
  color: var(--amber);
}

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

.product-card strong {
  color: var(--terra);
}

.live-section {
  background: #10100f;
  color: var(--paper-strong);
}

.live-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 250, 241, 0.72);
}

.live-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.live-player {
  display: grid;
  place-items: stretch;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(11, 91, 89, 0.88), rgba(23, 21, 20, 0.94)),
    linear-gradient(45deg, var(--terra), var(--blue));
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 8px;
  aspect-ratio: 16 / 9;
}

.live-player iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.live-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 620px;
  padding: clamp(22px, 4vw, 42px);
}

.live-placeholder span {
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 11px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
}

.live-placeholder h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.98;
}

.live-placeholder p {
  color: rgba(255, 250, 241, 0.78);
}

.live-info {
  display: grid;
  gap: 14px;
}

.live-info article {
  padding: 22px;
  background: rgba(255, 250, 241, 0.06);
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 8px;
}

.live-info p {
  color: rgba(255, 250, 241, 0.72);
}

.photos-section {
  background: #f5eee3;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(220px, auto);
  gap: 14px;
}

.photo-card {
  position: relative;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 22px;
  color: var(--paper-strong);
  background:
    linear-gradient(0deg, rgba(12, 17, 16, 0.78), rgba(12, 17, 16, 0.08)),
    linear-gradient(135deg, var(--teal), var(--terra) 54%, var(--amber));
  background-position: center;
  background-size: cover;
  border-radius: 8px;
}

.photo-card:nth-child(2) {
  background:
    linear-gradient(0deg, rgba(12, 17, 16, 0.72), rgba(12, 17, 16, 0.04)),
    linear-gradient(135deg, #243f59, #0b5b59 48%, #d59731);
}

.photo-card:nth-child(3) {
  background:
    linear-gradient(0deg, rgba(12, 17, 16, 0.76), rgba(12, 17, 16, 0.08)),
    linear-gradient(135deg, #7f3128, #a33d2d 48%, #f7f1e7);
}

.photo-card:nth-child(4) {
  background:
    linear-gradient(0deg, rgba(12, 17, 16, 0.78), rgba(12, 17, 16, 0.05)),
    linear-gradient(135deg, #171514, #2c5f87 48%, #d59731);
}

.photo-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-card-wide {
  grid-column: span 2;
}

.photo-card span {
  margin-bottom: 8px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.photo-card h3 {
  max-width: 420px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 3vw, 2.8rem);
  line-height: 1;
}

.catalog-section {
  background: var(--ink);
  color: var(--paper-strong);
}

.catalog-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.catalog-list article {
  min-height: 220px;
  background: rgba(255, 250, 241, 0.06);
  border-color: rgba(255, 250, 241, 0.16);
}

.catalog-list span {
  color: var(--amber);
  font-weight: 800;
}

.catalog-list p {
  color: rgba(255, 250, 241, 0.72);
}

.catalog-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 250, 241, 0.72);
}

.catalog-products article {
  display: flex;
  min-height: 250px;
  flex-direction: column;
}

.catalog-products strong {
  margin-top: auto;
  color: var(--amber);
}

.catalog-products .product-card {
  background: rgba(255, 250, 241, 0.06);
  border-color: rgba(255, 250, 241, 0.16);
}

.catalog-cta {
  margin-top: 22px;
}

.buy-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 520px);
  gap: clamp(28px, 7vw, 96px);
  align-items: start;
  background: #e9eef0;
}

.order-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 28px clamp(18px, 5vw, 72px);
  background: #10100f;
  color: rgba(255, 250, 241, 0.8);
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-person {
    width: min(70vw, 440px);
    height: 58%;
    inset: auto 18px 8% auto;
    opacity: 0.9;
    object-position: 46% center;
  }

  .strip,
  .step-grid,
  .track-list,
  .product-grid,
  .live-layout,
  .photo-grid,
  .catalog-list,
  .split-section,
  .buy-section {
    grid-template-columns: 1fr;
  }

  .photo-card-large,
  .photo-card-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .player-shell {
    grid-template-columns: 1fr;
  }

  .live-player {
    min-height: 360px;
    aspect-ratio: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    display: grid;
  }

  .nav {
    justify-content: flex-start;
    font-size: 0.84rem;
  }

  .nav-cta {
    padding: 8px 12px;
  }

  .hero {
    min-height: 860px;
    align-items: center;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-person {
    width: min(82vw, 320px);
    height: 230px;
    inset: auto 18px 34px auto;
    opacity: 0.86;
    border-radius: 8px;
    object-position: 45% center;
    box-shadow: 0 22px 70px rgba(12, 17, 16, 0.52);
    -webkit-mask-image: none;
    mask-image: none;
  }

  .live-player {
    min-height: 340px;
  }

  .now-playing {
    align-items: flex-start;
  }

  .disc {
    width: 58px;
    height: 58px;
  }
}
