:root {
  --bg: #FFFFFF;
  --bg-alt: #F3EEE6;
  --bg-dark: #111111;
  --bg-darker: #0A0A0A;
  --surface: #F3EEE6;
  --surface-dark: #1A1A1A;

  --lime: #A16207;
  --lime-hover: #854D0A;
  --lime-bg: rgba(161,98,7,0.12);
  --lime-bright: #C98A1E;

  --text-primary: #111111;
  --text-secondary: #555555;
  --text-muted: #777777;
  --text-light: #F5F5F5;
  --text-lime: #FFFFFF;

  --border: 1px solid #E6DFD4;
  --border-dark: 1px solid #2A2A2A;
  --border-lime: 1px solid rgba(161,98,7,0.5);

  --shadow: 0 2px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 40px rgba(0,0,0,0.12);
  --transition: all 0.3s ease;

  --font-display: 'Big Shoulders Display', 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1280px;

  /* Sizing — overridable from Customizer → Sizing & Typography */
  --fs-base: 16px;
  --heading-scale: 1;
  --space-section: 100px;
  --radius: 0px;

  /* Legacy aliases — keep for backward compat */
  --color-bg: #FFFFFF;
  --color-bg-dark: #111111;
  --color-surface: #F3EEE6;
  --color-surface-2: #F3EEE6;
  --color-surface-dark: #1A1A1A;
  --color-surface-dark-2: #222222;
  --color-lime: #A16207;
  --color-lime-dark: #854D0A;
  --color-black: #111111;
  --color-white: #FFFFFF;
  --color-text-dark: #111111;
  --color-text-light: #F5F5F5;
  --color-gray-light: #666666;
  --color-gray-mid: #888888;
  --color-gray-dark: #AAAAAA;
  --border-light: 1px solid #E6DFD4;
  --border-lime: 1px solid rgba(161,98,7,0.5);
  --shadow-lime: 0 4px 20px rgba(161,98,7,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base, 16px);
  line-height: 1.7;
  background: var(--bg);
  color: var(--text-primary);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--text-primary);
}

p { font-family: var(--font-body); color: var(--text-secondary); line-height: 1.8; }
a { transition: var(--transition); }
img { max-width: 100%; display: block; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: #CCCCCC; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--lime); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: var(--space-section, 100px) 0; }
.section-pad-sm { padding: calc(var(--space-section, 100px) * 0.6) 0; }
.text-center { text-align: center; }

/* Section tag — lime bg, black text, Bebas Neue */
.section-tag, .section-tag-dark {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: #A16207;
  color: #FFFFFF;
  padding: 4px 14px;
  margin-bottom: 16px;
  border: none;
}

/* Section title */
.section-title {
  font-family: var(--font-display);
  font-size: calc(clamp(40px, 6vw, 84px) * var(--heading-scale, 1));
  font-weight: 800;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 0.92;
  margin-bottom: 20px;
}

/* Section subtitle */
.section-subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--lime);
  color: #FFFFFF;
  padding: 14px 36px;
  border: none;
  border-radius: var(--radius, 0);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--lime-hover); }

.btn-outline, .btn-outline-light {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  color: var(--text-primary);
  padding: 14px 36px;
  border: 2px solid var(--text-primary);
  border-radius: var(--radius, 0);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}
.btn-outline:hover, .btn-outline-light:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: #FFFFFF;
}

/* Reveal animation */
/* Hidden only once html.js-anim confirms the reveal script is running (see
   header.php) — so content stays visible by default anywhere that inline
   script doesn't run, e.g. no-JS visitors or the block editor preview. */
html.js-anim .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
/* Must out-specificity the rule above (html.js-anim .reveal), or "visible"
   never wins once js-anim is present on a real page load — content would get
   the .visible class from main.js but stay stuck at opacity:0 forever. */
html.js-anim .reveal.visible, .reveal.visible { opacity: 1; transform: translateY(0); }

.site-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

/* Top bar */
.top-bar {
  background: #0A0A0A;
  padding: 8px 0;
  border-bottom: 1px solid #1E1E1E;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}
.contact-item {
  font-family: var(--font-body);
  font-size: 12px;
  color: #AAAAAA;
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-left { display: flex; gap: 20px; }
.top-bar-right { display: flex; gap: 14px; }
.social-icon { color: #888888; text-decoration: none; transition: var(--transition); }
.social-icon:hover { color: var(--lime); }

/* Main nav */
.main-nav {
  background: #111111;
  padding: 18px 0;
  border-bottom: 2px solid var(--lime);
  transition: var(--transition);
}
.main-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}

/* Logo */
.site-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--lime);
  text-decoration: none;
}

