/* ═══════════════════════════════════════════
   TulOla Coal Jewelry — Design System
   Ultra-dark luxury theme with gold accents
   ═══════════════════════════════════════════ */

/* ─── CSS Custom Properties ─────────────── */
:root {
  /* Coal & Dark */
  --coal-deepest: #050505;
  --coal-deep: #0a0a0a;
  --coal-dark: #0f0f0f;
  --coal: #141414;
  --coal-medium: #1a1a1a;
  --coal-light: #222222;
  --coal-lighter: #2a2a2a;
  --coal-surface: #333333;
  --coal-muted: #444444;

  /* Gold & Accent */
  --gold: #c9a855;
  --gold-light: #d4b96a;
  --gold-bright: #e8cc6e;
  --gold-dim: #a08840;
  --gold-glow: rgba(201, 168, 85, 0.15);
  --gold-glow-strong: rgba(201, 168, 85, 0.3);

  /* Text */
  --text-primary: #f5f0e8;
  --text-secondary: #b0a898;
  --text-muted: #7a7060;
  --text-dim: #555046;

  /* Status */
  --success: #4ade80;
  --warning: #fbbf24;
  --danger: #f87171;
  --info: #60a5fa;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Outfit', sans-serif;

  /* Sizing */
  --container: 1400px;
  --container-narrow: 1100px;
  --header-height: 80px;
  --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.65, 0, 0.35, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 800ms;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 30px rgba(201, 168, 85, 0.15);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--coal-surface) var(--coal-deep);
}

body {
  font-family: var(--font-body);
  background: var(--coal-deep);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--coal-deep); }
::-webkit-scrollbar-thumb { background: var(--coal-surface); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dim); }

::selection { background: var(--gold); color: var(--coal-deepest); }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--duration-fast) var(--ease-out); }
a:hover { color: var(--gold-bright); }

/* ─── Typography ────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; font-family: var(--font-accent); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.85rem; color: var(--gold); }

.section-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

/* ─── Layout ────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 3rem);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 3rem);
}

.section {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.section-dark {
  background: var(--coal-dark);
}

/* ─── Custom Cursor ─────────────────────── */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
  mix-blend-mode: screen;
}

body:hover .cursor-glow {
  opacity: 1;
}


/* ─── Product Cards — 3D Hover ──────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  position: relative;
  background: var(--coal);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
  border: 1px solid transparent;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 85, 0.15);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* 3D tilt effect */
.product-card-3d {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
}

.product-card-3d:hover {
  transform: translateY(-6px) rotateX(2deg) rotateY(-2deg) scale(1.02);
  border-color: rgba(201, 168, 85, 0.2);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    0 0 40px rgba(201, 168, 85, 0.08),
    inset 0 1px 0 rgba(201, 168, 85, 0.1);
}

.product-card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--coal-dark);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--duration-slow) var(--ease-out);
}

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

.product-card-image .secondary-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.product-card:hover .product-card-image .secondary-image {
  opacity: 1;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--coal-deepest);
  font-family: var(--font-accent);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 2;
}

.product-actions {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--duration-normal) var(--ease-out);
  z-index: 2;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateY(0);
}

.product-action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 168, 85, 0.2);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration-fast);
}

.product-action-btn:hover {
  background: var(--gold);
  color: var(--coal-deepest);
}

.product-card-info {
  padding: 1.25rem;
}

.product-card-category {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.25rem;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-card-name a {
  color: inherit;
  text-decoration: none;
}

.product-card-name a:hover {
  color: var(--gold);
}

.product-card-price {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
}

.product-card-price .compare {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-left: 8px;
}

/* ─── Featured Grid (Magazine Layout) ───── */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.featured-grid .product-card:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.featured-grid .product-card:nth-child(1) .product-card-image {
  aspect-ratio: auto;
  height: 100%;
}

/* ─── Shop Filters ──────────────────────── */
.shop-header {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 2rem;
}

.shop-filters {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--coal-lighter);
}

.filter-tab {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  background: none;
  transition: all var(--duration-fast);
}

.filter-tab:hover { color: var(--text-primary); border-color: var(--coal-surface); }
.filter-tab.active {
  color: var(--coal-deepest);
  background: var(--gold);
  border-color: var(--gold);
}

.shop-sort {
  margin-left: auto;
}

.shop-sort select {
  background: var(--coal-light);
  color: var(--text-secondary);
  border: 1px solid var(--coal-surface);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  cursor: pointer;
}

/* ─── Product Detail ────────────────────── */
.product-detail {
  padding-top: calc(var(--header-height) + 2rem);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.product-gallery-main {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--coal-dark);
  margin-bottom: 1rem;
  cursor: zoom-in;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.product-gallery-main:hover img {
  transform: scale(1.1);
}

.product-gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
}

.product-gallery-thumb {
  width: 80px;
  height: 100px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--duration-fast);
  flex-shrink: 0;
}

.product-gallery-thumb.active,
.product-gallery-thumb:hover {
  border-color: var(--gold);
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 1rem 0;
}

