:root {
  --paper: #faf7f2;
  --paper-soft: #f5f0e6;
  --paper-raised: #fffdf9;
  --paper-recessed: #efe8db;
  --ink: #381e3d;
  --ink-dark: #210927;
  --ink-soft: #665b65;
  --terracotta: #d95d39;
  --terracotta-dark: #bd4325;
  --terracotta-soft: #ffdbd1;
  --teal: #2a7f85;
  --teal-soft: #d9f1f1;
  --mustard: #e5a93c;
  --mustard-soft: #f9e9bd;
  --line: rgba(56, 30, 61, 0.11);
  --shadow-card: 0 4px 12px -2px rgba(56, 30, 61, 0.08), 0 2px 4px -1px rgba(56, 30, 61, 0.04);
  --shadow-raised: 0 18px 45px -18px rgba(56, 30, 61, 0.28), 0 5px 16px -7px rgba(56, 30, 61, 0.12);
  --display: "Epilogue", system-ui, sans-serif;
  --body: "Outfit", system-ui, sans-serif;
  --shell: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink-dark);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(56, 30, 61, 0.03) 0.6px, transparent 0.6px);
  background-size: 6px 6px;
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

button:disabled {
  cursor: wait;
}

:focus-visible {
  outline: 3px solid rgba(42, 127, 133, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.shell {
  width: min(calc(100% - 2.5rem), var(--shell));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 6rem 0;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  color: var(--ink-dark);
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.2;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 6px 24px -16px rgba(56, 30, 61, 0.48);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.22);
}

.brand-mark i {
  width: 2px;
  border-radius: 2px;
  background: var(--paper);
}

.brand-mark i:nth-child(1) { height: 8px; }
.brand-mark i:nth-child(2) { height: 15px; }
.brand-mark i:nth-child(3) { height: 11px; }
.brand-mark i:nth-child(4) { height: 6px; }

.brand-type {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-type strong {
  font-family: var(--display);
  font-size: 0.98rem;
  letter-spacing: -0.025em;
}

.brand-type small {
  margin-top: 0.3rem;
  color: var(--ink-soft);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav > a:not(.button) {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  left: 0;
  height: 2px;
  background: var(--terracotta);
  content: "";
  transform: scaleX(0);
  transition: transform 150ms ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
}

.button {
  min-height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.35rem;
  border: 0;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease, background-color 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

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

.button:active {
  transform: translateY(1px);
}

.button[aria-busy="true"] {
  opacity: 0.78;
  pointer-events: none;
}

.button-primary {
  color: #fffaf6;
  background: var(--terracotta);
  box-shadow: 0 7px 18px -8px rgba(56, 30, 61, 0.65);
}

.button-primary:hover {
  background: var(--terracotta-dark);
}

.button-small {
  min-height: 2.35rem;
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
}

.button-full {
  width: 100%;
}

.button-secondary-light {
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  background: transparent;
  box-shadow: none;
}

.button-secondary-light:hover {
  color: var(--ink-dark);
  background: var(--paper);
}

.hero {
  overflow: hidden;
  padding-top: 8.5rem;
  background:
    radial-gradient(circle at 84% 24%, rgba(217, 93, 57, 0.09), transparent 24rem),
    radial-gradient(circle at 8% 60%, rgba(42, 127, 133, 0.06), transparent 25rem),
    var(--paper);
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.hero-copy {
  grid-column: 3 / 11;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyebrow,
.kicker {
  color: var(--terracotta-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  background: var(--terracotta-soft);
}

.eyebrow span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--terracotta);
}

.hero h1 {
  max-width: 880px;
  margin-bottom: 1.25rem;
  font-size: clamp(2.75rem, 5vw, 3.5rem);
  line-height: 1.04;
}

.hero h1 em {
  color: var(--terracotta);
  font-weight: 600;
}

.hero-lede {
  max-width: 700px;
  margin-bottom: 1.75rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.text-link {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.32rem;
}

.hero-visual {
  position: relative;
  grid-column: 2 / 12;
  margin: 2.8rem 0 0;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  border: 8px solid #fffdf9;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: var(--shadow-raised);
}

.photo-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(33, 9, 39, 0.2));
  content: "";
  pointer-events: none;
}

.photo-frame img {
  width: 100%;
  height: clamp(310px, 46vw, 600px);
  object-fit: cover;
  object-position: center 47%;
}

.photo-frame figcaption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.45rem 0.7rem;
  border-radius: 0.45rem;
  color: var(--ink-dark);
  background: rgba(255, 253, 249, 0.92);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.paper-note {
  position: absolute;
  right: -1rem;
  bottom: -2rem;
  z-index: 3;
  width: min(19rem, 44%);
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(56, 30, 61, 0.13);
  border-radius: 0.35rem;
  background: #fff3bd;
  box-shadow: 0 12px 26px -12px rgba(33, 9, 39, 0.35);
  transform: rotate(2deg);
}

.paper-note span,
.paper-note strong {
  display: block;
}

.paper-note span {
  color: var(--terracotta-dark);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.paper-note strong {
  margin-top: 0.35rem;
  font-family: var(--display);
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  line-height: 1.35;
}

.note-rhythm {
  margin-top: 0.75rem;
  color: var(--teal);
  font-family: var(--display);
  letter-spacing: 0.18em;
}

.value-strip {
  grid-column: 2 / 12;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin: 3.25rem 0 0;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: var(--paper-recessed);
  list-style: none;
}

.value-strip li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 600;
  text-align: center;
}

.value-strip li span {
  color: var(--terracotta);
}

.stave {
  position: absolute;
  z-index: 0;
  width: 36rem;
  height: 5rem;
  opacity: 0.18;
  background: repeating-linear-gradient(to bottom, transparent 0 11px, var(--teal) 11px 12px);
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  transform: rotate(-4deg);
}

.stave-one { top: 12rem; left: -8rem; }
.stave-two { top: 18rem; right: -10rem; transform: rotate(5deg); }

.collection-section {
  border-top: 2px dotted rgba(56, 30, 61, 0.13);
  border-bottom: 2px dotted rgba(56, 30, 61, 0.13);
  background: var(--paper-soft);
}

.section-heading {
  margin-bottom: 2.8rem;
}

.section-heading p:not(.kicker) {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.section-heading.centered {
  max-width: 710px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.bundle-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(270px, 0.85fr);
  gap: 3.5rem;
  overflow: hidden;
  padding: 3rem;
  border: 1px solid rgba(56, 30, 61, 0.12);
  border-radius: 1.25rem;
  background: var(--paper-raised);
  box-shadow: var(--shadow-raised);
}

.bundle-rule {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--terracotta) 0 54%, var(--mustard) 54% 72%, var(--teal) 72%);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 1.65rem;
  padding: 0.25rem 0.65rem;
  border-radius: 0.45rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
}

.chip-coral { color: #fff; background: var(--terracotta); }
.chip-cream { color: var(--ink); background: var(--terracotta-soft); }
.chip-coral-soft { color: #7e270e; background: var(--terracotta-soft); }
.chip-teal-soft { color: #064f54; background: var(--teal-soft); }
.chip-mustard-soft { color: #654500; background: var(--mustard-soft); }
.chip-neutral { color: var(--ink-soft); background: var(--paper-recessed); }

.bundle-copy h3 {
  max-width: 700px;
  margin-bottom: 0.5rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.product-subtitle {
  color: var(--terracotta-dark);
  font-size: 1rem;
  font-weight: 600;
}

.bundle-copy > p:not(.product-subtitle) {
  max-width: 730px;
  color: var(--ink-soft);
}

.bundle-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.7rem 0;
  padding: 0;
  list-style: none;
}

.bundle-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(56, 30, 61, 0.05);
  border-radius: 0.7rem;
  background: var(--paper-soft);
}

.check {
  width: 1.4rem;
  height: 1.4rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 0.12rem;
  border-radius: 50%;
  color: #fff;
  background: var(--terracotta);
  font-size: 0.72rem;
}

.bundle-list strong,
.bundle-list small {
  display: block;
}

.bundle-list strong {
  font-size: 0.92rem;
}

.bundle-list small {
  margin-top: 0.08rem;
  color: var(--ink-soft);
}

.bundle-inclusions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 600;
}

.bundle-inclusions span::before {
  margin-right: 0.35rem;
  color: var(--terracotta);
  content: "•";
}

.bundle-price {
  align-self: center;
  padding: 2.35rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--paper-recessed);
  text-align: center;
  box-shadow: inset 0 2px 7px rgba(56, 30, 61, 0.04);
}

.bundle-price .kicker {
  margin-bottom: 0.7rem;
}

.price-label,
.bundle-price > small {
  display: block;
  color: var(--ink-soft);
}

.price-label {
  font-family: var(--display);
  font-weight: 700;
}

.price {
  display: block;
  font-family: var(--display);
  font-size: 1.75rem;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.price em {
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.price-pending {
  margin: 0.2rem 0 0.65rem;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.price-note {
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.bundle-price > small {
  margin-top: 0.8rem;
  font-size: 0.68rem;
}

.checkout-consent {
  color: var(--ink-soft);
  font-size: 0.66rem;
  line-height: 1.45;
}

.bundle-price > .checkout-consent {
  margin-top: 0.8rem;
}

.checkout-consent a {
  font-weight: 700;
  text-underline-offset: 0.15rem;
}

.products-section {
  background: var(--paper);
}

.heading-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.heading-split h2 {
  margin-bottom: 0.5rem;
}

.availability-tag {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--paper-recessed);
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--paper-raised);
  box-shadow: var(--shadow-card);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.product-card:hover {
  box-shadow: var(--shadow-raised);
  transform: translateY(-5px);
}

.product-accent {
  height: 5px;
}

.product-coral .product-accent { background: var(--terracotta); }
.product-teal .product-accent { background: var(--teal); }
.product-mustard .product-accent { background: var(--mustard); }

.product-card-body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.product-number {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  color: rgba(56, 30, 61, 0.075);
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.product-card h3 {
  max-width: 85%;
  margin-bottom: 0.35rem;
}

.rondo {
  display: inline;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.product-description {
  flex: 1;
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.recording-card {
  width: 100%;
  min-height: 5.2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
  padding: 0.8rem;
  border: 1px solid rgba(56, 30, 61, 0.06);
  border-radius: 0.75rem;
  background: var(--paper-soft);
}

.audio-preview {
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.audio-preview:hover {
  transform: translateY(-1px);
  border-color: rgba(56, 30, 61, 0.16);
  box-shadow: var(--shadow-card);
}

.audio-preview:focus-visible {
  outline: 3px solid rgba(42, 127, 133, 0.24);
  outline-offset: 3px;
}

.audio-preview.is-playing {
  border-color: rgba(42, 127, 133, 0.26);
}

audio[data-audio] {
  display: none;
}

.recording-icon {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--terracotta);
  font-size: 0.72rem;
  box-shadow: inset 0 2px 4px rgba(43, 21, 47, 0.18);
}

.recording-icon-teal { background: var(--teal); }

.recording-card strong,
.recording-card small {
  display: block;
}

.recording-card strong {
  font-size: 0.78rem;
}

.recording-card small {
  margin-top: 0.2rem;
  color: var(--ink-soft);
  font-size: 0.65rem;
  line-height: 1.3;
}

.wave {
  height: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.wave i {
  width: 3px;
  border-radius: 2px;
  background: var(--terracotta);
}

.wave i:nth-child(1), .wave i:nth-child(5) { height: 0.55rem; }
.wave i:nth-child(2), .wave i:nth-child(4) { height: 1.3rem; }
.wave i:nth-child(3) { height: 1.8rem; }
.wave-teal i { background: var(--teal); }

.audio-preview.is-playing .wave i {
  animation: audio-wave 720ms ease-in-out infinite alternate;
}

.audio-preview.is-playing .wave i:nth-child(2) { animation-delay: -480ms; }
.audio-preview.is-playing .wave i:nth-child(3) { animation-delay: -240ms; }
.audio-preview.is-playing .wave i:nth-child(4) { animation-delay: -600ms; }
.audio-preview.is-playing .wave i:nth-child(5) { animation-delay: -120ms; }

.included-note {
  margin: -0.45rem 0 1.2rem;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 700;
}

.rhythm-pattern {
  min-height: 5.2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 1.25rem;
  padding: 0.8rem;
  border: 1px solid rgba(56, 30, 61, 0.06);
  border-radius: 0.75rem;
  background: var(--paper-soft);
}

.rhythm-pattern span {
  padding: 0.35rem 0.2rem;
  border-radius: 0.35rem;
  color: var(--ink);
  background: var(--mustard-soft);
  font-size: 0.62rem;
  font-weight: 800;
  text-align: center;
}

.rhythm-pattern span:nth-child(even) {
  color: #fff;
  background: var(--terracotta);
}

.product-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.product-footer small {
  display: block;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 600;
}

.product-card .checkout-consent {
  margin: 0.65rem 0 0;
  text-align: right;
}

.button-card {
  min-height: 2.4rem;
  padding: 0.6rem 0.85rem;
  font-size: 0.69rem;
  text-align: center;
}

.about-section {
  border-top: 2px dotted rgba(56, 30, 61, 0.13);
  border-bottom: 2px dotted rgba(56, 30, 61, 0.13);
  background: var(--paper-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.about-photo {
  position: relative;
  margin: 0;
}

.about-photo img {
  width: 100%;
  height: clamp(31rem, 49vw, 40rem);
  aspect-ratio: 4 / 5;
  border: 7px solid #fffdf9;
  border-radius: 1rem;
  object-fit: cover;
  object-position: 70% center;
  box-shadow: var(--shadow-raised);
}

.about-photo figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.6rem;
  color: #fff;
  background: rgba(33, 9, 39, 0.88);
}

.about-photo figcaption strong,
.about-photo figcaption span {
  display: block;
}

.about-photo figcaption strong {
  font-family: var(--display);
}

.about-photo figcaption span {
  margin-top: 0.12rem;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-copy h2 {
  max-width: 780px;
}

.about-copy > p:not(.kicker) {
  color: var(--ink-soft);
}

.signature-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.signature-line span {
  color: var(--terracotta-dark);
  font-family: var(--display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 700;
}

.signature-line small {
  padding-left: 1rem;
  border-left: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.credentials-section {
  padding: 4.5rem 0;
  background: var(--paper);
}

.centered-kicker {
  margin-bottom: 1.5rem;
  text-align: center;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.credential-grid div {
  padding: 1.35rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--paper-raised);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.credential-grid strong,
.credential-grid span {
  display: block;
}

.credential-grid strong {
  font-family: var(--display);
  font-size: 0.86rem;
}

.credential-grid span {
  margin-top: 0.3rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.closing-section {
  padding-top: 2rem;
}

.closing-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: 1.2rem;
  color: #fdf8f1;
  background:
    radial-gradient(circle at 84% 10%, rgba(217, 93, 57, 0.26), transparent 25rem),
    linear-gradient(135deg, #210927, #4a294c);
  box-shadow: var(--shadow-raised);
}

.closing-card h2 {
  max-width: 720px;
  margin-bottom: 0.8rem;
  color: #fffdf9;
}

.closing-card p:not(.kicker) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.kicker-light {
  color: #ffb29e;
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.sound-bars {
  height: 9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.28;
}

.sound-bars i {
  width: 0.5rem;
  border-radius: 999px;
  background: #fff;
}

.sound-bars i:nth-child(1), .sound-bars i:nth-child(9) { height: 2.8rem; }
.sound-bars i:nth-child(2), .sound-bars i:nth-child(8) { height: 5.2rem; }
.sound-bars i:nth-child(3), .sound-bars i:nth-child(7) { height: 7.2rem; }
.sound-bars i:nth-child(4), .sound-bars i:nth-child(6) { height: 4.3rem; }
.sound-bars i:nth-child(5) { height: 8.5rem; }

.site-footer {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  align-items: start;
  gap: 2rem;
  padding-top: 3rem;
  padding-bottom: 2.5rem;
}

.footer-top p {
  max-width: 360px;
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.footer-contact,
.footer-release {
  display: flex;
  flex-direction: column;
}

.footer-contact span,
.footer-release span {
  margin-bottom: 0.5rem;
  color: var(--terracotta-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-contact a,
.footer-release strong {
  font-size: 0.85rem;
  font-weight: 600;
}

.footer-contact a {
  text-underline-offset: 0.2rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 1rem;
}

.footer-legal a {
  font-weight: 600;
  text-underline-offset: 0.18rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.67rem;
}

.checkout-dialog {
  width: min(calc(100% - 2rem), 31rem);
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  color: var(--ink-dark);
  background: var(--paper-raised);
  box-shadow: 0 28px 70px rgba(33, 9, 39, 0.28);
}

.checkout-dialog::backdrop {
  background: rgba(33, 9, 39, 0.62);
  backdrop-filter: blur(4px);
}

.checkout-dialog h2 {
  font-size: 1.8rem;
}

.checkout-dialog p:not(.kicker) {
  color: var(--ink-soft);
}

.dialog-close {
  position: absolute;
  top: 0.7rem;
  right: 0.75rem;
  width: 2.3rem;
  height: 2.3rem;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper-recessed);
  font-size: 1.4rem;
  cursor: pointer;
}

.checkout-result-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 18%, rgba(217, 93, 57, 0.12), transparent 24rem),
    radial-gradient(circle at 12% 78%, rgba(42, 127, 133, 0.1), transparent 28rem),
    var(--paper);
}

.result-header {
  max-width: 960px;
}

.result-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 8rem 1.25rem 4rem;
}

.result-card {
  width: min(100%, 650px);
  padding: clamp(2rem, 6vw, 4rem);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--paper-raised);
  box-shadow: var(--shadow-raised);
  text-align: center;
}

.result-card h1 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 7vw, 3rem);
  line-height: 1.08;
}

.result-lede {
  max-width: 31rem;
  margin: 0 auto;
  color: var(--ink-soft);
}

.result-icon {
  width: 4.5rem;
  height: 4.5rem;
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
}

.result-icon-loading {
  background: var(--paper-recessed);
}

.result-icon-loading span {
  width: 1.7rem;
  height: 1.7rem;
  border: 3px solid rgba(56, 30, 61, 0.18);
  border-top-color: var(--terracotta);
  border-radius: 50%;
  animation: result-spin 800ms linear infinite;
}

.result-icon-error {
  background: var(--terracotta);
}

.order-summary {
  margin: 2rem 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.order-summary div {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
}

.order-summary div + div {
  border-top: 1px solid var(--line);
}

.order-summary dt {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.order-summary dd {
  min-width: 0;
  margin: 0;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.result-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.result-recovery {
  margin: 1.35rem 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.result-recovery a,
.recovery-status a {
  font-weight: 700;
}

.result-icon-recovery {
  background: var(--terracotta);
}

.recovery-card {
  text-align: left;
}

.recovery-card .result-icon,
.recovery-card .kicker,
.recovery-card h1,
.recovery-card .result-lede {
  text-align: center;
}

.recovery-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.recovery-form label {
  font-weight: 700;
}

.recovery-form input {
  width: 100%;
  min-height: 3.4rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 0.8rem;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.recovery-form input:focus {
  outline: 3px solid rgba(42, 127, 133, 0.2);
  border-color: var(--teal);
}

.recovery-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: var(--ink-soft);
  text-align: center;
}

.recovery-status.is-success {
  color: var(--teal);
  font-weight: 700;
}

.recovery-status.is-error {
  color: var(--terracotta-dark);
  font-weight: 700;
}

.result-policy-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.legal-main {
  padding: 8.5rem 0 6rem;
  background:
    radial-gradient(circle at 88% 9%, rgba(217, 93, 57, 0.08), transparent 24rem),
    var(--paper);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(13rem, 0.8fr) minmax(0, 2.2fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.legal-index {
  position: sticky;
  top: 7rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--paper-soft);
}

.legal-index nav,
.legal-index nav a {
  display: flex;
  flex-direction: column;
}

.legal-index nav {
  gap: 0.25rem;
  margin: 1rem 0 1.5rem;
}

.legal-index nav a {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.legal-index > p:not(.kicker) {
  margin-bottom: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.5;
}

.legal-copy {
  max-width: 48rem;
}

.legal-intro {
  padding-bottom: 3rem;
}

.legal-intro h1 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.02;
}

.legal-intro > p:last-child {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.legal-section {
  scroll-margin-top: 7rem;
  padding: 3rem 0;
  border-top: 2px dotted rgba(56, 30, 61, 0.15);
}

.legal-section h2 {
  max-width: 42rem;
}

.legal-section h3 {
  margin: 2rem 0 0.65rem;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}

.legal-section p,
.legal-section li {
  color: #4f4550;
}

.legal-section ul {
  margin: 0.8rem 0 1.5rem;
  padding-left: 1.25rem;
}

.legal-section li + li {
  margin-top: 0.55rem;
}

.legal-section a,
.legal-index a {
  text-underline-offset: 0.2rem;
}

.legal-footer {
  margin-top: 0;
}

@keyframes result-spin {
  to { transform: rotate(360deg); }
}

@keyframes audio-wave {
  from { transform: scaleY(0.55); }
  to { transform: scaleY(1.08); }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .shell {
    width: min(calc(100% - 4rem), var(--shell));
  }

  .hero-copy { grid-column: 2 / 12; }
  .hero-visual, .value-strip { grid-column: 1 / -1; }
  .bundle-card { gap: 2rem; padding: 2.2rem; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-card:last-child { grid-column: 1 / -1; max-width: calc(50% - 0.75rem); justify-self: center; }
  .credential-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  html { scroll-padding-top: 5.2rem; }

  .shell { width: min(calc(100% - 2.5rem), var(--shell)); }
  .section { padding: 4.25rem 0; }
  .header-inner { min-height: 4.6rem; }

  .menu-button {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.7rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    background: var(--paper-raised);
    font-size: 0.73rem;
    font-weight: 700;
    cursor: pointer;
  }

  .menu-button-lines {
    width: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .menu-button-lines i {
    width: 100%;
    height: 1.5px;
    background: var(--ink);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--line);
    background: rgba(250, 247, 242, 0.98);
    box-shadow: 0 18px 30px -24px rgba(33, 9, 39, 0.6);
  }

  .site-nav.is-open { display: flex; }

  .site-nav > a:not(.button) {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .button { margin-top: 0.8rem; }

  .hero {
    padding-top: 7.7rem;
    padding-bottom: 4rem;
  }

  .hero-inner { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .hero-copy, .hero-visual, .value-strip { grid-column: 1 / -1; }
  .hero h1 { font-size: clamp(2.35rem, 9vw, 3rem); }
  .hero-lede { font-size: 1rem; }
  .hero-actions { flex-direction: column; gap: 1rem; }
  .hero-visual { margin-top: 2rem; }
  .photo-frame { border-width: 5px; }
  .photo-frame img { height: 380px; object-position: 53% center; }
  .photo-frame figcaption { top: 1rem; bottom: auto; }
  .paper-note { right: -0.4rem; bottom: -1.8rem; width: 70%; padding: 1rem; }

  .value-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3rem;
  }

  .value-strip li { justify-content: flex-start; text-align: left; }
  .stave { width: 20rem; }

  .bundle-card {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .bundle-price { padding: 1.6rem; }
  .heading-split { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card:last-child { grid-column: auto; max-width: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 31rem; margin-inline: auto; }
  .about-photo img { height: min(124vw, 38rem); }
  .credential-grid { grid-template-columns: 1fr 1fr; }
  .closing-card { grid-template-columns: 1fr; }
  .sound-bars { position: absolute; right: 1rem; bottom: -1.4rem; opacity: 0.12; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .footer-legal { justify-content: flex-start; }
  .result-header .text-link { display: none; }
  .result-main { padding-top: 7rem; }
  .result-actions { align-items: stretch; flex-direction: column; }
  .legal-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .legal-index { position: static; }
  .legal-return { display: none; }
  .legal-main { padding-top: 7rem; }
}

@media (max-width: 480px) {
  .brand-mark { width: 1.8rem; height: 1.8rem; }
  .brand-type strong { font-size: 0.86rem; }
  .brand-type small { font-size: 0.52rem; }
  .hero h1 { font-size: 2.375rem; }
  .eyebrow { font-size: 0.61rem; }
  .photo-frame img { height: 310px; }
  .paper-note { width: 76%; }
  .value-strip { grid-template-columns: 1fr; }
  .bundle-copy h3 { font-size: 2rem; }
  .product-footer { align-items: stretch; flex-direction: column; }
  .product-card .checkout-consent { text-align: left; }
  .button-card { width: 100%; }
  .credential-grid { grid-template-columns: 1fr; }
  .closing-actions { align-items: stretch; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .result-icon-loading span { animation-duration: 1.8s; }
  .audio-preview.is-playing .wave i { animation: none; }
}
