:root {
  --primary: #C9A84C;
  --primary-dark: #a8882e;
  --primary-light: #e0c57a;
  --secondary: #1A1A1A;
  --accent: #C9A84C;
  --accent-dark: #a8882e;
  --accent-light: #e0c57a;
  --text: #E0E0DA;
  --text-muted: #a8a8a8;
  --background: #0D0D0D;
  --bg-1: #0D0D0D;
  --bg-2: #1A1A1A;
  --bg-3: #242424;
  --white: #ffffff;
  --gold: #C9A84C;
  --brand-blue: #1A8FE3;
  --font-display: 'Cormorant Garamond', Didot, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'Cinzel', serif;

  --primary-on-bg: #F5F5F0;
  --secondary-dark: #151515;
  --secondary-light: #484848;
  --accent-on-bg: #C9A84C;
  --text-on-accent: #ffffff;}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg-1); color: var(--text); font-family: var(--font-body); font-size: 15px; line-height: 1.7; overflow-x: hidden; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-1); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 84px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links a { font-family: var(--font-body); font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: #d4d4d4; text-decoration: none; transition: color 0.3s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-mobile-toggle span { display: block; width: 24px; height: 1px; background: var(--white); transition: all 0.3s; }

/* BUTTONS */
.btn-primary { display: inline-block; background: var(--gold); color: #0a0a0a; font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; text-decoration: none; padding: 15px 42px; border: 1px solid var(--gold); border-radius: 0; cursor: pointer; transition: background 0.3s ease, color 0.3s ease; }
.btn-primary:hover { background: transparent; color: var(--gold); }
.btn-outline { display: inline-block; background: transparent; color: var(--white); font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; text-decoration: none; padding: 15px 42px; border: 1px solid rgba(255,255,255,0.5); border-radius: 0; cursor: pointer; transition: border-color 0.3s ease, color 0.3s ease; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* COMMON */
.section-kicker { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 10px; }
.gold-rule { width: 60px; height: 1px; background: var(--gold); margin: 14px auto 0; }
.section-heading { font-family: var(--font-display); font-size: 44px; font-weight: 500; color: var(--white); line-height: 1.15; letter-spacing: 1px; }
.text-center { text-align: center; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroFade { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.8s ease both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* HERO */
.products-hero {
  position: relative; min-height: 80vh; display: flex; align-items: flex-end;
  overflow: hidden; background: var(--bg-1); padding-top: 84px;
}
.products-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.products-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(13,13,13,0.45) 0%, rgba(13,13,13,0.68) 55%, rgba(13,13,13,0.92) 100%);
}
.products-hero-geo { position: absolute; right: 0; top: 84px; bottom: 0; width: 3px; background: linear-gradient(to bottom, transparent, var(--gold), transparent); z-index: 2; }
.products-hero-content { position: relative; z-index: 2; padding: 80px 60px 100px; max-width: 800px; animation: heroFade 1.2s ease both; }
.products-hero-kicker { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 24px; }
.products-hero-title { font-family: var(--font-display); font-size: clamp(48px, 7vw, 80px); font-weight: 400; color: var(--white); line-height: 1.05; letter-spacing: 1.5px; margin-bottom: 28px; }
.products-hero-title em { font-style: italic; color: var(--gold); }
.products-hero-sub { font-family: var(--font-body); font-size: 16px; font-weight: 300; color: #b8b8b8; letter-spacing: 0.5px; max-width: 520px; line-height: 1.85; margin-bottom: 44px; }
.products-hero-btns { display: flex; gap: 20px; flex-wrap: wrap; }

/* FILTER STRIP */
.filter-strip {
  background: var(--bg-2);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 28px 60px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
}
.filter-strip-label { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); margin-right: 16px; white-space: nowrap; flex-shrink: 0; }
.filter-btn { background: transparent; border: 1px solid rgba(201,168,76,0.25); color: #b8b8b8; font-family: var(--font-body); font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 8px 20px; cursor: pointer; border-radius: 0; transition: border-color 0.3s, color 0.3s, background 0.3s; white-space: nowrap; flex-shrink: 0; }
.filter-btn:hover, .filter-btn.active { border-color: var(--gold); color: var(--gold); }

/* COLLECTIONS OVERVIEW */
.collections-overview { background: var(--bg-1); padding: 110px 60px; }
.collections-nav-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2px;
  max-width: 1300px;
  margin: 0 auto;
}
.col-nav-card { position: relative; overflow: hidden; cursor: pointer; background: var(--bg-2); }
.col-nav-card:first-child { grid-row: span 2; }
.col-nav-visual { width: 100%; height: 320px; overflow: hidden; position: relative; }
.col-nav-card:first-child .col-nav-visual { height: 100%; min-height: 644px; }
.col-nav-visual img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.78) saturate(0.7); transition: filter 0.4s, transform 0.4s; }
.col-nav-card:hover .col-nav-visual img { filter: brightness(0.92) saturate(0.88); transform: scale(1.04); }
.col-nav-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,13,13,0.85) 0%, transparent 55%); transition: opacity 0.4s; }
.col-nav-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 30px; z-index: 2; }
.col-nav-tag { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 8px; }
.col-nav-name { font-family: var(--font-display); font-size: 28px; font-weight: 500; color: var(--white); letter-spacing: 0.5px; display: block; margin-bottom: 6px; transition: color 0.3s; }
.col-nav-card:hover .col-nav-name { color: var(--gold); }
.col-nav-count { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: #a8a8a8; }

/* STATS STRIP */
.stats-strip { background: var(--bg-2); border-top: 1px solid rgba(201,168,76,0.2); border-bottom: 1px solid rgba(201,168,76,0.2); padding: 50px 60px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.stat-item { text-align: center; padding: 20px; border-right: 1px solid rgba(201,168,76,0.15); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-display); font-size: 52px; font-weight: 500; color: var(--gold); line-height: 1; display: block; }
.stat-label { font-size: 10px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); margin-top: 8px; display: block; }

