:root {
  --ink: #101010;
  --ink-soft: #5c5850;
  --white: #fffdf9;
  --mist: #f6f3ee;
  --sage: #dac7a3;
  --sage-dark: #7a6238;
  --rose: #e9ded6;
  --coral: #b78b48;
  --gold: #d8b66d;
  --blue: #858783;
  --forest: #2f302d;
  --line: rgba(16, 16, 16, 0.14);
  --shadow: 0 24px 70px rgba(16, 16, 16, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.cart-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

code {
  background: rgba(23, 36, 43, 0.08);
  border-radius: 4px;
  padding: 0.1rem 0.3rem;
}

.promo-bar {
  background: var(--sage);
  color: #082e2f;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  padding: 0.55rem 1rem;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
  padding: 0 5vw;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: clamp(150px, 15vw, 210px);
  height: 54px;
  object-fit: contain;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 38px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.8rem;
}

.site-nav,
.header-actions,
.hero-actions,
.product-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.site-nav a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.button,
.cart-button,
.product-meta button,
.catalog-table button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.75rem 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.cart-button:hover,
.product-meta button:hover,
.catalog-table button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--coral);
  color: var(--white);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
}

.button.ghost {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button.dark {
  background: var(--ink);
  color: var(--white);
}

.button.full {
  width: 100%;
}

.cart-button {
  gap: 0.5rem;
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--sage);
  color: #082e2f;
  font-size: 0.8rem;
}

.hero {
  position: relative;
  min-height: calc(100vh - 112px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: end;
  gap: 2rem;
  padding: min(12vh, 7rem) 5vw 5vw;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 36, 43, 0.82), rgba(23, 36, 43, 0.28) 56%, rgba(23, 36, 43, 0.56)),
    url("../../images/site/ceremony-aisle.png") center / cover;
  z-index: -1;
}

.hero-content {
  max-width: 760px;
  padding: 2rem 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--sage);
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 1.3rem;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

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

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.1rem;
}

