/* ============================================================
   BRASS & HISTORY — Collectible Casings & Military Memorabilia
   Design System: Industrial Heritage / Premium Collector Aesthetic
   Fonts: Playfair Display (display) + DM Sans (body)
   Palette: Deep Charcoal, Brass Gold, Olive Drab, Steel Blue, Off-White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&family=DM+Mono:wght@400;500&display=swap');

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  /* Colors */
  --ink:        #1a1a18;
  --charcoal:   #252520;
  --gunmetal:   #3a3a32;
  --olive:      #5c5c3d;
  --olive-lt:   #7d7d56;
  --brass:      #b8933a;
  --brass-lt:   #d4aa55;
  --brass-pale: #f0d98a;
  --steel:      #6b7c8d;
  --steel-lt:   #94a8b8;
  --cream:      #f5f0e8;
  --off-white:  #faf7f2;
  --warm-gray:  #c8c0b0;
  --mid-gray:   #8a8070;
  --red-accent: #8b2020;
  --success:    #3a6b3a;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  /* Spacing scale */
  --sp-1: 4px;  --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px;  --sp-8: 32px;  --sp-10: 40px;
  --sp-12: 48px;--sp-16: 64px; --sp-20: 80px; --sp-24: 96px;

  /* Radius */
  --r-sm: 3px; --r-md: 6px; --r-lg: 12px; --r-xl: 20px;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(0,0,0,.18);
  --shadow-md:  0 4px 20px rgba(0,0,0,.25);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.35);
  --shadow-brass: 0 4px 24px rgba(184,147,58,.20);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 150ms; --t-base: 250ms; --t-slow: 400ms;

  /* Layout */
  --max-width: 1280px;
  --header-h: 72px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--off-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