/* T-SHIRTS SECTION */
.tshirts-section { background: var(--bg-1); padding: 110px 60px; }
.products-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; max-width: 1300px; margin: 0 auto 60px; }
.product-card { background: var(--bg-2); cursor: pointer; transition: transform 0.3s ease; border: 1px solid rgba(201,168,76,0.08) !important; }
.product-card:hover { transform: scale(1.02); }
.product-img { width: 100%; height: 380px; background: var(--bg-3); position: relative; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.9) saturate(0.8); transition: filter 0.4s, transform 0.4s; }
.product-card:hover .product-img img { filter: brightness(1) saturate(0.95); transform: scale(1.04); }
.product-badge { position: absolute; top: 20px; right: 20px; background: var(--gold); color: #0a0a0a; font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 12px; z-index: 2; }
.product-body { padding: 24px 28px 28px; }
.product-cat { font-size: 9px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 8px; }
.product-name { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--white); letter-spacing: 0.5px; display: block; margin-bottom: 8px; }
.product-desc { font-size: 12px; color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--white); letter-spacing: 0.5px; }
.product-price .old-price { font-size: 13px; color: var(--text-muted); text-decoration: line-through; margin-left: 10px; font-weight: 300; font-family: var(--font-body); }
.product-add { width: 36px; height: 36px; border: 1px solid rgba(201,168,76,0.4); display: flex; align-items: center; justify-content: center; background: transparent; cursor: pointer; transition: border-color 0.3s, background 0.3s; flex-shrink: 0; }
.product-add:hover { border-color: var(--gold); background: rgba(201,168,76,0.1); }
.section-cta { text-align: center; }

/* HOODIES SECTION */
.hoodies-section { background: var(--bg-2); padding: 110px 60px; }
.products-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; max-width: 1300px; margin: 0 auto 60px; }
.product-card-large .product-img { height: 500px; }

/* JACKETS SECTION */
.jackets-section { background: var(--bg-1); padding: 110px 60px; }
.products-grid-asymm { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2px; max-width: 1300px; margin: 0 auto 60px; }
.products-grid-asymm .product-card:first-child .product-img { height: 520px; }

/* BRAND STATEMENT */
.brand-statement-strip {
  background: var(--bg-3);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 110px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.brand-statement-strip-wrap { background: var(--bg-3); border-top: 1px solid rgba(201,168,76,0.2); border-bottom: 1px solid rgba(201,168,76,0.2); }
.bss-text .section-kicker { margin-bottom: 16px; }
.bss-heading { font-family: var(--font-display); font-size: 48px; font-weight: 400; color: var(--white); line-height: 1.15; margin-bottom: 28px; }
.bss-heading em { font-style: italic; color: var(--gold); }
.bss-rule { width: 60px; height: 1px; background: var(--gold); margin-bottom: 28px; }
.bss-body { font-size: 14px; color: #b8b8b8; line-height: 1.9; margin-bottom: 20px; }
.bss-visual { position: relative; }
.bss-img-frame { position: relative; width: 100%; height: 520px; overflow: hidden; background: var(--bg-2); }
.bss-img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.85) saturate(0.75); }
.bss-corner-tl { position: absolute; top: -8px; left: -8px; width: 30px; height: 30px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.bss-corner-br { position: absolute; bottom: -8px; right: -8px; width: 30px; height: 30px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }

/* ACCESSORIES SECTION */
.accessories-section { background: var(--bg-2); padding: 110px 60px; }
.products-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; max-width: 1300px; margin: 0 auto 60px; }
.product-card-sm .product-img { height: 300px; }

/* FULL PRODUCT GRID (WC) */
.all-products-section { background: var(--bg-1); padding: 110px 60px; }
.sf-products-section {}
.sf-product-card { background: var(--bg-2); cursor: pointer; transition: transform 0.3s ease; border: 1px solid rgba(201,168,76,0.08) !important; }
.sf-product-card:hover { transform: scale(1.02); }

