﻿/* FAOSA Eyewear — Custom Styles */

/* 1. :root custom properties */
:root {
  --color-primary: #6b6b00;
  --color-primary-dark: #4a4a00;
  --color-primary-light: #8c8c1a;
  --color-accent: #c8a84b;
  --color-accent-warm: #d4914a;
  --color-dark: #1a1812;
  --color-dark-mid: #2b2620;
  --color-light: #f5f0e8;
  --color-light-warm: #ede6d6;
  --color-text: #2a2318;
  --color-text-muted: #7a6e5f;
  --color-muted: rgba(245, 240, 232, 0.55);
  --color-cream: #f5f0e8;
  --color-cream-muted: rgba(245, 240, 232, 0.8);
  --container-padding: 1.25rem;

  --font-heading: 'Yeseva One', serif;
  --font-accent: 'Rye', cursive;
  --font-quote: 'Libre Baskerville', serif;
  --font-body: 'DM Sans', sans-serif;

  --radius-sm: 2px;
  --radius-md: 6px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.28);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 68px;

  /* WooCommerce / SpindleStack shared aliases */
  --ss-color-primary: #6b6b00;
  --ss-color-primary-dark: #4a4a00;
  --ss-color-accent: #c8a84b;
  --ss-color-dark: #1a1812;
  --ss-color-light: #f5f0e8;
  --ss-color-cream: #f5f0e8;
  --ss-color-text: #2a2318;
	--ss-font-heading: 'Yeseva One', serif;
	--ss-font-body: 'DM Sans', sans-serif;

	/* Focus — gold accent ring (replaces Bootstrap blue) */
	--faosa-focus-color: var(--color-accent);
	--faosa-focus-ring: 0 0 0 3px rgba(200, 168, 75, 0.35);

	/* Bootstrap token overrides */
	--bs-primary: #6b6b00;
	--bs-primary-rgb: 107, 107, 0;
	--bs-link-color: #6b6b00;
	--bs-link-hover-color: #4a4a00;
	--bs-focus-ring-color: rgba(200, 168, 75, 0.45);
	--bs-focus-ring-opacity: 1;
}

/* 2. Reset / base overrides */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Global focus — FAOSA palette instead of Bootstrap blue */
:focus-visible {
  outline-color: var(--color-accent);
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus,
.input-text:focus,
textarea.input-text:focus,
.wpcf7-form-control:focus,
.woocommerce-input-wrapper input:focus,
.woocommerce-input-wrapper select:focus,
.woocommerce-input-wrapper textarea:focus {
  border-color: var(--faosa-focus-color);
  box-shadow: var(--faosa-focus-ring);
  outline: none;
}

.btn:focus-visible,
.btn-check:focus-visible + .btn,
.wc-block-components-button:focus-visible {
  box-shadow: var(--faosa-focus-ring);
  outline: none;
}

a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.site-nav .nav-link:focus-visible,
a.btn-faosa:focus-visible,
.btn-faosa:focus-visible,
.btn-faosa-primary:focus-visible,
.btn-faosa-outline:focus-visible,
.product-qty-stepper__btn:focus-visible {
  outline: none;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
  background-color: var(--color-light);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent);
}

main {
  overflow-x: hidden;
}

/* 3. Typography */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-top: 0;
  text-transform: none;
}

.font-quote {
  font-family: var(--font-quote);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  display: block;
}

.eyebrow--rye {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
}

.eyebrow--olive {
  color: var(--color-primary);
}

.eyebrow--gold {
  color: var(--color-accent);
}

.eyebrow--cream {
  color: var(--color-accent);
  letter-spacing: 0.2em;
}

.section-rule {
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-accent);
  margin-bottom: 1rem;
}

.section-rule--olive {
  background: var(--color-primary);
}

.section-rule--gold {
  background: var(--color-accent);
}

.section-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-text);
  margin-bottom: 1rem;
}

.section-heading--lg {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
}

.section-heading--xl {
  font-size: clamp(3rem, 8vw, 5rem);
}

.section-heading--cream {
  color: var(--color-cream);
}

.pull-quote {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.45;
  color: var(--color-text);
  text-align: center;
  margin: 0 auto;
  max-width: 42.5rem;
}

.pull-quote--light {
  color: var(--color-cream);
}

.quote-mark {
  font-family: var(--font-quote);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--color-accent);
  opacity: 0.4;
  display: block;
  margin-bottom: 0.5rem;
}

.badge-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--color-accent);
  border-radius: 100px;
  color: var(--color-accent);
  background: transparent;
}

.text-muted-custom {
  color: var(--color-text-muted);
}

.text-cream {
  color: var(--color-cream);
}

.text-cream-muted {
  color: var(--color-cream-muted);
}

.price-display {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-text);
}

.price-display--cream {
  color: var(--color-cream);
}

/* 4. Navigation */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 0.65rem 0;
  background: var(--color-dark);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition), padding var(--transition);
}

.site-nav--transparent {
  background: var(--color-dark);
  box-shadow: var(--shadow-md);
}

.site-nav--solid {
  background: var(--color-dark);
  box-shadow: var(--shadow-md);
  padding: 0.65rem 0;
}

.site-nav .navbar-brand img {
  height: 44px;
  width: auto;
  transition: opacity var(--transition);
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  text-decoration: none;
}

.brand-lockup__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-lockup__sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--color-cream-muted);
  max-width: 13.5rem;
}

.site-nav--transparent .navbar-brand img,
.site-nav--solid .navbar-brand img {
  filter: none;
}

.site-nav .nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-cream) !important;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color 0.3s ease;
  text-decoration: none;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus,
.site-nav .nav-link:focus-visible,
.site-nav .nav-link.active,
.site-nav .nav-link[aria-current="page"] {
  text-decoration: none !important;
}

.site-nav .navbar-brand,
.site-nav .navbar-brand:hover,
.site-nav .navbar-brand:focus {
  text-decoration: none !important;
}

.site-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.12rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.35s ease, opacity 0.3s ease;
  opacity: 0;
}

.site-nav .nav-link:hover:not(.active) {
  color: var(--color-accent-warm) !important;
}

.site-nav .nav-link:hover:not(.active)::after {
  width: 1rem;
  opacity: 0.45;
}

.site-nav .nav-link.active {
  color: var(--color-cream) !important;
  font-weight: 500;
}

.site-nav .nav-link.active::after {
  width: 1.75rem;
  opacity: 1;
}

.navbar-toggler {
  border: 1px solid rgba(245, 240, 232, 0.4);
  padding: 0.4rem 0.55rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28245, 240, 232, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-nav-shop {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--color-accent);
  border-radius: 100px;
  color: var(--color-accent) !important;
  background: transparent;
  transition: background var(--transition), color var(--transition);
  margin-left: 0.5rem;
}

.btn-nav-shop:hover {
  background: var(--color-accent);
  color: var(--color-dark) !important;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  z-index: 1040;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.mobile-menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-overlay .nav-link {
  font-size: 1.5rem;
  padding: 1rem !important;
  display: block;
  text-align: center;
}

/* 5. Buttons & CTAs */
.btn-faosa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.9rem 1.75rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color var(--transition), border-color var(--transition);
}

.btn-faosa::before,
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn-faosa:hover::before,
.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-faosa-primary {
  background: var(--color-primary);
  color: var(--color-cream);
}

.btn-faosa-primary:hover {
  color: var(--color-dark);
}

a.btn-faosa,
a.btn-faosa:hover,
a.btn-faosa:focus,
a.btn-faosa:focus-visible {
  text-decoration: none;
}

.btn-faosa-cream {
  background: var(--color-cream);
  color: var(--color-dark);
}

.btn-faosa-cream:hover {
  color: var(--color-dark);
}

.btn-faosa-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-faosa-outline::before {
  background: var(--color-primary);
}

.btn-faosa-outline:hover {
  color: var(--color-cream);
}

.btn-faosa-full {
  width: 100%;
}

.link-cta {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color var(--transition), gap var(--transition);
}

.link-cta:hover {
  color: var(--color-accent-warm);
  gap: 0.55rem;
}

.link-cta--cream {
  color: var(--color-cream-muted);
}

.link-cta--cream:hover {
  color: var(--color-cream);
}

/* 6. Section styles */
.section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.section--dark {
  background: var(--color-dark);
  color: var(--color-cream);
}

.section--dark-mid {
  background: var(--color-dark-mid);
  color: var(--color-cream);
}

.section--light {
  background: var(--color-light);
  color: var(--color-text);
}

.section--light-warm {
  background: var(--color-light-warm);
  color: var(--color-text);
}

/* Policy / legal pages */
.policy-content__body {
  max-width: 42rem;
  margin: 0;
  text-align: left;
}

.policy-content__intro {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.policy-content .inner-editorial h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--color-primary-dark);
  margin: 2.25rem 0 1rem;
  line-height: 1.2;
}

.policy-content .inner-editorial h2:first-child {
  margin-top: 0;
}

.policy-content .inner-editorial p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.policy-content .inner-editorial p:last-child {
  margin-bottom: 0;
}

.section--accent {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: var(--color-cream);
}

