/* ═══════════════════════════════════════════════════════════════
   POSH — Luxury Furniture  |  styles.css
   Design system: dark luxury, warm gold, cream typography
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. CUSTOM PROPERTIES ──────────────────────────────────── */
:root {
  /* Colour palette */
  --clr-bg:          #090909;
  --clr-surface:     #111111;
  --clr-surface-2:   #181818;
  --clr-border:      #242424;
  --clr-border-light:#2e2e2e;

  --clr-text:        #f0ebe0;
  --clr-text-muted:  #9a9080;
  --clr-text-faint:  #5c574e;

  --clr-gold:        #c9a96e;
  --clr-gold-light:  #dbb87e;
  --clr-gold-dark:   #a8864e;
  --clr-gold-glow:   rgba(201, 169, 110, 0.18);

  /* Typography */
  --ff-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.25rem;
  --fs-xl:   1.5rem;
  --fs-2xl:  2rem;
  --fs-3xl:  2.75rem;
  --fs-4xl:  3.75rem;
  --fs-5xl:  5rem;
  --fs-6xl:  6.5rem;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  6rem;
  --space-3xl:  9rem;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --t-fast:   160ms;
  --t-base:   300ms;
  --t-slow:   600ms;
  --t-xl:     900ms;

  /* Nav */
  --nav-h: 80px;
}

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

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

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  cursor: pointer;
  font-family: var(--ff-body);
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ── 3. UTILITY CLASSES ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}

.section-eyebrow {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  font-weight: 600;
  line-height: 1.15;
  color: var(--clr-text);
  margin-bottom: var(--space-sm);
}

.section-sub {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

/* ── 4. SCROLL REVEAL ANIMATION ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity var(--t-xl) var(--ease-out),
    transform var(--t-xl) var(--ease-out);
}

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

.reveal-hero .hero-eyebrow,
.reveal-hero .hero-headline,
.reveal-hero .hero-sub,
.reveal-hero .hero-actions {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFade var(--t-xl) var(--ease-out) forwards;
}

.reveal-hero .hero-eyebrow  { animation-delay: 0.2s; }
.reveal-hero .hero-headline { animation-delay: 0.45s; }
.reveal-hero .hero-sub      { animation-delay: 0.65s; }
.reveal-hero .hero-actions  { animation-delay: 0.85s; }

@keyframes heroFade {
  to { opacity: 1; transform: translateY(0); }
}

/* stagger children of reveal containers */
.features-grid .feature-card:nth-child(2) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.3s; }

.stats-grid .stat-item:nth-child(2) { transition-delay: 0.08s; }
.stats-grid .stat-item:nth-child(3) { transition-delay: 0.16s; }
.stats-grid .stat-item:nth-child(4) { transition-delay: 0.24s; }