.lead {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-panel {
  align-self: center;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel strong {
  display: block;
  font-size: 1.35rem;
}

.panel-label {
  display: block;
  margin-bottom: 0.35rem;
  color: inherit;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.72;
}

.waveform {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  height: 70px;
  margin: 1rem 0;
}

.waveform i {
  display: block;
  width: 100%;
  min-width: 8px;
  height: 30px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.72;
}

.waveform i:nth-child(2),
.waveform i:nth-child(8) {
  height: 48px;
}

.waveform i:nth-child(3),
.waveform i:nth-child(6) {
  height: 62px;
}

.waveform i:nth-child(4),
.waveform i:nth-child(9) {
  height: 24px;
}

.waveform i:nth-child(5) {
  height: 54px;
}

.section {
  padding: 6rem 5vw;
}

.section.compact {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section.tight {
  padding-top: 4.5rem;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.row-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
}

.text-link {
  color: var(--sage-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

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

.steps-grid article,
.values-grid article,
.testimonial-grid blockquote,
.included-card,
.contact-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(23, 36, 43, 0.08);
}

.steps-grid article {
  padding: 2rem;
}

.steps-grid span,
.values-grid span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1.3rem;
  border-radius: 50%;
  background: var(--sage);
  color: #082e2f;
  font-weight: 900;
}

.values-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.values-grid article {
  padding: 1.6rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 650px;
  background: var(--mist);
}

.split-section.reversed {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.split-image {
  min-height: 520px;
  background-position: center;
  background-size: cover;
}

.ceremony-image {
  background-image:
    linear-gradient(rgba(23, 36, 43, 0.08), rgba(23, 36, 43, 0.2)),
    url("../../images/site/ceremony-aisle.png");
}

.studio-image {
  background-image:
    linear-gradient(rgba(23, 36, 43, 0.08), rgba(23, 36, 43, 0.22)),
    url("../../images/site/veil-portrait.png");
}

.planner-image {
  background-image:
    linear-gradient(rgba(23, 36, 43, 0.08), rgba(23, 36, 43, 0.22)),
    url("../../images/site/WeddingPhoto_6.png");
}

.split-copy {
  align-self: center;
  padding: clamp(3rem, 7vw, 7rem);
}

.split-copy > p {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

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

.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  position: relative;
  margin-bottom: 0.75rem;
  padding-left: 1.25rem;
}

.plain-list li::before {
  position: absolute;
  left: 0;
  color: var(--coral);
  content: "+";
  font-weight: 900;
}

.muted-list li::before {
  color: var(--ink-soft);
  content: "-";
}

.catalog-preview {
  background: var(--white);
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(23, 36, 43, 0.08);
}

.cover,
.product-cover-large {
  position: relative;
  display: grid;
  place-items: end start;
  min-height: 280px;
  padding: 1.2rem;
  color: var(--white);
  isolation: isolate;
}

.cover::before,
.product-cover-large::before,
.mini-cover::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.34), transparent 30%), linear-gradient(135deg, rgba(23,36,43,0), rgba(23,36,43,0.38));
  content: "";
  z-index: -1;
}

.cover span,
.product-cover-large span {
  max-width: 14rem;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.cover-sage {
  background:
    linear-gradient(180deg, rgba(16,16,16,0.05), rgba(16,16,16,0.68)),
    url("../../images/site/WeddingPhoto_7.png") center 26% / cover;
}

.cover-rose {
  background:
    linear-gradient(180deg, rgba(16,16,16,0.05), rgba(16,16,16,0.68)),
    url("../../images/site/WeddingPhoto_6.png") center 28% / cover;
}

.cover-ink {
  background:
    linear-gradient(180deg, rgba(16,16,16,0.05), rgba(16,16,16,0.68)),
    url("../../images/site/ceremony-aisle.png") center 30% / cover;
}

.cover-gold {
  background:
    linear-gradient(180deg, rgba(16,16,16,0.05), rgba(16,16,16,0.68)),
    url("../../images/site/WeddingPhoto_5.png") center 22% / cover;
}

.cover-blue {
  background:
    linear-gradient(180deg, rgba(16,16,16,0.05), rgba(16,16,16,0.68)),
    url("../../images/site/veil-portrait.png") center 24% / cover;
}

.cover-coral {
  background:
    linear-gradient(180deg, rgba(16,16,16,0.05), rgba(16,16,16,0.68)),
    url("../../images/site/WeddingPhoto_4.png") center 35% / cover;
}

.cover-forest {
  background:
    linear-gradient(180deg, rgba(16,16,16,0.05), rgba(16,16,16,0.68)),
    url("../../images/site/WeddingPhoto_1.png") center 28% / cover;
}

.cover-plum {
  background:
    linear-gradient(180deg, rgba(16,16,16,0.05), rgba(16,16,16,0.68)),
    url("../../images/site/church-door-portrait.jpg") center 30% / cover;
}

.product-body {
  padding: 1.3rem;
}

.tag {
  display: inline-flex;
  margin-bottom: 0.7rem;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  background: var(--mist);
  color: var(--sage-dark);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-body p {
  color: var(--ink-soft);
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
}

.product-meta button,
.catalog-table button {
  min-height: 38px;
  padding: 0.45rem 0.85rem;
  background: var(--ink);
  color: var(--white);
}

.included-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.included-list span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.8rem;
  background: var(--white);
  font-weight: 800;
}

.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 4rem 5vw;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-cta > div {
  max-width: 840px;
}

.about-cta p:not(.eyebrow) {
  max-width: 640px;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.testimonials {
  background: var(--ink);
  color: var(--white);
}

.testimonial-grid blockquote {
  margin: 0;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.review-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  filter: saturate(0.86) contrast(1.04);
}

.testimonial-grid p {
  font-size: 1.2rem;
  line-height: 1.35;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
}

cite {
  color: var(--sage);
  font-style: normal;
  font-weight: 900;
}

.faq-section {
  background: var(--mist);
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
}

details {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  max-width: 720px;
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
}

.page-hero {
  min-height: 420px;
  padding: 7rem 5vw 4rem;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23,36,43,0.86), rgba(23,36,43,0.36)),
    url("../../images/site/ceremony-aisle.png") center / cover;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.7rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
}

.catalog-hero-premium {
  display: grid;
  align-items: center;
  min-height: 520px;
  padding: 7rem 5vw 5rem;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.78), rgba(16, 16, 16, 0.28)),
    url("../../images/site/WeddingPhoto_5.png") center 30% / cover;
}

.catalog-hero-premium > div {
  max-width: 760px;
}

.catalog-hero-premium h1 {
  margin-bottom: 0.65rem;
  font-size: clamp(3rem, 7vw, 6rem);
}

.catalog-hero-premium p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
}

.catalog-featured {
  background: var(--white);
}

.featured-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.track-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(23, 36, 43, 0.08);
}

.track-photo {
  --track-image: url("../../images/site/WeddingPhoto_1.png");
  --track-position: center;
  position: relative;
  display: grid;
  align-items: end;
  min-height: 310px;
  padding: 1.2rem;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(16, 16, 16, 0.02), rgba(16, 16, 16, 0.74)),
    var(--track-image) var(--track-position) / cover;
  transition: transform 180ms ease, filter 180ms ease;
}

.track-photo > span:not(.ribbon) {
  position: relative;
  max-width: 18rem;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 18px rgba(16, 16, 16, 0.4);
}