/* TESTIMONIALS */
.testimonials { background: var(--bg-2); padding: 110px 60px; }
.sf-testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; max-width: 1200px; margin: 0 auto; }
.sf-testimonial-item { background: var(--bg-3); padding: 44px 36px; position: relative; transition: transform 0.3s ease; border: 1px solid rgba(201,168,76,0.1) !important; }
.sf-testimonial-item:hover { transform: scale(1.02); }
.sf-testimonial-item::before { content: '\201C'; position: absolute; top: 20px; left: 28px; font-family: var(--font-display); font-size: 80px; line-height: 1; color: var(--gold); opacity: 0.25; }
.sf-testimonial-stars { color: var(--gold); font-size: 13px; letter-spacing: 3px; margin-bottom: 18px; display: block; }
.sf-testimonial-quote { font-family: var(--font-display); font-size: 18px; font-weight: 400; color: var(--white); line-height: 1.65; font-style: italic; margin-bottom: 28px; border: none; padding: 0; }
.sf-testimonial-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid rgba(201,168,76,0.15); padding-top: 22px; }
.sf-testimonial-avatar { width: 42px; height: 42px; object-fit: cover; border-radius: 0; border: 1px solid rgba(201,168,76,0.3) !important; }
.sf-testimonial-name { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); }
.sf-testimonial-role { font-size: 10px; color: var(--text-muted); letter-spacing: 1px; margin-top: 3px; }

/* PROCESS */
.process-section { background: var(--bg-1); padding: 110px 60px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; max-width: 1200px; margin: 0 auto; border: 1px solid rgba(201,168,76,0.1); }
.process-step { background: var(--bg-2); padding: 50px 36px; text-align: center; border-right: 1px solid rgba(201,168,76,0.08); }
.process-step:last-child { border-right: none; }
.process-number { font-family: var(--font-display); font-size: 64px; font-weight: 300; color: rgba(201,168,76,0.2); line-height: 1; display: block; margin-bottom: 20px; }
.process-icon { width: 48px; height: 48px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(201,168,76,0.4); }
.process-step-title { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--white); margin-bottom: 14px; letter-spacing: 0.5px; }
.process-step-text { font-size: 12px; color: var(--text-muted); line-height: 1.8; }

/* CTA BANNER */
.cta-banner { background: var(--bg-3); border-top: 1px solid rgba(201,168,76,0.2); border-bottom: 1px solid rgba(201,168,76,0.2); padding: 100px 60px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: 'KRYPT'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--font-display); font-size: 220px; font-weight: 600; color: rgba(201,168,76,0.04); letter-spacing: 20px; pointer-events: none; white-space: nowrap; }
.cta-banner-kicker { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 20px; position: relative; z-index: 1; }
.cta-banner-heading { font-family: var(--font-display); font-size: 56px; font-weight: 400; color: var(--white); line-height: 1.15; letter-spacing: 2px; margin-bottom: 20px; position: relative; z-index: 1; }
.cta-banner-sub { font-size: 14px; color: #b8b8b8; letter-spacing: 0.5px; margin-bottom: 44px; position: relative; z-index: 1; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* NEWSLETTER */
.newsletter { background: var(--bg-2); padding: 90px 60px; text-align: center; border-top: 1px solid rgba(201,168,76,0.1); }
.newsletter-kicker { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 16px; }
.newsletter-heading { font-family: var(--font-display); font-size: 40px; font-weight: 400; color: var(--white); margin-bottom: 14px; }
.newsletter-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 40px; }
.newsletter-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; }
.newsletter-form input { flex: 1; background: var(--bg-3); border: 1px solid rgba(201,168,76,0.25); border-right: none; color: var(--white); font-family: var(--font-body); font-size: 12px; letter-spacing: 1px; padding: 14px 20px; outline: none; transition: border-color 0.3s; }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form button { background: var(--gold); border: 1px solid var(--gold); color: #0a0a0a; font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; padding: 14px 28px; cursor: pointer; border-radius: 0; transition: background 0.3s; }
.newsletter-form button:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); }

/* FOOTER */
footer { background: var(--bg-1); padding: 80px 60px 0; border-top: 1px solid rgba(201,168,76,0.15); }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(201,168,76,0.1); }
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo-text { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--white); letter-spacing: 4px; text-transform: uppercase; }
.footer-brand-desc { font-size: 12px; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; max-width: 280px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: border-color 0.3s, background 0.3s; }
.footer-social a:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--white); margin-bottom: 22px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { font-size: 12px; color: var(--text-muted); text-decoration: none; letter-spacing: 0.5px; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
.footer-copy { font-size: 11px; color: rgba(168,168,168,0.6); letter-spacing: 0.5px; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 11px; color: rgba(168,168,168,0.6); text-decoration: none; letter-spacing: 0.5px; transition: color 0.3s; }
.footer-legal a:hover { color: var(--gold); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  nav { padding: 0 30px; }
  .products-hero-content { padding: 60px 30px 80px; }
  .filter-strip { padding: 20px 30px; }
  .collections-overview, .tshirts-section, .hoodies-section, .jackets-section, .accessories-section, .all-products-section, .process-section, .cta-banner, .testimonials, .newsletter { padding: 80px 30px; }
  .collections-nav-grid { grid-template-columns: 1fr 1fr; }
  .col-nav-card:first-child { grid-column: span 2; grid-row: span 1; }
  .col-nav-card:first-child .col-nav-visual { min-height: 360px; }
  .products-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .products-grid-asymm { grid-template-columns: 1fr 1fr; }
  .products-grid-asymm .product-card:first-child .product-img { height: 380px; }
  .products-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .brand-statement-strip { grid-template-columns: 1fr; gap: 60px; padding: 80px 30px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); padding: 40px 30px; }
  .stat-item:nth-child(2) { border-right: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .sf-testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .products-hero-content { padding: 50px 20px 70px; }
  .filter-strip { padding: 16px 20px; }
  .collections-overview, .tshirts-section, .hoodies-section, .jackets-section, .accessories-section, .all-products-section, .process-section, .cta-banner, .testimonials, .newsletter { padding: 70px 20px; }
  .collections-nav-grid { grid-template-columns: 1fr; }
  .col-nav-card:first-child { grid-column: span 1; }
  .products-grid-3, .products-grid-2, .products-grid-asymm, .products-grid-4 { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); padding: 30px 20px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.1); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .sf-testimonial-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  footer { padding: 60px 20px 0; }
  .brand-statement-strip { padding: 70px 20px; }
  .bss-heading { font-size: 36px; }
  .cta-banner-heading { font-size: 38px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid rgba(201,168,76,0.25); border-bottom: none; }
}