.product-info .product-category {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.product-info .product-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.product-info .product-price {
  font-family: var(--font-accent);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.product-info .product-description {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* Product Options */
.product-options {
  margin-bottom: 2rem;
}

.option-group {
  margin-bottom: 1.5rem;
}

.option-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  display: block;
}

.option-select {
  width: 100%;
  padding: 12px 16px;
  background: var(--coal-light);
  border: 1px solid var(--coal-surface);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color var(--duration-fast);
}

.option-select:focus {
  outline: none;
  border-color: var(--gold);
}

.option-swatches {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.color-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--duration-fast);
  position: relative;
}

.color-swatch:hover, .color-swatch.active {
  border-color: var(--gold);
  transform: scale(1.15);
}

.color-swatch.active::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: white;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.option-radio-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.option-radio {
  padding: 10px 20px;
  border: 1px solid var(--coal-surface);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: all var(--duration-fast);
}

.option-radio:hover { border-color: var(--gold); color: var(--gold); }
.option-radio.active {
  background: var(--gold);
  color: var(--coal-deepest);
  border-color: var(--gold);
}

.product-meta {
  padding-top: 1.5rem;
  border-top: 1px solid var(--coal-lighter);
  margin-top: 1.5rem;
}

.product-meta-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.product-meta-item label {
  color: var(--text-muted);
  min-width: 100px;
}

/* ─── About Page ────────────────────────── */
.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  background: var(--coal-deepest);
  overflow: hidden;
}

/* Layer A: portrait — full strength, no global dimming */
.about-hero-bg {
  position: absolute;
  inset: -5%;
  z-index: 0;
  will-change: transform;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 24%;
  /* Rich but not washed — subtle warmth and contrast boost */
  filter: brightness(1.08) contrast(1.06) saturate(1.02);
}

/* Layer B: vertical readability gradient — dark top/bottom, lighter mid */
.about-hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(5, 5, 5, 0.86) 0%,
    rgba(5, 5, 5, 0.68) 24%,
    rgba(5, 5, 5, 0.34) 48%,
    rgba(5, 5, 5, 0.14) 66%,
    rgba(5, 5, 5, 0.2) 100%
  );
  pointer-events: none;
}

/* Layer C: radial spotlight behind text — opens center, protects readability */
.about-hero-spotlight {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(
    circle at 24% 48%,
    rgba(0, 0, 0, 0.03) 0%,
    rgba(0, 0, 0, 0.08) 30%,
    rgba(0, 0, 0, 0.26) 54%,
    rgba(0, 0, 0, 0.46) 78%
  );
  pointer-events: none;
}

/* Particles: already positioned absolute, no changes needed */
.about-hero .hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
}

/* Layer D: quote block — sits above all overlays */
.about-hero-quote {
  position: relative;
  z-index: 4;
  width: min(100%, 620px);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-primary);
  max-width: 620px;
  margin-left: clamp(2rem, 7vw, 6rem);
  padding: clamp(1.5rem, 2vw, 2rem) clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.65;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.68) 0%, rgba(5, 5, 5, 0.34) 70%, rgba(5, 5, 5, 0.12) 100%);
  border: 1px solid rgba(201, 168, 85, 0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  /* soft shadow so text reads over any image detail underneath */
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

.about-hero-quote cite {
  display: block;
  font-size: 0.9rem;
  font-style: normal;
  color: var(--gold);
  margin-top: 1.5rem;
  font-family: var(--font-accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
}

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

.about-image:hover img {
  transform: scale(1.05);
}

/* ─── Founder Section ──────────────────── */
.founder-section {
  overflow: hidden;
}

.founder-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.founder-image-wrap {
  position: relative;
}

.founder-image-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.founder-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 168, 85, 0.1);
  border-radius: var(--radius-md);
  pointer-events: none;
}

.founder-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease-out);
}

.founder-image-frame:hover img {
  transform: scale(1.06);
}

.founder-name {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.founder-story {
  color: var(--text-secondary);
  line-height: 2;
  font-size: 1.05rem;
  max-width: 480px;
}

/* ─── Editorial Section ────────────────── */
.editorial-section {
  position: relative;
  height: 85vh;
  min-height: 500px;
  overflow: hidden;
}

.editorial-image-wrap {
  position: absolute;
  inset: 0;
}

.editorial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.55) contrast(1.1) saturate(0.9);
  transition: transform 10s var(--ease-out);
  will-change: transform;
}

.editorial-section:hover .editorial-img {
  transform: scale(1.04);
}

.editorial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.7) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 5rem 2rem;
}

.editorial-text {
  text-align: center;
}

.editorial-tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  border: 1px solid rgba(201, 168, 85, 0.3);
  padding: 6px 20px;
  border-radius: 50px;
}

.editorial-text h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--text-primary);
}

/* ─── Lookbook Preview Grid ────────────── */
.lookbook-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 12px;
}

.lookbook-preview-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.lookbook-preview-tall {
  grid-row: span 2;
}

.lookbook-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.6s var(--ease-out);
  filter: brightness(0.85);
}

.lookbook-preview-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.lookbook-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.lookbook-preview-item:hover .lookbook-preview-overlay {
  opacity: 1;
}

.lookbook-preview-overlay span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 2rem 0;
  max-width: 680px;
  margin: 0 auto;
  --timeline-gap: 4.5rem;
}

.timeline::before {
  display: none;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 16px minmax(0, 1fr);
  align-items: start;
  gap: var(--timeline-gap);
  margin-bottom: 4rem;
  position: relative;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: calc(120px + var(--timeline-gap) + 8px);
  top: calc(1rem + 8px);
  bottom: -4rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(201, 168, 85, 0.75), rgba(201, 168, 85, 0.2));
  z-index: 0;
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  min-width: 120px;
  text-align: right;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--coal-deep);
  flex-shrink: 0;
  margin-top: 1rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(201, 168, 85, 0.4);
  justify-self: center;
}