.section--brand {
  background: var(--color-primary-dark);
  color: var(--color-cream);
}

.grain-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px;
  z-index: 1;
}

.grain-overlay--subtle {
  opacity: 0.06;
}

.section__inner {
  position: relative;
  z-index: 2;
}

.decor-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.grain-overlay--banner {
  opacity: 0.08;
}

.decor-blur--olive {
  background: var(--color-primary-light);
}

.decor-blur--gold {
  background: var(--color-accent);
}

/* Hero â€” Homepage split */
.hero-home {
  min-height: 100vh;
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}

.hero-home__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  flex: 1;
}

.hero-home__content {
  max-width: 36rem;
}

.hero-home__headline {
  font-size: clamp(2.75rem, 7vw, 5rem);
  color: var(--color-cream);
  margin-bottom: 1.25rem;
}

.hero-home__sub {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-home__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.hero-home__image-wrap {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.img-offset-border {
  position: relative;
  z-index: 2;
}

.img-offset-border::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 3px solid var(--color-primary);
  z-index: -1;
}

.img-offset-border--gold::before {
  border-color: var(--color-accent);
}

.trust-strip {
  border-top: 1px solid rgba(245, 240, 232, 0.15);
  padding: 1.5rem 0;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.trust-strip__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-cream-muted);
}

.trust-strip__item {
  padding: 0 1.5rem;
  border-right: 1px solid rgba(245, 240, 232, 0.2);
}

.trust-strip__item:last-child {
  border-right: none;
}

/* History teaser */
.history-teaser {
  position: relative;
}

.history-teaser__deco-year {
  font-family: var(--font-heading);
  font-size: clamp(8rem, 20vw, 14rem);
  color: var(--color-accent);
  opacity: 0.12;
  line-height: 0.85;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
}

.stat-column {
  border-left: 3px solid var(--color-primary);
  padding-left: 1.5rem;
}

.stat-column__line {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  line-height: 1.2;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Accent banner quote */
.banner-quote {
  text-align: center;
  padding: 5rem 1.5rem;
  position: relative;
}

.banner-quote__attr {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-cream-muted);
  margin-top: 1.5rem;
}

.legend-tiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3rem;
}

.legend-tile {
  text-align: center;
}

.legend-tile__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-cream);
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}

/* Archive mosaic */
.archive-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.archive-mosaic__item {
  position: relative;
}

.archive-mosaic__item:nth-child(1) { grid-column: 1 / 7; grid-row: 1; }
.archive-mosaic__item:nth-child(2) { grid-column: 7 / 13; grid-row: 1; margin-top: 2rem; }
.archive-mosaic__item:nth-child(3) { grid-column: 2 / 6; grid-row: 2; }
.archive-mosaic__item:nth-child(4) { grid-column: 6 / 10; grid-row: 2; margin-top: -1rem; }
.archive-mosaic__item:nth-child(5) { grid-column: 10 / 13; grid-row: 2; }

.archive-mosaic__caption {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 0.65rem;
  line-height: 1.4;
}

/* Order info tiles */
.info-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.info-tile {
  text-align: center;
  padding: 1.5rem;
}

.info-tile__icon {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.info-tile__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-cream);
  margin-bottom: 0.75rem;
}

.info-tile__text {
  font-size: 0.95rem;
  color: var(--color-cream-muted);
  margin: 0;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 5rem 1.5rem;
}

.final-cta__headline {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  margin-bottom: 1rem;
}

.final-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

/* Shop hero â€” cinematic centered */
.hero-shop {
  min-height: 70vh;
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 4rem;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
}

.hero-shop__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-shop__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-shop__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-dark) 15%, rgba(26, 24, 18, 0.7) 50%, rgba(26, 24, 18, 0.85) 100%);
  z-index: 1;
}

.hero-shop__content {
  position: relative;
  z-index: 2;
  max-width: 48rem;
  padding: 0 1.5rem 2rem;
}

.hero-shop__headline {
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--color-cream);
  margin-bottom: 1rem;
}

/* Product feature blocks â€” shop */
.product-feature {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(42, 35, 24, 0.08);
}

.product-feature:last-child {
  border-bottom: none;
}

.product-feature__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.product-feature--reverse .product-feature__image {
  order: -1;
}

.spec-sheet {
  border: 1px solid rgba(42, 35, 24, 0.2);
  padding: 1.5rem;
  margin: 1.5rem 0;
  background: rgba(255, 255, 255, 0.4);
}

.spec-sheet dt {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
}

.spec-sheet dt:first-child {
  margin-top: 0;
}

.spec-sheet dd {
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
}

.acetate-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.acetate-tile {
  text-align: center;
  padding: 1.25rem;
}

.acetate-tile__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-cream);
  margin-bottom: 0.35rem;
}

.acetate-tile__text {
  font-size: 0.85rem;
  color: var(--color-cream-muted);
  margin: 0;
}

/* Sizing guide */
.sizing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.sizing-card {
  background: var(--color-light);
  border: 1px solid rgba(42, 35, 24, 0.12);
  padding: 2rem;
  position: relative;
}

.sizing-card__diagram {
  max-width: 200px;
  margin: 0 auto 1.5rem;
}

.sizing-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.sizing-tip {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 2rem;
  padding: 1rem;
  border-left: 3px solid var(--color-accent);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 7. Cards & tiles */
.product-card {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(107, 107, 0, 0.4);
  padding: 2rem;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.product-card__image {
  margin-bottom: 1.5rem;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.2);
}

.product-card__name {
  font-size: 2rem;
  color: var(--color-cream);
  margin-bottom: 0.75rem;
}

.product-card__desc {
  font-size: 0.95rem;
  color: var(--color-cream-muted);
  flex: 1;
  margin-bottom: 1rem;
}

.product-card__price {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

.product-cards-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.frames-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--color-cream-muted);
}

/* 8. Product / e-commerce components */
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* 9. Animations & transitions */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-animate-headline {
  animation: fadeUp 0.7s ease forwards;
}

.hero-animate-sub {
  opacity: 0;
  animation: fadeUp 0.7s ease 0.25s forwards;
}

.hero-animate-cta {
  opacity: 0;
  animation: fadeIn 0.7s ease 0.5s forwards;
}

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate].delay-1 { transition-delay: 0.1s; }
[data-animate].delay-2 { transition-delay: 0.15s; }
[data-animate].delay-3 { transition-delay: 0.2s; }
[data-animate].delay-4 { transition-delay: 0.25s; }

@media (max-width: 767px) {
  .archive-mosaic {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .archive-mosaic__item {
    grid-column: auto !important;
    grid-row: auto !important;
    margin-top: 0 !important;
  }
}

/* 10. Utilities */
.pt-nav {
  padding-top: var(--nav-height);
}

.text-center-custom {
  text-align: center;
}

.mb-section {
  margin-bottom: 3rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-prose {
  max-width: 36rem;
}

.decor-blur--tr {
  width: 320px;
  height: 320px;
  top: 10%;
  right: 5%;
}

.decor-blur--bl {
  width: 240px;
  height: 240px;
  bottom: 20%;
  left: 8%;
}

.decor-blur--tl {
  width: 280px;
  height: 280px;
  top: 15%;
  left: -5%;
}

.stat-column__muted {
  color: var(--color-text-muted);
  font-size: 1.25rem;
}

/* 11. Media queries */
@media (min-width: 576px) {
  .acetate-tiles {
    grid-template-columns: repeat(4, 1fr);
  }

  .info-tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }

  .page-home .home-hero.section {
    padding-top: var(--nav-height);
    padding-bottom: 0.5rem;
  }

  .hero-home__grid {
    grid-template-columns: 55% 45%;
    gap: 2rem;
  }

  .hero-home__image-wrap {
    margin: 0 0 0 auto;
  }

  .product-cards-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-feature__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .product-feature--reverse .product-feature__image {
    order: 2;
  }

  .sizing-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
  }
}

@media (min-width: 992px) {
  .history-teaser__layout {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 3rem;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .container-xl-narrow {
    max-width: 1140px;
  }
}

/* Footer */
.site-footer {
  background: var(--color-dark);
  color: var(--color-cream-muted);
  padding: 4rem 0 0;
}

.site-footer__logo img {
  height: 48px;
  width: auto;
  filter: none;
  margin-bottom: 0.35rem;
}

.site-footer .brand-lockup__sub {
  font-size: 0.68rem;
  max-width: 18rem;
  color: var(--color-cream-muted);
  margin-bottom: 1rem;
}

.site-footer__tagline {
  font-style: italic;
  font-size: 0.9rem;
  max-width: 280px;
  margin-bottom: 2rem;
}

.site-footer__heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: var(--color-cream-muted);
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: var(--color-cream);
}