/* ── 5. BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875em 2.25em;
  border-radius: var(--radius-sm);
  transition:
    background var(--t-base) var(--ease-out),
    color var(--t-base) var(--ease-out),
    border-color var(--t-base) var(--ease-out),
    transform var(--t-fast) var(--ease-out),
    box-shadow var(--t-base) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.05);
  opacity: 0;
  transition: opacity var(--t-fast);
}

.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--clr-gold);
  color: #0a0800;
}

.btn-primary:hover {
  background: var(--clr-gold-light);
  box-shadow: 0 8px 32px var(--clr-gold-glow);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--clr-text);
  border: 1px solid var(--clr-border-light);
}

.btn-ghost:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  transform: translateY(-1px);
}

/* ── 6. NAVIGATION ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition:
    background var(--t-slow) var(--ease-out),
    backdrop-filter var(--t-slow),
    box-shadow var(--t-slow) var(--ease-out);
}

.navbar.scrolled {
  background: rgba(9, 9, 9, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 var(--clr-border);
}

.nav-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3.5rem);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.logo-text {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.55em;
  color: var(--clr-text);
  text-transform: uppercase;
  margin-left: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-left: auto;
}

.nav-links a {
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t-base);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-gold);
  transition: width var(--t-base) var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active-link {
  color: var(--clr-text);
}

.nav-links a:hover::after,
.nav-links a.active-link::after {
  width: 100%;
}

.nav-cta {
  margin-left: var(--space-md);
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6em 1.6em;
  border: 1px solid var(--clr-gold);
  color: var(--clr-gold);
  border-radius: var(--radius-sm);
  background: transparent;
  transition:
    background var(--t-base),
    color var(--t-base),
    transform var(--t-fast);
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--clr-gold);
  color: #0a0800;
  transform: translateY(-1px);
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  margin-left: auto;
  padding: 4px 0;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease-out), opacity var(--t-base);
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  z-index: 850;
  background: rgba(9,9,9,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  clip-path: inset(0 0 100% 0);
  transition: clip-path var(--t-slow) var(--ease-out);
  pointer-events: none;
}

.mobile-nav.open {
  clip-path: inset(0 0 0% 0);
  pointer-events: all;
}

.mobile-link {
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  color: var(--clr-text-muted);
  transition: color var(--t-base);
  letter-spacing: 0.04em;
}

.mobile-link:hover { color: var(--clr-gold); }

/* ── 7. HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 14s ease-out;
}

.hero.loaded .hero-img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
  max-width: 900px;
}

.hero-eyebrow {
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--space-md);
}

.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(var(--fs-3xl), 7vw, var(--fs-6xl));
  font-weight: 600;
  line-height: 1.05;
  color: var(--clr-text);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.hero-headline em {
  font-style: italic;
  color: var(--clr-gold);
}

.hero-sub {
  font-size: clamp(var(--fs-base), 2vw, var(--fs-md));
  color: rgba(240, 235, 224, 0.72);
  line-height: 1.9;
  margin-bottom: var(--space-xl);
  max-width: 60ch;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out) 1.4s forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, var(--clr-gold));
  display: block;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

.scroll-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-gold);
}

/* ── 8. MARQUEE ────────────────────────────────────────────── */
.marquee-strip {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  overflow: hidden;
  padding: 14px 0;
  user-select: none;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  padding: 0 2rem;
}

.marquee-track .dot {
  color: var(--clr-gold);
  padding: 0;
}

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

/* ── 9. STATS ──────────────────────────────────────────────── */
.stats-section {
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--clr-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--clr-border);
  border: 1px solid var(--clr-border);
}

.stat-item {
  background: var(--clr-bg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition:
    background var(--t-base),
    opacity var(--t-xl) var(--ease-out),
    transform var(--t-xl) var(--ease-out);
}

.stat-item:hover {
  background: var(--clr-surface);
}

.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--clr-gold);
  line-height: 1;
  letter-spacing: -0.02em;
  display: inline;
}

.stat-suffix {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--clr-gold-dark);
  display: inline;
}

.stat-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-top: 4px;
}

/* ── 10. PRODUCTS ──────────────────────────────────────────── */
.products-section {
  padding: var(--space-3xl) 0;
}

/* Filter bar */
.filter-bar {
  display: flex;
  gap: var(--space-xs);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.filter-btn {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55em 1.5em;
  border-radius: 60px;
  border: 1px solid var(--clr-border-light);
  color: var(--clr-text-muted);
  background: transparent;
  transition:
    background var(--t-base),
    color var(--t-base),
    border-color var(--t-base),
    transform var(--t-fast);
}

.filter-btn:hover {
  border-color: var(--clr-gold);
  color: var(--clr-text);
  transform: translateY(-1px);
}

.filter-btn.active {
  background: var(--clr-gold);
  color: #0a0800;
  border-color: var(--clr-gold);
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Product card */
.product-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    border-color var(--t-base),
    transform var(--t-slow) var(--ease-out),
    box-shadow var(--t-slow) var(--ease-out),
    opacity var(--t-xl) var(--ease-out);
}

.product-card:hover {
  border-color: var(--clr-border-light);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px var(--clr-border-light);
}

.product-card.hidden {
  display: none;
}

.card-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.product-card:hover .card-img {
  transform: scale(1.07);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-base);
}

.product-card:hover .card-overlay {
  opacity: 1;
}

.card-cta {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.7em 1.8em;
  border: 1px solid rgba(201,169,110,0.7);
  color: var(--clr-gold);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  transform: translateY(10px);
  transition:
    background var(--t-base),
    border-color var(--t-base),
    color var(--t-base),
    transform var(--t-base) var(--ease-out);
}

.product-card:hover .card-cta {
  transform: translateY(0);
}

.card-cta:hover {
  background: var(--clr-gold);
  color: #0a0800;
  border-color: var(--clr-gold);
}