body h1, body h2, body h3, body h4, body h5, body h6,
body .sf-post-title, body .sf-testimonial-name, body .sf-team-member h3, body .sf-portfolio-item h3, body .sf-faq-item h3,
body .woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: var(--font-display); }
body img { border: 1px solid rgba(201,168,76,0.25) !important; }
body .card, body article, body .product-card, body .sf-product-card, body .sf-testimonial-item { border-radius: 0 !important; box-shadow: none !important; }
body h1, body h2, body h3, body h4, body h5, body h6,
body .sf-post-title, body .sf-testimonial-name, body .sf-team-member h3, body .sf-portfolio-item h3, body .sf-faq-item h3,
body .woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: var(--font-display); }

/* SITEFORGE STYLE SHAPE OVERLAY (post-processed) */
body button, body .btn, body a.btn, body .cta, body .nav-cta { border-radius: 2px !important; border: 1px solid #d4af37 !important; background: transparent !important; color: #d4af37 !important; padding: 14px 38px !important; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 400 !important; box-shadow: none !important; }
body .card, body article, body .feature, body .service-card, body .sf-post-card, body .sf-testimonial-item, body .sf-team-member, body .sf-portfolio-item, body .sf-faq-item, body .sf-video-item, body .sf-product-card, body .woocommerce ul.products li.product { border-radius: 0 !important; border: 1px solid rgba(212,175,55,0.30) !important; box-shadow: none !important; }
body img { border: 1px solid #d4af37 !important; }
/* SITEFORGE IMAGE INJECTOR — VISIBILITY + MOBILE OVERRIDES (post-processed) */
/* Body font fallback — ONLY applies if Claude did not declare --font-body.
   We must NOT hardcode :root values here because that would stomp the
   per-style font choices Claude makes (Quicksand for soft-pastel,
   Fraunces for warm-organic, Libre Baskerville for corporate-premium, etc.).
   The CSS var() fallback syntax uses the declared var when present and
   our fallback only when the var is undefined. */
body { font-family: var(--font-body, 'Inter', system-ui, -apple-system, sans-serif); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading, var(--font-display, inherit)); }
img.sf-hero-img, img.sf-injected-thumb, img.sf-svg-replaced { filter: none !important; opacity: 1 !important; mix-blend-mode: normal !important; }
/* Fill the parent container completely — most Step 4 SVG-sweep slots
   live inside sized wrappers (product-card-img with aspect-ratio,
   feature-img with explicit height, etc.). height:100% plus object-fit
   ensures all cards in a grid render at the same height regardless of
   each image natural aspect ratio. */
img.sf-svg-replaced { width: 100%; height: 100%; object-fit: cover; display: block; }
img[src*="/api/images/serve/"], img[src*="/wp-content/uploads/"] { filter: none !important; opacity: 1 !important; mix-blend-mode: normal !important; }
.sf-post-thumb, .sf-portfolio-thumb, .sf-team-photo, .sf-product-thumb, .post-card-image, .feature-image, .feat-img, .card-image, .gallery-item, .menu-item-image, .sust-img, .why-image, .product-img { filter: none !important; opacity: 1 !important; min-height: 180px; }
.sf-post-thumb::after, .sf-post-thumb::before, .sf-portfolio-thumb::after, .feat-img::after, .sust-img::after, [class*="thumb"]::after, [class*="card-img"]::after { display: none !important; background: none !important; }
/* F3 — softer overlay so the hero image stays visible. Previous 0.55-0.80
   gradient (paired with Claude's heavy .hero-overlay) turned dark photos
   into solid black. 0.20-0.55 is still enough to keep white text legible
   on most photos, but the image actually shows through. */
.sf-hero-img + .sf-hero-overlay { background: linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.55) 100%) !important; inset: 0 !important; z-index: 2 !important; }
section[class*="hero"] .sf-hero-img { display: block !important; visibility: visible !important; z-index: 1 !important; }
/* F2 — Claude often writes its own .hero-overlay with heavy tint (e.g.
   linear-gradient(90deg,rgba(0,0,0,0.78),rgba(0,0,0,0.35))) and then our
   injector adds a second .sf-hero-overlay on top. Stacked, the two can
   effectively hide the hero photo — firearm-a-fixes hero shipped as a
   solid black block despite the <img> being in the DOM. When our
   sf-hero-img is present, neutralise Claude's hero-overlay so only ours
   (which is tuned for text-legibility, not "dim the whole image") applies. */