/* ─── Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.18;
  color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--gunmetal); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass);
}

/* ─── Layout Utilities ──────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
@media (max-width: 640px) { .container { padding: 0 var(--sp-4); } }

.section { padding: var(--sp-20) 0; }
.section--dark { background: var(--charcoal); color: var(--cream); }
.section--dark h1,.section--dark h2,.section--dark h3,.section--dark h4 { color: var(--cream); }
.section--dark p { color: var(--warm-gray); }
.section--olive { background: var(--olive); color: var(--cream); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-6); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.text-center { text-align: center; }
.text-brass { color: var(--brass); }
.mt-2 { margin-top: var(--sp-2); }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-8 { margin-bottom: var(--sp-8); }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: var(--r-sm);
  transition: all var(--t-base) var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--brass);
  color: var(--ink);
  border: 2px solid var(--brass);
  box-shadow: var(--shadow-brass);
}
.btn--primary:hover {
  background: var(--brass-lt);
  border-color: var(--brass-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184,147,58,.30);
}
.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(255,255,255,.35);
}
.btn--outline:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--brass);
  color: var(--brass-pale);
}
.btn--outline-dark {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}
.btn--outline-dark:hover {
  background: var(--charcoal);
  color: var(--cream);
}
.btn--sm { padding: 8px 18px; font-size: 0.82rem; }
.btn--lg { padding: 16px 36px; font-size: 0.95rem; }
.btn--full { width: 100%; justify-content: center; }
.btn--danger { background: var(--red-accent); color: #fff; border: 2px solid var(--red-accent); }
.btn--danger:hover { background: #6e1a1a; border-color: #6e1a1a; }

/* ─── Tag / Badge ───────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 2px;
}
.badge--brass { background: var(--brass); color: var(--ink); }
.badge--olive { background: var(--olive); color: var(--cream); }
.badge--steel { background: var(--steel); color: var(--cream); }
.badge--red   { background: var(--red-accent); color: #fff; }
.badge--sale  { background: var(--red-accent); color: #fff; }
.badge--new   { background: var(--brass); color: var(--ink); }
.badge--rare  { background: linear-gradient(135deg, #6d4700, var(--brass-lt)); color: var(--ink); }

/* ─── Divider ───────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
  border: none;
  margin: var(--sp-8) 0;
}
.divider--subtle {
  background: linear-gradient(90deg, transparent, var(--warm-gray), transparent);
  opacity: .4;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HEADER / NAVIGATION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(26,26,24,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,147,58,.18);
  transition: box-shadow var(--t-base) var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--sp-6);
}
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brass-lt);
  letter-spacing: .02em;
}
.logo-sub {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-top: 1px;
}

.site-nav { display: flex; align-items: center; gap: var(--sp-1); }
.site-nav a {
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--warm-gray);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; transform: translateX(-50%);
  height: 2px; width: 0;
  background: var(--brass);
  border-radius: 1px;
  transition: width var(--t-base) var(--ease);
}
.site-nav a:hover { color: var(--cream); }
.site-nav a:hover::after { width: calc(100% - 28px); }
.site-nav a.active { color: var(--brass-lt); }
.site-nav a.active::after { width: calc(100% - 28px); }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  color: var(--warm-gray);
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
}
.icon-btn:hover { color: var(--cream); background: rgba(255,255,255,.07); }
.icon-btn svg { width: 20px; height: 20px; stroke-width: 1.8; }

.cart-count {
  position: absolute;
  top: 4px; right: 4px;
  width: 17px; height: 17px;
  background: var(--brass);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0);
  transition: all var(--t-base) var(--ease-out);
}
.cart-count.visible { opacity: 1; transform: scale(1); }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--warm-gray);
  border-radius: 1px;
  transition: all var(--t-base) var(--ease);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: rgba(26,26,24,.98);
  border-bottom: 1px solid rgba(184,147,58,.18);
  padding: var(--sp-6);
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform var(--t-slow) var(--ease-out), opacity var(--t-slow) var(--ease-out);
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 1.05rem;
  color: var(--warm-gray);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--t-fast);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--brass-lt); }

@media (max-width: 860px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: block; }
}

/* ─── Search Overlay ────────────────────────────────────── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,24,.96);
  z-index: 1100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease);
}
.search-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.search-box {
  width: min(600px, 90vw);
}
.search-box label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: var(--sp-3);
  display: block;
}
.search-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(184,147,58,.4);
  border-radius: var(--r-md);
  overflow: hidden;
}
.search-input-wrap input {
  flex: 1;
  background: none;
  border: none;
  padding: 16px 20px;
  font-size: 1.2rem;
  color: var(--cream);
  outline: none;
}
.search-input-wrap input::placeholder { color: var(--mid-gray); }
.search-input-wrap button {
  padding: 0 20px;
  color: var(--brass);
  height: 100%;
}
.search-input-wrap button svg { width: 22px; height: 22px; }
.search-close {
  position: absolute;
  top: var(--sp-6); right: var(--sp-6);
  color: var(--warm-gray);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--t-fast);
}
.search-close:hover { color: var(--cream); }

/* ─── Cart Drawer ───────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: -420px;
  width: 420px;
  max-width: 100vw;
  height: 100%;
  background: var(--off-white);
  z-index: 1201;
  display: flex;
  flex-direction: column;
  transition: right var(--t-slow) var(--ease-out);
  box-shadow: -8px 0 48px rgba(0,0,0,.4);
}
.cart-drawer.open { right: 0; }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-6);
  border-bottom: 1px solid rgba(0,0,0,.08);
  background: var(--charcoal);
  color: var(--cream);
}
.cart-drawer-header h3 { color: var(--cream); font-size: 1.1rem; }
.cart-close { color: var(--warm-gray); transition: color var(--t-fast); }
.cart-close:hover { color: var(--cream); }
.cart-close svg { width: 22px; height: 22px; }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: var(--sp-4);
  scrollbar-width: thin;
  scrollbar-color: var(--warm-gray) transparent;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: var(--sp-4);
  color: var(--mid-gray);
  text-align: center;
}
.cart-empty svg { width: 48px; height: 48px; opacity: .3; }

.cart-item {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.cart-item-img {
  width: 72px; height: 72px;
  object-fit: cover;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  background: var(--warm-gray);
}
.cart-item-info { flex: 1; }
.cart-item-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.cart-item-sku { font-size: 0.72rem; color: var(--mid-gray); font-family: var(--font-mono); }
.cart-item-price { font-weight: 600; color: var(--brass); font-size: 0.95rem; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
}
.qty-btn {
  width: 24px; height: 24px;
  border: 1px solid var(--warm-gray);
  border-radius: 3px;
  font-size: 1rem;
  color: var(--gunmetal);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-fast);
  flex-shrink: 0;
}
.qty-btn:hover { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }
.qty-num { font-size: 0.88rem; font-weight: 600; min-width: 22px; text-align: center; }
.cart-item-remove {
  color: var(--mid-gray);
  font-size: 0.75rem;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--t-fast);
}
.cart-item-remove:hover { color: var(--red-accent); }

.cart-footer {
  padding: var(--sp-6);
  border-top: 1px solid rgba(0,0,0,.08);
  background: var(--cream);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: var(--sp-4);
  font-size: 1.05rem;
}
.cart-subtotal span:last-child { color: var(--brass); }
.cart-footer .btn { margin-bottom: var(--sp-2); }
.cart-footer p { font-size: 0.78rem; color: var(--mid-gray); text-align: center; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-footer {
  background: var(--ink);
  color: var(--warm-gray);
  padding: var(--sp-16) 0 var(--sp-8);
  border-top: 1px solid rgba(184,147,58,.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .logo-main { font-size: 1.4rem; }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: var(--sp-3);
  color: var(--mid-gray);
}
.footer-social { display: flex; gap: var(--sp-3); margin-top: var(--sp-4); }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--warm-gray);
  transition: all var(--t-fast);
}
.footer-social a:hover {
  border-color: var(--brass);
  color: var(--brass);
  background: rgba(184,147,58,.08);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: var(--sp-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--mid-gray);
  transition: color var(--t-fast);
}
.footer-col ul li a:hover { color: var(--brass-lt); }

.footer-bottom {
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer-bottom p { font-size: 0.82rem; color: var(--mid-gray); }
.footer-legal { display: flex; gap: var(--sp-6); }
.footer-legal a { font-size: 0.82rem; color: var(--mid-gray); transition: color var(--t-fast); }
.footer-legal a:hover { color: var(--cream); }
.footer-trust {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.78rem;
  color: var(--mid-gray);
}
.trust-item svg { width: 14px; height: 14px; color: var(--brass); flex-shrink: 0; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ANNOUNCEMENT BAR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.announcement-bar {
  background: var(--olive);
  color: var(--cream);
  text-align: center;
  padding: 8px var(--sp-4);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: .03em;
  position: relative;
  z-index: 1001;
}
.announcement-bar strong { color: var(--brass-pale); }
.announcement-bar a { color: var(--brass-pale); text-decoration: underline; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  min-height: 100svh;
  background:
    linear-gradient(160deg, rgba(26,26,24,.88) 0%, rgba(37,37,32,.75) 50%, rgba(92,92,61,.55) 100%),
    url('https://images.unsplash.com/photo-1595590424283-b8f17842773f?w=1800&q=85') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(184,147,58,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--off-white));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: var(--sp-20) 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(184,147,58,.15);
  border: 1px solid rgba(184,147,58,.35);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: var(--sp-6);
  animation: fadeUp .6s var(--ease-out) .1s both;
}
.hero-badge span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass-pale);
}
.hero h1 {
  color: var(--cream);
  margin-bottom: var(--sp-5);
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
  animation: fadeUp .7s var(--ease-out) .2s both;
}
.hero h1 em {
  color: var(--brass-lt);
  font-style: normal;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(245,240,232,.75);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
  max-width: 560px;
  animation: fadeUp .7s var(--ease-out) .35s both;
}
.hero-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  animation: fadeUp .7s var(--ease-out) .5s both;
}
.hero-stats {
  display: flex;
  gap: var(--sp-8);
  margin-top: var(--sp-10);
  animation: fadeUp .7s var(--ease-out) .65s both;
}
.hero-stat { }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brass-lt);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(245,240,232,.55);
  margin-top: 2px;
  font-family: var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION HEADERS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.section-header {
  margin-bottom: var(--sp-10);
}
.section-header.centered { text-align: center; }
.section-header p {
  font-size: 1.05rem;
  margin-top: var(--sp-3);
  max-width: 560px;
}
.section-header.centered p { margin-left: auto; margin-right: auto; }
.section-header .see-all {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--t-fast);
}
.section-header .see-all:hover { gap: 9px; }
.section-header .see-all svg { width: 16px; height: 16px; }
.header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRODUCT CARDS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.product-card {
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream);
}
.product-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.product-card:hover .product-card-img-wrap img {
  transform: scale(1.06);
}
.product-card-badges {
  position: absolute;
  top: var(--sp-3); left: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.product-card-actions {
  position: absolute;
  right: var(--sp-3); top: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateX(0);
}
.card-action-btn {
  width: 36px; height: 36px;
  background: #fff;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--gunmetal);
  transition: all var(--t-fast);
}
.card-action-btn:hover { background: var(--charcoal); color: var(--cream); }
.card-action-btn svg { width: 16px; height: 16px; }

.product-card-body {
  padding: var(--sp-4);
}
.product-card-cat {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: var(--sp-1);
}
.product-card-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--sp-2);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-name a:hover { color: var(--brass); }
.product-card-sku {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--mid-gray);
  margin-bottom: var(--sp-3);
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(0,0,0,.06);
  margin-top: var(--sp-3);
}
.price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: 1.1rem;
}
.price--sale { color: var(--red-accent); }
.price--original {
  font-size: 0.85rem;
  color: var(--mid-gray);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 4px;
}
.add-to-cart-btn {
  padding: 7px 14px;
  background: var(--charcoal);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--r-sm);
  display: flex; align-items: center; gap: 5px;
  transition: all var(--t-fast);
  flex-shrink: 0;
}
.add-to-cart-btn:hover { background: var(--brass); color: var(--ink); }
.add-to-cart-btn svg { width: 14px; height: 14px; }

/* Out of Stock */
.product-card.out-of-stock .product-card-img-wrap::after {
  content: 'Out of Stock';
  position: absolute;
  inset: 0;
  background: rgba(26,26,24,.65);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CATEGORY CARDS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.category-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: block;
}
.category-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.category-card:hover img { transform: scale(1.08); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,24,.9) 0%, rgba(26,26,24,.2) 60%, transparent 100%);
  transition: background var(--t-base) var(--ease);
}
.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(26,26,24,.95) 0%, rgba(26,26,24,.4) 60%, rgba(26,26,24,.1) 100%);
}
.category-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-5);
}
.category-card-count {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 4px;
}
.category-card-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
}
.category-card-arrow {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--brass-pale);
  margin-top: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: all var(--t-base) var(--ease);
}
.category-card:hover .category-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TRUST BAR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.trust-bar {
  background: var(--charcoal);
  border-top: 1px solid rgba(184,147,58,.15);
  border-bottom: 1px solid rgba(184,147,58,.15);
  padding: var(--sp-6) 0;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
@media (max-width: 860px) { .trust-bar-inner { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .trust-bar-inner { grid-template-columns: 1fr; } }

.trust-feature {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  border-right: 1px solid rgba(255,255,255,.06);
}
.trust-feature:last-child { border-right: none; }
.trust-icon {
  width: 40px; height: 40px;
  background: rgba(184,147,58,.12);
  border: 1px solid rgba(184,147,58,.2);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--brass);
}
.trust-icon svg { width: 20px; height: 20px; }
.trust-feature-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1px;
}
.trust-feature-sub {
  font-size: 0.77rem;
  color: var(--mid-gray);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TESTIMONIALS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: var(--sp-6);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--sp-4);
}
.star { color: var(--brass); font-size: 1.1rem; }
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--warm-gray);
  margin-bottom: var(--sp-5);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--olive);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cream);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--cream); }