.site-footer__contact-note {
  font-size: 0.85rem;
  color: var(--color-cream-muted);
  margin-top: 1rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.site-footer__bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  margin-top: 3rem;
  padding: 1.25rem 0;
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.site-footer__credit {
  opacity: 0.4;
  font-size: 0.75rem;
}

.site-footer__credit a {
  color: inherit;
}

/* ==========================================================================
   Homepage â€” index.php
   ========================================================================== */

.page-home .home-hero .eyebrow--rye {
  margin-bottom: 0.35rem;
  font-size: 0.65rem;
}

/* Section 1 â€” Hero */
.page-home .home-hero.section {
  padding-top: var(--nav-height);
  padding-bottom: 0.5rem;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.home-hero {
  min-height: 0;
  padding-top: var(--nav-height);
  padding-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.page-home .home-hero > .container.section__inner {
  flex: 0 0 auto;
}

.page-home .home-hero > .container.section__inner:last-of-type {
  padding-bottom: 0;
}

.home-hero__content {
  width: 100%;
  max-width: 100%;
  text-align: left;
}

.home-hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 4.2vw, 3.35rem);
  line-height: 1.05;
  color: var(--color-light);
  margin-bottom: 0.5rem;
}

.home-hero__sub {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  line-height: 1.55;
  color: rgba(245, 240, 232, 0.8);
  margin-bottom: 0.85rem;
  max-width: 100%;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem 1.25rem;
}

/* Hero â€” filmstrip within Bootstrap container */
.home-hero__filmstrip {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  flex: 0 0 auto;
}

.home-hero__filmstrip-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  text-align: center;
  margin: 0 0 0.45rem;
}

.filmstrip {
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
  background: transparent;
}

.filmstrip__cell {
  flex: 1 1 0;
  margin: 0;
  padding: 0;
  min-width: 0;
  display: flex;
  align-items: stretch;
}

.filmstrip__cell--featured {
  flex: 1 1 0;
}

.filmstrip__gutter {
  display: none;
}

.legend-photo {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  background-color: #0a0908;
  border: 3px solid #1a1812;
  box-shadow:
    inset 0 0 0 1px rgba(245, 240, 232, 0.06),
    0 4px 16px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease;
  cursor: default;
}

.filmstrip__cell--featured .legend-photo {
  border-color: #2b2620;
  box-shadow:
    inset 0 0 0 1px rgba(200, 168, 75, 0.12),
    0 5px 20px rgba(0, 0, 0, 0.38);
}

.legend-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
  filter: none;
  mix-blend-mode: normal;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.legend-photo--roy img {
  object-position: center 36%;
}

.legend-photo--buddy img {
  object-position: center 34%;
}

.legend-photo--esquivel img {
  object-position: center 32%;
}

.legend-photo .credit {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(20, 18, 14, 0.55);
  padding: 4px 8px;
  border-radius: 2px;
  line-height: 1.2;
  pointer-events: none;
}

.legend-photo:hover img {
  filter: brightness(1.05) contrast(1.06);
  transform: scale(1.02);
}

@media (max-width: 767px) {
  .filmstrip {
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .filmstrip__cell {
    flex: 1 1 0;
    min-width: 26vw;
  }

  .legend-photo .credit {
    font-size: 9px;
    letter-spacing: 1px;
    bottom: 8px;
    left: 8px;
    padding: 3px 6px;
  }
}

@media (min-width: 1200px) {
  .filmstrip {
    gap: 12px;
  }
}

.home-hero__trust {
  border-top: 1px solid rgba(200, 168, 75, 0.3);
  margin-top: 0.5rem;
  padding: 0.5rem 0 0;
  flex: 0 0 auto;
}

.img-offset-gold {
  position: relative;
  margin: 0;
}

.img-offset-gold::after {
  content: '';
  position: absolute;
  top: 10px;
  right: -10px;
  bottom: -10px;
  left: 10px;
  border: 2px solid var(--color-accent);
  pointer-events: none;
  z-index: 0;
}

.img-offset-gold img {
  position: relative;
  z-index: 1;
}

.img-offset-border--olive::before {
  top: 10px;
  left: 10px;
  right: -10px;
  bottom: -10px;
  border-width: 2px;
  border-color: var(--color-primary);
}

.home-hero__trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 232, 0.65);
}

.home-hero__trust-list li {
  padding: 0 0.85rem;
  border-right: 1px solid rgba(245, 240, 232, 0.2);
}

.home-hero__trust-list li:last-child {
  border-right: none;
}

.home-hero__blur-1 {
  width: 300px;
  height: 300px;
  top: 8%;
  right: 4%;
}

.home-hero__blur-2 {
  width: 220px;
  height: 220px;
  bottom: 18%;
  left: 6%;
}

/* Section 2 â€” History */
.home-history__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.home-history__header {
  grid-column: 1 / -1;
}

.home-history__heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-text);
  margin-bottom: 0;
  line-height: 1.1;
}

.home-history__header .eyebrow-rpm-row {
  margin-bottom: 0.75rem;
}

.home-history__text p {
  margin-bottom: 1.15rem;
}

.home-history__aside {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-history__deco-year {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 14vw, 8rem);
  color: var(--color-accent);
  opacity: 0.18;
  line-height: 1;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
}

.home-history__stats {
  position: relative;
  z-index: 1;
  padding-left: 1.75rem;
}

.home-history__stat-rule {
  display: block;
  width: 2px;
  height: 80px;
  background: var(--color-primary);
  position: absolute;
  left: 0;
  top: 0;
}

.home-history__stat {
  margin-bottom: 1.25rem;
}

.home-history__stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  color: var(--color-primary);
  line-height: 1;
  display: block;
}

.home-history__stat-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: lowercase;
  letter-spacing: 0.02em;
}

.home-history__stat-accent {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--color-accent);
  margin: 0.5rem 0 0;
  letter-spacing: 0.05em;
}

/* Section 3 â€” Frames */
.home-frames__header {
  margin-bottom: 2.5rem;
}

.home-frames__heading {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-light);
  margin-bottom: 0.75rem;
}

.home-frames__sub {
  font-size: 1.05rem;
  color: rgba(245, 240, 232, 0.75);
  max-width: 36rem;
  margin: 0 auto;
}

.home-frames__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.home-product-card {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(140, 140, 26, 0.4);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.home-product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.home-product-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  margin-bottom: 1.5rem;
  background: rgba(0, 0, 0, 0.15);
}

.home-product-card__name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-light);
  margin-bottom: 0.65rem;
}

.home-product-card__desc {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.78);
  flex: 1;
  margin-bottom: 0.85rem;
}

.home-product-card__meta {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.55);
}

.home-product-card__meta li {
  margin-bottom: 0.25rem;
}

.home-product-card__price {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

.home-product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
}

.home-product-card__actions .btn-faosa {
  flex: 1 1 9rem;
  justify-content: center;
  text-align: center;
}

.home-frames__note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.6);
}

.home-frames__blur {
  width: 260px;
  height: 260px;
  top: 12%;
  left: -4%;
}

/* Section 4 â€” Quote banner */
.page-home .home-quote.section--accent,
.page-home .quote-section {
  background: var(--color-primary);
}

.page-home .home-quote.dark-section::before {
  display: none;
}

.page-home .home-quote.quote-section.dark-section::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(200, 168, 75, 0.25);
}

.quote-section {
  padding: 90px var(--container-padding);
  text-align: center;
  position: relative;
}

.quote-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  opacity: 0.75;
  margin-bottom: 24px;
}

.quote-text {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--color-cream);
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.925;
  quotes: none;
  border: none;
  padding: 0;
}

.quote-attribution {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.quote-subnote {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-accent);
  opacity: 0.5;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.home-legends {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
}

.home-legend {
  text-align: center;
  padding-top: 0.75rem;
  border-top: 2px solid var(--color-accent);
  min-width: 160px;
}

.home-legend__name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-light);
  margin: 0 0 0.35rem;
}

.home-legend__desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.6);
  margin: 0;
}

/* Section 5 â€” Archive */
.home-archive__header {
  margin-bottom: 2.5rem;
}

.home-archive__heading {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--color-text);
  line-height: 1.1;
}

.home-archive__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.home-archive__item {
  margin: 0;
}

.home-archive__caption {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-style: italic;
  color: var(--color-text-muted);
  margin-top: 0.65rem;
  line-height: 1.45;
}

.home-archive__cta {
  position: relative;
  z-index: 3;
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 0;
}

/* Section 6 â€” Order */
.page-home .home-order.section--dark {
  background: var(--color-dark);
}

.page-home .home-order.dark-section::before {
  display: none;
}

.home-order__tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.home-order__tile {
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
}

.home-order__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(107, 107, 0, 0.35);
  color: var(--color-accent);
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.home-order__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-light);
  margin-bottom: 0.75rem;
}

.home-order__text {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.72);
  margin: 0;
  line-height: 1.7;
}

.home-order__text a {
  color: var(--color-accent);
}

.home-order__text a:hover {
  color: var(--color-light);
}

/* Section 7 â€” Final CTA */
.home-final__inner {
  text-align: center;
}

.home-final__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: var(--color-light);
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

.home-final__sub {
  font-size: 1.05rem;
  color: rgba(245, 240, 232, 0.8);
  max-width: 28rem;
  margin: 0 auto 1.75rem;
}

.home-final__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
}