.timeline-content {
  min-width: 0;
  width: min(100%, 400px);
  max-width: 400px;
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ─── Lookbook ──────────────────────────── */
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.lookbook-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.lookbook-item:nth-child(3n+1) { grid-row: span 2; }

.lookbook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.lookbook-item:hover img {
  transform: scale(1.05);
}

.lookbook-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
  opacity: 0;
  transition: opacity var(--duration-normal);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.lookbook-item:hover .lookbook-item-overlay { opacity: 1; }

.lookbook-item-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-primary);
}

/* ─── Contact ───────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  display: block;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 16px;
  background: var(--coal-light);
  border: 1px solid var(--coal-surface);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--duration-fast);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--gold);
}

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

/* ─── Cart ──────────────────────────────── */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: var(--coal-dark);
  border-left: 1px solid var(--coal-lighter);
  z-index: 2000;
  transition: right var(--duration-normal) var(--ease-out);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open { right: 0; }

.cart-sidebar-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--coal-lighter);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-sidebar-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.cart-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--duration-fast);
}

.cart-close:hover { color: var(--text-primary); }

.cart-sidebar-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-sidebar-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--coal-lighter);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal);
}

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

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--coal-lighter);
}

.cart-item-image {
  width: 70px;
  height: 90px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info { flex: 1; }

.cart-item-name {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.cart-item-price {
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 0.9rem;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0.5rem;
}

.cart-item-qty button {
  width: 28px;
  height: 28px;
  background: var(--coal-light);
  border: 1px solid var(--coal-surface);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast);
}

.cart-item-qty button:hover {
  background: var(--gold);
  color: var(--coal-deepest);
  border-color: var(--gold);
}

/* ─── Checkout ──────────────────────────── */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.checkout-summary {
  background: var(--coal);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--coal-lighter);
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--coal-lighter);
  margin-top: 1rem;
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 600;
}

.checkout-total .total-amount { color: var(--gold); }

/* Payment Methods */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--coal-light);
  border: 1px solid var(--coal-surface);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--duration-fast);
}

.payment-method:hover, .payment-method.active {
  border-color: var(--gold);
}

.payment-method input[type="radio"] {
  accent-color: var(--gold);
}

.payment-method-info {
  flex: 1;
}

.payment-method-name {
  font-family: var(--font-accent);
  font-weight: 500;
  font-size: 0.9rem;
}

.payment-method-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Kaspi Pay Button */
.kaspi-btn {
  background: #FF4747;
  color: white;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px;
  border: none;
  border-radius: var(--radius-sm);
  width: 100%;
  cursor: pointer;
  transition: all var(--duration-fast);
  letter-spacing: 0.05em;
}

.kaspi-btn:hover {
  background: #e63c3c;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 71, 71, 0.3);
}

/* ─── Instagram Section ─────────────────── */
.instagram-section {
  text-align: center;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 4px;
  margin-top: 2rem;
}

.instagram-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-normal) var(--ease-out);
}

.instagram-item:hover img {
  transform: scale(1.1);
}

/* ─── Testimonials ──────────────────────── */
.testimonials-slider {
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform var(--duration-slow) var(--ease-out);
}

.testimonial-card {
  min-width: 100%;
  padding: 3rem;
  text-align: center;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── Newsletter ────────────────────────── */
.newsletter {
  text-align: center;
  background: linear-gradient(135deg, var(--coal-dark) 0%, var(--coal) 100%);
  border: 1px solid var(--coal-lighter);
  border-radius: var(--radius-lg);
  padding: 4rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 500px;
  margin: 1.5rem auto 0;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 16px;
  background: var(--coal-light);
  border: 1px solid var(--coal-surface);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
}

/* ─── Awards Banner ─────────────────────── */
/* ─── Credentials Strip — Luxury Brand Authority ─── */
.credentials {
  border-top: 1px solid rgba(201, 168, 85, 0.14);
  border-bottom: 1px solid rgba(201, 168, 85, 0.14);
  padding: 72px 0;
  min-height: 220px;
  display: flex;
  align-items: center;
}

.credentials__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  width: 100%;
}

/* Credential item */
.credential {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0 2.5rem;
  text-align: center;
  position: relative;
  cursor: default;
}

/* Vertical dividers between items */
.credential + .credential::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: rgba(201, 168, 85, 0.28);
}

/* Primary line */
.credential__title {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.3;
  transition: transform 0.25s ease, color 0.25s ease;
}

/* Secondary line */
.credential__meta {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  line-height: 1.3;
  text-transform: uppercase;
}

/* Hover */
.credential:hover .credential__title {
  transform: translateY(-2px);
  color: var(--gold-light);
}
@media (max-width: 768px) {
  .cursor-glow { display: none; }
}

/* ─── Header / Navigation ───────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(201, 168, 85, 0.08);
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.98);
  border-bottom-color: rgba(201, 168, 85, 0.15);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ─── Brand Logo — Single Source of Truth ─── */
/* Used in: header nav, hero section, footer */
.brand-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  gap: 0;
}

/* Wordmark: applies to all variants */
.brand-logo__wordmark {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: none;
  color: var(--text-primary);
  text-decoration: none;   /* removes underline from <a> variants */
}

