:root {
  --wine-950: #260815;
  --wine-900: #390b1e;
  --wine-800: #4b1028;
  --wine-700: #641739;
  --wine-600: #7c2148;
  --copper-500: #b66d43;
  --copper-400: #d29266;
  --copper-300: #e8b68d;
  --ivory-50: #fffdf8;
  --ivory-100: #fbf6ed;
  --ivory-200: #f1e8d9;
  --ink-900: #202028;
  --ink-700: #4d4850;
  --ink-500: #726a72;
  --line: rgba(75, 16, 40, 0.14);
  --shadow: 0 24px 70px rgba(38, 8, 21, 0.14);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-900);
  background: var(--ivory-50);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.35;
  background-image: radial-gradient(rgba(75, 16, 40, 0.08) 0.7px, transparent 0.7px);
  background-size: 8px 8px;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--ivory-50);
  background: var(--wine-900);
  border-radius: 0.4rem;
  transform: translateY(-160%);
}

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

.shell {
  width: min(1160px, calc(100% - 3rem));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  color: var(--ivory-50);
  background: var(--wine-950);
  border-bottom: 1px solid rgba(232, 182, 141, 0.22);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  border: 1px solid rgba(232, 182, 141, 0.42);
  border-radius: 0.9rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.brand span {
  display: grid;
  line-height: 1.2;
}

.brand-title {
  color: var(--ivory-50);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.brand small {
  margin-top: 0.28rem;
  color: var(--copper-300);
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.studio-link {
  color: inherit;
  font-weight: inherit;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.studio-link:hover {
  text-decoration-thickness: 2px;
}

.release-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.62rem 0.9rem;
  color: var(--ivory-100);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.release-dot {
  width: 0.55rem;
  height: 0.55rem;
  background: var(--copper-300);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(232, 182, 141, 0.12);
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: var(--ivory-50);
  background:
    radial-gradient(circle at 82% 44%, rgba(182, 109, 67, 0.18), transparent 28%),
    linear-gradient(125deg, var(--wine-950) 0%, var(--wine-800) 56%, var(--wine-700) 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--copper-300), transparent);
  opacity: 0.52;
}

.hero-rings {
  position: absolute;
  top: -360px;
  right: -260px;
  width: 900px;
  height: 900px;
  border: 1px solid rgba(232, 182, 141, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 100px rgba(232, 182, 141, 0.025),
    0 0 0 101px rgba(232, 182, 141, 0.09),
    0 0 0 210px rgba(232, 182, 141, 0.018),
    0 0 0 211px rgba(232, 182, 141, 0.07);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: 5rem;
  padding-block: 5.5rem 6rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--copper-300);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--wine-700);
}

.eyebrow.light {
  color: var(--copper-300);
}

.hero h1,
.section h2,
.release h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(3.8rem, 7.2vw, 6.7rem);
  line-height: 0.95;
}

.product-line {
  margin: 1.4rem 0 0;
  color: var(--copper-300);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  font-style: italic;
}

.tagline {
  max-width: 650px;
  margin: 1.7rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.42rem, 2.7vw, 2.12rem);
  font-weight: 600;
  line-height: 1.28;
}