@media (min-width: 768px) {
  .page-home .home-hero.section {
    padding-top: var(--nav-height);
    padding-bottom: 0.5rem;
  }

  .home-history__layout {
    grid-template-columns: 58% 42%;
    gap: 2.5rem;
  }

  .home-history__header {
    grid-column: 1 / -1;
    margin-bottom: 0.25rem;
  }

  .home-frames__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-frames__cards.home-frames__cards--cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-archive__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(140px, auto);
    gap: 1.25rem;
  }

  .home-archive__item--feature {
    grid-column: span 2;
    grid-row: span 2;
  }

  .home-archive__item--tall {
    grid-row: span 2;
  }

  .home-archive__item--wide {
    grid-column: span 2;
  }

  .home-archive__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .home-archive__item--feature .img-offset-border,
  .home-archive__item--tall .img-offset-border,
  .home-archive__item--wide .img-offset-border {
    height: calc(100% - 2.5rem);
  }

  .home-order__tiles {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .home-order__tile {
    max-width: none;
  }
}

/* Groove divider â€” removed per client request */
.groove-divider {
  display: none;
}

/* =============================================
   MUSIC DNA MOTIF SYSTEM
   ============================================= */

/* Motif 1 â€” 45 RPM groove divider */
.groove-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
  background: var(--color-light);
}

.groove-divider + .section--light,
.groove-divider + .section--light-warm {
  padding-top: 4rem;
}

.section--dark + .groove-divider,
.section--dark-mid + .groove-divider,
.section--brand + .groove-divider {
  background: var(--color-light);
}

.section--light + .groove-divider {
  background: var(--color-dark-mid);
}

.section--light-warm + .groove-divider {
  background: var(--color-dark);
}

.section--accent + .waveform-band {
  margin-top: 0;
}

/* Motif 2 — Waveform accent band */
#loom-root > .waveform-band,
.waveform-band {
  width: 100%;
  height: 64px;
  background-color: var(--color-dark);
  position: relative;
  overflow: hidden;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 40px;
}

/* Decorative band should always be visible (not scroll-fade). */
.waveform-band[data-animate] {
  opacity: 1;
  transform: none;
}

.waveform-band .wave-bar,
.waveform-band .wb {
  display: block;
  flex-shrink: 0;
  width: 3px;
  min-height: 8px;
  background-color: var(--color-accent);
  opacity: 0.13;
  border-radius: 2px;
}

@keyframes wavepulse {
  0%, 100% {
    opacity: 0.13;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.24;
    transform: scaleY(1.12);
  }
}

.waveform-band.visible .wave-bar,
.waveform-band.visible .wb {
  animation: wavepulse 2.2s ease-in-out infinite;
}

.waveform-band.visible .wave-bar:nth-child(2n),
.waveform-band.visible .wb:nth-child(2n) { animation-delay: 0.18s; }
.waveform-band.visible .wave-bar:nth-child(3n),
.waveform-band.visible .wb:nth-child(3n) { animation-delay: 0.36s; }
.waveform-band.visible .wave-bar:nth-child(5n),
.waveform-band.visible .wb:nth-child(5n) { animation-delay: 0.54s; }
.waveform-band.visible .wave-bar:nth-child(7n),
.waveform-band.visible .wb:nth-child(7n) { animation-delay: 0.72s; }

/* Motif 3 â€” Sleeve fine-print wallpaper on dark sections */
.dark-section {
  position: relative;
}

.dark-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='680' height='36'%3E%3Ctext x='0' y='20' font-family='DM Sans, sans-serif' font-size='8' fill='%23c8a84b' opacity='0.07' letter-spacing='3'%3EFAOSA Â· CAT. NO. ZAF-1925 Â· STEREO Â· NOT FOR BROADCAST Â· CELLULOSE ACETATE Â· EST. 1925 Â· MEXICO CITY%3C/text%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 680px 36px;
  pointer-events: none;
  z-index: 0;
}

.dark-section > .grain-overlay,
.dark-section > .decor-blur {
  z-index: 1;
}

.dark-section > .container,
.dark-section > .section__inner {
  position: relative;
  z-index: 2;
}

/* Motif 4 â€” 45 RPM badge eyebrow */
.eyebrow-rpm {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.rpm-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 32px;
  border: 1.5px solid var(--color-accent);
  border-radius: 16px;
  gap: 2px;
  flex-shrink: 0;
}

.rpm-badge .rpm-num {
  font-family: var(--font-accent);
  font-size: 11px;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: 1px;
}

.rpm-badge .rpm-divider {
  width: 32px;
  height: 0.5px;
  background: var(--color-accent);
  opacity: 0.5;
}

.rpm-badge .rpm-label {
  font-family: var(--font-body);
  font-size: 7px;
  color: var(--color-accent);
  letter-spacing: 2px;
  line-height: 1;
}

.eyebrow-rpm .eyebrow-text {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--color-accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.home-history .eyebrow-rpm .eyebrow-text,
.home-archive .eyebrow-rpm .eyebrow-text {
  color: var(--color-primary);
}

.home-history .rpm-badge,
.home-archive .rpm-badge {
  border-color: var(--color-primary);
}

.home-history .rpm-badge .rpm-num,
.home-history .rpm-badge .rpm-label,
.home-archive .rpm-badge .rpm-num,
.home-archive .rpm-badge .rpm-label {
  color: var(--color-primary);
}

.home-history .rpm-badge .rpm-divider,
.home-archive .rpm-badge .rpm-divider {
  background: var(--color-primary);
}

/* Motif 6 â€” Liner notes legend credits */
.liner-notes {
  width: 100%;
  max-width: 580px;
  margin: 2rem auto 0;
  border: 1px solid rgba(107, 107, 0, 0.3);
  border-radius: 2px;
  padding: 1.25rem 1.75rem;
  position: relative;
}

.liner-notes::before {
  content: 'WORN BY';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-accent);
  font-size: 0.7rem;
  color: var(--color-accent);
  letter-spacing: 0.2em;
  background: var(--color-primary-dark);
  padding: 0 12px;
  white-space: nowrap;
}

.liner-entry {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 0.5px solid rgba(107, 107, 0, 0.25);
}

.liner-entry:last-child {
  border-bottom: none;
}

.liner-name {
  font-family: var(--font-heading);
  color: var(--color-light);
  line-height: 1;
}

.liner-name.headliner {
  font-size: 1.6rem;
}

.liner-name.supporting {
  font-size: 1.1rem;
  opacity: 0.8;
}

.liner-name.supporting2 {
  font-size: 0.95rem;
  opacity: 0.65;
}

.liner-credit {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: right;
  flex-shrink: 0;
}

/* Motif 7 â€” Album spine transition */
.album-spine {
  width: 100%;
  height: 64px;
  background: var(--color-dark-mid);
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 40px;
  gap: 20px;
  overflow: hidden;
}

.album-spine::before,
.album-spine::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--color-accent);
}

.album-spine::before {
  top: 4px;
}

.album-spine::after {
  bottom: 4px;
}

.spine-inner-top,
.spine-inner-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 0.5px;
  background: var(--color-primary-light);
  opacity: 0.35;
  pointer-events: none;
}

.spine-inner-top {
  top: 10px;
}

.spine-inner-bottom {
  bottom: 10px;
}

.spine-disc {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--color-accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.spine-disc::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.spine-title {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--color-accent);
  letter-spacing: 0.2em;
  position: relative;
  z-index: 1;
}

.spine-tracks {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--color-light);
  opacity: 0.4;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.spine-right {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  position: relative;
  z-index: 1;
}

.spine-stereo {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--color-accent);
  opacity: 0.7;
  letter-spacing: 0.2em;
}

.spine-year {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--color-light);
  opacity: 0.35;
  letter-spacing: 0.2em;
}

@media (max-width: 767px) {
  .album-spine {
    padding: 0 1.25rem;
    gap: 10px;
  }

  .spine-tracks {
    display: none;
  }
}

/* Motif 8 â€” Track listing timeline */
.tracklist {
  width: 100%;
  border: 1px solid rgba(107, 107, 0, 0.3);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: rgba(245, 240, 232, 0.85);
}

.tracklist-header {
  background: rgba(107, 107, 0, 0.15);
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.5px solid rgba(107, 107, 0, 0.3);
}

.tracklist-header span {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  color: var(--color-accent);
  letter-spacing: 0.2em;
}

.track-entry {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.55rem 1rem;
  border-bottom: 0.5px solid rgba(107, 107, 0, 0.15);
}

.track-entry:last-child {
  border-bottom: none;
}

.track-num {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--color-accent);
  opacity: 0.6;
  min-width: 18px;
}

.track-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text);
  flex: 1;
}

.track-year {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--color-accent);
  flex-shrink: 0;
}

.page-home .home-history__aside {
  min-height: auto;
  align-items: stretch;
}

.page-home .home-history__deco-year {
  opacity: 0.12;
}

.page-home .home-history .tracklist-header span,
.page-home .home-history .track-num,
.page-home .home-history .track-year {
  color: var(--color-primary);
}

.page-home .home-history .track-num {
  opacity: 0.85;
}

/* =============================================
   MUSIC DNA MOTIF SYSTEM â€” v2
   ============================================= */

/* Motif 1 â€” Mini waveform eyebrow */
.page-home .section-rule {
  display: none;
}