section[class*="hero"]:has(.sf-hero-img) .hero-overlay,
section[class*="hero"]:has(.sf-hero-img) .hero-bg-overlay,
section[class*="hero"]:has(.sf-hero-img) .hero-bg-shape,
section[class*="hero"]:has(.sf-hero-img) > .overlay,
section[class*="hero"]:has(.sf-hero-img) > .banner-overlay { background: transparent !important; opacity: 0 !important; }
/* F2b — Broaden overlay-neutralise to cover Claude's alternate hero
   image class names (.hero-media, .hero-picture, .hero-figure,
   .banner-image, .cover-photo, .masthead-image, .jumbo-image) and his
   sibling-div overlays whose class name doesn't start with "hero"
   (.overlay, .gradient, .tint, .shade, .scrim, .veil, .darken, .dim,
   .fade, .inset-0, .fixed-overlay, .full-overlay, .image-overlay,
   .background-overlay). Previously we only caught the exact class list
   above, so batch-2026-04-18 had 9/9 styles failing with
   hero-img-covered-by-overlay. Attribute selectors let us match any
   class name containing the substring without listing every variant. */
section[class*="hero"]:has(img.sf-hero-img),
section[class*="hero"]:has(img.hero-bg),
section[class*="hero"]:has(img.hero-image),
section[class*="hero"]:has(img.hero-photo),
section[class*="hero"]:has(img.hero-media),
section[class*="hero"]:has(img.hero-picture),
section[class*="hero"]:has(img.hero-figure),
section[class*="hero"]:has(img.banner-image),
section[class*="hero"]:has(img.cover-photo),
section[class*="hero"]:has(img.masthead-image),
section[class*="hero"]:has(img.jumbo-image) { /* marker for Fix 1 — keep the :has() set even if empty; actual rules live below */
  position: relative;
}
/* Claude's sibling-div overlays inside a hero with an img. Any direct
   child of a hero section whose class hints at a dark overlay, when
   the hero also contains any img, is neutralised. Excludes
   .sf-hero-overlay (ours, tuned for text legibility). */
section[class*="hero"]:has(img) > [class*="overlay"]:not(.sf-hero-overlay),
section[class*="hero"]:has(img) > [class*="gradient"]:not(.sf-hero-overlay),
section[class*="hero"]:has(img) > [class*="tint"],
section[class*="hero"]:has(img) > [class*="shade"],
section[class*="hero"]:has(img) > [class*="scrim"],
section[class*="hero"]:has(img) > [class*="veil"],
section[class*="hero"]:has(img) > [class*="darken"],
section[class*="hero"]:has(img) > [class*="dim"],
section[class*="hero"]:has(img) > [class*="fade"],
section[class*="hero"]:has(img) > [class*="inset-0"],
div[class*="hero"]:has(img) > [class*="overlay"]:not(.sf-hero-overlay),
div[class*="hero"]:has(img) > [class*="gradient"]:not(.sf-hero-overlay),
div[class*="hero"]:has(img) > [class*="tint"],
div[class*="hero"]:has(img) > [class*="shade"],
div[class*="hero"]:has(img) > [class*="scrim"],
div[class*="hero"]:has(img) > [class*="veil"] { background: transparent !important; background-image: none !important; opacity: 0 !important; }
/* Block pure-color ::before/::after overlays that Claude sometimes uses
   instead of a child div. If the hero has an img, strip the pseudo-el
   background (only the decorative layer; doesn't affect real content). */
section[class*="hero"]:has(img)::before,
section[class*="hero"]:has(img)::after,
div[class*="hero"]:has(img)::before,
div[class*="hero"]:has(img)::after { background: transparent !important; background-image: none !important; }
/* Claude's decorative hero-visual/hero-bg-shape slots become redundant
   when our sf-hero-img is the background photo. Hide them so they can't
   overlap with hero-content. */
section[class*="hero"] .sf-hero-img ~ .hero-visual,
section[class*="hero"] .sf-hero-img ~ .hero-bg,
section[class*="hero"] .sf-hero-img ~ .hero-bg-shape,
section[class*="hero"] .sf-hero-img ~ .hero-bg-shape-2,
section[class*="hero"] .sf-hero-img ~ .hero-decoration,
section[class*="hero"] .sf-hero-img ~ .hero-pattern { display: none !important; }
/* When full-bleed sf-hero-img is injected, hide any split-layout visual
   column that only contains a decorative SVG (hero-right, hero-visual,
   hero-image with SVG child). The full-bleed background replaces the
   visual column's purpose. Without this, the SVG column takes 50% of
   the grid and the text is squeezed to the left — the user expects
   either a full-width hero or a properly sized image column. The :has()
   selector ensures we only hide columns that contain SVGs, not columns
   with real text/stats content (like brutalist hero-right with stats). */
section[class*="hero"]:has(.sf-hero-img) > .hero-right:has(> svg),
section[class*="hero"]:has(.sf-hero-img) > .hero-visual:has(> svg),
section[class*="hero"]:has(.sf-hero-img) > .hero-image:has(> svg),
div[class*="hero"]:has(.sf-hero-img) > .hero-right:has(> svg),
div[class*="hero"]:has(.sf-hero-img) > .hero-visual:has(> svg),
div[class*="hero"]:has(.sf-hero-img) > .hero-image:has(> svg) { display: none !important; }
/* Collapse the hero grid to single-column when the visual column is
   hidden, so the text content spans the full width over the background. */
