/* ============================================================
   WRISTRA — Global Stylesheet
   Mobile-first, CSS custom properties, compositor-safe animations
   ============================================================ */

/* ── 1. Custom Properties ─────────────────────────────────── */
:root {
  --black:      #0B0B0C;
  --ink:        #141416;
  --white:      #FAFAF7;
  --gold:       #C9963B;
  --gold-light: #E3B764;
  --muted:      #9A9A93;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;

  --nav-h:      72px;
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --transition-fast: 150ms ease-out;
  --transition-mid:  280ms ease-out;
  --transition-slow: 420ms ease-out;

  --z-base:    0;
  --z-card:    10;
  --z-sticky:  40;
  --z-modal:   100;
  --z-nav:     200;
}

/* ── 2. Reset & Base ──────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol { list-style: none; }

/* ── 3. Typography ────────────────────────────────────────── */
.serif { font-family: var(--font-serif); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
}

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── 4. Utility ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── 5. Navbar ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition-mid),
              backdrop-filter var(--transition-mid),
              box-shadow var(--transition-mid);
}

.nav.scrolled {
  background: rgba(11, 11, 12, 0.82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(201, 150, 59, 0.12);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav__logo {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav__wordmark {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.22em;
  color: var(--white);
  text-transform: uppercase;
}

.nav__links {
  display: none;
  gap: 2.5rem;
  align-items: center;
}

.nav__links a {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition-mid);
}

.nav__links a:hover {
  color: var(--white);
}

.nav__links a:hover::after { width: 100%; }

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 6px 0;
  cursor: pointer;
  background: none;
  border: none;
  z-index: calc(var(--z-nav) + 10);
}

.nav__hamburger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: transform var(--transition-mid), opacity var(--transition-mid), width var(--transition-mid);
  transform-origin: left center;
}

.nav__hamburger span:nth-child(2) { width: 70%; }

.nav__hamburger.open span:nth-child(1) {
  transform: rotate(42deg) translateY(-1px);
  width: 100%;
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}
.nav__hamburger.open span:nth-child(3) {
  transform: rotate(-42deg) translateY(1px);
  width: 100%;
}

/* Mobile menu overlay */
.nav__mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: calc(var(--z-nav) - 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-mid);
}

.nav__mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: color var(--transition-fast);
}

.nav__mobile-menu a:hover { color: var(--gold); }

/* Desktop nav */
@media (min-width: 768px) {
  .nav__links    { display: flex; }
  .nav__hamburger { display: none; }
}

/* ── 6. Hero Slider ───────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: var(--black);
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.hero__slide.active {
  opacity: 1;
  pointer-events: all;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark gradient overlay */
.hero__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,11,12,0.82) 0%,
    rgba(11,11,12,0.45) 50%,
    rgba(11,11,12,0.65) 100%
  );
}

/* Slide content */
.hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1.25rem;
  padding-top: var(--nav-h);
  max-width: 680px;
  margin-left: max(1.25rem, calc((100vw - 1280px) / 2 + 1.25rem));
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s 0.2s ease-out, transform 0.7s 0.2s ease-out;
}

.hero__headline {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s 0.38s ease-out, transform 0.7s 0.38s ease-out;
}

.hero__cta {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--gold);
  padding: 0.9rem 2.2rem;
  transition: background var(--transition-mid), color var(--transition-mid);
  opacity: 0;
  transform: translateY(18px);
  transition: background var(--transition-mid), color var(--transition-mid),
              opacity 0.7s 0.55s ease-out, transform 0.7s 0.55s ease-out;
  width: fit-content;
}

.hero__cta:hover {
  background: var(--gold);
  color: var(--black);
}

.hero__slide.active .hero__eyebrow,
.hero__slide.active .hero__headline,
.hero__slide.active .hero__cta {
  opacity: 1;
  transform: translateY(0);
}

/* Prev / Next arrows */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,150,59,0.3);
  background: rgba(11,11,12,0.4);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
  font-size: 1.1rem;
}