.wave-eyebrow {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  margin-bottom: 14px;
  height: 28px;
}

.wave-eyebrow.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.wave-eyebrow .wb {
  width: 2px;
  background: var(--color-accent);
  opacity: 0.6;
  border-radius: 1px;
  flex-shrink: 0;
}

.wave-eyebrow--light .wb {
  background: var(--color-primary);
  opacity: 0.5;
}

.wave-eyebrow--dark .wb {
  background: var(--color-accent);
  opacity: 0.6;
}

/* Inner pages â€” lighter waveform touch */
.page-inner .wave-eyebrow,
.page-utility .wave-eyebrow {
  height: 22px;
  margin-bottom: 12px;
  gap: 1.5px;
}

.page-inner .wave-eyebrow .wb,
.page-utility .wave-eyebrow .wb {
  width: 1.5px;
  opacity: 0.42;
}

.page-inner .wave-eyebrow--light .wb,
.page-utility .wave-eyebrow--light .wb {
  background: var(--color-primary);
  opacity: 0.38;
}

.page-inner .wave-eyebrow--dark .wb,
.page-utility .wave-eyebrow--dark .wb {
  opacity: 0.48;
}

.page-inner .section-wave-sides::before,
.page-inner .section-wave-sides::after,
.page-utility .section-wave-sides::before,
.page-utility .section-wave-sides::after {
  width: 96px;
  opacity: 0.5;
}

.page-inner .shop-grid .wave-eyebrow,
.page-inner .shop-grid + .wave-eyebrow {
  margin-bottom: 1.75rem;
}

.section__inner > .wave-eyebrow.mx-auto:first-child,
.section__inner > .wave-eyebrow.mx-auto:first-of-type {
  margin-bottom: 1.75rem;
}

/* Motif 2 â€” Diagonal offset hero waveform */
.page-home .home-hero {
  position: relative;
}

.hero-wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-wave-bg svg {
  position: absolute;
  top: 0;
  right: -20px;
  height: 100%;
  width: auto;
}

.page-home .home-hero .grain-overlay,
.page-home .home-hero .decor-blur {
  z-index: 1;
}

.page-home .home-hero .container {
  position: relative;
  z-index: 2;
}

.page-home .home-hero__content,
.page-home .home-hero__filmstrip,
.page-home .home-hero__trust {
  position: relative;
  z-index: 1;
}

/* Motif 3 â€” Vertical waveform side columns */
.section-wave-sides {
  position: relative;
  overflow: hidden;
}

.section-wave-sides::before,
.section-wave-sides::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='40'%3E%3Cg fill='%23c8a84b' opacity='0.12'%3E%3Crect x='4' y='14' width='2' height='12'/%3E%3Crect x='9' y='8' width='2' height='24'/%3E%3Crect x='14' y='4' width='2' height='32'/%3E%3Crect x='19' y='12' width='2' height='16'/%3E%3Crect x='24' y='6' width='2' height='28'/%3E%3Crect x='29' y='2' width='2' height='36'/%3E%3Crect x='34' y='14' width='2' height='12'/%3E%3Crect x='39' y='8' width='2' height='24'/%3E%3Crect x='44' y='4' width='2' height='32'/%3E%3Crect x='49' y='16' width='2' height='8'/%3E%3Crect x='54' y='10' width='2' height='20'/%3E%3Crect x='59' y='2' width='2' height='36'/%3E%3Crect x='64' y='14' width='2' height='12'/%3E%3Crect x='69' y='8' width='2' height='24'/%3E%3Crect x='74' y='4' width='2' height='32'/%3E%3Crect x='79' y='12' width='2' height='16'/%3E%3Crect x='84' y='6' width='2' height='28'/%3E%3Crect x='89' y='2' width='2' height='36'/%3E%3Crect x='94' y='14' width='2' height='12'/%3E%3Crect x='99' y='8' width='2' height='24'/%3E%3Crect x='104' y='4' width='2' height='32'/%3E%3Crect x='109' y='16' width='2' height='8'/%3E%3Crect x='114' y='10' width='2' height='20'/%3E%3Crect x='119' y='2' width='2' height='36'/%3E%3Crect x='124' y='14' width='2' height='12'/%3E%3Crect x='129' y='8' width='2' height='24'/%3E%3Crect x='134' y='4' width='2' height='32'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-y;
  background-size: 140px 40px;
}

.section-wave-sides::before {
  left: 0;
}

.section-wave-sides::after {
  right: 0;
  transform: scaleX(-1);
}

.page-home .section-wave-sides .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .section-wave-sides::before,
  .section-wave-sides::after {
    width: 56px;
    opacity: 0.7;
  }
}

/* Motif 4 — Standalone waveform band (v2 overrides) */
.page-home .waveform-band {
  width: 100%;
  height: 64px;
  background: var(--color-dark);
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 40px;
  overflow: hidden;
}

.page-home .waveform-band .wave-bar,
.page-home .waveform-band .wb {
  display: block;
  flex-shrink: 0;
  width: 3px;
  min-height: 8px;
  background-color: var(--color-accent);
  opacity: 0.13;
  border-radius: 2px;
}

@keyframes wavepulse-v2 {
  0%, 100% {
    opacity: 0.13;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.24;
    transform: scaleY(1.12);
  }
}

.page-home .waveform-band.visible .wave-bar,
.page-home .waveform-band.visible .wb {
  animation: wavepulse-v2 2.2s ease-in-out infinite;
}

.page-home .waveform-band.visible .wave-bar:nth-child(2n),
.page-home .waveform-band.visible .wb:nth-child(2n) { animation-delay: 0.18s; }
.page-home .waveform-band.visible .wave-bar:nth-child(3n),
.page-home .waveform-band.visible .wb:nth-child(3n) { animation-delay: 0.36s; }
.page-home .waveform-band.visible .wave-bar:nth-child(5n),
.page-home .waveform-band.visible .wb:nth-child(5n) { animation-delay: 0.54s; }
.page-home .waveform-band.visible .wave-bar:nth-child(7n),
.page-home .waveform-band.visible .wb:nth-child(7n) { animation-delay: 0.72s; }

/* Motif 5 â€” Sleeve wallpaper (v2) */
.page-home .dark-section::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='680' height='36'%3E%3Ctext x='0' y='22' font-family='DM Sans,sans-serif' font-size='8' fill='%23c8a84b' opacity='0.07' letter-spacing='3'%3EFAOSA Â· CAT. NO. ZAF-1925 Â· STEREO Â· NOT FOR BROADCAST Â· CELLULOSE ACETATE Â· EST. 1925 Â· MEXICO CITY%3C/text%3E%3C/svg%3E");
}

.page-home .dark-section > * {
  position: relative;
  z-index: 1;
}

.page-home .dark-section > .hero-wave-bg {
  z-index: 0;
}

/* Motif 6 â€” 45 RPM badge eyebrow row */
.eyebrow-rpm-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

.page-home .eyebrow-rpm-row .rpm-badge {
  width: 52px;
  height: 30px;
  border-radius: 15px;
}

.page-home .eyebrow-rpm-row .rpm-line {
  width: 28px;
  height: 0.5px;
  background: var(--color-accent);
  opacity: 0.5;
}

.page-home .eyebrow-rpm-row .rpm-text {
  font-family: var(--font-body);
  font-size: 7px;
  color: var(--color-accent);
  letter-spacing: 2px;
  line-height: 1;
}

.page-home .eyebrow-rpm-row .eyebrow-label {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  color: var(--color-accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.page-home .home-history .eyebrow-rpm-row .rpm-badge,
.page-home .home-archive .eyebrow-rpm-row .rpm-badge {
  border-color: var(--color-primary);
}

.page-home .home-history .eyebrow-rpm-row .rpm-num,
.page-home .home-history .eyebrow-rpm-row .rpm-text,
.page-home .home-history .eyebrow-rpm-row .eyebrow-label,
.page-home .home-archive .eyebrow-rpm-row .rpm-num,
.page-home .home-archive .eyebrow-rpm-row .rpm-text,
.page-home .home-archive .eyebrow-rpm-row .eyebrow-label {
  color: var(--color-primary);
}

.page-home .home-history .eyebrow-rpm-row .rpm-line,
.page-home .home-archive .eyebrow-rpm-row .rpm-line {
  background: var(--color-primary);
}

/* Order section â€” visible wave above tiles */
.page-home .home-order .wave-eyebrow {
  margin-bottom: 2rem;
}

/* ==========================================================================
   INNER PAGES
   ========================================================================== */

.page-inner .section,
.page-utility .section {
  padding: 4.5rem 0;
}

.inner-hero {
  background: var(--color-dark);
  padding: calc(var(--nav-height) + 3.5rem) 0 4.75rem;
  border-bottom: 1px solid rgba(200, 168, 75, 0.15);
  position: relative;
  overflow: hidden;
}

.utility-hero {
  background: var(--color-dark);
  padding: calc(var(--nav-height) + 3.5rem) 0 4.75rem;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}

.page-inner .inner-hero.section,
.page-utility .utility-hero.section {
  padding-top: calc(var(--nav-height) + 3.5rem);
  padding-bottom: 4.75rem;
}

.page-inner .inner-hero.dark-section::before,
.page-utility .utility-hero.dark-section::before {
  opacity: 0.5;
  top: var(--nav-height);
}

.inner-hero .grain-overlay,
.utility-hero .grain-overlay {
  z-index: 1;
}

.utility-hero .hero-wave-bg {
  z-index: 0;
}

.utility-hero .decor-blur {
  z-index: 1;
}

.inner-hero__inner,
.utility-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 0.75rem;
  padding-bottom: 1rem;
}

.inner-hero__rule,
.utility-hero__rule {
  margin-bottom: 1.75rem;
}

.page-inner .inner-hero .eyebrow--rye {
  margin-bottom: 0.35rem;
  font-size: 0.65rem;
}

.inner-hero__actions {
  margin-top: 2rem;
}

.page-inner .inner-hero .home-hero__sub {
  margin-top: 0;
  margin-bottom: 0;
}

.inner-hero::after,
.utility-hero::after {
  content: 'FAOSA Â· CAT. NO. ZAF-1925 Â· STEREO Â· NOT FOR BROADCAST Â· CELLULOSE ACETATE Â· EST. 1925 Â· MEXICO CITY Â· FAOSA Â· CAT. NO. ZAF-1925 Â· STEREO Â· NOT FOR BROADCAST Â· CELLULOSE ACETATE Â· EST. 1925 Â· MEXICO CITY Â·';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--color-accent);
  opacity: 0.08;
  white-space: nowrap;
  overflow: hidden;
  padding: 6px var(--container-padding);
  pointer-events: none;
}