section[class*="hero"]:has(.sf-hero-img):has(> .hero-right > svg),
section[class*="hero"]:has(.sf-hero-img):has(> .hero-visual > svg),
div[class*="hero"]:has(.sf-hero-img):has(> .hero-right > svg),
div[class*="hero"]:has(.sf-hero-img):has(> .hero-visual > svg) { grid-template-columns: 1fr !important; }
/* Also hide decorative elements that are siblings of the hero content
   (circles, accent blocks, gradient overlays that clash with sf-hero-img). */
section[class*="hero"] .sf-hero-img ~ .hero-decor-circle,
section[class*="hero"] .sf-hero-img ~ .hero-accent-block { display: none !important; }
/* Guarantee hero headline legibility ON TOP OF a full-bleed photo.
   These rules ONLY fire when our injector added an .sf-hero-img
   full-bleed background. Split-layout heros (image column + text
   column on a white background, like brutalist) must KEEP their
   original dark-on-light typography — applying white text + dark
   text-shadow to a white background is the "invisible hero" bug
   (QA 2026-04-09). The :has() selector scopes the override so
   it only triggers when a descendant .sf-hero-img exists. */
section[class*="hero"]:has(.sf-hero-img) h1,
section[class*="hero"]:has(.sf-hero-img) .hero-title,
section[class*="hero"]:has(.sf-hero-img) .hero-headline,
div[class*="hero"]:has(.sf-hero-img) h1,
div[class*="hero"]:has(.sf-hero-img) .hero-title,
div[class*="hero"]:has(.sf-hero-img) .hero-headline { text-shadow: 0 2px 22px rgba(0,0,0,0.70), 0 1px 3px rgba(0,0,0,0.55) !important; color: #ffffff !important; }
section[class*="hero"]:has(.sf-hero-img) .hero-eyebrow,
section[class*="hero"]:has(.sf-hero-img) .hero-kicker,
section[class*="hero"]:has(.sf-hero-img) .hero-sub,
section[class*="hero"]:has(.sf-hero-img) .hero-subtitle,
section[class*="hero"]:has(.sf-hero-img) .hero-description,
section[class*="hero"]:has(.sf-hero-img) .hero-body,
div[class*="hero"]:has(.sf-hero-img) .hero-eyebrow,
div[class*="hero"]:has(.sf-hero-img) .hero-kicker,
div[class*="hero"]:has(.sf-hero-img) .hero-sub,
div[class*="hero"]:has(.sf-hero-img) .hero-subtitle,
div[class*="hero"]:has(.sf-hero-img) .hero-description,
div[class*="hero"]:has(.sf-hero-img) .hero-body {
  text-shadow: 0 2px 14px rgba(0,0,0,0.80), 0 1px 3px rgba(0,0,0,0.60) !important;
  color: rgba(255,255,255,0.92) !important;
}
/* Hoist hero content wrappers above the dark overlay via z-index. We
   take a two-layer approach:
     1. Explicit class list — fast match for the common wrappers
        (.hero-content, .hero-left, .hero-text, .hero-body, etc.)
     2. :has() fallback — any direct child of .hero that contains an
        h1 or h2 is almost certainly the text wrapper and gets hoisted.
        This catches unusual class names (e.g. .hero-headline-block,
        .hero-intro-wrap) without touching decorative siblings (which
        don't contain headings), so .hero-overlay/.hero-accent etc.
        keep their absolute positioning untouched.
   CRITICAL: we do NOT use a plain catch-all :not(.sf-hero-img)...
   selector because that stomps Claude's position:absolute decorations
   and pushes real content across the viewport. */
section[class*="hero"] .hero-content,
section[class*="hero"] .hero-inner,
section[class*="hero"] .hero-left,
section[class*="hero"] .hero-right,
section[class*="hero"] .hero-text,
section[class*="hero"] .hero-copy,
section[class*="hero"] .hero-body,
section[class*="hero"] .hero-wrap,
section[class*="hero"] .hero-grid,
section[class*="hero"] .hero-cols,
section[class*="hero"] .hero-main,
section[class*="hero"] .hero-container,
section[class*="hero"] .hero-info,
section[class*="hero"] .hero-column,
section[class*="hero"] .hero-col,
section[class*="hero"] .hero-details,
section[class*="hero"] .hero-panel,
/* CTA rows, stat rows, and other peer siblings of the hero headline.
   Claude sometimes writes these as DIRECT children of <section class="hero">
   rather than nesting them inside a .hero-content wrapper, so the
   :has() fallback below (which needs h1/h2 inside the child) doesn't
   catch them and they fall behind the .sf-hero-overlay at z-index:2. */
section[class*="hero"] .hero-ctas,
section[class*="hero"] .hero-cta,
section[class*="hero"] .hero-cta-row,
section[class*="hero"] .hero-actions,
section[class*="hero"] .hero-buttons,
section[class*="hero"] .hero-btns,
section[class*="hero"] .hero-btn-row,
section[class*="hero"] .hero-buttons-row,
section[class*="hero"] .hero-stats,
section[class*="hero"] .hero-stat,
section[class*="hero"] .hero-stat-row,
section[class*="hero"] .hero-meta,
section[class*="hero"] .hero-badge,
section[class*="hero"] .hero-scroll,
section[class*="hero"] .hero-features,
section[class*="hero"] .hero-highlights,
/* :has() fallback for unknown class names — any direct child of .hero
   containing an h1/h2 is the text wrapper. */
section[class*="hero"] > *:has(> h1),
section[class*="hero"] > *:has(> h2),
section[class*="hero"] > *:has(> h3),
section[class*="hero"] > *:has(h1),
section[class*="hero"] > *:has(h2) { position: relative !important; z-index: 3 !important; }
/* Extra safety: ensure the headline and its direct paragraph siblings
   inside .hero create a stacking context above the overlay even if the
   wrapper isn't caught by any selector above. */
section[class*="hero"] h1,
section[class*="hero"] h2,
section[class*="hero"] h1 + p,
section[class*="hero"] h2 + p,
/* Headline-sibling fallback: any .hero-ctas / .hero-actions / .hero-stats
   that sits after an h1/h2 peer as a direct child of the hero section.
   Covers Claude heros where CTAs are flat siblings, not nested. */
section[class*="hero"] > .hero-ctas,
section[class*="hero"] > .hero-cta-row,
section[class*="hero"] > .hero-actions,
section[class*="hero"] > .hero-buttons,
section[class*="hero"] > .hero-btns,
section[class*="hero"] > .hero-stats,
section[class*="hero"] > .hero-meta { position: relative !important; z-index: 3 !important; }
/* Decorative step/process numbers contrast fix. Claude's editorial
   styles often use "ghost numbers" like .process-num color #27272a on
   a #1f1f23 background — grey-on-grey with ~1.3:1 contrast, way below
   WCAG AA. Force a minimum visible tint at 38% white so the effective
   colour is ~#8a8a8d which gives roughly 4:1 contrast — passes WCAG
   AA for large text. */
/* FAQ item spacing — style registries often apply a full border to
   .sf-faq-item via the shapeOverlay without adjusting horizontal
   padding, so the summary text hugs the left border and the arrow
   hugs the right. Force a sensible inner gutter so both read well
   inside the box. */
.sf-faq-item,
.faq-item,
.accordion-item {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.sf-faq-item summary,
.faq-item summary,
.accordion-item summary {
  gap: 16px !important;
}
/* NOTE: Dark-editorial decorative number contrast fix used to live here
   but was moved to StyleDefinition.postProcessOverrides in style-registry.ts
   so it ONLY applies to dark-editorial (scoped via .sf-style-dark-editorial).
   Previously as a global rule it stomped luxury-minimal's intentional
   72px ghost-decoration .process-number at 6% opacity. Per-style CSS
   bug fixes should go in postProcessOverrides going forward — see
   StyleDefinition JSDoc. */
/* Findus marker icons (bullets, pins): small, never wider than 160px.
   The .sf-findus-map class is the OPPOSITE — it's the primary map display
   and must span up to 720px. Explicitly exclude .sf-findus-map from the
   constraint so it can render full-width. */
.sf-findus-injected img:not(.sf-findus-map),
.sf-findus-markers img,
.sf-findus-marker,
[class*="findus-marker"] img,
[class*="location-marker"] img { max-width: 160px !important; width: auto !important; height: auto !important; }
.sf-findus-map { width: 100% !important; max-width: 720px !important; height: auto !important; display: block !important; margin: 0 auto !important; }
.sf-team-section { padding: 80px 32px; max-width: 1400px; margin: 0 auto; }
.sf-team-section h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 48px; text-align: center; }
.sf-team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; }
.sf-team-card { display: flex; flex-direction: column; }
/* object-position:center 20% biases the crop toward the top of the image
   so landscape photos (native 1.6:1) still show faces rather than torsos. */