.testimonial-meta { font-size: 0.75rem; color: var(--mid-gray); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FAQ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--sp-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--brass); }
.faq-icon {
  width: 24px; height: 24px;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--t-base) var(--ease);
}
.faq-icon svg { width: 12px; height: 12px; transition: transform var(--t-base) var(--ease); }
.faq-item.open .faq-icon { background: var(--brass); border-color: var(--brass); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); stroke: var(--ink); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease);
}
.faq-answer-inner {
  padding-bottom: var(--sp-5);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gunmetal);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SHOP PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.shop-header {
  background: var(--charcoal);
  padding: calc(var(--header-h) + var(--sp-10)) 0 var(--sp-10);
}
.shop-header h1 { color: var(--cream); }
.shop-header p { color: var(--warm-gray); margin-top: var(--sp-3); }

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--sp-8);
  align-items: start;
}
@media (max-width: 900px) { .shop-layout { grid-template-columns: 1fr; } }

/* Sidebar */
.shop-sidebar {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-6));
}
.sidebar-section {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  margin-bottom: var(--sp-4);
}
.sidebar-section h4 {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  color: var(--gunmetal);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.filter-list { display: flex; flex-direction: column; gap: var(--sp-2); }
.filter-label {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--gunmetal);
  transition: color var(--t-fast);
}
.filter-label:hover { color: var(--brass); }
.filter-label input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--brass);
  cursor: pointer;
}
.filter-count {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--mid-gray);
  background: rgba(0,0,0,.06);
  padding: 1px 7px;
  border-radius: 10px;
}

.price-range { margin-top: var(--sp-3); }
.price-range-values {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--mid-gray);
  margin-bottom: var(--sp-2);
  font-family: var(--font-mono);
}
.price-range input[type="range"] {
  width: 100%;
  accent-color: var(--brass);
}

/* Toolbar */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
  padding: var(--sp-3) var(--sp-4);
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid rgba(0,0,0,.07);
  flex-wrap: wrap;
}
.result-count { font-size: 0.88rem; color: var(--mid-gray); }
.sort-select {
  padding: 7px 12px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  color: var(--gunmetal);
  background: var(--off-white);
  cursor: pointer;
  outline: none;
  accent-color: var(--brass);
}
.view-btns { display: flex; gap: 4px; }
.view-btn {
  padding: 7px 9px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: var(--r-sm);
  color: var(--mid-gray);
  transition: all var(--t-fast);
}
.view-btn.active, .view-btn:hover {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}
.view-btn svg { width: 16px; height: 16px; display: block; }

/* Active Filters */
.active-filters {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-4);
}
.filter-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: rgba(184,147,58,.1);
  border: 1px solid rgba(184,147,58,.3);
  border-radius: 2px;
  font-size: 0.78rem;
  color: var(--gunmetal);
}
.filter-tag button {
  color: var(--mid-gray);
  line-height: 1;
  transition: color var(--t-fast);
}
.filter-tag button:hover { color: var(--red-accent); }

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--sp-5);
}
.products-grid.list-view {
  grid-template-columns: 1fr;
}
.products-grid.list-view .product-card {
  display: grid;
  grid-template-columns: 200px 1fr;
}
.products-grid.list-view .product-card-img-wrap {
  aspect-ratio: auto;
  height: 100%;
}
@media (max-width: 640px) {
  .products-grid.list-view .product-card {
    grid-template-columns: 1fr;
  }
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-10);
}
.page-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  color: var(--gunmetal);
  transition: all var(--t-fast);
}
.page-btn:hover, .page-btn.active {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}
.page-btn.active { background: var(--brass); border-color: var(--brass); color: var(--ink); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRODUCT DETAIL PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.product-detail-wrapper {
  padding-top: calc(var(--header-h) + var(--sp-8));
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
  font-size: 0.82rem;
  color: var(--mid-gray);
}
.breadcrumb a:hover { color: var(--brass); }
.breadcrumb-sep { opacity: .4; }

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
  margin-bottom: var(--sp-16);
}
@media (max-width: 900px) { .product-detail-grid { grid-template-columns: 1fr; } }