.breadcrumb {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.85rem;
}

.breadcrumb a {
  color: var(--color-accent);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--color-cream);
}

.breadcrumb__current {
  color: rgba(245, 240, 232, 0.7);
}

.breadcrumb__sep {
  opacity: 0.65;
}

.page-product .breadcrumb {
  margin-bottom: 1.75rem;
}

.page-product .product-page-hero.section {
  padding-top: calc(var(--nav-height) + 1.5rem);
}

.product-story-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.product-story-specs__specs-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-text);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.inner-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.05;
  color: var(--color-light);
  margin-bottom: 1.25rem;
  max-width: 18ch;
}

.utility-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.05;
  color: var(--color-light);
  margin-bottom: 1.25rem;
  max-width: 18ch;
}

.inner-hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.45vw, 1.05rem);
  line-height: 1.55;
  color: rgba(245, 240, 232, 0.8);
  max-width: 36rem;
  margin: 0 0 0.5rem;
}

.page-inner .inner-hero .home-hero__headline {
  margin-bottom: 1.25rem;
  color: var(--color-light);
}

.page-inner .inner-hero .home-hero__sub,
.page-utility .utility-hero .home-hero__headline {
  margin-bottom: 0;
}

.page-inner .inner-hero .home-hero__sub {
  margin-top: 0;
  color: rgba(245, 240, 232, 0.8);
}

.utility-hero {
  padding-bottom: 3.5rem;
}

.page-utility .utility-hero.section {
  padding-bottom: 3.5rem;
}

.utility-hero__title {
  max-width: none;
  margin-bottom: 0;
}

.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 1.5rem;
  background: var(--color-dark-mid);
  border: 1px solid rgba(200, 168, 75, 0.3);
  border-radius: var(--radius-sm);
  text-align: center;
}

.img-placeholder span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(200, 168, 75, 0.75);
  line-height: 1.5;
  max-width: 20rem;
}

.inner-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.inner-split--center {
  align-items: center;
}

.inner-editorial h2,
.inner-editorial h3 {
  font-family: var(--font-heading);
  color: inherit;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.inner-editorial p {
  margin-bottom: 1.15rem;
}

.inner-editorial p:last-child {
  margin-bottom: 0;
}

.section--light .inner-editorial h2,
.section--light-warm .inner-editorial h2,
.section--light .inner-editorial h3,
.section--light-warm .inner-editorial h3 {
  color: var(--color-text);
}

.section--dark .inner-editorial h2,
.section--dark-mid .inner-editorial h2,
.section--dark .inner-editorial h3,
.section--dark-mid .inner-editorial h3,
.section--brand .inner-editorial h2,
.section--brand .inner-editorial h3 {
  color: var(--color-cream);
}

.inner-photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.inner-photo-grid--duo {
  grid-template-columns: 1fr;
}

.page-inner .eyebrow-rpm-row .rpm-badge {
  width: 52px;
  height: 30px;
  border-radius: 15px;
  border: 1px solid var(--color-accent);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-inner .eyebrow-rpm-row .rpm-num {
  font-family: var(--font-heading);
  font-size: 11px;
  color: var(--color-accent);
  line-height: 1;
}

.page-inner .eyebrow-rpm-row .rpm-divider {
  width: 28px;
  height: 0.5px;
  background: var(--color-accent);
  opacity: 0.5;
}

.page-inner .eyebrow-rpm-row .rpm-label {
  font-family: var(--font-body);
  font-size: 7px;
  color: var(--color-accent);
  letter-spacing: 2px;
  line-height: 1;
}

.page-inner .eyebrow-rpm-row .eyebrow-label {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  color: var(--color-accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section--light .eyebrow-rpm-row .rpm-badge,
.section--light-warm .eyebrow-rpm-row .rpm-badge {
  border-color: var(--color-primary);
}

.section--light .eyebrow-rpm-row .rpm-num,
.section--light .eyebrow-rpm-row .rpm-text,
.section--light .eyebrow-rpm-row .eyebrow-label,
.section--light-warm .eyebrow-rpm-row .rpm-num,
.section--light-warm .eyebrow-rpm-row .rpm-text,
.section--light-warm .eyebrow-rpm-row .eyebrow-label {
  color: var(--color-primary);
}

.section--light .eyebrow-rpm-row .rpm-line,
.section--light-warm .eyebrow-rpm-row .rpm-line,
.section--light .eyebrow-rpm-row .rpm-divider,
.section--light-warm .eyebrow-rpm-row .rpm-divider {
  background: var(--color-primary);
}

/* Legends panels */
.legends-filmstrip {
  margin-bottom: 3rem;
}

.legends-filmstrip .filmstrip {
  gap: 10px;
}

.legend-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(200, 168, 75, 0.12);
}

.legend-panel:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.legend-panel__media .legend-photo {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.legend-panel__copy .eyebrow-rpm-row {
  margin-bottom: 1rem;
}

/* Press masonry */
.press-masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  grid-auto-flow: dense;
}

.press-masonry__item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200, 168, 75, 0.3);
  background: var(--color-dark-mid);
  margin: 0;
}

.press-masonry__media {
  display: block;
  width: 100%;
  overflow: hidden;
}

.press-masonry__item--standard .press-masonry__media {
  aspect-ratio: 1 / 1;
}

.press-masonry__item--tall .press-masonry__media {
  aspect-ratio: 3 / 4;
}

.press-masonry__item--wide {
  grid-column: span 2;
}

.press-masonry__item--wide .press-masonry__media {
  aspect-ratio: 16 / 9;
}

.press-masonry__item--feature {
  grid-column: span 2;
  grid-row: span 2;
}

.press-masonry__item--feature .press-masonry__media {
  aspect-ratio: 4 / 5;
  min-height: 100%;
}

.press-masonry__media .img-placeholder,
.press-masonry__media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  border: none;
  border-radius: 0;
  display: block;
}

.press-masonry__media .img-placeholder {
  padding: 1rem;
}

.press-masonry__item:hover .press-masonry__media .img-placeholder,
.press-masonry__item:hover .press-masonry__media img {
  filter: brightness(1.08);
}

.press-masonry__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 0.75rem;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  background: linear-gradient(transparent, rgba(26, 24, 18, 0.92));
  opacity: 0;
  transition: opacity var(--transition);
}

.press-masonry__item:hover .press-masonry__caption {
  opacity: 1;
}

/* Shop cards */
.shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.shop-grid__header {
  margin-bottom: 2.5rem;
}

.shop-grid__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-primary-dark);
  margin-bottom: 0.75rem;
}

.shop-grid__sub {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 36rem;
  margin: 0 auto;
}

.shop-card {
  background: var(--color-dark-mid);
  border: 1px solid rgba(200, 168, 75, 0.15);
  padding: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.shop-card__img .img-placeholder {
  min-height: 280px;
  margin-bottom: 1.25rem;
}

.shop-card__name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-cream);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.shop-card__desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-cream-muted);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.shop-card__price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
}

.shop-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.section--light .shop-card,
.section--light-warm .shop-card {
  background: rgba(107, 107, 0, 0.09);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(107, 107, 0, 0.16);
  border-radius: var(--radius-sm);
  box-shadow:
    0 8px 32px rgba(107, 107, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  padding: 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.section--light .shop-card::before,
.section--light-warm .shop-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(107, 107, 0, 0.55) 0%, rgba(107, 107, 0, 0.1) 100%);
  z-index: 1;
}