.sf-team-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 20%; display: block; margin-bottom: 16px; }
.sf-team-card-name { font-size: 14px; text-align: center; opacity: 0.75; }
.sf-findus-section { padding: 80px 32px; max-width: 1400px; margin: 0 auto; }
.sf-findus-section h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 32px; text-align: center; }
.sf-findus-inner { display: grid; grid-template-columns: minmax(260px, 320px) 1fr; gap: 32px; align-items: stretch; }
.sf-findus-markers { display: flex; flex-wrap: wrap; gap: 16px; }
.sf-findus-markers img { max-width: 120px; height: auto; }
/* Map iframe gets the REMAINING width after the 320px info column.
   Guarantees a full-width-feeling map on desktop (~1080px wide). */
.sf-findus-iframe { width: 100% !important; min-height: 420px !important; border: 0 !important; display: block !important; }
/* When the findus content is injected into an existing section
   (via Step 2.55 retrofit), force the iframe wrapper to span full width. */
.sf-findus-injected { display: block; width: 100%; margin-top: 32px; }
.sf-findus-injected iframe { width: 100% !important; min-height: 420px !important; }
.sf-about-section { padding: 80px 32px; max-width: 1400px; margin: 0 auto; }
.sf-about-section h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 32px; }
.sf-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.sf-about-grid img { width: 100%; height: auto; display: block; }
.sf-injected-logo img { height: 36px !important; width: auto !important; }
/* Feature/capability strip overflow: when items wrap to a 2nd row (e.g.
   7 items in a 6-col grid), convert to horizontal scroll so the strip
   stays single-line. Also handles flex-wrap overflow. */