/* Gallery */
.product-gallery { position: sticky; top: calc(var(--header-h) + var(--sp-6)); }
.gallery-main {
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: var(--sp-3);
  background: var(--cream);
  border: 1px solid rgba(0,0,0,.06);
}
.gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform var(--t-slow) var(--ease);
}
.gallery-main img:hover { transform: scale(1.03); }
.gallery-thumbs {
  display: flex;
  gap: var(--sp-2);
  overflow-x: auto;
  scrollbar-width: none;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb {
  width: 72px; height: 72px;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 2px solid transparent;
  flex-shrink: 0;
  cursor: pointer;
  background: var(--cream);
  transition: border-color var(--t-fast);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active { border-color: var(--brass); }

/* Product Info */
.product-cat-link {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mid-gray);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: var(--sp-3);
  transition: color var(--t-fast);
}
.product-cat-link:hover { color: var(--brass); }
.product-detail-name {
  margin-bottom: var(--sp-4);
}
.product-meta-row {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-rating .stars { display: flex; gap: 2px; }
.product-rating .star-icon {
  width: 15px; height: 15px;
  fill: var(--brass);
  color: var(--brass);
}
.product-rating-count { font-size: 0.82rem; color: var(--mid-gray); }
.product-sku-row { font-family: var(--font-mono); font-size: 0.78rem; color: var(--mid-gray); }
.product-sku-row span { color: var(--gunmetal); }
.stock-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
}
.stock-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.stock-status.in-stock .stock-dot { background: var(--success); }
.stock-status.in-stock { color: var(--success); }
.stock-status.low-stock .stock-dot { background: #c87800; }
.stock-status.low-stock { color: #c87800; }
.stock-status.out-stock .stock-dot { background: var(--red-accent); }
.stock-status.out-stock { color: var(--red-accent); }

.product-price-row {
  margin-bottom: var(--sp-6);
}
.product-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
}
.product-price--original {
  font-size: 1.2rem;
  color: var(--mid-gray);
  text-decoration: line-through;
  margin-left: var(--sp-3);
}
.product-price--sale { color: var(--red-accent); }
.savings-badge {
  display: inline-block;
  margin-left: var(--sp-3);
  padding: 3px 10px;
  background: rgba(139,32,32,.1);
  border: 1px solid rgba(139,32,32,.2);
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red-accent);
}

.product-options { margin-bottom: var(--sp-6); }
.option-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gunmetal);
  margin-bottom: var(--sp-3);
  font-family: var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.option-label span { color: var(--mid-gray); font-weight: 400; }
.option-chips { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.option-chip {
  padding: 7px 14px;
  border: 1.5px solid rgba(0,0,0,.15);
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  color: var(--gunmetal);
  cursor: pointer;
  transition: all var(--t-fast);
}
.option-chip:hover { border-color: var(--charcoal); color: var(--charcoal); }
.option-chip.selected {
  border-color: var(--brass);
  background: rgba(184,147,58,.08);
  color: var(--charcoal);
  font-weight: 600;
}
.option-chip.unavailable {
  opacity: .4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.qty-selector {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.qty-selector .option-label { margin: 0; }
.qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(0,0,0,.15);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.qty-control button {
  width: 38px; height: 38px;
  font-size: 1.1rem;
  color: var(--gunmetal);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast);
}
.qty-control button:hover { background: rgba(0,0,0,.05); }
.qty-control input {
  width: 52px; height: 38px;
  text-align: center;
  border: none; border-left: 1.5px solid rgba(0,0,0,.1); border-right: 1.5px solid rgba(0,0,0,.1);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  background: none;
  outline: none;
}

.product-actions { display: flex; gap: var(--sp-3); margin-bottom: var(--sp-6); flex-wrap: wrap; }
.product-actions .btn--primary { flex: 1; min-width: 180px; }
.wish-btn {
  width: 52px; height: 52px;
  border: 2px solid rgba(0,0,0,.12);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gunmetal);
  transition: all var(--t-fast);
}
.wish-btn:hover { border-color: var(--red-accent); color: var(--red-accent); }
.wish-btn svg { width: 20px; height: 20px; }

.product-guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: var(--cream);
  border-radius: var(--r-md);
  border: 1px solid rgba(0,0,0,.06);
  margin-bottom: var(--sp-6);
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.82rem;
  color: var(--gunmetal);
}
.guarantee-item svg { width: 16px; height: 16px; color: var(--brass); flex-shrink: 0; }

/* Product Tabs */
.product-tabs {
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid rgba(0,0,0,.07);
  overflow: hidden;
  margin-bottom: var(--sp-12);
}
.tab-nav {
  display: flex;
  border-bottom: 1px solid rgba(0,0,0,.07);
  overflow-x: auto;
  scrollbar-width: none;
}
.tab-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: var(--sp-4) var(--sp-6);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--mid-gray);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all var(--t-fast);
  flex-shrink: 0;
}
.tab-btn:hover { color: var(--charcoal); }
.tab-btn.active {
  color: var(--brass);
  border-bottom-color: var(--brass);
}
.tab-panel { display: none; padding: var(--sp-8); }
.tab-panel.active { display: block; }

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid rgba(0,0,0,.06); }
.spec-table tr:last-child { border: none; }
.spec-table td {
  padding: 10px 0;
  font-size: 0.9rem;
}
.spec-table td:first-child {
  font-weight: 600;
  color: var(--gunmetal);
  width: 40%;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: .05em;
}
.spec-table td:last-child { color: var(--charcoal); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.about-hero {
  background:
    linear-gradient(160deg, rgba(26,26,24,.9) 0%, rgba(37,37,32,.8) 100%),
    url('https://images.unsplash.com/photo-1585771724684-38269d6639fd?w=1600&q=80') center/cover no-repeat;
  padding: calc(var(--header-h) + var(--sp-16)) 0 var(--sp-16);
  color: var(--cream);
}
.about-hero h1 { color: var(--cream); }
.about-hero p { color: var(--warm-gray); font-size: 1.1rem; margin-top: var(--sp-4); max-width: 560px; }

.value-card {
  text-align: center;
  padding: var(--sp-6);
}
.value-icon {
  width: 56px; height: 56px;
  background: rgba(184,147,58,.1);
  border: 1px solid rgba(184,147,58,.25);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-4);
  color: var(--brass);
}
.value-icon svg { width: 26px; height: 26px; }
.value-card h4 { margin-bottom: var(--sp-2); }
.value-card p { font-size: 0.9rem; }

.team-card {
  text-align: center;
}
.team-photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--sp-4);
  border: 3px solid var(--brass);
  background: var(--warm-gray);
}
.team-name { font-size: 1.05rem; margin-bottom: 2px; }
.team-role { font-size: 0.82rem; color: var(--mid-gray); font-family: var(--font-mono); letter-spacing: .08em; }
.team-bio { font-size: 0.88rem; margin-top: var(--sp-3); }

/* Timeline */
.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 20px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--brass), transparent);
}
.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: var(--sp-8);
}
.timeline-dot {
  position: absolute;
  left: 12px; top: 4px;
  width: 18px; height: 18px;
  background: var(--brass);
  border-radius: 50%;
  border: 3px solid var(--off-white);
  box-shadow: 0 0 0 2px var(--brass);
}
.timeline-year {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: .12em;
  color: var(--brass);
  margin-bottom: 4px;
}
.timeline-title { margin-bottom: var(--sp-2); }
.timeline-text { font-size: 0.9rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.contact-hero {
  background: var(--charcoal);
  padding: calc(var(--header-h) + var(--sp-12)) 0 var(--sp-12);
}
.contact-hero h1 { color: var(--cream); }
.contact-hero p { color: var(--warm-gray); margin-top: var(--sp-3); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--sp-10);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* Form */
.form-group { margin-bottom: var(--sp-5); }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gunmetal);
  margin-bottom: var(--sp-2);
  font-family: var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,.14);
  border-radius: var(--r-sm);
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-control:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(184,147,58,.12);
}
.form-control::placeholder { color: var(--mid-gray); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.8rem; color: var(--mid-gray); margin-top: var(--sp-2); }