/* Tagline: applies to all variants when shown */
.brand-logo__tagline {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Variant: header ── */
.brand-logo--header .brand-logo__wordmark {
  font-size: 1.75rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: none;
  line-height: 1;
}

.brand-logo--header .brand-logo__wordmark em {
  font-style: italic;
  color: var(--gold);
}

/* ── Variant: hero ── */
.brand-logo--hero {
  display: block;         /* override column flex — behaves like h1 */
  text-decoration: none;
}

.brand-logo--hero .brand-logo__wordmark {
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 300;      /* lighter for dramatic hero display */
  letter-spacing: 0.02em; /* tighter than nav — luxury editorial feel */
  text-transform: none;   /* lowercase: TulOla */
  line-height: 0.88;
  color: var(--text-primary);
}

.brand-logo--hero .brand-logo__wordmark em {
  font-style: italic;
  color: var(--gold);   /* Ola in gold — brand accent */
}

/* ── Variant: footer ── */
.brand-logo--footer {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
}

.brand-logo--footer .brand-logo__wordmark {
  font-size: 1.5rem;    /* slightly smaller than header — balanced in footer */
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  text-transform: none;
  text-decoration: none;
  color: var(--text-primary);
}

.brand-logo--footer .brand-logo__wordmark em {
  font-style: italic;
  color: var(--gold);
}

.brand-logo--footer:hover .brand-logo__wordmark {
  color: var(--gold-light);  /* subtle lift on hover */
}

/* ─── Legacy aliases (backward compat) ─── */
/* .nav-logo and .logo-text / .logo-sub kept as fallbacks */
.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  gap: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.logo-sub {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color var(--duration-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--duration-normal) var(--ease-out);
}

.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lang-switcher, .currency-switcher {
  display: flex;
  gap: 2px;
  background: var(--coal-light);
  border-radius: var(--radius-sm);
  padding: 2px;
}

.lang-btn, .curr-btn {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  border-radius: 3px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--duration-fast);
}

.lang-btn.active, .curr-btn.active {
  background: var(--gold);
  color: var(--coal-deepest);
}

.lang-btn:hover, .curr-btn:hover { color: var(--text-primary); }

.nav-cart {
  position: relative;
  color: var(--text-secondary);
  transition: color var(--duration-fast);
  display: flex;
  align-items: center;
}

.nav-cart:hover { color: var(--gold); }

.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--gold);
  color: var(--coal-deepest);
  font-family: var(--font-accent);
  font-size: 0.6rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-count:empty, .cart-count[data-count="0"] { display: none; }

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1001;
  flex-shrink: 0;
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--gold);
  transition: all var(--duration-fast);
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.mobile-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ═══════════════════════════════════════════════════════
   HERO — Layered Overlay System
   Stacking: image → gradient → vignette → glow → grain → content
   ═══════════════════════════════════════════════════════ */

/* ─── Base Hero ──────────────────────────── */
.hero {
  position: relative;
  width: 100vw;
  min-height: 100svh;
  margin-left: calc(50% - 50vw);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--coal-deepest);
}

/* ─── Layer A: Founder Image ─────────────── */
/* Full-bleed image rendered at full strength — no global fade */
.hero-bg {
  position: absolute;
  inset: -5%;          /* slight oversize so parallax has room */
  z-index: 1;
  will-change: transform;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Crop: show face — mobile needs more face visible */
  object-position: center 28%;
  /* Rich image — contrast up, brightness gently tuned, saturation slightly boosted */
  filter: brightness(0.98) contrast(1.06) saturate(1.03);
  transition: transform 0.1s linear;  /* parallax only, no slow hover drift */
}

/* ─── Layer B: Directional Readability Gradient ─── */
/* Darker left (text side) → lighter center (face) → darker right (edge) */
.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.56) 0%,
    rgba(0, 0, 0, 0.24) 38%,
    rgba(0, 0, 0, 0.05) 65%,
    transparent 100%
  );
  pointer-events: none;
}

/* ─── Layer C: Vignette — removed (was washing out image) ── */
.hero-vignette {
  display: none;
}

/* ─── Layer D: Atmospheric Gold Glow ─────── */
.hero-glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 85, 0.04) 0%,
    transparent 65%
  );
  z-index: 3;
  pointer-events: none;
  filter: blur(80px);
}

/* ─── Layer E: Film Grain ─────────────────── */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0.032;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ─── Layer F: Coal Particles ─────────────── */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 5;
}