[class*="feature-strip"], [class*="capability-strip"], [class*="product-strip"],
[class*="service-strip"], [class*="solution-strip"] {
  flex-wrap: nowrap !important; overflow-x: auto !important;
  -webkit-overflow-scrolling: touch; scrollbar-width: thin;
}
[class*="feature-grid"], [class*="capability-grid"], [class*="product-nav"],
[class*="service-nav"], [class*="solution-nav"] {
  grid-auto-flow: column !important; overflow-x: auto !important;
  grid-template-rows: 1fr !important; scrollbar-width: thin;
}
/* SVG icon placeholders injected by Step 1.5 — size to parent container */
.sf-icon-placeholder { width: 100% !important; height: 100% !important; max-width: 64px; max-height: 64px; display: block; }
/* Photo-in-icon safety net: hide any real photos that still ended up in
   icon containers (edge cases not caught by Step 1/1.5). */
img[class*="-icon"][src*="/api/images/serve/"],
img[class*="icon-"][src*="/api/images/serve/"],
img.icon[src*="/api/images/serve/"] { display: none !important; }
/* Dark section text contrast safety net. Claude generates dark-bg sections
   (industry grids, stats, features) with light text that can be too low
   contrast. Force minimum readability on any dark-background section. */
section[style*="background"][style*="#1"] h2,
section[style*="background"][style*="#2"] h2,
[class*="dark"] h2, [class*="dark"] h3, [class*="dark"] p,
[class*="dark"] span, [class*="dark"] a:not([class*="btn"]) {
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
/* Industry/vertical grid cards on dark backgrounds — ensure text is legible.
   Scoped to descendants of an industry GRID / CARD container so this rule
   doesn't stomp every anchor's color on styles whose scope class happens
   to contain the substring industri (e.g. sf-style-neo-industrial). */
[class*="industr"][class*="grid"] [class*="card"] h3,
[class*="industr"][class*="grid"] [class*="card"] p,
[class*="industr"][class*="grid"] [class*="item"] span,
[class*="industr"][class*="grid"] a:not(.nav-cta):not(.btn-primary):not(.btn-outline):not([class*="btn"]):not([class*="cta"]) { color: inherit; }
/* Logo/client strip photos: hide any non-logo images that leaked through.
   Real logos use text or SVGs; photos of warehouses/offices should not appear. */
[class*="logo-grid"] img[src*="/api/images/serve/"]:not([class*="logo"]),
[class*="client-logo"] img[src*="/api/images/serve/"]:not([class*="logo"]),
[class*="logo-strip"] img[src*="/api/images/serve/"]:not([class*="logo"]) {
  max-width: 120px !important; max-height: 48px !important;
  object-fit: contain !important; opacity: 0.7 !important;
  filter: grayscale(100%) !important;
}
@media (max-width: 768px) {
  .sf-team-section, .sf-findus-section, .sf-about-section { padding: 56px 20px; }
  .sf-team-grid { grid-template-columns: 1fr; }
  .sf-findus-inner, .sf-about-grid { grid-template-columns: 1fr; gap: 24px; }
}
/* ── Photo Slider (for sections with 4+ images) ── */
.sf-slider { position: relative; overflow: hidden; padding-bottom: 48px; }
.sf-slider-track { display: flex; transition: transform 0.4s ease; }
.sf-slider-slide { flex: 0 0 calc(33.33% - 16px); margin: 0 8px; }
.sf-slider-slide img { width: 100%; height: 280px; object-fit: cover; border-radius: 8px; display: block; }
.sf-slider-prev, .sf-slider-next { position: absolute; top: 50%; transform: translateY(calc(-50% - 24px)); width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.9); border: none; font-size: 20px; cursor: pointer; z-index: 5; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.15); transition: background 0.2s; }
.sf-slider-prev:hover, .sf-slider-next:hover { background: #fff; }
.sf-slider-prev { left: 8px; }
.sf-slider-next { right: 8px; }
.sf-slider-dots { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.sf-slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,0.2); border: none; cursor: pointer; transition: background 0.2s; padding: 0; }
.sf-slider-dot.active { background: rgba(0,0,0,0.6); }
@media (max-width: 1024px) { .sf-slider-slide { flex: 0 0 calc(50% - 16px); } }
@media (max-width: 640px) { .sf-slider-slide { flex: 0 0 calc(100% - 16px); } .sf-slider-slide img { height: 220px; } }
/* SiteForge nav sync BEGIN — do not edit, regenerated on publish */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-img{ height: 40px; width: auto; display: block; }
.nav-logo-text{
  font-family: 'Bebas Neue', 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
}
.collections-header{
  text-align: center;
  margin-bottom: 70px;
}
.products-header{
  text-align: center;
  margin-bottom: 70px;
}
.testimonials-header{
  text-align: center;
  margin-bottom: 70px;
}
.process-header{
  text-align: center;
  margin-bottom: 80px;
}
.blog-header{
  text-align: center;
  margin-bottom: 70px;
}
/* SiteForge nav sync END */