/* Contact Info Sidebar */
.contact-info-card {
  background: var(--charcoal);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  color: var(--cream);
}
.contact-info-card h3 { color: var(--cream); margin-bottom: var(--sp-6); }
.contact-info-item {
  display: flex;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-icon {
  width: 40px; height: 40px;
  background: rgba(184,147,58,.15);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--brass);
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 3px;
}
.contact-info-value { font-size: 0.95rem; color: var(--cream); }
.contact-info-value a { transition: color var(--t-fast); }
.contact-info-value a:hover { color: var(--brass-lt); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CHECKOUT MODAL
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--off-white);
  border-radius: var(--r-lg);
  width: min(640px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(.95) translateY(20px);
  transition: transform var(--t-slow) var(--ease-out);
  box-shadow: var(--shadow-lg);
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }

.modal-header {
  padding: var(--sp-6);
  border-bottom: 1px solid rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--charcoal);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.modal-header h3 { color: var(--cream); }
.modal-close {
  color: var(--warm-gray);
  font-size: 1.3rem;
  transition: color var(--t-fast);
}
.modal-close:hover { color: var(--cream); }

.modal-body { padding: var(--sp-8); }
.modal-footer {
  padding: var(--sp-6);
  border-top: 1px solid rgba(0,0,0,.08);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.modal-footer .order-total { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.modal-footer .order-total span { color: var(--brass); }

/* Step indicators */
.checkout-steps {
  display: flex;
  align-items: center;
  margin-bottom: var(--sp-8);
  overflow-x: auto;
}
.checkout-step {
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
}
.checkout-step:not(:last-child)::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,.1);
  margin: 0 var(--sp-2);
}
.step-indicator {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--mid-gray);
  flex-shrink: 0;
  transition: all var(--t-base) var(--ease);
}
.checkout-step.active .step-indicator { border-color: var(--brass); background: var(--brass); color: var(--ink); }
.checkout-step.done .step-indicator { border-color: var(--success); background: var(--success); color: #fff; }
.step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mid-gray);
  margin-left: 6px;
  white-space: nowrap;
}
.checkout-step.active .step-label { color: var(--charcoal); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TOAST NOTIFICATIONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.toast-container {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.toast {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  background: var(--charcoal);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  border-left: 3px solid var(--brass);
  min-width: 280px;
  max-width: 360px;
  animation: toastIn .35s var(--ease-out);
  color: var(--cream);
}
.toast.success { border-color: var(--success); }
.toast.error { border-color: var(--red-accent); }
.toast-icon { flex-shrink: 0; }
.toast-icon svg { width: 18px; height: 18px; }
.toast-text { flex: 1; }
.toast-title { font-weight: 600; font-size: 0.88rem; color: var(--cream); }
.toast-msg { font-size: 0.8rem; color: var(--warm-gray); margin-top: 1px; }
.toast-dismiss { color: var(--mid-gray); font-size: 1.1rem; transition: color var(--t-fast); flex-shrink: 0; }
.toast-dismiss:hover { color: var(--cream); }
.toast.hiding { animation: toastOut .25s var(--ease) forwards; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CTA SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cta-section {
  background:
    linear-gradient(135deg, rgba(26,26,24,.95) 0%, rgba(92,92,61,.85) 100%),
    url('https://images.unsplash.com/photo-1518609878373-06d740f60d8b?w=1400&q=75') center/cover no-repeat;
  padding: var(--sp-20) 0;
  text-align: center;
  color: var(--cream);
}
.cta-section h2 { color: var(--cream); max-width: 640px; margin: var(--sp-3) auto var(--sp-6); }
.cta-section p { color: var(--warm-gray); max-width: 480px; margin: 0 auto var(--sp-8); }
.cta-btns { display: flex; justify-content: center; gap: var(--sp-4); flex-wrap: wrap; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NEWSLETTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.newsletter-section {
  background: var(--olive);
  padding: var(--sp-12) 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.newsletter-copy h3 { color: var(--cream); }
.newsletter-copy p { color: rgba(245,240,232,.7); font-size: 0.95rem; margin-top: var(--sp-2); }
.newsletter-form {
  display: flex;
  gap: var(--sp-2);
  flex: 1;
  max-width: 420px;
  min-width: 280px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  color: var(--cream);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--t-fast);
}
.newsletter-form input::placeholder { color: rgba(245,240,232,.4); }
.newsletter-form input:focus { border-color: var(--brass-pale); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   KEYFRAMES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes toastIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(20px); }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

/* Skeleton loader */
.skeleton {
  background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
  background-size: 400px 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--r-sm);
}

/* ─── Utility ───────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
.no-scroll { overflow: hidden; }
.fade-in { animation: fadeIn .4s var(--ease-out); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* About/Timeline accent borders */
.accent-border-left {
  border-left: 3px solid var(--brass);
  padding-left: var(--sp-5);
}

/* Page top offset for fixed header */
.page-top { padding-top: var(--header-h); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRODUCT DETAIL PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.breadcrumb-nav {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 10px 0;
  margin-top: var(--header-h);
}
.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  font-size: 0.82rem;
  color: var(--steel-lt);
}
.breadcrumb li + li::before {
  content: '›';
  margin: 0 8px;
  color: var(--steel);
}
.breadcrumb a { color: var(--steel-lt); text-decoration: none; transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--brass-lt); }
.breadcrumb [aria-current] { color: var(--brass-lt); }

/* Product Detail Grid */
.product-detail-page { padding: var(--sp-10) 0 var(--sp-16); }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}
@media (max-width: 900px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
}

/* Gallery */
.product-gallery { position: sticky; top: calc(var(--header-h) + 24px); }
.gallery-main-wrap {
  position: relative;
  background: var(--charcoal);
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ease-out);
  cursor: zoom-in;
}
.gallery-main-wrap:hover .gallery-main-img { transform: scale(1.03); }
.gallery-badges {
  position: absolute;
  top: 14px; left: 14px;
  display: flex; flex-direction: column; gap: 6px;
  z-index: 2;
}
.gallery-zoom-btn {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(26,26,24,.7);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  color: var(--cream);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast);
  z-index: 2;
}
.gallery-zoom-btn:hover { background: var(--brass); color: var(--ink); }
.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.gallery-thumb {
  width: 72px; height: 72px;
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--t-fast);
  flex-shrink: 0;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb.active,
.gallery-thumb:hover { border-color: var(--brass); }

/* Lightbox */
.gallery-lightbox {
  position: fixed; inset: 0;
  background: rgba(10,10,10,.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
}
.gallery-lightbox.open { display: flex; }
.gallery-lightbox img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain;
  border-radius: var(--r-md);
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none;
  color: var(--cream); font-size: 1.5rem;
  cursor: pointer; opacity: .7;
}
.lightbox-close:hover { opacity: 1; }