/* ─── Layer G: Content Block ───────────────── */
.hero-content {
  position: relative;
  z-index: 6;
  width: 100%;
  padding: 0;
  padding-top: var(--header-height);
  padding-left: clamp(1.5rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 100svh;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.hero-content-inner {
  max-width: 460px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ─── Text Elements ─────────────────────────── */
.hero-label {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.hero-title {
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 0.88;
  margin-bottom: 0.5rem;
}

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

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.8vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 240, 232, 0.80);
  margin-bottom: 2.25rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* CTA button in hero — slightly brighter than default */
.hero-actions .btn-primary {
  box-shadow: 0 4px 24px rgba(201, 168, 85, 0.22);
}

.hero-actions .btn-primary:hover {
  box-shadow: 0 8px 36px rgba(201, 168, 85, 0.38);
}

/* ─── Scroll Indicator ─────────────────────── */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  color: var(--gold);
  opacity: 0;
  animation:
    heroFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) 1.4s forwards,
    float 3s ease-in-out 2.4s infinite;
}


/* ─── Mobile adjustments ───────────────────── */
@media (max-width: 768px) {
  .hero {
    min-height: 100dvh;
  }

  .hero-content {
    padding: calc(64px + 2.5rem) 1.25rem 3.5rem 1.25rem;
    align-items: center;
    text-align: center;
    justify-content: flex-end;
  }

  .hero-content-inner {
    align-items: center;
    max-width: min(290px, calc(100vw - 2.5rem));
    padding-top: 0;
    overflow: visible;
  }

  .brand-logo--hero .brand-logo__wordmark {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
    word-break: break-word;
    white-space: nowrap;
  }

  .hero-gradient {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(0, 0, 0, 0.10) 18%,
      rgba(0, 0, 0, 0.22) 40%,
      rgba(0, 0, 0, 0.58) 72%,
      rgba(0, 0, 0, 0.78) 100%
    );
  }

  .hero-bg {
    inset: 0;
  }

  .hero-bg img {
    object-position: 56% 22%;
  }

  .hero-label {
    margin-bottom: 0.6rem;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
  }

  .hero-title {
    font-size: clamp(2.7rem, 13vw, 3.8rem);
    margin-bottom: 0.35rem;
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 3.5vw, 1.05rem);
    margin-bottom: 1.6rem;
    max-width: 14ch;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
  }

  .hero-actions .btn-lg {
    padding: 15px 28px;
    font-size: 0.75rem;
    width: auto;
    min-width: 190px;
    max-width: none;
  }

  .hero-scroll {
    bottom: 1.5rem;
  }
}

/* ─── Buttons ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--coal-deepest);
}

.btn-primary:hover {
  background: var(--gold-bright);
  color: var(--coal-deepest);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--coal-deepest);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--coal-surface);
}

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

.btn-full { width: 100%; }

.btn-sm { padding: 10px 20px; font-size: 0.7rem; }
.btn-lg { padding: 18px 48px; font-size: 0.85rem; }

/* Tablet: 2-column grid */
@media (max-width: 900px) {
  .credentials__list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2.5rem;
  }

  .credential + .credential::before {
    display: none;
  }

  .credential:nth-child(odd) {
    border-right: 1px solid rgba(201, 168, 85, 0.14);
  }
}

