@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");

/* ── GLOBAL MOBILE FIX ─────────────────────────────────────── */
html, body { overflow-x: hidden; max-width: 100vw; }
*, *::before, *::after { box-sizing: border-box; }
p, li, h1, h2, h3, h4 { overflow-wrap: break-word; word-wrap: break-word; }
@media (max-width: 960px) {
  p, li, h1, h2, h3, h4, span, div { max-width: 100% !important; }
  .container, section { padding-left: 16px !important; padding-right: 16px !important; }
  /* Product page mobile overrides */
  .product-page { padding-left: 0 !important; padding-right: 0 !important; }
  .product-page-inner { padding: 0 16px !important; gap: 24px !important; }
  .product-info-col { max-width: 100% !important; overflow: hidden !important; padding: 0 !important; }
  .product-about, .product-about p, .product-whats-inside,
  .product-who-for, .product-email-capture,
  .product-subtitle-text, .product-tagline { max-width: 100% !important; box-sizing: border-box !important; }
  .product-cover-col { max-width: 100% !important; }
  .gallery-wrapper { max-width: 100% !important; overflow: hidden !important; }
  .product-cover-main { max-width: 100% !important; }
  /* Tab bar */
  .product-tabs { overflow-x: auto !important; -webkit-overflow-scrolling: touch; }
}

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --color-primary: #1A1A2E;
  --color-secondary: #16213E;
  --color-accent: #C4A265;
  --color-bg: #FAFAF8;
  --color-surface: #F0EDE8;
  --color-text: #1A1A1A;
  --color-text-muted: #6B6B6B;
  --color-white: #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --size-hero: clamp(3rem, 7vw, 6.5rem);
  --size-section: clamp(2rem, 4vw, 3.5rem);
  --size-body: 1.05rem;
  --line-height: 1.65;
  --letter-display: -0.03em;

  --radius: 4px;
  --max-width: 1320px;
  --shadow-card: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-btn: 0 4px 20px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: var(--line-height);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
section { padding: 100px 24px; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: var(--letter-display);
  line-height: 1.1;
  color: var(--color-text);
}
h1 { font-size: var(--size-hero); }
h2 { font-size: var(--size-section); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
p { max-width: 65ch; color: var(--color-text-muted); }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.16);
}
.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-text);
}
.btn-secondary:hover {
  background: var(--color-text);
  color: var(--color-white);
}

/* ── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--color-accent); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--color-text); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-primary);
  color: var(--color-white);
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-content h1 { color: var(--color-white); margin-bottom: 24px; }
.hero-content p { color: rgba(255,255,255,0.7); font-size: 1.15rem; max-width: 50ch; margin-bottom: 40px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-grid a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-grid img {
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  transition: var(--transition);
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
  cursor: pointer;
}
.hero-grid a:hover img {
  transform: scale(1.03);
}
.hero-grid a:nth-child(2) { transform: translateY(24px); }
.hero-grid a:nth-child(3) { transform: translateY(-12px); }
.hero-grid a:nth-child(4) { transform: translateY(12px); }

/* Page hero (non-home) */
.page-hero {
  padding: 160px 24px 80px;
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
}
.page-hero h1 { color: var(--color-white); margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.15rem; margin: 0 auto; }