.ribbon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 4;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  background: rgba(255, 253, 249, 0.92);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(16, 16, 16, 0.18);
}

.photo-1 { --track-image: url("../../images/site/WeddingPhoto_1.png"); --track-position: center 28%; }
.photo-2 { --track-image: url("../../images/site/WeddingPhoto_2.png"); --track-position: center 32%; }
.photo-3 { --track-image: url("../../images/site/WeddingPhoto_3.png"); --track-position: center 30%; }
.photo-4 { --track-image: url("../../images/site/WeddingPhoto_4.png"); --track-position: center 35%; }
.photo-5 { --track-image: url("../../images/site/WeddingPhoto_5.png"); --track-position: center 22%; }
.photo-6 { --track-image: url("../../images/site/WeddingPhoto_6.png"); --track-position: center 28%; }
.photo-7 { --track-image: url("../../images/site/WeddingPhoto_7.png"); --track-position: center 26%; }
.photo-8 { --track-image: url("../../images/site/ceremony-aisle.png"); --track-position: center 30%; }
.photo-9 { --track-image: url("../../images/site/veil-portrait.png"); --track-position: center 24%; }
.photo-10 { --track-image: url("../../images/site/church-door-portrait.jpg"); --track-position: center 30%; }

.track-card-body {
  padding: 1.25rem;
}

.track-kicker {
  display: inline-flex;
  margin-bottom: 0.7rem;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  background: var(--mist);
  color: var(--sage-dark);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.track-card-body h3 {
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
}

.recording-label {
  margin-bottom: 0.35rem;
  color: var(--sage-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.track-card-body h3 a:hover,
.track-row-main h3 a:hover {
  color: var(--sage-dark);
}

.track-card-body p,
.track-row-main p {
  color: var(--ink-soft);
}

.track-card-body .track-kicker,
.track-row-main .recording-label {
  color: var(--sage-dark);
}

.track-row-main .recording-label {
  margin-bottom: 0.25rem;
}

.track-card-body .product-meta {
  margin-top: 1.3rem;
}

.track-card-body button,
.track-row button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.45rem 0.8rem;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.track-card-body button:hover,
.track-row button:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
}

.track-card:hover .track-photo,
.track-card:focus-within .track-photo {
  filter: saturate(1.06);
  transform: scale(1.02);
}

.browse-order {
  background: var(--mist);
  scroll-margin-top: 90px;
}

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

.order-card {
  --order-image: url("../../images/site/WeddingPhoto_1.png");
  position: relative;
  display: grid;
  align-items: end;
  min-height: 190px;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 1rem;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(16,16,16,0.08), rgba(16,16,16,0.72)),
    var(--order-image) center / cover;
  box-shadow: 0 18px 46px rgba(16, 16, 16, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.order-card span {
  position: relative;
  z-index: 1;
  font-weight: 900;
  line-height: 1.05;
  text-transform: lowercase;
}

.order-card:hover {
  box-shadow: 0 24px 58px rgba(16, 16, 16, 0.18);
  transform: translateY(-3px);
}

.order-parents { --order-image: url("../../images/site/parents.png"); }
.order-groom { --order-image: url("../../images/site/groom.png"); }
.order-party { --order-image: url("../../images/site/bridesmaids-and-groomsmen.png"); }
.order-bride { --order-image: url("../../images/site/bride.png"); }
.order-recessional { --order-image: url("../../images/site/recessional.png"); }
.order-best { --order-image: url("../../images/site/bestsellers.png"); }

.full-catalog-premium {
  background: var(--white);
}

.catalog-group {
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding-top: 1rem;
  scroll-margin-top: 110px;
}

.catalog-group:last-child {
  margin-bottom: 0;
}

.catalog-group-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.8rem;
}

.catalog-group-heading h3 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.track-list {
  display: grid;
  gap: 0.75rem;
}

.catalog-empty {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: rgba(255, 253, 249, 0.74);
}

.catalog-empty strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.catalog-empty p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.track-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.8rem;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(23, 36, 43, 0.06);
}

.track-thumb {
  --track-image: url("../../images/site/WeddingPhoto_1.png");
  --track-position: center;
  display: block;
  width: 88px;
  aspect-ratio: 1;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(16, 16, 16, 0.02), rgba(16, 16, 16, 0.28)),
    var(--track-image) var(--track-position) / cover;
}

.track-row-main {
  min-width: 0;
}

.track-row-main h3 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.track-row-main p {
  margin-bottom: 0;
}

.track-row strong {
  white-space: nowrap;
}

.about-hero,
.contact-hero {
  background:
    linear-gradient(90deg, rgba(23,36,43,0.86), rgba(23,36,43,0.38)),
    url("../../images/site/WeddingPhoto_7.png") center / cover;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.8rem;
}