.card-body {
  padding: 1.25rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}

.card-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 2px;
}

.card-name {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--clr-text);
  line-height: 1.3;
}

.card-desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
  flex: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--clr-border);
}

.card-price {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--clr-text);
  letter-spacing: 0.02em;
}

.card-view-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--clr-border-light);
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--t-base),
    border-color var(--t-base),
    color var(--t-base),
    transform var(--t-fast);
}

.card-view-btn:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: #0a0800;
  transform: scale(1.1);
}

/* ── 11. PARALLAX BANNER ────────────────────────────────────── */
.parallax-banner {
  position: relative;
  height: 50vh;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.parallax-banner::before {
  content: '';
  position: absolute;
  inset: -40%;
  background-image: url('https://images.unsplash.com/photo-1616137466211-f939a420be84?w=1920&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.22) saturate(0.6);
  z-index: -1;
}

.parallax-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}

.parallax-quote {
  font-family: var(--ff-display);
  font-size: clamp(var(--fs-xl), 3.5vw, var(--fs-3xl));
  font-weight: 400;
  font-style: italic;
  color: var(--clr-text);
  line-height: 1.5;
  max-width: 700px;
  margin-inline: auto;
}

.parallax-quote em {
  color: var(--clr-gold);
  font-weight: 600;
}

.parallax-quote cite {
  display: block;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-style: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-top: 1.5rem;
}

/* ── 12. ABOUT ──────────────────────────────────────────────── */
.about-section {
  padding: var(--space-3xl) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-image-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--clr-gold);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.badge-number {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: #0a0800;
  line-height: 1;
}

.badge-text {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10,8,0,0.7);
  line-height: 1.4;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.about-text-col .section-eyebrow {
  margin-bottom: 0;
}

.about-text-col .section-title {
  margin-bottom: 0;
}

.about-body {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: 1.9;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: var(--space-xs);
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

.check-icon {
  color: var(--clr-gold);
  flex-shrink: 0;
}

/* ── 13. FEATURES ───────────────────────────────────────────── */
.features-section {
  padding: var(--space-3xl) 0;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

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

.feature-card {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition:
    border-color var(--t-base),
    background var(--t-base),
    transform var(--t-slow) var(--ease-out),
    box-shadow var(--t-slow) var(--ease-out),
    opacity var(--t-xl) var(--ease-out);
}

.feature-card:hover {
  border-color: var(--clr-gold-dark);
  background: rgba(201,169,110,0.04);
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.35);
}

.feature-icon-wrap {
  width: 64px;
  height: 64px;
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,169,110,0.05);
  transition: border-color var(--t-base), background var(--t-base);
}

.feature-card:hover .feature-icon-wrap {
  border-color: var(--clr-gold-dark);
  background: rgba(201,169,110,0.1);
}

.feature-icon {
  width: 28px;
  height: 28px;
}

.feature-title {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.3;
}

.feature-body {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.8;
}

/* ── 14. TESTIMONIALS ───────────────────────────────────────── */
.testimonials-section {
  padding: var(--space-3xl) 0;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s var(--ease-out);
  will-change: transform;
  user-select: none;
}

.testimonial-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  min-width: 0;
  flex: 0 0 calc(33.333% - 1rem);
  transition: border-color var(--t-base);
}

.testimonial-card:hover {
  border-color: var(--clr-border-light);
}

.stars {
  display: flex;
  gap: 3px;
}

.stars svg {
  width: 14px;
  height: 14px;
}

.testimonial-text {
  font-family: var(--ff-display);
  font-size: var(--fs-base);
  font-style: italic;
  font-weight: 400;
  color: var(--clr-text-muted);
  line-height: 1.85;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  border-top: 1px solid var(--clr-border);
  padding-top: var(--space-md);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-gold-glow);
  border: 1px solid var(--clr-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-gold);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.author-name {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-text);
}

.author-location {
  font-size: var(--fs-xs);
  color: var(--clr-text-faint);
  letter-spacing: 0.04em;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--clr-border-light);
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition:
    background var(--t-base),
    border-color var(--t-base),
    color var(--t-base),
    transform var(--t-fast);
}