/* ── BRAND SHOWCASE ─────────────────────────────────────────── */
.brand-showcase { background: var(--color-bg); }
.brand-showcase .section-header {
  text-align: center;
  margin-bottom: 64px;
}
.brand-showcase .section-header p {
  margin: 16px auto 0;
}
.brand-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* ── FLIP CARDS ─────────────────────────────────────────────── */
/* BRAND CARDS — Lift + reveal animation (no 3D flip) */
.brand-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.brand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}
.brand-color-bar {
  height: 5px;
  width: 60%;
  transition: width 300ms ease;
}
.brand-card:hover .brand-color-bar {
  width: 100%;
}
.brand-card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 40px;
}
.brand-card-content h3 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.brand-card-personality {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.brand-card-content p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  max-width: 38ch;
}
.brand-card-cta {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 300ms ease, transform 300ms ease;
}
.brand-card:hover .brand-card-cta {
  opacity: 1;
  transform: translateY(0);
}
/* Mobile: always show description and CTA */
@media (max-width: 900px) {
  .brand-card-cta {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Legacy classes kept for brands page */
.brand-card-body { padding: 40px; }
.brand-card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.brand-card-body .brand-subtitle {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.brand-card-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.brand-card-covers {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.brand-card-covers img {
  width: 80px;
  height: 106px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.brand-card .btn {
  font-size: 0.85rem;
  padding: 10px 24px;
}

/* ── NUMBERS ────────────────────────────────────────────────── */
.numbers {
  background: var(--color-surface);
}
.numbers-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}
.number-item h3 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--color-accent);
  margin-bottom: 8px;
}
.number-item p {
  font-size: 0.95rem;
  margin: 0 auto;
}

/* ── ABOUT TEASER ───────────────────────────────────────────── */
.about-teaser {
  background: var(--color-bg);
}
.about-teaser-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-teaser-content h2 { margin-bottom: 24px; }
.about-teaser-content p { margin-bottom: 32px; font-size: 1.05rem; }
.about-teaser-image {
  position: relative;
}
.about-teaser-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.about-teaser-image::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius);
  z-index: -1;
}

/* ── NEWSLETTER ─────────────────────────────────────────────── */
.newsletter {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
}
.newsletter h2 { color: var(--color-white); margin-bottom: 16px; }
.newsletter p { color: rgba(255,255,255,0.7); margin: 0 auto 40px; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-accent);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.5);
  padding: 48px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.4);
}
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--color-accent); }
.footer-copy { font-size: 0.8rem; }

/* ── BRANDS PAGE DETAIL ─────────────────────────────────────── */
.brand-detail {
  padding: 80px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.brand-detail:nth-child(even) { background: var(--color-surface); }
.brand-detail-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.brand-detail:nth-child(even) .brand-detail-inner { direction: rtl; }
.brand-detail:nth-child(even) .brand-detail-inner > * { direction: ltr; }
.brand-detail-content h2 { margin-bottom: 8px; }
.brand-detail-content .brand-subtitle {
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-size: 1rem;
}
.brand-detail-content p { margin-bottom: 24px; }
.brand-detail-content .brand-stat {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-detail-content .brand-stat::before {
  content: '';
  width: 24px;
  height: 2px;
  display: inline-block;
}
.brand-detail-covers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.brand-detail-covers a { display: block; }
.brand-detail-covers img {
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
  transition: transform 0.3s ease;
}
.brand-detail-covers a:hover img {
  transform: scale(1.03);
}

/* ── ABOUT PAGE ─────────────────────────────────────────────── */
.story-section { padding: 80px 24px; }
.story-inner {
  max-width: 720px;
  margin: 0 auto;
}
.story-inner h2 { margin-bottom: 24px; }
.story-inner p { font-size: 1.1rem; line-height: 1.75; }

.values-section { padding: 80px 24px; background: var(--color-surface); }
.values-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.values-grid .section-header {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 16px;
}
.value-card h3 { margin-bottom: 12px; }
.value-card p { font-size: 0.95rem; }

.founders-section { padding: 80px 24px; }
.founders-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.founders-inner h2 { margin-bottom: 8px; }
.founders-inner .location {
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 24px;
}
.founders-inner p { margin: 0 auto 32px; text-align: left; }

/* ── CONTACT PAGE ───────────────────────────────────────────── */
.contact-section { padding: 80px 24px; }
.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--color-white);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.1);
}
.form-group textarea { min-height: 160px; resize: vertical; }

.contact-info { padding-top: 20px; }
.contact-info-item { margin-bottom: 40px; }
.contact-info-item h3 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
  font-family: var(--font-body);
}
.contact-info-item p {
  font-size: 1.05rem;
  color: var(--color-text);
}