/* Nav links */
.desktop-menu .nav-list { display: flex; list-style: none; gap: 4px; }
.desktop-menu .nav-list li a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #DDDDDD;
  text-decoration: none;
  padding: 8px 14px;
  transition: var(--transition);
}
.desktop-menu .nav-list li a:hover { color: var(--lime); }

.header-right { display: flex; align-items: center; }
.desktop-cta { }

/* Scrolled state — stays dark */
.site-header.scrolled .main-nav {
  background: rgba(10,10,10,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

/* Mobile */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.hamburger-line {
  width: 24px; height: 2px;
  background: #FFFFFF;
  transition: var(--transition);
}
.mobile-menu-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: #0A0A0A;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-menu-overlay.open { opacity: 1; visibility: visible; }
.mobile-menu-close {
  position: absolute;
  top: 30px; right: 30px;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 40px;
  cursor: pointer;
}
.mobile-nav-list { list-style: none; text-align: center; margin-bottom: 30px; }
.mobile-nav-list li { margin: 16px 0; }
.mobile-nav-list a {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 3px;
  color: #FFFFFF;
  text-decoration: none;
  transition: var(--transition);
}
.mobile-nav-list a:hover { color: var(--lime); }
body.menu-open { overflow: hidden; }

@media (max-width: 767px) {
  .top-bar { display: none; }
  .desktop-menu { display: none; }
  .desktop-cta { display: none; }
  .mobile-menu-toggle { display: flex; }
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  overflow: hidden;
  padding-top: 100px;
}

.hero-slider {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; z-index: 1; }

/* Slide backgrounds — light with subtle lime tint */
/* These are set inline in hero.php — CSS just provides fallback */
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid #E6DFD4;
  padding: 6px 20px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 88px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.0;
  margin-bottom: 24px;
}
/* SPARTANWEAR span — plain bold black text, no highlight */
.hero-title .lime-word {
  position: relative;
  color: var(--text-primary);
  display: inline-block;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 580px;
  text-align: center;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-dots {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid #CCCCCC;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active {
  background: var(--lime);
  border-color: var(--lime);
}

.hero-vertical-text {
  position: absolute;
  left: 20px; top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 6px;
  color: #CCCCCC;
  z-index: 4;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  color: #BBBBBB;
  font-size: 24px;
  animation: bounce 2s infinite;
  z-index: 4;
}

@keyframes bounce {
  0%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
}

@media (max-width: 768px) {
  .hero-title { font-size: 48px; }
  .hero-ctas { flex-direction: column; width: 100%; max-width: 280px; }
  .hero-vertical-text { display: none; }
}

.marquee-bar {
  background: var(--bg-dark);
  padding: 14px 0;
  overflow: hidden;
  border-top: none;
  border-bottom: none;
}
.marquee-track { display: flex; width: max-content; }
.marquee-inner {
  display: flex;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--lime);
  white-space: nowrap;
  text-transform: uppercase;
  animation: marquee 30s linear infinite;
}
.marquee-bar:hover .marquee-inner { animation-play-state: paused; }
.marquee-diamond { color: rgba(161,98,7,0.4); margin: 0 36px; font-size: 10px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.stats-bar {
  background: var(--bg-alt);
  padding: 50px 0;
  border-top: 3px solid var(--lime);
  border-bottom: 1px solid #E6DFD4;
}
.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.stat-item { text-align: center; flex: 1; }
.stat-number, .counter-number {
  font-family: var(--font-display);
  font-size: 60px;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.stat-divider {
  width: 0;
  border-right: 1px solid #E6DFD4;
  height: 60px;
}
@media (max-width: 767px) {
  .stats-container { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
  .stat-divider { display: none; }
}

.clients-section {
  background: var(--bg);
  padding: 48px 0;
  border-bottom: 1px solid #E6DFD4;
  overflow: hidden;
}
.clients-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 28px;
}
.clients-track { display: flex; width: max-content; }
.clients-inner {
  display: flex;
  animation: clients-scroll 50s linear infinite reverse;
}
.clients-section:hover .clients-inner { animation-play-state: paused; }
.client-brand {
  font-family: var(--font-display);
  font-size: 24px;
  color: #DDDDDD;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 36px;
  transition: var(--transition);
  cursor: default;
}
.client-brand:hover { color: var(--text-primary); }
@keyframes clients-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.about-section {
  background: var(--bg-alt);
  padding: 100px 0;
}
.about-container {
  display: flex;
  gap: 80px;
  align-items: center;
}
.about-col { flex: 1; }
.about-img-placeholder {
  width: 100%;
  height: 540px;
  background: #F3EEE6;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.about-img-monogram {
  font-family: var(--font-display);
  font-size: 140px;
  color: #CCCCCC;
  line-height: 1;
}
.about-badge {
  position: absolute;
  bottom: -16px; right: 30px;
  background: var(--lime);
  color: #FFFFFF;
  padding: 12px 24px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.about-text-col { padding-left: 20px; }
.about-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}
.feature-row { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.feature-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--lime);
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 3px;
}
.feature-text { display: flex; flex-direction: column; }
.feature-text strong {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 15px;
  margin-bottom: 3px;
  display: block;
}
.feature-text span {
  font-family: var(--font-body);
  color: var(--text-secondary);
  font-size: 14px;
}
@media (max-width: 991px) {
  .about-container { flex-direction: column; }
  .about-text-col { padding-left: 0; margin-top: 50px; }
}

.services-section {
  background: var(--bg);
  padding: 100px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: #E6DFD4;
  border: 2px solid #E6DFD4;
  margin-top: 60px;
}
.service-card {
  background: var(--bg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.service-card:hover {
  background: var(--text-primary);
  border-bottom: 3px solid var(--lime);
}
.service-number {
  position: absolute;
  top: -15px; right: -5px;
  font-family: var(--font-display);
  font-size: 120px;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  z-index: 1;
  transition: var(--transition);
}
.service-card:hover .service-number { color: rgba(161,98,7,0.08); }
.service-icon-placeholder {
  width: 48px; height: 48px;
  border: 1px solid #E6DFD4;
  background: var(--bg-alt);
  margin-bottom: 20px;
  position: relative; z-index: 2;
  transition: var(--transition);
}
.service-card:hover .service-icon-placeholder {
  background: var(--lime);
  border-color: var(--lime);
}
.service-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: 1px;
  position: relative; z-index: 2;
  transition: var(--transition);
}
.service-card:hover .service-title { color: #FFFFFF; }
.service-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  position: relative; z-index: 2;
  transition: var(--transition);
}
.service-card:hover .service-desc { color: #AAAAAA; }
.service-link {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  position: relative; z-index: 2;
  transition: var(--transition);
}
.service-card:hover .service-link { color: var(--lime); }
@media (max-width: 991px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .services-grid { grid-template-columns: 1fr; } }

.trust-section {
  background: var(--bg-alt);
  padding: 60px 0;
  border-top: 1px solid #E6DFD4;
  border-bottom: 1px solid #E6DFD4;
}
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-badge {
  flex: 1;
  min-width: 150px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 24px;
  border-right: 1px solid #E6DFD4;
}
.trust-badge:last-child { border-right: none; }
.badge-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--lime);
  background: var(--lime-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 24px;
  color: var(--text-primary);
}
.badge-title {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.badge-desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

.why-us-section {
  background: var(--bg);
  padding: 100px 0;
}
.why-us-container { display: flex; gap: 80px; }
.why-us-left { width: 38%; }
.sticky-col { position: sticky; top: 120px; }
.why-us-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 30px;
}
.lime-gradient-bar {
  width: 80px; height: 4px;
  background: var(--lime);
}
.why-us-right { width: 62%; }
.feature-block {
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid #E6DFD4;
  position: relative;
}
.feature-block:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.feature-block-num {
  position: absolute;
  top: -20px; right: 0;
  font-family: var(--font-display);
  font-size: 100px;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  z-index: 1;
}
.feature-block-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative; z-index: 2;
}
.feature-block-line {
  width: 40px; height: 3px;
  background: var(--lime);
  margin-bottom: 16px;
  position: relative; z-index: 2;
}
.feature-block-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  position: relative; z-index: 2;
}
@media (max-width: 991px) {
  .why-us-container { flex-direction: column; }
  .why-us-left, .why-us-right { width: 100%; }
  .sticky-col { position: static; }
}

.how-it-works-section {
  background: var(--bg-dark);
  padding: 100px 0;
}
.how-it-works-section .section-title { color: #FFFFFF; }
.steps-container {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  position: relative;
}
.steps-container::before {
  content: '';
  position: absolute;
  top: 39px; left: 10%; width: 80%;
  height: 0;
  border-top: 1px solid rgba(161,98,7,0.2);
  z-index: 1;
}
.step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  position: relative; z-index: 2;
}
.step-circle {
  width: 78px; height: 78px;
  border-radius: 50%;
  border: 2px solid var(--lime);
  background: var(--bg-dark);
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
  transition: var(--transition);
}
.step-item:hover .step-circle { background: var(--lime); color: #FFFFFF; }
.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: #FFFFFF;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.step-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: #888888;
  line-height: 1.7;
  text-align: center;
}
@media (max-width: 767px) {
  .steps-container { flex-direction: column; gap: 40px; }
  .steps-container::before { display: none; }
}

.global-section {
  background: var(--bg-alt);
  padding: 100px 0;
}
.global-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}
.stat-box { border-left: 3px solid var(--lime); padding-left: 16px; }
.stat-box-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--text-primary);
  line-height: 1;
}
.stat-box-label {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 6px;
}
.world-map-container {
  width: 100%;
  aspect-ratio: 16/9;
  background: #F3EEE6;
  border: 1px solid #E6DFD4;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.map-dot {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--text-primary);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  animation: pulse-dot 2s infinite;
}
.map-dot-label {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(255,255,255,0.9);
  padding: 2px 6px;
  border-radius: 2px;
  white-space: nowrap;
}
.global-footer-note {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(0,0,0,0.3); }
  70% { box-shadow: 0 0 0 12px rgba(0,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}

.instagram-section {
  background: var(--bg);
  padding: 80px 0;
  border-top: 1px solid #E6DFD4;
}
.ig-title {
  color: var(--text-primary);
  font-family: var(--font-display);
  transition: var(--transition);
}
.ig-title:hover { color: var(--text-secondary); }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
}
.insta-tile {
  aspect-ratio: 1/1;
  background: #F3EEE6;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}
.insta-tile:hover { transform: scale(1.02); }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(161,98,7,0.7);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
}
.insta-tile:hover .insta-overlay { opacity: 1; }
@media (max-width: 768px) { .instagram-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .instagram-grid { grid-template-columns: repeat(2, 1fr); } }