.hero-summary {
  max-width: 650px;
  margin: 1.35rem 0 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 0.3rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button:focus-visible,
.brand-title:focus-visible,
.studio-link:focus-visible,
.domain-link:focus-visible {
  outline: 3px solid var(--copper-300);
  outline-offset: 4px;
}

.button-primary {
  color: var(--wine-950);
  background: var(--copper-300);
  border-color: var(--copper-300);
}

.button-primary:hover {
  background: #f1c8a7;
  border-color: #f1c8a7;
}

.button-secondary {
  color: var(--ivory-50);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.28);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.integrity-note {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1.4rem 0 0;
  color: rgba(255, 253, 248, 0.7);
  font-size: 0.92rem;
}

.integrity-note span {
  display: inline-grid;
  width: 1.45rem;
  height: 1.45rem;
  color: var(--wine-950);
  background: var(--copper-300);
  border-radius: 50%;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 900;
}

.hero-art {
  display: grid;
  place-items: center;
}

.icon-stage {
  position: relative;
  display: grid;
  width: min(100%, 460px);
  aspect-ratio: 1;
  place-items: center;
}

.icon-stage::before,
.icon-stage::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.icon-stage::before {
  inset: 3%;
  border: 1px solid rgba(232, 182, 141, 0.48);
}

.icon-stage::after {
  inset: 10%;
  border: 1px dashed rgba(232, 182, 141, 0.22);
}

.icon-halo {
  position: absolute;
  inset: 16%;
  background: radial-gradient(circle, rgba(232, 182, 141, 0.25), transparent 66%);
  filter: blur(10px);
}

.icon-stage img {
  position: relative;
  z-index: 2;
  width: 72%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 24%;
  object-fit: contain;
  filter: drop-shadow(0 30px 36px rgba(16, 2, 8, 0.42));
  transform: rotate(1.5deg);
}

.art-caption {
  position: absolute;
  right: 3%;
  bottom: 0;
  left: 3%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  color: rgba(255, 253, 248, 0.6);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.art-caption i {
  width: 3px;
  height: 3px;
  background: var(--copper-300);
  border-radius: 50%;
}

.status-band {
  color: var(--ivory-50);
  background: var(--wine-950);
}

.status-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.35fr 1fr;
  align-items: stretch;
}

.status-grid > div {
  display: grid;
  padding: 1.35rem 2rem;
  border-left: 1px solid rgba(232, 182, 141, 0.2);
}

.status-grid > div:last-child {
  border-right: 1px solid rgba(232, 182, 141, 0.2);
}

.status-grid span {
  color: var(--copper-300);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status-grid strong {
  margin-top: 0.18rem;
  font-family: var(--serif);
  font-size: 1.04rem;
  font-weight: 500;
}

.section {
  padding-block: 7.5rem;
}

.section h2,
.release h2 {
  font-size: clamp(2.35rem, 4.4vw, 4.1rem);
  line-height: 1.08;
}

.introduction {
  background: var(--ivory-50);
}

.intro-grid {
  display: grid;
  grid-template-columns: 90px 1.25fr 0.75fr;
  align-items: start;
  gap: 2.5rem;
}

.section-number {
  padding-top: 0.25rem;
  color: var(--copper-500);
  font-family: var(--serif);
  font-size: 1.4rem;
  border-top: 2px solid var(--copper-500);
}

.section-heading h2 {
  max-width: 710px;
}

.intro-copy {
  padding-top: 2rem;
  color: var(--ink-700);
  border-top: 1px solid var(--line);
}

.intro-copy p {
  margin: 0;
}

.intro-copy p + p {
  margin-top: 1.15rem;
}

.features {
  background:
    linear-gradient(rgba(75, 16, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 16, 40, 0.035) 1px, transparent 1px),
    var(--ivory-100);
  background-size: 34px 34px;
  border-block: 1px solid var(--line);
}

.section-title-row {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 4rem;
}

.section-title-row > p {
  margin: 0 0 0.55rem;
  color: var(--ink-700);
}

.feature-grid {
  display: grid;
  margin-top: 4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  position: relative;
  min-height: 265px;
  padding: 2.2rem;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  box-shadow: 0 14px 45px rgba(38, 8, 21, 0.05);
}

.feature-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 90px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--copper-500));
}

.card-number {
  color: var(--copper-500);
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 700;
}

.feature-card h3,
.steps h3 {
  margin: 1.8rem 0 0.65rem;
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.2;
}

.feature-card p {
  max-width: 540px;
  margin: 0;
  color: var(--ink-700);
}