/* Product Info */
.product-info { padding-top: var(--sp-2); }
.pd-category-link { margin-bottom: var(--sp-2); }
.category-tag {
  font-size: 0.78rem;
  font-family: var(--ff-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brass);
  text-decoration: none;
  border: 1px solid var(--brass-dim);
  padding: 3px 10px;
  border-radius: 100px;
  transition: all var(--t-fast);
}
.category-tag:hover { background: var(--brass-dim); }
.pd-name {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.2;
  color: var(--cream);
  margin: var(--sp-3) 0 var(--sp-3);
}
.pd-rating {
  display: flex; align-items: center; gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.stars { color: var(--brass); font-size: 1rem; }
.rating-count { color: var(--steel-lt); font-size: 0.85rem; }
.rating-link { font-size: 0.85rem; color: var(--brass-lt); text-decoration: underline; }
.pd-price-wrap {
  display: flex; align-items: baseline; gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.pd-price {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--brass-lt);
}
.pd-price-original {
  font-size: 1.2rem;
  color: var(--steel);
  text-decoration: line-through;
}
.pd-save-badge {
  background: var(--olive);
  color: var(--cream);
  font-size: 0.75rem;
  font-family: var(--ff-mono);
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: .04em;
}
.pd-description {
  color: var(--steel-lt);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
  font-size: 0.95rem;
}

/* Options */
.pd-options { margin-bottom: var(--sp-5); }
.pd-option-group { margin-bottom: var(--sp-4); }
.pd-option-label {
  display: block;
  font-size: 0.82rem;
  font-family: var(--ff-mono);
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--steel-lt);
  margin-bottom: 10px;
}
.pd-option-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.pd-option-btn {
  padding: 8px 16px;
  border: 1.5px solid rgba(255,255,255,.12);
  background: transparent;
  color: var(--cream);
  border-radius: var(--r-sm);
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--t-fast);
}
.pd-option-btn:hover { border-color: var(--brass-dim); color: var(--brass-lt); }
.pd-option-btn.active { border-color: var(--brass); background: rgba(184,147,58,.15); color: var(--brass-lt); }

/* Actions */
.pd-actions {
  display: flex; gap: var(--sp-3); align-items: center;
  margin-bottom: var(--sp-4);
  flex-wrap: wrap;
}
.qty-selector {
  display: flex; align-items: center;
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  overflow: hidden;
  height: 50px;
}
.qty-btn {
  width: 44px; height: 100%;
  background: transparent; border: none;
  color: var(--cream); font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast);
}
.qty-btn:hover { background: rgba(255,255,255,.08); }
.qty-input {
  width: 50px; height: 100%;
  background: transparent; border: none;
  color: var(--cream);
  text-align: center;
  font-size: 1rem;
  font-family: var(--ff-mono);
  -moz-appearance: textfield;
  outline: none;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.btn-add-to-cart { flex: 1; min-width: 180px; display: flex; align-items: center; justify-content: center; gap: 8px; }

/* Stock */
.pd-stock-status {
  font-size: 0.85rem;
  font-family: var(--ff-mono);
  margin-bottom: var(--sp-5);
  display: flex; align-items: center; gap: 6px;
}
.pd-stock-status.in-stock { color: #6ec46e; }
.pd-stock-status.low-stock { color: var(--brass-lt); }
.pd-stock-status.out-stock { color: #d46e6e; }
.stock-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; flex-shrink: 0; }

/* Guarantees */
.pd-guarantees {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: var(--sp-5);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-5);
}
.guarantee-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem;
  color: var(--steel-lt);
}
.guarantee-item svg { color: var(--brass); flex-shrink: 0; }

/* Meta */
.pd-meta {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: var(--sp-4);
  margin-bottom: var(--sp-5);
  display: flex; flex-direction: column; gap: 8px;
}
.pd-meta-row {
  display: flex; gap: var(--sp-3);
  font-size: 0.85rem;
}
.pd-meta-row span { color: var(--steel); min-width: 90px; }
.pd-meta-row strong { color: var(--cream); font-weight: 500; font-family: var(--ff-mono); }

/* Share */
.pd-share {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: var(--steel-lt);
}
.share-btn {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-sm);
  color: var(--steel-lt);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--t-fast);
}
.share-btn:hover { background: var(--brass-dim); color: var(--brass-lt); border-color: var(--brass-dim); }

/* Product Tabs */
.product-tabs {
  margin-top: var(--sp-16);
  border-top: 1px solid rgba(255,255,255,.07);
}
.tabs-nav {
  display: flex; gap: 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  background: none; border: none;
  color: var(--steel-lt);
  font-family: var(--ff-mono);
  font-size: 0.82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 16px 24px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all var(--t-fast);
}
.tab-btn:hover { color: var(--cream); }
.tab-btn.active { color: var(--brass-lt); border-bottom-color: var(--brass); }
.tab-panel { padding: var(--sp-8) 0; }

/* Specs Tab */
.specs-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-10); }
@media (max-width: 700px) { .specs-layout { grid-template-columns: 1fr; } }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid rgba(255,255,255,.06); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td { padding: 12px 8px; font-size: 0.9rem; }
.specs-table td:first-child { color: var(--steel-lt); width: 40%; font-family: var(--ff-mono); font-size: 0.8rem; text-transform: uppercase; letter-spacing: .04em; }
.specs-table td:last-child { color: var(--cream); font-weight: 500; }
.specs-note { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); border-radius: var(--r-md); padding: var(--sp-6); }
.specs-note h4 { color: var(--brass-lt); margin-bottom: var(--sp-3); font-size: 0.95rem; }
.specs-note p { color: var(--steel-lt); font-size: 0.88rem; margin-bottom: var(--sp-3); }
.specs-note ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.specs-note li { font-size: 0.85rem; color: var(--steel-lt); padding-left: 14px; position: relative; }
.specs-note li::before { content: '▸'; position: absolute; left: 0; color: var(--brass); }

/* History Tab */
.history-tab-content { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-10); }
@media (max-width: 700px) { .history-tab-content { grid-template-columns: 1fr; } }
.history-intro { color: var(--steel-lt); line-height: 1.8; font-size: 0.95rem; }
.history-timeline-note { background: rgba(184,147,58,.06); border-left: 3px solid var(--brass); padding: var(--sp-5) var(--sp-6); border-radius: 0 var(--r-md) var(--r-md) 0; }
.history-timeline-note h4 { color: var(--brass-lt); margin-bottom: var(--sp-3); }
.history-timeline-note p { color: var(--steel-lt); font-size: 0.88rem; line-height: 1.7; margin-bottom: var(--sp-3); }