.category-grid a {
  display: grid;
  place-items: center;
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 18px 48px rgba(23, 36, 43, 0.08);
}

.browse-section {
  background: var(--mist);
}

.catalog-table {
  display: grid;
  gap: 0.8rem;
}

.catalog-table article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem;
  background: var(--white);
}

.catalog-table h3,
.catalog-table p {
  margin: 0;
}

.catalog-table p {
  color: var(--ink-soft);
}

.mini-cover {
  position: relative;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: var(--radius);
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: 6rem 5vw;
  background: var(--mist);
}

.product-cover-large {
  min-height: min(620px, 72vw);
  box-shadow: var(--shadow);
}

.product-cover-large span {
  max-width: 20rem;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.product-detail .lead {
  color: var(--ink-soft);
}

.price {
  display: block;
  margin: 1.4rem 0;
  font-size: 1.8rem;
}

.track-timing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 1.2rem;
}

.track-timing div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(23, 36, 43, 0.06);
}

.track-timing strong,
.track-timing span {
  display: block;
}

.track-timing strong {
  font-size: 1.15rem;
}

.track-timing span {
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-player {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(23, 36, 43, 0.08);
  display: grid;
  gap: 0.85rem;
}

.preview-player audio {
  width: 100%;
  min-height: 42px;
  display: block;
}

.preview-player .waveform {
  color: var(--sage-dark);
  margin-bottom: 0;
}

.preview-player p {
  color: var(--ink-soft);
}

.product-option {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0;
  font-weight: 900;
}

.product-option select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 0.9rem;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.product-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 2rem;
}

.included-card {
  padding: 2rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 2rem;
}

.contact-form,
.contact-card {
  padding: 2rem;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
}

.contact-form label {
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  background: var(--white);
  color: var(--ink);
}

.form-note,
.cart-note {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 5vw;
  background: #10191e;
  color: var(--white);
}

.site-footer p {
  max-width: 420px;
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 39;
  pointer-events: none;
  background: rgba(16, 25, 30, 0.45);
  opacity: 0;
  transition: opacity 160ms ease;
}

.cart-overlay.is-visible {
  pointer-events: auto;
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  width: min(420px, 100%);
  height: 100vh;
  background: var(--white);
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.2);
  transform: translateX(102%);
  transition: transform 220ms ease;
}

.cart-drawer[aria-hidden="false"] {
  transform: translateX(0);
}

.cart-header,
.cart-footer {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header button {
  border: 0;
  background: transparent;
  font-size: 2rem;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 1rem;
}

.empty-cart {
  color: var(--ink-soft);
}

.cart-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.cart-line > strong {
  grid-column: 2;
}

.cart-line span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  grid-column: 1;
}

.quantity-controls button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

@media (max-width: 1040px) {
  .site-header {
    flex-wrap: wrap;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero,
  .product-hero,
  .split-section,
  .split-section.reversed,
  .product-info-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    max-width: 460px;
  }

  .steps-grid,
  .values-grid,
  .testimonial-grid,
  .product-grid,
  .catalog-product-grid,
  .featured-photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .compact-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .order-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .promo-bar {
    font-size: 0.74rem;
  }

  .site-header {
    align-items: flex-start;
    gap: 0.8rem;
  }

  .brand span:last-child {
    max-width: 130px;
    line-height: 1.1;
  }

  .brand-logo {
    width: 145px;
    height: 48px;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-actions .button {
    display: none;
  }

  .site-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 4rem;
  }

  h1 {
    font-size: 3.15rem;
  }

  .hero-actions,
  .product-actions,
  .about-cta,
  .row-heading,
  .site-footer,
  .compare-grid,
  .included-list {
    align-items: stretch;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .values-grid,
  .testimonial-grid,
  .product-grid,
  .catalog-product-grid,
  .featured-photo-grid,
  .compact-products,
  .category-grid,
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .order-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section,
  .section.compact {
    padding: 4rem 1.1rem;
  }

  .catalog-hero-premium {
    min-height: 430px;
    padding: 5rem 1.1rem 3rem;
    background-position: center 50%;
  }

  .catalog-group-heading {
    display: block;
  }

  .track-row {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .track-thumb {
    width: 70px;
  }

  .track-row strong,
  .track-row button {
    grid-column: 2;
    justify-self: start;
  }

  .track-timing {
    grid-template-columns: 1fr;
  }

  .split-copy,
  .product-hero,
  .page-hero {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .split-image {
    min-height: 360px;
  }

  .catalog-table article {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .catalog-table strong,
  .catalog-table button {
    grid-column: 2;
    justify-self: start;
  }

  .mini-cover {
    width: 54px;
    height: 54px;
  }
}