.wide-card {
  display: grid;
  min-height: auto;
  grid-column: 1 / -1;
  grid-template-columns: 56px 1fr 0.85fr;
  align-items: center;
  gap: 1.5rem;
}

.wide-card h3 {
  margin-top: 0;
}

.storage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.storage-list span {
  padding: 0.48rem 0.72rem;
  color: var(--wine-800);
  background: var(--ivory-200);
  border: 1px solid rgba(75, 16, 40, 0.1);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 700;
}

.process {
  color: var(--ivory-50);
  background:
    radial-gradient(circle at 16% 16%, rgba(182, 109, 67, 0.14), transparent 26%),
    var(--wine-900);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 6rem;
}

.process-heading {
  position: sticky;
  top: 2rem;
  align-self: start;
}

.process-heading p:last-child {
  max-width: 470px;
  margin: 1.4rem 0 0;
  color: rgba(255, 253, 248, 0.72);
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 1.5rem;
  padding-block: 2.1rem;
  border-top: 1px solid rgba(232, 182, 141, 0.24);
}

.steps li:last-child {
  border-bottom: 1px solid rgba(232, 182, 141, 0.24);
}

.steps li > span {
  display: grid;
  width: 56px;
  height: 56px;
  color: var(--wine-950);
  background: var(--copper-300);
  border-radius: 50%;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
}

.steps h3 {
  margin: 0 0 0.45rem;
  color: var(--ivory-50);
  font-size: 1.7rem;
}

.steps p {
  margin: 0;
  color: rgba(255, 253, 248, 0.68);
}

.record-section {
  background: var(--ivory-50);
}

.record-card {
  display: grid;
  padding: 4.1rem;
  grid-template-columns: 120px 1fr 0.72fr;
  align-items: center;
  gap: 3.3rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  box-shadow: var(--shadow);
}

.record-seal {
  display: grid;
  width: 112px;
  height: 112px;
  border: 1px solid var(--copper-500);
  border-radius: 50%;
  place-items: center;
  box-shadow:
    inset 0 0 0 7px white,
    inset 0 0 0 8px var(--copper-400);
}

.record-seal span {
  display: grid;
  width: 70px;
  height: 70px;
  color: var(--ivory-50);
  background: var(--wine-800);
  border-radius: 50%;
  place-items: center;
  font-size: 2rem;
}

.record-card h2 {
  font-size: clamp(2.15rem, 3.8vw, 3.35rem);
}

.record-card > div > p:last-child {
  margin: 1.2rem 0 0;
  color: var(--ink-700);
}

.record-card aside {
  padding: 1.5rem;
  color: var(--ink-700);
  background: var(--ivory-100);
  border-left: 3px solid var(--copper-500);
}

.record-card aside strong {
  color: var(--wine-800);
  font-family: var(--serif);
  font-size: 1.12rem;
}

.record-card aside p {
  margin: 0.55rem 0 0;
  font-size: 0.92rem;
}

.release {
  position: relative;
  overflow: hidden;
  color: var(--ivory-50);
  background: var(--wine-800);
}

.release::before {
  position: absolute;
  right: -180px;
  bottom: -240px;
  width: 600px;
  height: 600px;
  content: "";
  border: 1px solid rgba(232, 182, 141, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(232, 182, 141, 0.03), 0 0 0 81px rgba(232, 182, 141, 0.12);
}

.release-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 420px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 5rem;
  padding-block: 5rem;
}

.release-inner > div:first-child > p:last-child {
  max-width: 660px;
  margin: 1.25rem 0 0;
  color: rgba(255, 253, 248, 0.74);
}

.release-domain {
  display: grid;
  padding: 2.1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(232, 182, 141, 0.34);
  border-radius: 0.35rem;
  box-shadow: 0 20px 50px rgba(25, 4, 12, 0.16);
}