/* Reviews Tab */
.reviews-summary {
  display: grid; grid-template-columns: auto 1fr;
  gap: var(--sp-8); align-items: center;
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: var(--sp-8);
}
@media (max-width: 600px) { .reviews-summary { grid-template-columns: 1fr; } }
.reviews-score-block { text-align: center; min-width: 100px; }
.reviews-big-score { font-family: var(--ff-display); font-size: 3.5rem; color: var(--brass-lt); line-height: 1; }
.reviews-stars-big { color: var(--brass); font-size: 1.1rem; margin: 6px 0; }
.reviews-count-text { font-size: 0.8rem; color: var(--steel); font-family: var(--ff-mono); }
.reviews-bars { display: flex; flex-direction: column; gap: 8px; }
.review-bar-row { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: var(--steel-lt); }
.review-bar { flex: 1; height: 6px; background: rgba(255,255,255,.08); border-radius: 3px; overflow: hidden; }
.review-bar-fill { height: 100%; background: var(--brass); border-radius: 3px; }
.review-bar-row span:last-child { min-width: 30px; text-align: right; }
.reviews-list { display: flex; flex-direction: column; gap: var(--sp-6); }
.review-item { padding-bottom: var(--sp-6); border-bottom: 1px solid rgba(255,255,255,.06); }
.review-item:last-child { border-bottom: none; }
.review-header { display: flex; align-items: center; gap: var(--sp-4); margin-bottom: var(--sp-2); flex-wrap: wrap; }
.review-author { font-weight: 600; color: var(--cream); }
.review-stars { color: var(--brass); }
.review-date { font-size: 0.78rem; color: var(--steel); font-family: var(--ff-mono); }
.review-verified { font-size: 0.72rem; color: #6ec46e; font-family: var(--ff-mono); background: rgba(110,196,110,.12); padding: 2px 8px; border-radius: 100px; }
.review-body { color: var(--steel-lt); font-size: 0.9rem; line-height: 1.7; }
.review-write-prompt { text-align: center; padding-top: var(--sp-6); color: var(--steel-lt); font-size: 0.9rem; }

/* Shipping Tab */
.shipping-tab-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
@media (max-width: 700px) { .shipping-tab-grid { grid-template-columns: 1fr; } }
.shipping-tab-block { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); border-radius: var(--r-md); padding: var(--sp-6); }
.shipping-tab-block h4 { color: var(--brass-lt); margin-bottom: var(--sp-3); font-size: 1rem; }
.shipping-tab-block ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.shipping-tab-block li { font-size: 0.88rem; color: var(--steel-lt); padding-left: 14px; position: relative; }
.shipping-tab-block li::before { content: '·'; position: absolute; left: 2px; color: var(--brass); }
.shipping-tab-block p { font-size: 0.88rem; color: var(--steel-lt); line-height: 1.7; }

/* Related Products */
.related-products-section { margin-top: var(--sp-16); padding-top: var(--sp-10); border-top: 1px solid rgba(255,255,255,.07); }
.related-products-grid { grid-template-columns: repeat(4, 1fr) !important; }
@media (max-width: 900px) { .related-products-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 500px) { .related-products-grid { grid-template-columns: 1fr !important; } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.about-hero {
  position: relative;
  height: min(80vh, 620px);
  margin-top: var(--header-h);
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute; inset: 0;
}
.about-hero-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.92) 30%, rgba(10,10,10,.4) 100%);
}
.about-hero-content { position: relative; z-index: 2; padding-bottom: var(--sp-16); }
.about-hero-eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--sp-3);
}
.about-hero-text h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: var(--sp-4);
}
.about-hero-text h1 em { color: var(--brass-lt); font-style: italic; }
.about-hero-sub { font-size: 1.1rem; color: rgba(245,240,232,.7); max-width: 560px; line-height: 1.7; }

/* Story */
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-14); align-items: center; }
@media (max-width: 860px) { .about-story-grid { grid-template-columns: 1fr; } }
.about-story-image { position: relative; }
.about-story-image img { width: 100%; border-radius: var(--r-lg); display: block; }
.about-story-image-note {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--ink);
  border: 1px solid var(--brass-dim);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  text-align: right;
}
.about-story-image-note .mono-label { color: var(--brass); font-family: var(--ff-mono); font-size: 0.75rem; letter-spacing: .1em; text-transform: uppercase; }
.about-story-image-note p { color: var(--cream); font-size: 0.85rem; margin-top: 4px; }
.about-story-text { padding: var(--sp-4) 0; }
.section-title-left {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--cream);
  line-height: 1.2;
  margin: var(--sp-3) 0 var(--sp-5);
}
.about-story-text p { color: var(--steel-lt); line-height: 1.8; margin-bottom: var(--sp-4); font-size: 0.95rem; }
.about-story-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-4); margin-top: var(--sp-7); }
@media (max-width: 600px) { .about-story-stats { grid-template-columns: repeat(2,1fr); } }
.about-stat { text-align: center; }
.about-stat strong { display: block; font-family: var(--ff-display); font-size: 1.9rem; color: var(--brass-lt); }
.about-stat span { font-size: 0.78rem; color: var(--steel-lt); font-family: var(--ff-mono); text-transform: uppercase; letter-spacing: .06em; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-6); margin-top: var(--sp-10); }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg);
  padding: var(--sp-7);
  transition: border-color var(--t-base), transform var(--t-base);
  animation-delay: var(--delay, 0s);
}
.value-card:hover { border-color: var(--brass-dim); transform: translateY(-3px); }
.value-icon {
  width: 56px; height: 56px;
  background: rgba(184,147,58,.1);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--brass);
  margin-bottom: var(--sp-4);
}
.value-card h3 { color: var(--cream); font-size: 1rem; margin-bottom: var(--sp-3); }
.value-card p { color: var(--steel-lt); font-size: 0.88rem; line-height: 1.7; }

/* Timeline */
.timeline { position: relative; max-width: 900px; margin: var(--sp-12) auto 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--brass), rgba(184,147,58,.2));
  transform: translateX(-50%);
}
@media (max-width: 700px) {
  .timeline::before { left: 20px; }
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--sp-6);
  align-items: center;
  margin-bottom: var(--sp-10);
}
.timeline-item:nth-child(even) .timeline-content { order: -1; text-align: right; }
.timeline-item:nth-child(even) .timeline-marker { order: 0; }
@media (max-width: 700px) {
  .timeline-item { grid-template-columns: auto 1fr; gap: var(--sp-4); }
  .timeline-item:nth-child(even) .timeline-content { order: unset; text-align: left; }
}
.timeline-marker {
  flex-shrink: 0;
  width: 80px; height: 80px;
  background: var(--charcoal);
  border: 2px solid var(--brass);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.timeline-year { font-family: var(--ff-mono); font-size: 0.9rem; color: var(--brass-lt); font-weight: 500; }
.timeline-content h3 { color: var(--brass-lt); font-size: 1rem; margin-bottom: var(--sp-2); }
.timeline-content p { color: var(--steel-lt); font-size: 0.88rem; line-height: 1.7; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-6); margin-top: var(--sp-10); }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  text-align: center;
  animation-delay: var(--delay, 0s);
  transition: border-color var(--t-base), transform var(--t-base);
}
.team-card:hover { border-color: var(--brass-dim); transform: translateY(-3px); }
.team-photo {
  width: 90px; height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--sp-4);
  border: 2px solid var(--brass-dim);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card h3 { color: var(--cream); font-size: 0.95rem; margin-bottom: 4px; }
.team-title { font-family: var(--ff-mono); font-size: 0.74rem; color: var(--brass); text-transform: uppercase; letter-spacing: .06em; display: block; margin-bottom: var(--sp-3); }
.team-bio { font-size: 0.82rem; color: var(--steel-lt); line-height: 1.6; }