.testimonials-section {
  background: var(--bg-alt);
  padding: 100px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.testimonial-card {
  background: var(--bg);
  padding: 36px;
  border: 1px solid #E6DFD4;
  border-top: 3px solid var(--lime);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars {
  color: var(--text-primary);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.testimonial-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}
.testimonial-divider {
  width: 100%; height: 1px;
  background: #E6DFD4;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--lime);
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.author-name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}
.author-role {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  display: block;
}
@media (max-width: 991px) { .testimonials-grid { grid-template-columns: 1fr; } }

.footer-cta {
  background: var(--bg-dark);
  padding: 80px 0;
  text-align: center;
  border-top: 3px solid var(--lime);
}
.cta-heading {
  font-family: var(--font-display);
  font-size: 52px;
  color: #FFFFFF;
  margin-bottom: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.cta-subtext {
  font-family: var(--font-body);
  font-size: 16px;
  color: #888888;
  margin-bottom: 36px;
}
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-whatsapp {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  background: transparent;
  padding: 14px 36px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}
.btn-whatsapp:hover { background: #FFFFFF; color: var(--text-primary); }

.footer-main {
  background: #0A0A0A;
  padding: 80px 0 40px;
  border-top: 1px solid #1E1E1E;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--lime);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: #666666;
  margin-bottom: 24px;
  line-height: 1.7;
}
.footer-socials { display: flex; gap: 14px; }
.footer-heading {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--lime);
}
.footer-links, .footer-contact { list-style: none; }
.footer-links li a {
  font-family: var(--font-body);
  font-size: 14px;
  color: #666666;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-links li a:hover { color: var(--lime); }
.footer-contact li {
  font-family: var(--font-body);
  font-size: 13px;
  color: #666666;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  line-height: 1.6;
}
.footer-bottom {
  background: #050505;
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copyright {
  font-family: var(--font-body);
  font-size: 13px;
  color: #555555;
}
.craft-note {
  font-family: var(--font-body);
  font-size: 13px;
  color: #555555;
  font-style: italic;
}
@media (max-width: 991px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
}

.float-quote {
  position: fixed;
  bottom: 110px; right: 32px;
  z-index: 7999;
  writing-mode: vertical-rl;
  background: var(--lime);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 11px;
  border-radius: 30px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(161,98,7,0.3);
}
.float-quote:hover { background: var(--lime-hover); transform: scale(1.05); }

.whatsapp-floating-btn {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 8000;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.whatsapp-icon-circle {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: var(--transition);
  animation: waPulse 2s infinite;
}
.whatsapp-floating-btn:hover .whatsapp-icon-circle {
  transform: scale(1.1);
  animation: none;
}
.whatsapp-tooltip {
  background: #111111;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  margin-right: 12px;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  white-space: nowrap;
  pointer-events: none;
}
.whatsapp-floating-btn:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }
@keyframes waPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }

/* Page hero banner — light bg */
.page-hero-banner {
  background: var(--bg-alt);
  padding-top: 140px;
  padding-bottom: 60px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  border-bottom: 3px solid var(--lime);
  position: relative;
}
.page-hero-line { width: 60px; height: 3px; background: var(--lime); margin: 0 auto 16px; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: 60px;
  color: var(--text-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.page-hero-breadcrumb {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-top: 12px;
}
.page-hero-breadcrumb a { color: var(--text-muted); text-decoration: none; }
.page-hero-breadcrumb a:hover { color: var(--text-primary); }

/* Contact form */
.contact-section { background: var(--bg); }
.contact-section h2, .contact-section h3 { color: var(--text-primary); }
.contact-section p { color: var(--text-secondary); }
.contact-icon-circle {
  background: var(--lime); color: #FFFFFF;
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: var(--bg-alt);
  border: 1px solid #E6DFD4;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 18px;
  width: 100%; display: block;
  margin-bottom: 16px;
  box-sizing: border-box;
  outline: none;
  transition: var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--text-primary);
  box-shadow: 0 0 0 3px rgba(161,98,7,0.2);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #AAAAAA; }
.contact-form textarea { min-height: 140px; resize: vertical; }

/* Service hero */
.service-hero {
  background: var(--bg-alt);
  padding-top: 140px;
  padding-bottom: 50px;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 3px solid var(--lime);
  position: relative;
  overflow: hidden;
}
.service-hero-lime-bar {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--lime);
}
.service-hero-watermark {
  position: absolute;
  font-family: var(--font-display);
  font-size: 240px;
  color: rgba(0,0,0,0.04);
  bottom: -20px; right: -10px;
  pointer-events: none; user-select: none;
  line-height: 1;
}
.service-hero-content {
  position: relative; z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-number-display {
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(0,0,0,0.12);
  line-height: 1;
  margin-right: 12px;
}
.service-name-display {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--text-primary);
  line-height: 1;
}
@media (max-width: 768px) {
  .service-number-display, .service-name-display { font-size: 44px; }
}

/* Highlight cards */
.highlight-card {
  background: var(--bg-alt);
  padding: 24px;
  border-left: 3px solid var(--lime);
  margin-bottom: 14px;
}
.highlight-card h3 { font-family: var(--font-display); color: var(--text-primary); font-size: 20px; }
.highlight-card p { font-family: var(--font-body); color: var(--text-secondary); font-size: 14px; }

/* Specs table */
.specs-table { width: 100%; max-width: 800px; margin: 0 auto; border-collapse: collapse; }
.specs-table td { padding: 16px 0; border-bottom: 1px solid #E6DFD4; font-size: 14px; }
.specs-table td:first-child { font-family: var(--font-body); font-weight: 600; color: var(--text-primary); width: 40%; }
.specs-table td:last-child { font-family: var(--font-body); color: var(--text-secondary); padding-left: 20px; }
.specs-table tr:last-child td { border-bottom: none; }
.specs-table tr:nth-child(even) { background: var(--bg-alt); }

/* Ideal tags */
.ideal-tag {
  display: inline-block;
  border: 1px solid #E6DFD4;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 8px 20px;
  margin: 5px;
  text-decoration: none;
  transition: var(--transition);
}
.ideal-tag:hover { background: var(--lime); border-color: var(--lime); color: #FFFFFF; }

/* Related cards */
.related-card {
  border: 1px solid #E6DFD4;
  padding: 30px;
  background: var(--bg);
  display: block;
  text-decoration: none;
  transition: var(--transition);
}
.related-card:hover { border-color: var(--lime); box-shadow: var(--shadow); }
.related-card-name { font-family: var(--font-display); font-size: 22px; color: var(--text-primary); display: block; margin-bottom: 8px; }
.related-card-link { font-family: var(--font-body); font-size: 13px; color: var(--text-muted); }

/* Service CTA box */
.service-cta-box {
  background: var(--bg-dark);
  padding: 40px;
  border-top: 3px solid var(--lime);
}
.service-cta-box h2 { color: #FFFFFF; font-family: var(--font-display); }
.service-cta-box p { color: #888888; }
.service-cta-whatsapp {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 24px;
  background: transparent;
  display: block;
  margin-top: 12px;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
}
.service-cta-whatsapp:hover { background: #FFFFFF; color: var(--text-primary); }

/* Products grid */
.product-card { background: var(--bg); border: 1px solid #E6DFD4; }
.product-card-image { height: 300px; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.product-card-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card-name { font-family: var(--font-display); font-size: 16px; color: var(--text-primary); padding: 14px 16px 4px; display: block; text-transform: uppercase; letter-spacing: 1px; }
.product-card-category { font-family: var(--font-body); font-size: 11px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; padding: 0 16px 4px; display: block; }
.product-card-inquire { font-family: var(--font-body); font-size: 12px; color: var(--text-muted); padding: 0 16px 14px; display: block; text-decoration: none; transition: var(--transition); }
.product-card-inquire:hover { color: var(--text-primary); }

/* Filter buttons */
.filter-btn {
  font-family: var(--font-body); font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 18px; border: 1px solid #E6DFD4; background: transparent;
  color: var(--text-secondary); cursor: pointer; transition: var(--transition);
}
.filter-btn:hover { border-color: var(--text-primary); color: var(--text-primary); }
.filter-btn.active { background: var(--lime); border-color: var(--lime); color: #FFFFFF; }

/* About page stats */
.about-stat-box, .about-stats [class*="stat"] {
  border: 1px solid #E6DFD4;
  background: var(--bg);
  padding: 24px;
  text-align: center;
}
.about-stats-grid .stat-number { font-family: var(--font-display); font-size: 40px; color: var(--text-primary); }
.about-stats-grid .stat-label { font-family: var(--font-body); font-size: 12px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; }

/* Services page cards */
.service-title-large { font-family: var(--font-display); font-size: 26px; color: var(--text-primary); letter-spacing: 1px; text-transform: uppercase; }
.service-desc-large { font-family: var(--font-body); font-size: 15px; color: var(--text-secondary); line-height: 1.7; }
.service-divider-gold { width: 36px; height: 3px; background: var(--lime); margin: 12px 0 16px; }
.service-card-large { background: var(--bg); border: 1px solid #E6DFD4; padding: 40px 32px; position: relative; transition: var(--transition); overflow: hidden; }
.service-card-large:hover { border-color: var(--lime); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-watermark { position: absolute; top: 16px; right: 16px; font-family: var(--font-display); font-size: 72px; color: rgba(0,0,0,0.04); line-height: 1; }
.service-hover-bar { position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.service-card-large:hover .service-hover-bar { transform: scaleX(1); }

/* Process timeline */
.process-timeline { max-width: 700px; margin: 0 auto; }
.process-step { display: flex; gap: 24px; padding-bottom: 36px; }
.process-step:last-child { padding-bottom: 0; }
.process-circle { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--lime); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 18px; color: var(--text-primary); flex-shrink: 0; }
.process-step-title { font-family: var(--font-display); font-size: 20px; color: var(--text-primary); margin-bottom: 6px; text-transform: uppercase; }
.process-step-desc { font-family: var(--font-body); font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* Process timeline on dark background */
.process-timeline .process-step-title {
  color: #F5F5F5 !important;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 22px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  margin-bottom: 8px !important;
}

.process-timeline .process-step-desc {
  color: #AAAAAA !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}

.process-timeline .process-circle {
  border: 2px solid #A16207 !important;
  color: #A16207 !important;
  background: transparent !important;
  font-family: 'Bebas Neue', sans-serif !important;
}

/* The section containing the process timeline on service pages */
.service-process-section,
section:has(.process-timeline) {
  background: #111111 !important;
  padding: 80px 0 !important;
}

.service-process-section h2,
section:has(.process-timeline) h2 {
  color: #FFFFFF !important;
  font-family: 'Bebas Neue', sans-serif !important;
}

.service-process-section .section-tag,
section:has(.process-timeline) .section-tag {
  background: #A16207 !important;
  color: #FFFFFF !important;
}

/* ============================================================
   EDITORIAL REDESIGN — Direction A (Blackout hero) + system
   Bold display type, oversized headers, editorial sections.
   On-dark accent uses brighter gold #C98A1E for AA contrast.
   ============================================================ */

/* Bolder display weights now that headings use Big Shoulders */
h1, h2, h3, h4, h5, h6 { font-weight: 700; }
.site-title, .footer-logo, .service-title, .step-title, .cta-heading,
.feature-block-title, .testimonial .author-name { font-weight: 700; }
.hero-title, .section-title, .page-hero-title, .service-name-display { font-weight: 800; }

/* ---------- BLACKOUT EDITORIAL HERO (Direction A) ---------- */
.hero-section.hero-blackout {
  background: #0C0A09;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 120px 0 0;
  overflow: hidden;
}
.hero-blackout .hero-scrim {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(60% 85% at 80% 28%, rgba(161,98,7,0.30), transparent 60%),
    linear-gradient(90deg, rgba(12,10,9,0.95) 0%, rgba(12,10,9,0.82) 48%, rgba(12,10,9,0.55) 100%);
}
.hero-blackout .hero-scrim::after {
  content: ''; position: absolute; inset: 0; opacity: 0.06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-blackout .hero-ghost {
  position: absolute; left: -2%; bottom: -7%; z-index: 2;
  font-family: var(--font-display); font-weight: 800; font-size: clamp(180px, 30vw, 460px);
  line-height: 0.7; letter-spacing: -0.04em; color: rgba(255,255,255,0.04);
  white-space: nowrap; pointer-events: none; user-select: none; text-transform: uppercase;
}
.hero-blackout .hero-content {
  position: relative; z-index: 3; flex: 1;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  text-align: left;
}
.hero-blackout .hero-kicker {
  display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
  font-family: var(--font-body); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.26em; font-size: 12px; color: var(--lime-bright);
}
.hero-blackout .hero-kicker::before { content: ''; width: 54px; height: 2px; background: var(--lime-bright); }
.hero-blackout .hero-title {
  color: #fff; font-weight: 800; font-size: clamp(44px, 8.6vw, 138px);
  line-height: 0.86; letter-spacing: -0.02em; margin-bottom: 22px; text-transform: uppercase;
}
.hero-blackout .hero-title .lime-word { color: var(--lime-bright); display: inline-block; position: relative; }
.hero-blackout .hero-title .lime-word::after { display: none; }
.hero-blackout .hero-subtitle {
  color: #b9b3ab; max-width: 540px; margin: 0 0 38px; text-align: left;
  font-size: 18px; line-height: 1.6;
}
.hero-blackout .hero-ctas { justify-content: flex-start; }
.btn-hero-ghost {
  display: inline-block; font-family: var(--font-display); font-weight: 700;
  font-size: 17px; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 15px 34px; color: #fff; background: transparent;
  border: 2px solid rgba(255,255,255,0.4); text-decoration: none; transition: var(--transition);
}
.btn-hero-ghost:hover { background: #fff; color: #111; border-color: #fff; transform: translateY(-2px); }
.hero-blackout .hero-statbar {
  position: relative; z-index: 3; display: flex; gap: 48px; align-items: center; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.13); margin-top: 30px; padding-top: 24px; padding-bottom: 30px;
}
.hero-blackout .hero-stat .n { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 3.2vw, 42px); color: #fff; line-height: 1; }
.hero-blackout .hero-stat .n em { color: var(--lime-bright); font-style: normal; }
.hero-blackout .hero-stat .l { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: #8c867e; margin-top: 6px; }
.hero-blackout .hero-vertical-text { color: rgba(255,255,255,0.4); z-index: 3; }
.hero-blackout .hero-dots { top: 50%; bottom: auto; left: auto; right: 28px; transform: translateY(-50%); flex-direction: column; gap: 10px; z-index: 4; }
.hero-blackout .hero-dot { border-color: rgba(255,255,255,0.5); }
.hero-blackout .hero-dot.active { background: var(--lime-bright); border-color: var(--lime-bright); }
.hero-content > .hero-kicker { animation-delay: 0.05s; }
@media (max-width: 768px) {
  .hero-blackout { padding-top: 110px; }
  .hero-blackout .hero-statbar { gap: 22px 36px; }
  .hero-blackout .hero-vertical-text { display: none; }
}

/* ---------- Marquee: bolder editorial ---------- */
.marquee-bar { border-top: 1px solid #2a241c; border-bottom: 1px solid #2a241c; padding: 18px 0; }
.marquee-inner { color: #FFFFFF; font-weight: 700; }
.marquee-diamond { color: var(--lime-bright); }

/* ---------- Editorial section header (oversized index) ---------- */
.section-head { display: flex; align-items: flex-end; gap: 28px; margin-bottom: 54px; }
.section-head .section-index {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(72px, 11vw, 150px);
  line-height: 0.72; letter-spacing: -0.03em; color: #E6DFD4; flex-shrink: 0;
}
.section-head .section-kicker {
  display: inline-block; font-family: var(--font-body); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.26em; font-size: 12px; color: var(--lime);
}
.section-head .section-title { margin: 8px 0 0; }
@media (max-width: 600px) { .section-head .section-index { display: none; } }

/* ---------- Services: bold black editorial grid ---------- */
.services-section .services-grid { background: #111111; border: 2px solid #111111; }
.services-section .service-card { padding: 40px 30px 34px; }
.services-section .service-number { font-size: 104px; }
.services-section .service-title { font-size: 26px; letter-spacing: 0; }
.services-section .service-link { color: var(--lime); font-weight: 700; font-size: 13px; }
.services-section .service-card:hover .service-link { color: var(--lime-bright); }

/* ---------- Global reach: dark map panel + gold pins ---------- */
.global-map-col { display: flex; flex-direction: column; }
.world-map-container {
  background-color: #0C0A09;
  border: 1px solid #2a241c;
  background-image:
    radial-gradient(rgba(255,255,255,0.05) 1.2px, transparent 1.3px),
    radial-gradient(70% 60% at 52% 42%, rgba(161,98,7,0.14), transparent 70%);
  background-size: 22px 22px, 100% 100%;
  background-position: center;
  border-radius: 6px;
}
.map-dot { width: 11px; height: 11px; background: var(--lime-bright); }
.map-dot-label {
  background: rgba(12,10,9,0.92);
  color: #EFE9DF;
  border: 1px solid #2a241c;
  font-weight: 600;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(201,138,30,0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(201,138,30,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,138,30,0); }
}
/* Sialkot origin / HQ marker */
.map-dot.map-dot-origin {
  width: 16px; height: 16px; background: var(--lime);
  box-shadow: 0 0 0 5px rgba(161,98,7,0.22); animation: none;
}
.map-dot-origin .map-dot-label { color: var(--lime-bright); font-weight: 700; letter-spacing: 0.06em; }
.global-footer-note { color: var(--text-muted); }

/* Bolder display numbers (were thin in Big Shoulders 400) */
.stat-number, .counter-number, .stat-box-num, .stat-box-num { font-weight: 700; }
.stat-box-num { font-size: 42px; }

/* ---------- Service-page review fixes ---------- */
/* Numbered highlight markers (replaced emoji icons) */
.highlight-num { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--lime); line-height: 1; margin-bottom: 10px; }
/* Process timeline: brighter gold on dark for AA contrast + unified font */
.process-timeline .process-circle { border-color: #C98A1E !important; color: #C98A1E !important; font-family: var(--font-display) !important; }
/* Icon circles get a white glyph on gold */
.contact-icon-circle svg, .value-icon svg { display: block; }

/* ---------- Accessibility & forms (audit P1) ---------- */
/* Skip to content */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100000;
  background: #111111; color: #FFFFFF; padding: 10px 16px; font-family: var(--font-body); font-size: 13px; text-decoration: none; }
.skip-link:focus { left: 8px; top: 8px; outline: 3px solid var(--lime); outline-offset: 2px; }

/* Hero dots are real <button>s now — reset + larger tap area */
.hero-dot { -webkit-appearance: none; appearance: none; padding: 0; position: relative; }
.hero-dot::after { content: ''; position: absolute; inset: -11px; }

/* Slightly larger tap area for icon-only links */
.footer-socials a, .top-bar-right .social-icon, .contact-socials a { padding: 4px; }

/* Contact form: visible labels, required marker, validation + feedback */
.cf-label { display: block; font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 6px; }
.cf-label .req { color: var(--lime); }
.contact-form :user-invalid { border-color: #DC2626 !important; box-shadow: 0 0 0 3px rgba(220,38,38,0.15); }
.form-banner { padding: 14px 18px; margin-bottom: 22px; font-size: 14px; line-height: 1.5; border-left: 4px solid; }
.form-banner-success { background: #F3EEE6; border-color: var(--lime); color: #1C1917; }
.form-banner-error { background: #FBEAEA; border-color: #DC2626; color: #7F1D1D; }

/* ============================================================
   UI/UX POLISH & MOTION
   Added per ui-ux-pro-max checklist — accessibility + premium
   motion. Additive only: affects opacity / transform / shadow,
   never layout flow. Accent: gold #A16207.
   ============================================================ */

/* Visible keyboard focus ring (gold) — was missing */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.hero-dot:focus-visible,
.faq-question:focus-visible,
.filter-btn:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Clickable affordance on non-anchor controls */
button,
.hero-dot,
.mobile-menu-toggle,
.mobile-menu-close,
.faq-question,
.filter-btn { cursor: pointer; }

/* Primary button — lift, gold glow, light sheen sweep, press */
.btn-primary { position: relative; overflow: hidden; will-change: transform; }
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -130%;
  width: 70%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.40), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(161,98,7,0.35); }
.btn-primary:hover::after { left: 140%; }
.btn-primary:active { transform: translateY(0); box-shadow: 0 4px 14px rgba(161,98,7,0.30); }
.btn-outline:active, .btn-outline-light:active, .btn-whatsapp:active { transform: translateY(1px); }

/* Desktop nav — animated gold underline */
.desktop-menu .nav-list li a { position: relative; display: inline-block; }
.desktop-menu .nav-list li a::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.desktop-menu .nav-list li a:hover::after,
.desktop-menu .nav-list li.current-menu-item a::after { transform: scaleX(1); }

/* Card hover elevation */
.testimonial-card, .product-card, .related-card { will-change: transform; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.10); }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.10); }

/* Smoother, premium reveal-on-scroll easing */
.reveal { transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }

/* Hero entrance — staggered fade-up on load */
@keyframes swFadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.hero-content > * { opacity: 0; animation: swFadeUp 0.9s cubic-bezier(0.22,1,0.36,1) forwards; }
.hero-content > .hero-tag      { animation-delay: 0.05s; }
.hero-content > .hero-title    { animation-delay: 0.18s; }
.hero-content > .hero-subtitle { animation-delay: 0.32s; }
.hero-content > .hero-ctas     { animation-delay: 0.46s; }

/* Subtle gold glow behind dark CTA / steps bands */
.footer-cta, .how-it-works-section { position: relative; overflow: hidden; }
.footer-cta::before, .how-it-works-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(161,98,7,0.13), transparent 62%);
  pointer-events: none;
  z-index: 0;
}
.footer-cta > .container, .how-it-works-section > .container { position: relative; z-index: 1; }

/* Honor reduced-motion: disable entrances/sheen, keep content visible */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero-content > * { opacity: 1 !important; transform: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .btn-primary::after { display: none; }
}