/* ── BRAND PAGE HERO ────────────────────────────────────────── */
.brand-page-personality {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

/* ── PRODUCT CATEGORY ───────────────────────────────────────── */
.product-category { padding: 80px 24px; }
.product-category:nth-child(even) { background: var(--color-surface); }
.category-header {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.category-header h2 { margin-bottom: 16px; }
.category-header p { margin: 0 auto; font-size: 1.05rem; line-height: 1.65; }

/* ── PRODUCT GRID ───────────────────────────────────────────── */
.product-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.product-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  background: var(--color-white);
  border-radius: 6px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.product-card-image {
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  padding: 20px;
}
.product-card-image .product-cover {
  width: auto;
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
  transition: transform 0.5s ease;
  border-radius: 3px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.product-card:hover .product-cover {
  transform: scale(1.03);
}
.product-card-image .product-cover-placeholder {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-content {
  padding: 40px 40px 40px 0;
}
.product-card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  line-height: 1.2;
}
.product-card-content .product-subtitle {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}
.product-card-content .product-seo-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 24px;
  max-width: 60ch;
}
/* Interior spread previews */
.product-spreads {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.product-spreads img {
  height: 120px;
  width: auto;
  border-radius: 3px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.product-spreads img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.product-spreads-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

/* Lightbox for spread images */
/* ── LIGHTBOX GALLERY ────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 85vw;
  max-height: 80vh;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  transition: opacity 0.2s ease;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 1001;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 1001;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.product-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
}
.product-pages,
.product-id {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.product-card .btn {
  font-size: 0.85rem;
  padding: 10px 24px;
}

/* ── SCROLL PROGRESS BAR ────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--color-accent);
  z-index: 200;
  width: 0%;
  transition: width 0.05s linear;
}

/* ── BACK TO TOP ────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 90;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--color-primary);
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.brand-grid .fade-up:nth-child(1) { transition-delay: 0s; }
.brand-grid .fade-up:nth-child(2) { transition-delay: 0.1s; }
.brand-grid .fade-up:nth-child(3) { transition-delay: 0.2s; }
.brand-grid .fade-up:nth-child(4) { transition-delay: 0.3s; }
.product-grid .fade-up:nth-child(1) { transition-delay: 0s; }
.product-grid .fade-up:nth-child(2) { transition-delay: 0.1s; }
.product-grid .fade-up:nth-child(3) { transition-delay: 0.15s; }
.product-grid .fade-up:nth-child(4) { transition-delay: 0.2s; }
.product-grid .fade-up:nth-child(5) { transition-delay: 0.25s; }
.numbers-inner .fade-up:nth-child(1) { transition-delay: 0s; }
.numbers-inner .fade-up:nth-child(2) { transition-delay: 0.1s; }
.numbers-inner .fade-up:nth-child(3) { transition-delay: 0.2s; }
.numbers-inner .fade-up:nth-child(4) { transition-delay: 0.3s; }
.values-grid .fade-up:nth-child(2) { transition-delay: 0s; }
.values-grid .fade-up:nth-child(3) { transition-delay: 0.1s; }
.values-grid .fade-up:nth-child(4) { transition-delay: 0.2s; }

/* Parallax hero covers */
.hero-grid a {
  will-change: transform;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
  .scroll-progress { display: none; }
  html { scroll-behavior: auto; }
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .hero-grid img { transform: none !important; }
  .brand-grid { grid-template-columns: 1fr; }
  .brand-card { height: auto; }
  .numbers-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-teaser-inner { grid-template-columns: 1fr; gap: 48px; }
  .brand-detail-inner { grid-template-columns: 1fr; gap: 40px; }
  .brand-detail:nth-child(even) .brand-detail-inner { direction: ltr; }
  .values-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .product-card { grid-template-columns: 1fr; }
  .product-card-image { min-height: 200px; max-height: 360px; }
  .product-card-content { padding: 32px; }
}

@media (max-width: 600px) {
  section { padding: 64px 16px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .hero { min-height: auto; }
  .hero-inner { padding: 60px 16px; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .newsletter-form { flex-direction: column; }
  .numbers-inner { grid-template-columns: 1fr 1fr; }
  .brand-detail-covers { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .page-hero { padding: 120px 16px 60px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-article-body { padding: 0 16px; }
  .blog-article-body blockquote { padding: 20px 20px 20px 24px; }
}

/* ── BLOG INDEX ─────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  overflow: hidden;
}

.blog-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
}
.blog-card-img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #f9f8f5;
}
.blog-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: var(--color-white);
  position: relative;
  z-index: 1;
}
.blog-card-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.blog-card-excerpt {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  flex: 1;
  margin-bottom: 16px;
}
.blog-card-read {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-card-read::after {
  content: '→';
  transition: transform var(--transition);
}
.blog-card:hover .blog-card-read::after {
  transform: translateX(4px);
}

/* Featured / first card spans full width */
.blog-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}
.blog-card.featured .blog-card-img {
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  height: 100%;
  min-height: 200px;
  max-height: 320px;
}
.blog-card.featured .blog-card-body {
  padding: 36px 40px;
  justify-content: center;
}
.blog-card.featured .blog-card-title {
  font-size: 2rem;
}

@media (max-width: 768px) {
  .blog-grid {
    padding: 0 16px;
    gap: 16px;
    grid-template-columns: 1fr 1fr;
  }
  .blog-card {
    max-width: 100%;
    overflow: hidden;
  }
  .blog-card-img {
    aspect-ratio: 1 / 1;
    object-position: center top;
  }
  .blog-card.featured {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }
  .blog-card.featured .blog-card-img {
    min-height: auto;
    max-height: none;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
  }
  .blog-card.featured .blog-card-body {
    background: var(--color-white);
    position: relative;
    z-index: 1;
    padding: 16px 16px 20px;
  }
  .blog-card.featured .blog-card-title {
    font-size: 1.35rem;
  }
  .blog-card-body {
    padding: 12px 14px 16px;
  }
  .blog-card-tag {
    font-size: 0.65rem;
    margin-bottom: 6px;
  }
  .blog-card-title {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }
  .blog-card-excerpt {
    display: none;
  }
  .blog-card-read {
    font-size: 0.8rem;
  }
}

/* ── BLOG ARTICLE ─────────────────────────────────────── */
.blog-article-hero {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  display: block;
  border-radius: 0 0 24px 24px;
  background: var(--color-surface);
}
@media (max-width: 600px) {
  .blog-article-hero {
    max-height: 320px;
    border-radius: 0 0 16px 16px;
  }
}
.blog-article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.blog-article-body .article-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 16px;
  display: block;
}
.blog-article-body h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: 20px;
  letter-spacing: var(--letter-display);
}
.blog-article-body .article-meta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-surface);
}
.blog-article-body h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 48px 0 16px;
}
.blog-article-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 36px 0 12px;
}
.blog-article-body p {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--color-text);
  margin-bottom: 24px;
}
.blog-article-body ul, .blog-article-body ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
.blog-article-body li {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 8px;
}
.blog-article-body blockquote {
  border-left: 4px solid var(--color-accent);
  padding: 24px 24px 24px 32px;
  margin: 32px 0;
  background: var(--color-surface);
  border-radius: 0 12px 12px 0;
}
.blog-article-body blockquote p {
  font-style: italic;
  color: var(--color-primary);
  margin-bottom: 0;
}
.blog-article-body .product-callout {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 16px;
  padding: 32px;
  margin: 40px 0;
  display: flex;
  align-items: center;
  gap: 28px;
}
.blog-article-body .product-callout img {
  width: 120px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.blog-article-body .product-callout-text h3 {
  color: var(--color-white);
  margin: 0 0 8px;
  font-size: 1.2rem;
}
.blog-article-body .product-callout-text p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.blog-article-body .product-callout .btn {
  display: inline-block;
  padding: 10px 24px;
  font-size: 0.9rem;
}
.blog-related {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.blog-related h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--color-primary);
}
.blog-related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) {
  .blog-related-grid { grid-template-columns: 1fr; }
  .blog-article-body .product-callout { flex-direction: column; text-align: center; }
}