/* Authenticity */
.authenticity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-14); align-items: center; }
@media (max-width: 860px) { .authenticity-grid { grid-template-columns: 1fr; } }
.auth-steps { display: flex; flex-direction: column; gap: var(--sp-5); margin-top: var(--sp-6); }
.auth-step { display: flex; gap: var(--sp-4); align-items: flex-start; }
.auth-step-num {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  color: var(--brass);
  background: rgba(184,147,58,.12);
  border: 1px solid var(--brass-dim);
  border-radius: var(--r-sm);
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  letter-spacing: .04em;
}
.auth-step h4 { color: var(--cream); font-size: 0.9rem; margin-bottom: 4px; }
.auth-step p { color: var(--steel-lt); font-size: 0.85rem; line-height: 1.6; }
.authenticity-image { position: relative; }
.authenticity-image img { width: 100%; border-radius: var(--r-lg); display: block; }
.authenticity-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--ink);
  border: 1px solid var(--brass-dim);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  display: flex; align-items: center; gap: 12px;
  color: var(--brass);
}
.authenticity-badge div { display: flex; flex-direction: column; }
.authenticity-badge strong { color: var(--cream); font-size: 0.9rem; }
.authenticity-badge span { color: var(--steel-lt); font-size: 0.75rem; font-family: var(--ff-mono); }

/* About CTA */
.about-cta-section {
  background: linear-gradient(135deg, var(--olive) 0%, #3a3a28 100%);
  padding: var(--sp-20) 0;
}
.about-cta-inner { text-align: center; }
.about-cta-inner h2 { font-family: var(--ff-display); font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--cream); margin-bottom: var(--sp-4); }
.about-cta-inner p { color: rgba(245,240,232,.75); max-width: 520px; margin: 0 auto var(--sp-8); font-size: 1rem; line-height: 1.7; }
.about-cta-btns { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.contact-hero {
  margin-top: var(--header-h);
  background: var(--charcoal);
  padding: var(--sp-16) 0 var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.contact-hero-text { max-width: 700px; }
.contact-hero-text h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--cream);
  line-height: 1.15;
  margin: var(--sp-3) 0 var(--sp-4);
}
.contact-hero-text h1 em { color: var(--brass-lt); font-style: italic; }
.contact-hero-text p { color: var(--steel-lt); font-size: 1rem; line-height: 1.7; max-width: 580px; }

/* Contact Grid */
.contact-grid { display: grid; grid-template-columns: 1fr 400px; gap: var(--sp-12); align-items: start; }
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form-wrap h2 { font-family: var(--ff-display); font-size: 1.7rem; color: var(--cream); margin-bottom: var(--sp-2); }
.contact-form-wrap > p { color: var(--steel-lt); font-size: 0.9rem; margin-bottom: var(--sp-7); }

.contact-form { display: flex; flex-direction: column; gap: var(--sp-5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.82rem; font-family: var(--ff-mono); text-transform: uppercase; letter-spacing: .06em; color: var(--steel-lt); }
.required { color: var(--brass); }
.form-optional { color: var(--steel); font-size: 0.72rem; text-transform: none; letter-spacing: 0; font-family: var(--ff-body); }
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.93rem;
  padding: 13px 16px;
  transition: border-color var(--t-fast), background var(--t-fast);
  outline: none;
  width: 100%;
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--brass-dim); background: rgba(184,147,58,.05); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,240,232,.25); }
.form-checkbox-group { flex-direction: row; align-items: flex-start; }
.checkbox-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; font-size: 0.85rem; color: var(--steel-lt); line-height: 1.5; }
.checkbox-label input[type=checkbox] { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--brass); flex-shrink: 0; cursor: pointer; }
.form-privacy-note { font-size: 0.78rem; color: var(--steel); margin-top: 4px; }
.form-privacy-note a { color: var(--brass-lt); }

/* Contact Success */
.contact-success { text-align: center; padding: var(--sp-12) var(--sp-6); }
.contact-success-icon {
  width: 64px; height: 64px;
  background: rgba(110,196,110,.15);
  border: 2px solid #6ec46e;
  border-radius: 50%;
  font-size: 1.8rem;
  color: #6ec46e;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-5);
}
.contact-success h3 { color: var(--cream); font-family: var(--ff-display); font-size: 1.5rem; margin-bottom: var(--sp-3); }
.contact-success p { color: var(--steel-lt); font-size: 0.92rem; line-height: 1.7; margin-bottom: var(--sp-3); }
.contact-success-ref { margin-top: var(--sp-4); color: var(--steel); font-size: 0.82rem; }
.contact-success-ref .mono-label { color: var(--brass-lt); }

/* Sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: var(--sp-5); }
.contact-info-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
}
.contact-info-card h3 { color: var(--cream); font-size: 0.95rem; margin-bottom: var(--sp-5); border-bottom: 1px solid rgba(255,255,255,.06); padding-bottom: var(--sp-3); }
.contact-info-list { display: flex; flex-direction: column; gap: var(--sp-5); }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-icon {
  width: 38px; height: 38px;
  background: rgba(184,147,58,.1);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--brass); flex-shrink: 0;
}
.contact-info-label { display: block; font-size: 0.72rem; font-family: var(--ff-mono); text-transform: uppercase; letter-spacing: .06em; color: var(--steel); margin-bottom: 3px; }
.contact-info-value { color: var(--cream); font-size: 0.88rem; line-height: 1.6; text-decoration: none; display: block; }
a.contact-info-value:hover { color: var(--brass-lt); }

/* Response times */
.response-times { display: flex; flex-direction: column; gap: 10px; }
.response-time-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.response-time-item:last-child { border-bottom: none; }
.response-time-type { font-size: 0.85rem; color: var(--steel-lt); }
.response-time-value { font-family: var(--ff-mono); font-size: 0.78rem; color: var(--brass-lt); background: rgba(184,147,58,.1); padding: 3px 10px; border-radius: 100px; }

/* Social card */
.contact-social-card p { color: var(--steel-lt); font-size: 0.85rem; margin-bottom: var(--sp-4); line-height: 1.6; }
.contact-social-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.contact-social-btn {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  color: var(--steel-lt);
  font-size: 0.82rem;
  text-decoration: none;
  transition: all var(--t-fast);
}
.contact-social-btn:hover { background: rgba(184,147,58,.1); border-color: var(--brass-dim); color: var(--brass-lt); }

/* FAQ Contact */
.contact-faq-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-6); margin-top: var(--sp-10); }
@media (max-width: 900px) { .contact-faq-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .contact-faq-grid { grid-template-columns: 1fr; } }
.contact-faq-item {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  animation-delay: var(--delay, 0s);
}
.contact-faq-item h4 { color: var(--brass-lt); font-size: 0.95rem; margin-bottom: var(--sp-3); line-height: 1.4; }
.contact-faq-item p { color: var(--steel-lt); font-size: 0.85rem; line-height: 1.7; }

/* Reveal directions */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal-up { transform: translateY(28px); }
.reveal-left { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: translate(0); }

/* section helpers */
.section-pad { padding: var(--sp-20) 0; }
.text-center { text-align: center; }
.section-subtitle { color: var(--steel-lt); font-size: 1rem; max-width: 540px; margin: var(--sp-3) auto 0; line-height: 1.6; }