.carousel-btn:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: #0a0800;
  transform: scale(1.08);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-border-light);
  border: none;
  padding: 0;
  transition:
    background var(--t-base),
    width var(--t-base) var(--ease-out),
    border-radius var(--t-base);
  cursor: pointer;
}

.carousel-dot.active {
  background: var(--clr-gold);
  width: 24px;
  border-radius: 3px;
}

/* ── 15. CTA STRIP ──────────────────────────────────────────── */
.cta-strip {
  padding: var(--space-3xl) 0;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.cta-inner {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.cta-title {
  font-family: var(--ff-display);
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  font-weight: 600;
  line-height: 1.2;
  color: var(--clr-text);
}

.cta-sub {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  line-height: 1.8;
  max-width: 50ch;
}

.cta-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-xs);
}

/* ── 16. FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--clr-bg);
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-lg);
  border-top: 1px solid var(--clr-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--clr-border);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-logo {
  display: inline-flex;
}

.footer-tagline {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: var(--space-sm);
  margin-top: 4px;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--clr-border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  transition:
    border-color var(--t-base),
    color var(--t-base),
    background var(--t-base),
    transform var(--t-fast);
}

.social-link:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  background: var(--clr-gold-glow);
  transform: translateY(-2px);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-heading {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-text);
  margin-bottom: 6px;
}

.footer-link {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  transition: color var(--t-base);
  width: fit-content;
}

.footer-link:hover {
  color: var(--clr-gold);
}

/* Newsletter */
.footer-newsletter {
  gap: var(--space-sm);
}

.footer-newsletter-sub {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 4px;
}

.newsletter-input {
  flex: 1;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border-light);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  padding: 0.7em 1em;
  outline: none;
  transition: border-color var(--t-base);
}

.newsletter-input::placeholder {
  color: var(--clr-text-faint);
}

.newsletter-input:focus {
  border-color: var(--clr-gold);
}

.newsletter-btn {
  background: var(--clr-gold);
  color: #0a0800;
  border: 1px solid var(--clr-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-base);
}

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

.newsletter-confirm {
  font-size: var(--fs-xs);
  color: var(--clr-gold);
  min-height: 1.4em;
  letter-spacing: 0.06em;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-top: var(--space-lg);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: var(--fs-xs);
  color: var(--clr-text-faint);
}

.footer-legal {
  display: flex;
  gap: var(--space-md);
}

.footer-legal-link {
  font-size: var(--fs-xs);
  color: var(--clr-text-faint);
  transition: color var(--t-base);
}

.footer-legal-link:hover {
  color: var(--clr-text-muted);
}

/* ── 17. MODAL ──────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease-out);
}

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

.modal {
  position: relative;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-xl);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.97);
  transition: transform var(--t-slow) var(--ease-out);
  scrollbar-width: thin;
  scrollbar-color: var(--clr-border-light) transparent;
}

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

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--clr-border-light);
  background: var(--clr-surface-2);
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--t-base),
    color var(--t-base),
    border-color var(--t-base),
    transform var(--t-fast);
}

.modal-close:hover {
  background: var(--clr-border-light);
  color: var(--clr-text);
  transform: rotate(90deg) scale(1.05);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-image-col {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.modal-overlay.open .modal-img {
  transform: scale(1.03);
}

.modal-info-col {
  padding: var(--space-xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  overflow-y: auto;
}

.modal-title {
  font-family: var(--ff-display);
  font-size: clamp(var(--fs-xl), 3vw, var(--fs-2xl));
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.2;
  margin-top: 4px;
}

.modal-price {
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--clr-gold);
}

.modal-desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.85;
}

.modal-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: var(--space-md);
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  margin-top: var(--space-xs);
}

.spec-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.spec-label {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-faint);
  min-width: 90px;
  flex-shrink: 0;
  padding-top: 1px;
}

.spec-val {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.modal-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: auto;
}

/* ── 18. RESPONSIVE  ────────────────────────────────────────── */

/* ── 1200px — 3-col products, 2-col features ── */
@media (max-width: 1200px) {
  .products-grid      { grid-template-columns: repeat(3, 1fr); }
  .features-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: var(--space-xl) var(--space-2xl); }
  .modal-body         { grid-template-columns: 1fr 1fr; }
}