/* ── MEDICAL DISCLAIMER ────────────────────────────────── */
.medical-disclaimer {
  max-width: 760px;
  margin: 0 auto 40px;
  padding: 20px 24px;
  background: var(--color-surface);
  border-radius: 8px;
  border-left: 3px solid var(--color-text-muted);
}
.medical-disclaimer p {
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}
.site-disclaimer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 20px;
  text-align: center;
}
.site-disclaimer p {
  font-family: var(--font-body);
  font-size: 0.7rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

/* ── MICRO-INTERACTIONS & ACCESSIBILITY ─────────────────────── */

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Gold outline CTA button */
.btn-outline-gold {
  background: transparent;
  color: #fff;
  border: 2px solid var(--color-accent);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-gold:hover {
  background: var(--color-accent);
  color: #fff;
  transform: scale(1.02);
}

/* Nav links: underline slides in from left */
.nav-links a::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 250ms ease;
}
.nav-links a:hover::before {
  width: 100%;
}

/* Cards: lift + shadow on hover (brand-card handled separately) */
.product-card,
.blog-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover,
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Buttons: scale on hover */
.btn:hover {
  transform: scale(1.02);
}

/* Image cards: subtle zoom on image */
[class*="-card"] img {
  transition: transform 0.3s ease;
}
[class*="-card"]:hover img {
  transform: scale(1.03);
}

/* Focus rings for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* ── SEASONAL BANNER ──────────────────────────────────────── */
.seasonal-banner {
  background: linear-gradient(135deg, #008080, #006666);
  color: #fff;
  padding: 12px 24px;
  font-size: 0.9rem;
  text-align: center;
  position: relative;
  z-index: 99;
  margin-top: 72px;
}
.seasonal-banner a { color: #fff; }

/* ── MOBILE SHOP CTA ─────────────────────────────────────── */
@media (max-width: 600px) {
  .nav-shop-cta { display: inline-flex !important; }
}

/* ── TRUST SIGNALS ───────────────────────────────────────── */
.trust-line {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 10px;
  flex-wrap: wrap;
}
.trust-line span { white-space: nowrap; }

/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 24px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.breadcrumb a { color: var(--color-accent); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; opacity: 0.5; }

/* ── QUIZ PAGE ───────────────────────────────────────────── */
.quiz-container { max-width: 640px; margin: 0 auto; padding: 0 24px; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-option {
  display: block;
  width: 100%;
  padding: 18px 24px;
  margin-bottom: 12px;
  border: 2px solid rgba(196,162,101,0.3);
  border-radius: 8px;
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}
.quiz-option:hover {
  border-color: var(--color-accent);
  background: rgba(196,162,101,0.05);
  transform: translateY(-1px);
}
.quiz-progress {
  height: 4px;
  background: var(--color-surface);
  border-radius: 2px;
  margin-bottom: 40px;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: var(--color-accent);
  transition: width 0.4s ease;
}
.quiz-result {
  text-align: center;
  padding: 40px 0;
}
.quiz-result img {
  max-width: 240px;
  margin: 0 auto 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

/* ── UPGRADED CTA STYLES ─────────────────────────────────── */

/* Amazon CTA — brand-colored button */
.amazon-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 32px;
  background: var(--color-accent, #9B7E4F) !important;
  color: #fff !important;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(155,126,79,0.25);
  position: relative;
  overflow: hidden;
}
.amazon-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(155,126,79,0.35);
  filter: brightness(1.1);
}
.amazon-cta:active {
  transform: translateY(0);
}
.amazon-cta-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 8px;
  margin-bottom: 24px;
}

/* Trust badges row */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 16px 0;
  margin-bottom: 24px;
  border-top: 1px solid var(--color-surface);
  border-bottom: 1px solid var(--color-surface);
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--color-text-muted);
  text-align: center;
}
.trust-badge-icon {
  font-size: 1.2rem;
}
@media (max-width: 960px) {
  .trust-badges { gap: 16px; }
  .trust-badge { font-size: 0.68rem; }
}

/* Social proof banner */
.social-proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--color-surface);
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: var(--color-text);
}
.social-proof-bar strong {
  color: var(--color-accent);
}