.section--light .shop-card:hover,
.section--light-warm .shop-card:hover {
  border-color: rgba(107, 107, 0, 0.28);
  box-shadow:
    0 12px 40px rgba(107, 107, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transform: translateY(-4px);
}

.section--light .shop-card__name,
.section--light-warm .shop-card__name {
  color: var(--color-primary-dark);
}

.section--light .shop-card__desc,
.section--light-warm .shop-card__desc {
  color: var(--color-text-muted);
}

.section--light .shop-card__price,
.section--light-warm .shop-card__price {
  color: var(--color-primary-dark);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.section--light .shop-card__img .img-placeholder,
.section--light-warm .shop-card__img .img-placeholder,
.section--light .shop-card__img img,
.section--light-warm .shop-card__img img {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(107, 107, 0, 0.14);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.section--light .shop-card__img .img-placeholder span,
.section--light-warm .shop-card__img .img-placeholder span {
  color: var(--color-text-muted);
}

.section--light .shop-card .btn-faosa-outline-gold,
.section--light-warm .shop-card .btn-faosa-outline-gold {
  color: var(--color-primary-dark);
  border-color: var(--color-primary);
  font-weight: 600;
}

.section--light .shop-card .btn-faosa-outline-gold:hover,
.section--light-warm .shop-card .btn-faosa-outline-gold:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-cream);
}

.btn-faosa-outline-gold {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn-faosa-outline-gold::before {
  background: var(--color-accent);
}

.btn-faosa-outline-gold:hover {
  color: var(--color-dark);
}

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.product-detail__main .img-placeholder {
  min-height: 360px;
}

.product-detail__thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.product-detail__thumbs .img-placeholder {
  flex: 1;
  min-height: 80px;
}

.product-detail__name {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-cream);
  margin-bottom: 0.5rem;
}

.product-detail__price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.product-detail__desc {
  margin-bottom: 1.5rem;
  color: var(--color-cream-muted);
}

.product-qty {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.product-qty label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-cream-muted);
}

.product-qty input {
  width: 72px;
  padding: 0.5rem;
  background: var(--color-dark);
  border: 1px solid rgba(200, 168, 75, 0.3);
  color: var(--color-cream);
  font-family: var(--font-body);
}

/* Contact */
.contact-section .contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-aside__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.contact-aside__lead {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 28rem;
}

.contact-aside .eyebrow-rpm-row {
  margin-bottom: 1.25rem;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 1.25rem;
}

.contact-details__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.contact-details__icon {
  flex: 0 0 2.25rem;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(107, 107, 0, 0.3);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 0.95rem;
}

.contact-details__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: 0.2rem;
}

.contact-details a {
  color: var(--color-text);
}

.contact-details a:hover {
  color: var(--color-primary);
}

.contact-aside__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.contact-form-panel {
  background: var(--color-dark);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(200, 168, 75, 0.15);
  position: relative;
}

.contact-form-panel__eyebrow {
  margin-bottom: 1.5rem;
  font-size: 0.65rem;
}

.faosa-form label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-cream-muted);
  margin-bottom: 0.35rem;
}

.faosa-form .form-group {
  margin-bottom: 1.25rem;
}

.faosa-form input,
.faosa-form select,
.faosa-form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  background: var(--color-dark-mid);
  border: 1px solid rgba(200, 168, 75, 0.25);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faosa-form input:focus,
.faosa-form select:focus,
.faosa-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: var(--faosa-focus-ring);
}

.faosa-form textarea {
  min-height: 140px;
  resize: vertical;
}

.faosa-form--dark label,
.faosa-form--brand label {
  color: rgba(245, 240, 232, 0.85);
}

.faosa-form--dark input,
.faosa-form--dark select,
.faosa-form--dark textarea,
.faosa-form--brand input,
.faosa-form--brand select,
.faosa-form--brand textarea {
  background: var(--color-light);
  border: 1px solid rgba(245, 240, 232, 0.35);
  color: var(--color-text);
}

.faosa-form--dark input:focus,
.faosa-form--dark select:focus,
.faosa-form--dark textarea:focus,
.faosa-form--brand input:focus,
.faosa-form--brand select:focus,
.faosa-form--brand textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(200, 168, 75, 0.2);
}

.faosa-form--dark select,
.faosa-form--brand select {
  cursor: pointer;
}

.faosa-form--cream label {
  color: var(--color-text-muted);
}

.faosa-form--cream input,
.faosa-form--cream select,
.faosa-form--cream textarea {
  background: var(--color-cream);
  border: 1px solid rgba(42, 35, 24, 0.15);
  color: var(--color-text);
}

.faosa-form--cream input:focus,
.faosa-form--cream select:focus,
.faosa-form--cream textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(107, 107, 0, 0.12);
}

.faosa-form--cream select {
  cursor: pointer;
}

.contact-info {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.8;
}

.contact-info strong {
  display: block;
  color: var(--color-cream);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Cart / checkout */
.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.cart-table th,
.cart-table td {
  padding: 1rem 0.75rem;
  border-bottom: 1px solid rgba(200, 168, 75, 0.15);
  text-align: left;
  color: var(--color-cream-muted);
}

.cart-table th {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
}

.cart-table .cart-remove {
  color: var(--color-accent);
  font-size: 0.8rem;
}

.order-summary {
  background: var(--color-dark-mid);
  border: 1px solid rgba(200, 168, 75, 0.15);
  padding: 1.5rem;
}

.order-summary h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-cream);
  margin-bottom: 1rem;
}

.order-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--color-cream-muted);
  border-bottom: 1px solid rgba(200, 168, 75, 0.1);
}

.order-summary__row--total {
  font-weight: 600;
  color: var(--color-cream);
  border-bottom: none;
  padding-top: 0.75rem;
  margin-top: 0.25rem;
}

.cart-actions,
.checkout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.cart-empty {
  text-align: center;
  padding: 4rem 1rem;
  font-family: var(--font-body);
  color: var(--color-muted);
}

.section--light .cart-table th,
.section--light .cart-table td {
  color: var(--color-text-muted);
  border-bottom-color: rgba(42, 35, 24, 0.1);
}

.section--light .cart-table th {
  color: var(--color-primary);
}

.section--light .order-summary {
  background: var(--color-light-warm);
  border-color: rgba(42, 35, 24, 0.1);
}

.section--light .order-summary h3 {
  color: var(--color-text);
}

.section--light .order-summary__row {
  color: var(--color-text-muted);
  border-bottom-color: rgba(42, 35, 24, 0.08);
}

.section--light .order-summary__row--total {
  color: var(--color-text);
}

.section--light .cart-empty {
  color: var(--color-text-muted);
}

.section--light .checkout-section h3 {
  color: var(--color-dark);
}

.section--light .payment-placeholder {
  background: var(--color-light);
  border-color: rgba(26, 24, 18, 0.12);
  color: var(--color-text-muted);
}

.checkout-section-wrap .checkout-section,
.checkout-section-wrap .order-summary {
  background: rgba(107, 107, 0, 0.09);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(107, 107, 0, 0.16);
  border-radius: var(--radius-sm);
  box-shadow:
    0 8px 32px rgba(107, 107, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  position: relative;
  overflow: hidden;
}

.checkout-section-wrap .checkout-section::before,
.checkout-section-wrap .order-summary::before {
  display: none;
}

.checkout-section-wrap .checkout-section {
  padding: 1.75rem 1.75rem 0.5rem;
  margin-bottom: 1.5rem;
}

.checkout-section-wrap .checkout-section h3,
.checkout-section-wrap .order-summary h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-primary-dark);
  margin-bottom: 1.25rem;
  padding-top: 0;
  position: relative;
  z-index: 2;
}

.checkout-section-wrap .checkout-section h3::before,
.checkout-section-wrap .order-summary h3::before {
  display: none;
}

.checkout-section-wrap .faosa-form--dark label {
  color: var(--color-text);
  font-weight: 600;
  letter-spacing: 0.12em;
}

.checkout-section-wrap .faosa-form--dark input,
.checkout-section-wrap .faosa-form--dark select,
.checkout-section-wrap .faosa-form--dark textarea {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(107, 107, 0, 0.14);
  color: var(--color-text);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.checkout-section-wrap .faosa-form--dark input:focus,
.checkout-section-wrap .faosa-form--dark select:focus,
.checkout-section-wrap .faosa-form--dark textarea:focus {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(107, 107, 0, 0.1);
}

.checkout-section-wrap .payment-placeholder {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(107, 107, 0, 0.18);
  color: var(--color-text-muted);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.checkout-section-wrap .order-summary {
  padding: 1.75rem;
  border-top: none;
}

.checkout-section-wrap .order-summary__row {
  color: var(--color-text-muted);
  border-bottom: none;
}

.checkout-section-wrap .order-summary__row--total {
  color: var(--color-primary-dark);
  font-weight: 600;
}

.checkout-section {
  margin-bottom: 0;
}

.checkout-section h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-cream);
  margin-bottom: 1rem;
}