.release-domain span {
  color: var(--copper-300);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.domain-link {
  display: inline-block;
  margin-top: 0.6rem;
  color: var(--ivory-50);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-decoration-color: var(--copper-300);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  white-space: nowrap;
}

.domain-link:hover {
  color: var(--copper-300);
  text-decoration-thickness: 2px;
}

.site-footer {
  color: rgba(255, 253, 248, 0.78);
  background: var(--wine-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding-block: 3rem;
  border-bottom: 1px solid rgba(232, 182, 141, 0.18);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-brand img {
  border-radius: 0.78rem;
}

.footer-brand div {
  display: grid;
  line-height: 1.25;
}

.footer-brand strong {
  color: var(--ivory-50);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.footer-brand span {
  margin-top: 0.3rem;
  color: var(--copper-300);
  font-size: 0.77rem;
}

.footer-tagline {
  max-width: 520px;
  margin: 0;
  justify-self: end;
  color: var(--ivory-100);
  font-family: var(--serif);
  font-size: 1.17rem;
  font-weight: 600;
  text-align: right;
}

.footer-legal {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 4rem;
  padding-block: 1.5rem 2.5rem;
  color: rgba(255, 253, 248, 0.5);
  font-size: 0.74rem;
  line-height: 1.6;
}

.footer-legal p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr 340px;
    gap: 2rem;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 8vw, 5.5rem);
  }

  .section {
    padding-block: 6rem;
  }

  .intro-grid {
    grid-template-columns: 70px 1fr;
  }

  .intro-copy {
    grid-column: 2;
    padding-top: 0;
    border-top: 0;
  }

  .section-title-row,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-title-row > p {
    max-width: 680px;
  }

  .process-heading {
    position: static;
  }

  .record-card {
    grid-template-columns: 96px 1fr;
    padding: 3rem;
  }

  .record-seal {
    width: 92px;
    height: 92px;
  }

  .record-seal span {
    width: 58px;
    height: 58px;
  }

  .record-card aside {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 2rem, 620px);
  }

  .header-inner {
    min-height: 76px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand small {
    display: none;
  }

  .release-pill {
    padding: 0.5rem 0.68rem;
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-rings {
    top: auto;
    right: -320px;
    bottom: -300px;
    width: 650px;
    height: 650px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-block: 4.5rem 4rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .hero-summary {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .hero-art {
    order: -1;
  }

  .icon-stage {
    width: min(82vw, 360px);
  }

  .icon-stage img {
    width: 68%;
  }

  .status-grid {
    grid-template-columns: 1fr;
    padding-block: 0.35rem;
  }

  .status-grid > div,
  .status-grid > div:last-child {
    padding: 1rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(232, 182, 141, 0.17);
    border-left: 0;
  }

  .status-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 5rem;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-number {
    width: 70px;
  }

  .intro-copy {
    grid-column: 1;
  }

  .section h2,
  .release h2 {
    font-size: clamp(2.2rem, 10vw, 3.3rem);
  }

  .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 2.8rem;
  }

  .feature-card {
    min-height: auto;
    padding: 1.7rem;
  }

  .wide-card {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .wide-card h3 {
    margin-top: 1.3rem;
  }

  .process-grid {
    gap: 2.8rem;
  }

  .steps li {
    grid-template-columns: 52px 1fr;
    gap: 1rem;
  }

  .steps li > span {
    width: 44px;
    height: 44px;
  }

  .record-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .record-card aside {
    grid-column: 1;
  }

  .release-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-block: 4.5rem;
  }

  .footer-main,
  .footer-legal {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-tagline {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 420px) {
  .brand-title {
    font-size: 0.98rem;
  }

  .release-pill {
    gap: 0.4rem;
  }

  .release-dot {
    width: 0.45rem;
    height: 0.45rem;
  }

  .domain-link {
    font-size: clamp(0.98rem, 5vw, 1.25rem);
    letter-spacing: -0.035em;
  }

  .hero-grid {
    padding-top: 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