/* ── 1024px — collapse about, 2-up stats ── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 640px;
    margin-inline: auto;
  }
  .testimonial-card { flex: 0 0 calc(50% - 0.75rem); }
}

/* ── 900px — hamburger, 2-col products, stack modal ── */
@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .nav-links,
  .nav-cta    { display: none; }
  .hamburger  { display: flex; }

  .modal-body {
    grid-template-columns: 1fr;
    max-height: 90svh;
    overflow-y: auto;
  }
  .modal-image-col {
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    max-height: 280px;
  }
  .about-badge {
    bottom: -1rem;
    right: 1rem;
    width: 86px;
    height: 86px;
  }
  .badge-number { font-size: 2rem; }
}

/* ── 768px — single-col features & footer ── */
@media (max-width: 768px) {
  :root {
    --space-xl:  2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 5.5rem;
  }

  .features-grid  { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 2.25rem; }
  .testimonial-card { flex: 0 0 100%; }
  .hero-sub br    { display: none; }

  /* feature cards — horizontal pill on mobile */
  .feature-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
  }
  .feature-icon-wrap { flex-shrink: 0; }

  /* parallax disable fixed attachment — avoids iOS render bug */
  .parallax-banner::before { background-attachment: scroll; }
}

/* ── 600px — mobile-first full overhaul ── */
@media (max-width: 600px) {
  :root {
    --nav-h:     60px;
    --space-xs:  0.375rem;
    --space-sm:  0.75rem;
    --space-md:  1.125rem;
    --space-lg:  1.75rem;
    --space-xl:  2rem;
    --space-2xl: 3rem;
    --space-3xl: 4.25rem;
    --radius-lg: 12px;
    --radius-xl: 16px;
  }

  /* ── Typography scale down ── */
  html { font-size: 15px; }

  .section-title  { font-size: clamp(1.6rem, 6.5vw, 2.25rem); }
  .section-sub    { font-size: 0.9rem; }
  .section-eyebrow { font-size: 0.68rem; letter-spacing: 0.18em; }

  /* ── Navbar ── */
  .nav-inner { padding-inline: 1.1rem; }
  .logo-mark { font-size: 1.9rem; }
  .logo-text { font-size: 0.65rem; }

  /* ── Mobile nav overlay links ── */
  .mobile-link {
    font-size: 1.6rem;
    letter-spacing: 0.02em;
  }
  .mobile-nav { gap: 1.5rem; }

  /* ── Hero ── */
  .hero-eyebrow { font-size: 0.65rem; letter-spacing: 0.22em; margin-bottom: 0.75rem; }
  .hero-headline {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.1;
    margin-bottom: 0.9rem;
  }
  .hero-sub {
    font-size: 0.88rem;
    line-height: 1.75;
    margin-bottom: 1.75rem;
    padding-inline: 0.25rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
  }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .scroll-indicator { bottom: 1.5rem; }
  .scroll-line { height: 36px; }

  /* ── Marquee ── */
  .marquee-strip { padding: 10px 0; }
  .marquee-track span { font-size: 0.65rem; padding: 0 1.25rem; }

  /* ── Stats ── */
  .stats-section { padding: 2.5rem 0; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .stat-item     { padding: 1.5rem 0.75rem; }
  .stat-number   { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .stat-suffix   { font-size: clamp(1.1rem, 4.5vw, 1.6rem); }
  .stat-label    { font-size: 0.65rem; }

  /* ── Products ── */
  .filter-bar {
    gap: 0.375rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
    /* hide scrollbar but keep scrollability */
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-inline: 0.1rem;
  }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-btn {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 0.68rem;
    padding: 0.5em 1.1em;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .card-name { font-size: 1rem; }
  .card-desc { font-size: 0.78rem; }
  .card-price { font-size: 1rem; }
  .card-body  { padding: 0.9rem 1rem 1rem; gap: 4px; }
  .card-footer { margin-top: 0.625rem; padding-top: 0.625rem; }
  .card-view-btn { width: 30px; height: 30px; }

  /* ── Parallax quote ── */
  .parallax-banner  { min-height: 240px; }
  .parallax-quote   { font-size: clamp(1.1rem, 5vw, 1.5rem); }

  /* ── About ── */
  .about-image-col { padding-bottom: 1.25rem; }
  .about-image-frame img { aspect-ratio: 3 / 2; }
  .about-badge {
    width: 76px;
    height: 76px;
    bottom: -0.75rem;
    right: 0.75rem;
  }
  .badge-number { font-size: 1.75rem; }
  .badge-text   { font-size: 8px; }
  .about-body   { font-size: 0.875rem; }
  .about-list li { font-size: 0.82rem; }

  /* ── Features ── */
  .feature-card   { padding: 1.25rem; gap: 1rem; }
  .feature-icon-wrap { width: 52px; height: 52px; }
  .feature-title  { font-size: 1rem; }
  .feature-body   { font-size: 0.82rem; }

  /* ── Testimonials ── */
  .testimonial-card { padding: 1.5rem 1.25rem; }
  .testimonial-text { font-size: 0.9rem; }
  .carousel-controls { gap: 0.75rem; margin-top: 1.5rem; }
  .carousel-btn { width: 40px; height: 40px; }

  /* ── CTA Strip ── */
  .cta-title { font-size: clamp(1.5rem, 6.5vw, 2.2rem); }
  .cta-sub   { font-size: 0.875rem; }
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 300px;
  }
  .cta-actions .btn { justify-content: center; text-align: center; }

  /* ── Footer ── */
  .footer { padding-top: 3rem; }
  .footer-grid { gap: 1.75rem; }
  .footer-heading { font-size: 0.7rem; }
  .footer-link    { font-size: 0.82rem; }
  .footer-tagline { font-size: 0.82rem; }
  .footer-newsletter-sub { font-size: 0.82rem; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
    padding-top: 1.25rem;
  }
  .footer-copy { font-size: 0.68rem; }
  .footer-legal { flex-wrap: wrap; gap: 0.625rem; }
  .footer-legal-link { font-size: 0.68rem; }
  .newsletter-form   { max-width: 340px; }
  .newsletter-input  { font-size: 0.82rem; }
  .social-links { gap: 0.625rem; }
  .social-link  { width: 36px; height: 36px; }

  /* ── Modal ── */
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal {
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    max-height: 92svh;
    width: 100%;
  }
  .modal-image-col {
    aspect-ratio: 16 / 8;
    max-height: 220px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  }
  .modal-info-col { padding: 1.25rem 1.25rem 2rem; gap: 0.875rem; }
  .modal-title    { font-size: 1.3rem; }
  .modal-price    { font-size: 1.4rem; }
  .modal-desc     { font-size: 0.84rem; }
  .spec-label     { min-width: 76px; font-size: 0.68rem; }
  .spec-val       { font-size: 0.82rem; }
  .modal-actions  { flex-direction: column; }
  .modal-actions .btn { justify-content: center; }
  .modal-close    { top: 0.875rem; right: 0.875rem; }
}

/* ── 400px — tightest phones ── */
@media (max-width: 400px) {
  :root {
    --space-3xl: 3.5rem;
  }

  .products-grid  { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .hero-headline  { font-size: clamp(1.75rem, 9vw, 2.5rem); }

  .card-image-wrap { aspect-ratio: 16 / 10; }

  .feature-card {
    flex-direction: column;
    padding: 1.125rem;
  }
}

/* ── iOS safe-area support ── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .footer { padding-bottom: calc(1.5rem + env(safe-area-inset-bottom)); }
  .modal-overlay { padding-bottom: env(safe-area-inset-bottom); }
  .mobile-nav {
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
  }
}

/* ── 19. PRODUCT FILTER ANIMATIONS ─────────────────────────── */
.product-card {
  transition:
    opacity 0.35s var(--ease-out),
    transform 0.35s var(--ease-out),
    border-color var(--t-base),
    box-shadow var(--t-slow) var(--ease-out);
}

.product-card.fade-out {
  opacity: 0;
  transform: translateY(8px) scale(0.97);
  pointer-events: none;
}

.product-card.fade-in {
  animation: cardFadeIn 0.4s var(--ease-out) forwards;
}

@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── 20. SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--clr-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--clr-border-light);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--clr-text-faint);
}

/* ── 21. SELECTION ──────────────────────────────────────────── */
::selection {
  background: var(--clr-gold-glow);
  color: var(--clr-gold);
}

/* ── 22. FOCUS VISIBLE ──────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 3px;
}

/* ── 23. PRINT ──────────────────────────────────────────────── */
@media print {
  .navbar, .scroll-indicator, .marquee-strip,
  .modal-overlay, .hamburger, .mobile-nav { display: none !important; }
}