/* Sticky mobile CTA */
@media (max-width: 960px) {
  .sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .sticky-mobile-cta .amazon-cta {
    flex: 1;
    padding: 14px 20px;
    font-size: 0.95rem;
  }
  .sticky-mobile-cta .sticky-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
  }
  /* Add padding to body so sticky CTA doesn't overlap content */
  body:has(.sticky-mobile-cta) {
    padding-bottom: 80px;
  }
}
@media (min-width: 961px) {
  .sticky-mobile-cta { display: none; }
}

/* Accessibility: body text contrast fix */
.blog-article-body p,
.blog-article-body li,
.product-detail p,
.brand-card p,
.section-header p {
  color: #4A4A4A;
}

/* ── IMPRINT TRUST MARKS ──────────────────────────────────── */
.article-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #f7f5f0;
  border-radius: 12px;
  margin: 2.5rem 0;
}
.article-trust-logo {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}
/* Wellside Press */
.article-trust-logo.wsp, .article-trust-logo:not([class*="-"]) {
  background: #1A1A2E;
  color: #C4A265;
}
/* Cast & Cartridge Press */
.article-trust-logo.ccp {
  background: #2D4A2D;
  color: #D4A76A;
}
/* Daily Practice Press */
.article-trust-logo.dpp {
  background: #5C7A5C;
  color: #C9A8B0;
}
/* Blume Lifestyle Press */
.article-trust-logo.blp {
  background: #8B6B6B;
  color: #D4C5A0;
}
.article-trust-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #4a4a5a;
  line-height: 1.5;
}
.article-trust-text strong {
  color: #1A1A2E;
}

