:root {
  --ink: #17201c;
  --cream: #f5f1e8;
  --paper: #fffdf8;
  --rust: #c24f32;
  --sage: #dce4d6;
  --line: #d7d3ca;
  --muted: #66706a;
  --display: "Fraunces", serif;
  --sans: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }

html { min-width: 320px; }

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

.site-header {
  min-height: 78px;
  padding: 16px max(5vw, 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.94);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font: 700 22px var(--display);
  text-decoration: none;
}

.brand img { border-radius: 50%; }

.brand small {
  align-self: flex-end;
  margin: 0 0 8px -8px;
  color: var(--rust);
  font: 600 10px var(--sans);
}

.status {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rust);
  box-shadow: 0 0 0 5px rgba(194, 79, 50, 0.12);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  padding: clamp(64px, 9vw, 120px) max(6vw, 28px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  overflow: hidden;
  background: var(--cream);
}

.hero::before {
  content: "♪";
  position: absolute;
  left: -55px;
  top: 2%;
  color: rgba(194, 79, 50, 0.055);
  font: 700 clamp(360px, 48vw, 680px) var(--display);
  line-height: 1;
  transform: rotate(-12deg);
}

.hero-copy,
.show-card { position: relative; z-index: 1; }

.eyebrow {
  margin: 0 0 20px;
  color: var(--rust);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

h1 {
  max-width: 780px;
  margin: 0;
  font: 600 clamp(52px, 7.1vw, 104px)/0.94 var(--display);
  letter-spacing: -0.045em;
}

h1 em { color: var(--rust); font-weight: 600; }

.intro {
  max-width: 650px;
  margin: 30px 0 34px;
  color: #52605a;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.launch-note {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 20px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--rust);
  background: var(--paper);
  box-shadow: 0 12px 35px rgba(23, 32, 28, 0.07);
}

.launch-note > span { color: var(--rust); font: 700 30px var(--display); }
.launch-note p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.launch-note strong { color: var(--ink); font-size: 14px; }

.show-card {
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 18px 18px 0 var(--sage);
  transform: rotate(1.5deg);
}

.card-art {
  min-height: 390px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.live-pill {
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--rust);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.sound-wave {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.2vw, 16px);
}

.sound-wave i {
  width: 8px;
  border-radius: 8px;
  background: var(--rust);
}

.sound-wave i:nth-child(1), .sound-wave i:nth-child(9) { height: 28px; }
.sound-wave i:nth-child(2), .sound-wave i:nth-child(8) { height: 68px; }
.sound-wave i:nth-child(3), .sound-wave i:nth-child(7) { height: 112px; }
.sound-wave i:nth-child(4), .sound-wave i:nth-child(6) { height: 84px; }
.sound-wave i:nth-child(5) { height: 148px; background: var(--sage); }

.card-art > p {
  margin: 0;
  color: var(--sage);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.8;
}

.card-details {
  padding: 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.date-box {
  width: 58px;
  text-align: center;
  border-right: 1px solid var(--line);
  padding-right: 18px;
}

.date-box b { display: block; color: var(--rust); font-size: 10px; letter-spacing: 0.12em; }
.date-box strong { display: block; margin-top: 4px; font: 700 15px var(--display); }
.card-details .eyebrow { margin-bottom: 5px; font-size: 8px; }
.card-details h2 { margin: 0; font: 600 clamp(20px, 2.3vw, 28px) var(--display); }
.arrow { color: var(--rust); font-size: 28px; }

.promise {
  padding: clamp(70px, 8vw, 110px) max(6vw, 28px);
  background: var(--paper);
}

.promise > p {
  margin: 0 0 42px;
  color: var(--rust);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.promise article { padding: 30px 8% 20px 0; }
.promise article + article { padding-left: 8%; border-left: 1px solid var(--line); }
.promise article span { color: var(--rust); font-size: 11px; font-weight: 700; }
.promise h2 { margin: 16px 0 10px; font: 600 clamp(25px, 2.4vw, 34px) var(--display); }
.promise article p { max-width: 340px; margin: 0; color: var(--muted); line-height: 1.6; }

footer {
  min-height: 90px;
  padding: 24px max(6vw, 28px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
}

footer p { margin: 0; }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .show-card { width: min(100%, 560px); }
}

@media (max-width: 620px) {
  .site-header { align-items: flex-start; }
  .brand { font-size: 19px; }
  .status { margin-top: 8px; font-size: 9px; }
  .hero { min-height: auto; padding-top: 70px; }
  h1 { font-size: clamp(48px, 15vw, 72px); }
  .show-card { box-shadow: 10px 10px 0 var(--sage); }
  .card-art { min-height: 310px; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise article { padding: 26px 0; }
  .promise article + article { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: no-preference) {
  .show-card { animation: settle 700ms ease-out both; }
  .sound-wave i { animation: pulse 1.8s ease-in-out infinite alternate; }
  .sound-wave i:nth-child(2n) { animation-delay: -700ms; }
  @keyframes settle { from { opacity: 0; transform: translateY(18px) rotate(1.5deg); } }
  @keyframes pulse { to { transform: scaleY(0.72); } }
}