/* Mobile: stacked */
@media (max-width: 540px) {
  .credentials {
    padding: 56px 0;
    min-height: unset;
  }

  .credentials__list {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .credential {
    padding: 1.5rem 2rem;
  }

  .credential + .credential::before {
    display: none;
  }

  .credential + .credential {
    border-top: 1px solid rgba(201, 168, 85, 0.1);
  }

  .credential__title {
    font-size: 0.75rem;
  }

  .credential__meta {
    font-size: 0.7rem;
  }
}


/* ─── Page Headers ──────────────────────── */
.page-header {
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 3rem;
  text-align: center;
  position: relative;
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ─── Success / Alert Messages ──────────── */
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.alert-success {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: var(--success);
}

/* ─── 404 / Error Pages ─────────────────── */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.error-page h1 {
  font-size: 8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}

/* ─── Animations ────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Scroll reveal — initial hidden state (JS drives the revealed state) */
.reveal {
  will-change: opacity, transform;
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ─── Motion: editorial section ─────────── */
.editorial-img {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ─── Motion: lookbook items ─────────────── */
.lookbook-preview-item img,
.lookbook-item img {
  will-change: transform, filter;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.45s ease;
}

/* ─── Motion: product card 3D ────────────── */
.product-card-3d {
  will-change: transform, box-shadow;
}

/* ─── Motion: product card image ─────────── */
.product-card-image img {
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Motion: founder image ──────────────── */
.founder-image-frame {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ─── Motion: hero content ───────────────── */
.hero-content {
  will-change: transform, opacity;
}

/* ─── Motion: hero bg ────────────────────── */
.hero-bg {
  will-change: transform;
}

/* ─── Motion: hero vignette ──────────────── */
.hero-vignette {
  will-change: opacity;
  transition: opacity 0.1s linear;
}

/* ─── Motion: page transition overlay ─────── */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  background: #050505;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Motion: about text blocks ───────────── */
.about-split > div:not(.about-image) {
  will-change: opacity, transform;
}

/* ─── Motion: awards banner ──────────────── */
.awards-banner {
  will-change: opacity, transform;
}

/* ─── Motion: newsletter ───────────────────── */
.newsletter {
  will-change: opacity, transform;
}

/* ─── Motion: timeline ────────────────────── */
.timeline-year {
  will-change: opacity, transform;
}

.timeline-dot {
  will-change: opacity, transform;
}

.timeline-content {
  will-change: opacity, transform;
}

/* ─── Motion: page header ─────────────────── */
.page-header {
  will-change: opacity, transform;
}

/* ─── Motion: editorial text ──────────────── */
.editorial-text {
  will-change: opacity, transform;
}

/* ─── Lightbox ──────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

/* ─── Horizontal Scroll Strip ───────────── */
.scroll-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scroll-strip::-webkit-scrollbar { display: none; }

.scroll-strip-item {
  min-width: 300px;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  scroll-snap-align: start;
  flex-shrink: 0;
  position: relative;
}

.scroll-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.scroll-strip-item:hover img {
  transform: scale(1.05);
}

/* ─── Responsive ────────────────────────── */
@media (max-width: 1024px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-grid .product-card:nth-child(1) {
    grid-column: auto;
    grid-row: auto;
  }
  .product-detail-grid,
  .about-split,
  .contact-grid,
  .checkout-grid,
  .founder-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .product-gallery { position: static; }
  .timeline::before { left: 20px; }
  .timeline-item {
    grid-template-columns: 16px minmax(0, 1fr);
    grid-template-areas:
      "dot year"
      "dot content";
    column-gap: 1rem;
    row-gap: 0.5rem;
    margin-bottom: 3rem;
  }
  .timeline-item::after {
    left: 8px;
    top: 1.1rem;
    bottom: -3rem;
  }
  .timeline-year {
    grid-area: year;
    text-align: left;
    min-width: 0;
    font-size: 2.25rem;
    line-height: 1;
  }
  .timeline-dot {
    grid-area: dot;
    position: relative;
    left: auto;
    top: auto;
    margin-top: 0.25rem;
  }
  .timeline-content {
    grid-area: content;
    width: 100%;
    max-width: none;
  }
  .timeline-content h3,
  .timeline-content p {
    overflow-wrap: normal;
    word-break: normal;
  }
  .lookbook-preview-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 220px 220px;
  }
  .editorial-section { height: 60vh; }
}

@media (max-width: 640px) {
  .timeline {
    padding: 1rem 0;
  }
  .timeline-year {
    font-size: 1.9rem;
  }
  .timeline-content h3 {
    font-size: 1.15rem;
  }
  .timeline-content p {
    font-size: 1rem;
    line-height: 1.7;
  }
}

/* ─── Mobile Navigation Overlay ────────────────────────────── */

/* Base: hidden on desktop — removed from layout entirely */
.mobile-nav {
  display: none;
}

@media (max-width: 900px) {
  :root {
    --header-height: 64px;
  }

  /* Mobile header: fully opaque */
  .site-header {
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    height: 64px;
  }

  .nav-container {
    padding: 0 1rem 0 1.15rem;
    align-items: center;
  }

  /* Mobile: keep logo readable and inside safe area */
  .brand-logo--header {
    align-items: flex-start;
    max-width: calc(100vw - 84px);
    overflow: hidden;
  }

  .brand-logo--header .brand-logo__wordmark {
    font-size: 1.15rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }

  .brand-logo--header .brand-logo__tagline {
    font-size: 0.48rem;
    letter-spacing: 0.18em;
    white-space: nowrap;
  }

  .mobile-toggle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ── Mobile Nav Overlay — fullscreen centered ── */
  .mobile-nav {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: #080808;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .mobile-nav.open {
    opacity: 1;
    visibility: visible;
  }

  /* ── Top bar: logo left, close right ── */
  .mobile-nav__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(201, 168, 85, 0.1);
    flex-shrink: 0;
  }

  .mobile-nav__topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .mobile-nav__close {
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    color: rgba(245, 240, 232, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    border-radius: 50%;
  }

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

  /* ── Center: nav links ── */
  .mobile-nav__links {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    min-height: 0;
  }

  .mobile-nav__links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
  }

  .mobile-nav__link {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 6vw, 1.75rem);
    font-weight: 300;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.65);
    text-decoration: none;
    text-align: center;
    padding: 0.85rem 1rem;
    width: 100%;
    transition: color 0.25s ease, transform 0.25s ease;
    opacity: 0;
    transform: translateY(18px);
    position: relative;
  }

  .mobile-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0.45rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-nav__link:hover {
    color: rgba(245, 240, 232, 0.9);
    transform: translateY(0);
  }

  .mobile-nav__link.active {
    color: var(--gold);
    transform: translateY(0);
  }

  .mobile-nav__link:hover::after,
  .mobile-nav__link.active::after {
    width: 40%;
  }

  /* ── Bottom: language switcher ── */
  .mobile-nav__bottom {
    padding: 1.25rem 1.5rem 2rem;
    border-top: 1px solid rgba(201, 168, 85, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
  }

  .mobile-nav__lang {
    display: flex;
    gap: 0.5rem;
  }

  .mobile-nav__lang a {
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.10em;
    color: rgba(245, 240, 232, 0.45);
    text-decoration: none;
    padding: 5px 12px;
    border: 1px solid rgba(201, 168, 85, 0.18);
    border-radius: 2px;
    transition: all 0.2s ease;
  }

  .mobile-nav__lang a:hover,
  .mobile-nav__lang a.active {
    color: var(--coal-deepest);
    background: var(--gold);
    border-color: var(--gold);
  }

  .mobile-nav__tagline {
    font-family: var(--font-accent);
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.22);
    text-align: center;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

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

  .lookbook-item:nth-child(3n+1) { grid-row: auto; }

  .awards-banner { gap: 2rem; }

  .newsletter { padding: 2rem; }

  .newsletter-form { flex-direction: column; }

  .cart-sidebar { width: 100%; right: -100%; }

  .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); }
  .lookbook-preview-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 180px 180px 180px;
  }
  .lookbook-preview-tall { grid-row: span 1; }
  .editorial-section { height: 50vh; }
  .founder-name { font-size: 2.5rem; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand { grid-column: 1 / -1; }

  .lang-switcher, .currency-switcher { display: none; }

  /* Hide desktop nav-actions on mobile — all controls duplicated in .mobile-nav */
  .nav-actions {
    display: none;
  }

  /* ── Shop page ── */
  .shop-header {
    padding-top: calc(64px + 1.5rem);
    padding-bottom: 1rem;
  }

  .shop-filters {
    gap: 0.5rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .shop-filters::-webkit-scrollbar { display: none; }

  /* ── Product detail ── */
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-gallery {
    position: static;
  }

  .product-gallery-main {
    aspect-ratio: 1/1;
  }

  .product-gallery-thumbs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .product-gallery-thumb {
    width: 60px;
    height: 75px;
    flex-shrink: 0;
  }

  .product-info {
    padding: 0;
  }

  .product-info .product-title {
    font-size: 1.5rem;
  }

  .product-info .product-price {
    font-size: 1.1rem;
  }

  .product-info .product-description {
    font-size: 0.9rem;
  }

  /* ── Page headers ── */
  .page-header {
    padding-top: calc(64px + 2rem);
    padding-bottom: 2rem;
  }

  .page-header h1 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .page-header p {
    font-size: 0.9rem;
  }

  /* ── Section labels ── */
  .section-label {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
  }

  /* ── Forms ── */
  .form-input,
  .form-textarea,
  .form-select {
    width: 100%;
    font-size: 0.95rem;
    padding: 12px 16px;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-label {
    font-size: 0.75rem;
  }

  /* ── Contact page ── */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* ── About hero (internal pages) ── */
  .about-hero {
    min-height: 50vh;
  }

  /* ── Founder section ── */
  .founder-split {
    gap: 1.5rem;
  }

  .founder-image-wrap {
    order: -1;
  }

  .founder-image-frame {
    max-height: 300px;
  }

  .founder-name {
    font-size: 1.8rem;
  }

  .founder-story {
    font-size: 0.95rem;
  }

  /* ── Cart page ── */
  .cart-page-item {
    gap: 1rem;
  }

  .cart-page-item-image {
    width: 80px;
    height: 100px;
  }

  .cart-page-item-info h3 {
    font-size: 1rem;
  }

  .cart-page-summary {
    padding: 1.5rem 0;
  }

  .cart-page-summary > div > div:last-child {
    font-size: 1.25rem;
  }

  /* ── Checkout ── */
  .checkout-grid {
    gap: 2rem;
  }

  .checkout-summary {
    padding: 1.5rem;
  }

  .checkout-summary h3 {
    font-size: 1.2rem;
  }

  /* ── Contact ── */
  .contact-info-card {
    padding: 1.5rem;
  }

  .contact-info-list {
    gap: 1rem;
  }

  .contact-info-row {
    gap: 0.75rem;
  }

  .contact-info-icon {
    width: 38px;
    height: 38px;
  }

  .contact-quick-links {
    gap: 0.5rem;
  }

  /* ── Editorial variants ── */
  .editorial-section--short {
    height: 45vh;
    min-height: 300px;
  }

  /* ── About page ── */
  .about-split[style*="direction: rtl"] {
    direction: ltr;
  }

  .about-split[style*="direction: rtl"] > * {
    direction: ltr;
  }

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

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* Hero typography — tighter on very small screens */
  .hero-title {
    font-size: clamp(2.2rem, 14vw, 3.5rem);
  }

  .brand-logo--hero .brand-logo__wordmark {
    font-size: clamp(2rem, 12vw, 3rem);
    white-space: nowrap;
  }

  .hero-subtitle {
    font-size: clamp(0.8rem, 4vw, 1rem);
  }

  /* Featured grid — single column */
  .featured-grid {
    grid-template-columns: 1fr;
  }

  /* Newsletter — tighter */
  .newsletter {
    padding: 1.5rem;
  }

  /* Product detail info */
  .product-info .product-title {
    font-size: 1.3rem;
  }

  .product-info .product-price {
    font-size: 1rem;
  }

  /* Founder name */
  .founder-name {
    font-size: 1.6rem;
  }

  /* Lookbook grid */
  .lookbook-grid {
    grid-template-columns: 1fr;
  }

  /* Editorial section */
  .editorial-section {
    height: 40vh;
  }

  /* Page header */
  .page-header h1 {
    font-size: 1.6rem;
  }

  /* Footer */
  .footer-top {
    padding: 2.5rem 0 2rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .footer-bottom {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  /* Mobile nav — tighter */
  .mobile-nav__link {
    font-size: clamp(1.2rem, 5.5vw, 1.5rem);
  }

  /* Checkbox inputs and such */
  input[type="checkbox"] {
    width: 18px;
    height: 18px;
  }

  /* Form inputs — full width */
  .form-input,
  .form-textarea,
  .form-select {
    padding: 10px 14px;
    font-size: 16px; /* Prevents iOS zoom */
  }

  /* Cart page — single column */
  .cart-page-item {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cart-page-item-image {
    width: 100%;
    height: 200px;
  }

  .cart-page-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cart-page-summary .btn {
    width: 100%;
  }

  /* Form rows — stack on very small screens */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Contact info card */
  .contact-info-card {
    padding: 1.25rem;
  }

  .contact-info-icon {
    width: 34px;
    height: 34px;
  }

  /* Editorial short variant */
  .editorial-section--short {
    height: 35vh;
    min-height: 250px;
  }
}
}

/* ─── Cart Page ─────────────────────────── */
.cart-page-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--coal-lighter);
  align-items: flex-start;
}

.cart-page-item-image {
  width: 100px;
  height: 130px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.cart-page-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-page-item-info {
  flex: 1;
}

.cart-page-item-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.cart-page-item-options {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.cart-page-item-price {
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.cart-page-qty {
  min-width: 30px;
  text-align: center;
  display: inline-block;
}

.cart-page-remove {
  margin-left: auto;
  background: transparent;
  border-color: var(--danger);
  color: var(--danger);
}

.cart-page-summary {
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── Form Layout ───────────────────────── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ─── Checkout Summary ────────────────────── */
.checkout-summary h3 {
  margin-bottom: 1.5rem;
}

.checkout-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--coal-lighter);
  font-size: 0.9rem;
  gap: 1rem;
}

.checkout-summary-item-info {
  flex: 1;
}

.checkout-summary-item-qty {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.checkout-summary-item-price {
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── Contact Info Card ─────────────────── */
.contact-info-card {
  background: var(--coal);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--coal-lighter);
  margin-bottom: 2rem;
}

.contact-info-card h3 {
  margin-bottom: 1.5rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--coal-light);
  border: 1px solid var(--coal-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-accent);
}

.contact-info-row a,
.contact-info-row span {
  color: var(--text-primary);
  overflow-wrap: anywhere;
}

.contact-quick-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ─── Editorial Section Variants ────────── */
.editorial-section--short {
  height: 55vh;
  min-height: 400px;
}

.editorial-overlay--side {
  align-items: center;
  background: linear-gradient(90deg, rgba(5,5,5,0.7) 0%, rgba(5,5,5,0.2) 60%, transparent 100%);
}

/* ─── Footer Styles ─────────────────────── */
.site-footer {
  background: var(--coal-deepest);
  border-top: 1px solid var(--coal-lighter);
}

.footer-top {
  padding: 4rem 0 3rem;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--coal-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--duration-fast);
}

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

.footer-col h4 {
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  overflow-wrap: anywhere;
}

.footer-col ul li a {
  color: var(--text-muted);
  transition: color var(--duration-fast);
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  padding: 1.5rem 0;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(1rem, 3vw, 3rem);
  padding-right: clamp(1rem, 3vw, 3rem);
  border-top: 1px solid var(--coal-lighter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-credit {
  font-family: var(--font-accent);
  letter-spacing: 0.05em;
  overflow-wrap: anywhere;
}

/* ─── Misc Utilities ────────────────────── */
/* Responsive hardening */
.nav-container,
.about-split,
.founder-split,
.product-detail-grid,
.contact-grid,
.checkout-grid,
.footer-grid,
.cart-page-item,
.checkout-summary-item,
.timeline-item,
.product-meta-item {
  min-width: 0;
}

.product-info,
.cart-page-item-info,
.checkout-summary-item-info,
.contact-info-row > div,
.footer-brand,
.footer-col,
.timeline-content {
  min-width: 0;
}

.cart-page-item-info h3,
.checkout-summary-item-info,
.product-card-name,
.product-card-name a,
.footer-col ul li,
.footer-credit {
  overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
  .nav-container {
    gap: 1rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .nav-actions {
    gap: 0.75rem;
  }

  .lang-btn,
  .curr-btn {
    padding: 4px 6px;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .cart-page-item {
    gap: 1rem;
  }

  .cart-page-item-image {
    width: 80px;
    height: 100px;
  }

  .cart-page-item-info h3 {
    font-size: 1rem;
  }

  .cart-page-summary {
    padding: 1.5rem 0;
  }

  .checkout-grid {
    gap: 2rem;
  }

  .checkout-summary {
    padding: 1.5rem;
  }

  .checkout-summary h3 {
    font-size: 1.2rem;
  }

  .contact-info-card {
    padding: 1.5rem;
  }

  .contact-info-list {
    gap: 1rem;
  }

  .contact-info-row {
    gap: 0.75rem;
  }

  .contact-info-icon {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 600px) {
  .about-hero-quote {
    width: auto;
    margin-left: 0;
    padding: 0 1.25rem;
    font-size: clamp(1.1rem, 6vw, 1.6rem);
    line-height: 1.5;
    background: none;
    border: 0;
    border-radius: 0;
    backdrop-filter: none;
  }

  .product-meta-item {
    flex-direction: column;
    gap: 0.25rem;
  }

  .product-meta-item label {
    min-width: 0;
  }

  .checkout-summary-item {
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    padding: 2.5rem 0 2rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .footer-bottom {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .cart-page-item {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cart-page-item-image {
    width: 100%;
    height: 200px;
  }

  .cart-page-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cart-page-summary .btn {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    padding: 1.25rem;
  }

  .contact-info-icon {
    width: 34px;
    height: 34px;
  }
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.grid { display: grid; }

@media (max-width: 640px) {
  .timeline {
    max-width: none !important;
  }

  .timeline-item::after {
    display: none !important;
  }

  .timeline-item {
    display: block !important;
    margin-bottom: 2.75rem !important;
    padding-left: 2.75rem !important;
  }

  .timeline-dot {
    position: absolute !important;
    left: 0 !important;
    top: 0.55rem !important;
    margin-top: 0 !important;
  }

  .timeline-year {
    display: block !important;
    min-width: 0 !important;
    margin-bottom: 0.85rem !important;
    text-align: left !important;
  }

  .timeline-content {
    width: 100% !important;
    max-width: none !important;
  }

  .timeline-content h3,
  .timeline-content p {
    max-width: none !important;
  }
}