/* ── SHARE BUTTONS (inline in article) ───────────────────── */
.oc-share {
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;
  background: #f7f5f0;
  border-radius: 12px;
  border: 1px solid rgba(196, 162, 101, 0.2);
}
.oc-share__header { margin-bottom: 1rem; }
.oc-share__header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.2rem;
}
.oc-share__header p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0;
}
.oc-share__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.oc-share__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-primary);
  background: #fff;
  border: 1px solid #d6d3d1;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.oc-share__btn:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.oc-share__btn[data-share="pinterest"]:hover { background: #E60023; border-color: #E60023; color: #fff; }
.oc-share__btn[data-share="facebook"]:hover { background: #1877F2; border-color: #1877F2; color: #fff; }
.oc-share__btn[data-share="x"]:hover { background: #000; border-color: #000; color: #fff; }
.oc-share__btn[data-share="native"] { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.oc-share__btn[data-share="native"]:hover { background: #b08c4a; border-color: #b08c4a; }
.oc-share__status {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--color-accent);
  margin-top: 0.5rem;
  min-height: 1.2em;
}
@media (max-width: 640px) {
  .oc-share__buttons { flex-direction: column; }
  .oc-share__btn { width: 100%; text-align: center; }
}

/* ── PREFLIGHT FIXES ─────────────────────────────────────── */
button, a, [role="button"], .tab-btn, .gallery-arrow, .nav-hamburger,
.quiz-option, .filter-btn, summary { cursor: pointer; }

/* 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;
  }
}

/* Focus visible for keyboard nav */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* ── FOOTER SOCIAL LINKS ────────────────────────────────── */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin: 1rem 0;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: var(--color-accent);
}