.hero__arrow:hover {
  border-color: var(--gold);
  background: rgba(201,150,59,0.15);
}

.hero__arrow--prev { left: 1.25rem; }
.hero__arrow--next { right: 1.25rem; }

/* Dots */
.hero__dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.6rem;
}

.hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(250,250,247,0.3);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
  border: none;
  padding: 0;
}

.hero__dot.active {
  background: var(--gold);
  transform: scale(1.35);
}

/* ── 7. Section shared ────────────────────────────────────── */
.section {
  padding: 5rem 0;
}

.section--light {
  background: var(--white);
  color: var(--black);
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section__heading {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: inherit;
  margin-top: 0.6rem;
}

/* ── 8. Collection Grid ───────────────────────────────────── */
#collection {
  content-visibility: auto;
  contain-intrinsic-size: 0 900px;
}

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

@media (min-width: 640px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Product Card */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  text-decoration: none;
  color: var(--black);
  position: relative;
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.product-card__image-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #f2f0eb;
}

.product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease-out;
}

.product-card:hover .product-card__image-wrap img {
  transform: scale(1.04);
}

/* Gold underline reveal */
.product-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width var(--transition-slow);
}

.product-card:hover::after { width: 100%; }

.product-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.product-card__name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--black);
  line-height: 1.2;
}

.product-card__tagline {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.product-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 0.75rem;
}

.product-card__price {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1rem;
  color: var(--gold);
}

.product-card__old-price {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: line-through;
}

/* Badge ribbon */
.product-card__badge {
  position: absolute;
  top: 1rem;
  right: -0.5rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem 0.3rem 0.75rem;
  z-index: var(--z-card);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 6% 50%);
}

/* Highlight card */
.product-card--highlight {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 8px 32px rgba(201,150,59,0.15);
}

@media (min-width: 1024px) {
  .product-card--highlight {
    transform: scale(1.04);
    z-index: var(--z-card);
  }

  .product-card--highlight:hover {
    transform: scale(1.04) translateY(-4px);
  }
}

/* ── 9. Order / Contact Section ───────────────────────────── */
#order {
  content-visibility: auto;
  contain-intrinsic-size: 0 700px;
}

.order-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) {
  .order-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 5rem;
  }
}

/* Left side */
.order-info__heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin: 0.5rem 0 1.25rem;
  line-height: 1.1;
}

.order-info__copy {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 38ch;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-item__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.contact-item__label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.contact-item__value {
  color: var(--white);
  font-size: 0.95rem;
}

.contact-item__value a {
  color: var(--gold-light);
  transition: color var(--transition-fast);
}
.contact-item__value a:hover { color: var(--gold); }

.contact-item__note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

/* Order form card */
.order-form-card {
  background: var(--ink);
  border: 1px solid rgba(201,150,59,0.18);
  padding: 2rem 1.75rem;
}

.order-form-card__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

/* ── 10. Form Elements ────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.form-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
}

.form-label .required {
  color: var(--gold);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(250,250,247,0.05);
  border: 1px solid rgba(250,250,247,0.1);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 0.7rem 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
  border-radius: var(--radius-sm);
  -webkit-appearance: none;
  appearance: none;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9A93' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option {
  background: var(--ink);
  color: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: rgba(201,150,59,0.05);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #c0392b;
}

.form-error {
  font-size: 0.72rem;
  color: #e74c3c;
  display: none;
}

.form-error.visible { display: block; }

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.95rem 2rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast),
              transform var(--transition-fast), opacity var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

.btn--gold {
  background: var(--gold);
  color: var(--black);
}

.btn--gold:hover {
  background: var(--gold-light);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(250,250,247,0.25);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--full { width: 100%; }

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* ── 11. Footer ───────────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(201,150,59,0.12);
  padding: 3rem 0 2rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.footer__logo { width: 28px; height: 28px; }

.footer__wordmark {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer__links a {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition-fast);
}

.footer__links a:hover { color: var(--gold); }

.footer__copy {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ── 12. Marquee Strip ────────────────────────────────────── */
.marquee-strip {
  background: var(--black);
  border-bottom: 1px solid rgba(201,150,59,0.15);
  padding: 0.7rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  padding-right: 0; /* gap is in content */
}

.marquee-content span {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 2rem;
}

.marquee-content .sep {
  color: var(--gold-light);
  opacity: 0.6;
  padding: 0;
  font-size: 0.55rem;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── 13. Product Page Layout ──────────────────────────────── */
.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 4rem;
}

@media (min-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
}

/* Video frame */
.product-video-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin-inline: auto;
}