.payment-placeholder {
  padding: 1.25rem;
  border: 1px dashed rgba(200, 168, 75, 0.35);
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

/* Order confirmation */
.order-confirm {
  text-align: center;
  padding: 3rem 0 4rem;
  position: relative;
}

.order-confirm::after {
  content: 'FAOSA Â· CAT. NO. ZAF-1925 Â· STEREO Â· NOT FOR BROADCAST Â· CELLULOSE ACETATE Â· EST. 1925 Â· MEXICO CITY Â· FAOSA Â· CAT. NO. ZAF-1925 Â· STEREO Â· NOT FOR BROADCAST Â· CELLULOSE ACETATE Â· EST. 1925 Â· MEXICO CITY Â·';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--color-accent);
  opacity: 0.08;
  white-space: nowrap;
  overflow: hidden;
  padding: 6px var(--container-padding);
}

.order-confirm__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: var(--color-accent);
}

.order-confirm__headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-cream);
  margin-bottom: 0.75rem;
}

.order-confirm__sub {
  font-family: var(--font-body);
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.order-confirm .order-summary {
  max-width: 480px;
  margin: 0 auto 2rem;
  text-align: left;
}

/* Inner CTA band */
.inner-cta {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.inner-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--color-cream);
  margin-bottom: 1rem;
}

.inner-cta p {
  color: var(--color-cream-muted);
  margin-bottom: 1.5rem;
}

.page-inner .section--brand.dark-section:not(.home-final):not(.product-also-like)::before {
  display: none;
}

.page-inner .home-final__inner {
  text-align: center;
}

.page-inner .home-final__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.product-also-like__header {
  text-align: center;
  margin-bottom: 2rem;
}

.product-also-like__header .eyebrow {
  margin-bottom: 0;
}

.product-also-like__card {
  max-width: 420px;
  margin: 0 auto;
}

.page-inner .home-history .tracklist-header span,
.page-inner .home-history .track-num,
.page-inner .home-history .track-year {
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .inner-split {
    grid-template-columns: 1fr 1fr;
  }

  .inner-photo-grid--duo {
    grid-template-columns: 1fr 1fr;
  }

  .legend-panel {
    grid-template-columns: minmax(200px, 280px) 1fr;
    align-items: start;
  }

  .legend-panel--reverse {
    grid-template-columns: 1fr minmax(200px, 280px);
  }

  .legend-panel--reverse .legend-panel__media {
    order: 2;
  }

  .press-masonry {
    grid-template-columns: repeat(3, 1fr);
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-grid.shop-grid--cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-detail {
    grid-template-columns: 1fr 1fr;
  }

  .product-story-specs {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .contact-section .contact-layout {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3.5rem;
  }

  .contact-form-panel {
    padding: 2.5rem 2.25rem;
  }

  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1.4fr 0.6fr;
  }
}

@media (min-width: 992px) {
  .press-masonry {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}
/* FAOSA â€” Subtle music & brand detail pass */

/* 1. Ampersand in headlines */
.amp {
  font-family: 'Rye', serif;
  font-size: 0.9em;
}

/* 2. Track listing numbers */
.track-num {
  font-variant-numeric: tabular-nums;
  min-width: 1.35rem;
}

.product-story-specs__specs .tracklist {
  counter-reset: faosa-spec;
}

.product-story-specs__specs .track-entry {
  counter-increment: faosa-spec;
}

.product-story-specs__specs .track-entry::before {
  content: counter(faosa-spec, decimal-leading-zero);
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--color-accent);
  opacity: 0.6;
  min-width: 18px;
  flex-shrink: 0;
}

/* 3. Light section acetate grain */
.section--light {
  background-color: var(--color-light);
  background-image: url("data:image/svg+xml,%3Csvg width='4' height='4' viewBox='0 0 4 4' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 4L4 0' stroke='%23b8a86a' stroke-width='0.3' opacity='0.18'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

.section--light-warm {
  background-color: var(--color-light-warm);
  background-image: url("data:image/svg+xml,%3Csvg width='4' height='4' viewBox='0 0 4 4' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 4L4 0' stroke='%23b8a86a' stroke-width='0.3' opacity='0.18'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* 4. Vinyl groove rules */
hr,
.groove-divider,
.section-divider {
  height: 1px;
  border: none;
  background: rgba(200, 168, 75, 0.2);
  margin: 0;
}

/* 5. Body line-height */
body,
p,
.body-text,
.inner-editorial p {
  line-height: 1.925;
}

/* 6. Section padding rhythm (45px increments) */
.section:not(.inner-hero):not(.utility-hero):not(.home-hero):not(.product-page-hero) {
  padding-top: 90px;
  padding-bottom: 90px;
}

.page-inner .section:not(.inner-hero):not(.utility-hero),
.page-utility .section:not(.utility-hero) {
  padding-top: 90px;
  padding-bottom: 90px;
}

.inner-hero,
.utility-hero {
  padding-bottom: 90px;
}

.page-inner .inner-hero.section,
.page-utility .utility-hero.section {
  padding-bottom: 90px;
}

.page-product .product-page-hero.section {
  padding-bottom: 90px;
}

/* 7. Scroll progress waveform */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  z-index: 9999;
  overflow: hidden;
  pointer-events: none;
}

#scroll-wave {
  width: 100%;
  height: 6px;
  transform: translateX(-100%);
  transition: transform 0.05s linear;
  will-change: transform;
}

/* 8. Vinyl record cursor on product images */
.product-image,
.product-card img,
.frame-photo,
.shop-card__img img,
.product-detail img,
.product-detail__gallery img,
.product-detail__main img,
.product-detail__thumbs img {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='%23c8a84b' stroke-width='1.5'/%3E%3Ccircle cx='12' cy='12' r='2' fill='%23c8a84b'/%3E%3C/svg%3E") 12 12, crosshair;
}

/* 9. Nav â€” sound wave marker (hover + active) */
.site-nav .nav-link {
  padding-left: 1.65rem !important;
}

.site-nav .nav-link::after {
  width: 0 !important;
  opacity: 0 !important;
}

.site-nav .nav-link::before {
  content: '';
  position: absolute;
  left: 0.25rem;
  top: 50%;
  width: 14px;
  height: 8px;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cline x1='1' y1='3' x2='1' y2='5' stroke='%23c8a84b' stroke-width='1.2' stroke-linecap='round'/%3E%3Cline x1='3' y1='1.5' x2='3' y2='6.5' stroke='%23c8a84b' stroke-width='1.2' stroke-linecap='round'/%3E%3Cline x1='5' y1='2.5' x2='5' y2='5.5' stroke='%23c8a84b' stroke-width='1.2' stroke-linecap='round'/%3E%3Cline x1='7' y1='0.5' x2='7' y2='7.5' stroke='%23c8a84b' stroke-width='1.2' stroke-linecap='round'/%3E%3Cline x1='9' y1='2' x2='9' y2='6' stroke='%23c8a84b' stroke-width='1.2' stroke-linecap='round'/%3E%3Cline x1='11' y1='1' x2='11' y2='7' stroke='%23c8a84b' stroke-width='1.2' stroke-linecap='round'/%3E%3Cline x1='13' y1='3.5' x2='13' y2='4.5' stroke='%23c8a84b' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.site-nav .nav-link:hover:not(.active):not([aria-current="page"]),
.site-nav .nav-link:focus-visible:not(.active):not([aria-current="page"]) {
  color: var(--color-accent-warm) !important;
}

.site-nav .nav-link:hover:not(.active):not([aria-current="page"])::before,
.site-nav .nav-link:focus-visible:not(.active):not([aria-current="page"])::before {
  opacity: 0.75;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cline x1='1' y1='3' x2='1' y2='5' stroke='%23d4914a' stroke-width='1.2' stroke-linecap='round'/%3E%3Cline x1='3' y1='1.5' x2='3' y2='6.5' stroke='%23d4914a' stroke-width='1.2' stroke-linecap='round'/%3E%3Cline x1='5' y1='2.5' x2='5' y2='5.5' stroke='%23d4914a' stroke-width='1.2' stroke-linecap='round'/%3E%3Cline x1='7' y1='0.5' x2='7' y2='7.5' stroke='%23d4914a' stroke-width='1.2' stroke-linecap='round'/%3E%3Cline x1='9' y1='2' x2='9' y2='6' stroke='%23d4914a' stroke-width='1.2' stroke-linecap='round'/%3E%3Cline x1='11' y1='1' x2='11' y2='7' stroke='%23d4914a' stroke-width='1.2' stroke-linecap='round'/%3E%3Cline x1='13' y1='3.5' x2='13' y2='4.5' stroke='%23d4914a' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.site-nav .nav-link.active,
.site-nav .nav-link[aria-current="page"] {
  color: var(--color-accent) !important;
}

.site-nav .nav-link.active::before,
.site-nav .nav-link[aria-current="page"]::before {
  opacity: 1;
}

/* 10. Liner notes captions */
figcaption,
.photo-credit,
.image-caption,
.legend-name,
.press-masonry__caption,
.legend-photo .credit {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  opacity: 0.75;
  margin-top: 8px;
}

.legend-photo .credit {
  background: transparent;
  padding: 0;
  border-radius: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}

.press-masonry__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin-top: 0;
  padding: 0.65rem 0.75rem;
  background: linear-gradient(transparent, rgba(26, 24, 18, 0.92));
}

.press-masonry__item:hover .press-masonry__caption {
  opacity: 0.75;
}
