:root {
  color-scheme: dark;
  --ink: #15100c;
  --espresso: #211711;
  --coffee: #4e3426;
  --copper: #bb7a42;
  --cream: #fff1d2;
  --foam: #f3d59c;
  --sage: #8f9f7a;
  --mist: rgba(255, 241, 210, 0.72);
  --line: rgba(255, 241, 210, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--espresso);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  color: var(--cream);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 8%, rgba(187, 122, 66, 0.24), transparent 28rem),
    linear-gradient(180deg, #17110d 0%, #2a1b12 48%, #12100d 100%);
}

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

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(28px, 4vw, 64px);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.78);
  transform: scale(1.03);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 10, 7, 0.94), rgba(15, 10, 7, 0.68) 42%, rgba(15, 10, 7, 0.24)),
    linear-gradient(0deg, rgba(15, 10, 7, 0.9), transparent 52%);
}

.hero__content {
  position: relative;
  width: min(760px, 100%);
  padding-bottom: clamp(24px, 6vh, 72px);
}

.eyebrow {
  margin: 0 0 12px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--foam);
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 14px;
  font-size: clamp(4.4rem, 13vw, 12rem);
  line-height: 0.83;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.35rem, 6vw, 5.3rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

.lede,
.section-copy p,
.album__copy p,
.details p {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--mist);
}

.lede {
  max-width: 670px;
  font-size: clamp(1.12rem, 2.3vw, 1.55rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero__actions span {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--ink);
  background: linear-gradient(135deg, var(--foam), #d79656);
  border: 1px solid rgba(255, 241, 210, 0.38);
  border-radius: 999px;
  padding: 10px 14px;
}

.screens,
.album,
.details {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.screens {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(58px, 9vw, 112px) 0;
}

.section-copy {
  width: min(780px, 100%);
}

.phone-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 32px);
  align-items: center;
}

.phone {
  margin: 0;
  padding: 10px;
  border-radius: 34px;
  background: linear-gradient(150deg, rgba(255, 241, 210, 0.16), rgba(255, 241, 210, 0.04));
  border: 1px solid var(--line);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.phone--lifted {
  transform: translateY(-22px);
}

.phone img {
  width: 100%;
  aspect-ratio: 368 / 800;
  object-fit: cover;
  border-radius: 26px;
}

.phone figcaption {
  padding: 13px 4px 3px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--foam);
  font-weight: 800;
  text-align: center;
}

.album {
  display: grid;
  grid-template-columns: minmax(240px, 430px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(52px, 8vw, 96px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.album__art {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.44);
}

.album__copy {
  max-width: 600px;
}

.details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(44px, 7vw, 82px) 0 72px;
}

.details > div {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.stat {
  display: block;
  margin-bottom: 8px;
  color: var(--foam);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1;
  font-weight: 800;
}

@media (max-width: 820px) {
  .hero {
    min-height: 88svh;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(15, 10, 7, 0.92), rgba(15, 10, 7, 0.24) 70%),
      linear-gradient(90deg, rgba(15, 10, 7, 0.8), rgba(15, 10, 7, 0.34));
  }

  .phone-row,
  .album,
  .details {
    grid-template-columns: 1fr;
  }

  .phone {
    width: min(330px, 100%);
    justify-self: center;
  }

  .phone--lifted {
    transform: none;
  }
}