.product-video-container {
  aspect-ratio: 9/16;
  max-height: 80vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  position: relative;
}

.product-video-container video,
.product-video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Product info */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 0.5rem;
}

.product-info__name {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.05;
}

.product-info__tagline {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: -0.5rem;
}

.product-info__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.product-info__price {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--gold);
}

.product-info__old-price {
  font-size: 1rem;
  color: var(--muted);
  text-decoration: line-through;
}

.product-info__desc {
  font-size: 0.95rem;
  color: rgba(250,250,247,0.72);
  line-height: 1.8;
  border-top: 1px solid rgba(250,250,247,0.06);
  padding-top: 1.25rem;
}

/* Features list */
.product-features {
  border-top: 1px solid rgba(250,250,247,0.06);
  padding-top: 1.25rem;
}

.product-features__title {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.9rem;
}

.product-features__list {
  display: flex;
  flex-direction: column;
}

.product-features__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(250,250,247,0.06);
  font-size: 0.9rem;
  color: rgba(250,250,247,0.82);
}

.product-features__item::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.5rem;
  flex-shrink: 0;
}

/* Trust row */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 0.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.trust-item__icon {
  color: var(--gold);
  font-size: 0.9rem;
}

/* Not found state */
.not-found {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
  padding: 2rem;
}

.not-found__heading {
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--white);
}

.not-found__text {
  color: var(--muted);
  max-width: 36ch;
}

/* ── 14. Order Modal ──────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11,11,12,0.86);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-mid);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: var(--ink);
  border: 1px solid rgba(201,150,59,0.2);
  width: 100%;
  max-width: 540px;
  max-height: 92svh;
  overflow-y: auto;
  padding: 2rem 1.75rem;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform var(--transition-mid);
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.modal-overlay.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color var(--transition-fast);
  background: none;
  border: none;
  line-height: 1;
}

.modal-close:hover { color: var(--white); }

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.modal-subtitle {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  letter-spacing: 0.04em;
}

/* Step 2 summary */
.modal-step { display: none; }
.modal-step.active { display: block; }

.summary-textarea {
  width: 100%;
  background: rgba(250,250,247,0.04);
  border: 1px solid rgba(250,250,247,0.1);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  line-height: 1.7;
  padding: 1rem;
  resize: none;
  height: 220px;
  outline: none;
  border-radius: var(--radius-sm);
  margin: 1rem 0;
}

.summary-instruction {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.modal-btn-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

@media (min-width: 480px) {
  .modal-btn-row {
    flex-direction: row;
  }

  .modal-btn-row .btn { flex: 1; }
}

/* Product shown in modal step 1 */
.modal-product-display {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(250,250,247,0.04);
  border: 1px solid rgba(201,150,59,0.15);
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-sm);
}

.modal-product-display img {
  width: 48px;
  height: 60px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

.modal-product-display__name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
}

.modal-product-display__price {
  font-size: 0.8rem;
  color: var(--gold);
  margin-top: 0.1rem;
}

/* ── 15. Scroll Reveal ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ── 16. Reduced Motion ───────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .marquee-track {
    animation-play-state: paused !important;
  }

  .hero__eyebrow,
  .hero__headline,
  .hero__cta {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── 17. Scrollbar ────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: rgba(201,150,59,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── 18. Selection ────────────────────────────────────────── */
::selection {
  background: rgba(201,150,59,0.3);
  color: var(--white);
}
