/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: rgba(220,38,38,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #DC2626; }
* { scrollbar-width: thin; scrollbar-color: rgba(220,38,38,0.4) #0a0a0a; }

/* ===== VARIABLES ===== */
:root {
  --brand: #DC2626;
  --brand-rgb: 220,38,38;
  --brand-light: #EF4444;
  --brand-dim: rgba(220,38,38,0.10);
  --brand-border: rgba(220,38,38,0.25);
  --gold: #F59E0B;
  --gold-dim: rgba(245,158,11,0.10);
  --gold-border: rgba(245,158,11,0.25);
  --bg: #0a0a0a;
  --bg2: #0f0f11;
  --bg3: #161618;
  --card: rgba(255,255,255,0.03);
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --muted2: #52525b;
  --border: rgba(255,255,255,0.07);
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
em { font-style: normal; color: var(--brand); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ===== ACCESSIBILITY ===== */
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px; }
:focus:not(:focus-visible) { outline: none; }

/* ===== LOADER ===== */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.4s ease;
  animation: loaderFallback 0s 4s forwards;
}
#loader.fade-out { opacity: 0; pointer-events: none; }
.spin-arc { color: var(--brand); animation: spin 0.75s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes loaderFallback { to { opacity: 0; pointer-events: none; z-index: -1; } }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; }

/* ===== NAV — GHOST / TRANSPARENT OVERLAY ===== */
.nav-ghost {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 12px 0;
  transition: background 0.4s, padding 0.3s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav-ghost .container {
  max-width: none;
  padding: 0 32px 0 16px;
}
.nav-ghost.solid {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 6px 0;
  border-bottom-color: var(--border);
}
.nav-ghost-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-ghost-logo {
  display: flex; align-items: center;
  text-decoration: none;
  height: 96px;
  overflow: hidden;
  border-radius: 10px;
}
.nav-ghost-logo img {
  height: 100%; width: auto;
  display: block;
  transition: transform 0.3s ease;
}
.nav-ghost-logo:hover img { transform: scale(1.04); }
.nav-ghost.solid .nav-ghost-logo { height: 72px; }
.nav-ghost-links { display: flex; gap: 32px; }
.nav-ghost-links a {
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s;
}
.nav-ghost-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--brand);
  transition: width 0.3s ease;
}
.nav-ghost-links a:hover,
.nav-ghost-links a.active { color: #fff; }
.nav-ghost-links a:hover::after,
.nav-ghost-links a.active::after { width: 100%; }
.nav-ghost-cta {
  background: var(--brand); color: #fff;
  font-weight: 700; font-size: 13px;
  padding: 10px 24px;
  border-radius: 0 10px 0 10px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
}
.nav-ghost-cta:hover { background: var(--brand-light); transform: translateY(-1px); }

/* ===== MOBILE NAV ===== */
.nav-mobile-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 0 8px 0 8px;
  padding: 8px;
  color: var(--text);
  cursor: pointer;
}
.nav-mobile-toggle:hover { border-color: var(--brand-border); }
.nav-mobile-menu {
  position: fixed; top: 0; right: 0;
  width: min(320px, 85vw); height: 100vh;
  background: var(--bg2);
  border-left: 1px solid var(--border);
  padding: 80px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1);
  z-index: 200;
  display: flex; flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.nav-mobile-menu.open { transform: translateX(0); }
.nav-mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 2px;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
}
.nav-mobile-menu a.active { color: var(--brand); }
.nav-mobile-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 0 8px 0 8px;
  background: transparent;
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
}
.nav-mobile-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  z-index: 150;
}
.nav-mobile-backdrop.open { opacity: 1; pointer-events: all; }

@media (max-width: 900px) {
  .nav-ghost-links { display: none; }
  .nav-ghost-cta { display: none; }
  .nav-mobile-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-ghost-logo { height: 64px; }
  .nav-ghost.solid .nav-ghost-logo { height: 52px; }
  .nav-ghost .container { padding: 0 16px 0 12px; }
}
@media (max-width: 480px) {
  .nav-ghost-logo { height: 52px; }
  .nav-ghost.solid .nav-ghost-logo { height: 44px; }
}

/* Touch devices — show service card reveals by default */
@media (hover: none) {
  .service-card-reveal {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: all;
    padding: 20px 0 0 0;
    margin-top: 20px;
    border-top: 1px solid var(--border);
    background: transparent;
    border-radius: 0;
  }
  .service-card-reveal-title {
    font-size: 13px;
    letter-spacing: 2px;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.25s;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--brand); color: #fff;
  border: 2px solid var(--brand);
  border-radius: 0 12px 0 12px;
}
.btn-primary:hover {
  background: var(--brand-light);
  border-color: var(--brand-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(220,38,38,0.4);
}
.btn-ghost {
  background: transparent; color: var(--text);
  border: 2px solid var(--border);
  border-radius: 0 12px 0 12px;
}
.btn-ghost:hover {
  border-color: var(--brand-border);
  color: var(--brand);
  transform: translateY(-2px);
}
.btn-inner { display: inline-block; transition: transform 0.45s cubic-bezier(0.23,1,0.32,1); }

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px; letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}
.section-label::before {
  content: ''; display: block;
  width: 32px; height: 2px;
  background: var(--brand);
}
.section-header { margin-bottom: 64px; }
.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 16px;
}
.section-header p {
  color: var(--muted); font-size: 17px;
  max-width: 520px; line-height: 1.7;
}

/* ===== HERO — L4 DIAGONAL SPLIT (HOME) ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 42fr 58fr;
  position: relative;
  overflow: hidden;
}
.hero-left-panel {
  background: var(--brand);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 120px 48px 72px 48px;
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
  position: relative;
  z-index: 2;
  background-image: url('training-action.jpg');
  background-size: cover;
  background-position: center;
}
.hero-left-panel::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(220,38,38,0.88) 0%, rgba(220,38,38,0.92) 100%);
  pointer-events: none;
}
.hero-left-panel > * { position: relative; z-index: 1; }
.hero-left-panel::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(0,0,0,0.06) 20px,
    rgba(0,0,0,0.06) 21px
  );
  pointer-events: none;
}
.hero-left-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px; letter-spacing: 4px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.hero-left-stat {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 8vw, 120px);
  line-height: 0.9;
  color: #fff;
  margin-bottom: 8px;
}
.hero-left-sub {
  font-size: 14px; color: rgba(255,255,255,0.8);
  max-width: 260px;
  line-height: 1.5;
}
.hero-certs {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 32px;
}
.hero-cert {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.3px;
}
.hero-cert svg { flex-shrink: 0; }

.hero-right-panel {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 120px 64px 80px 80px;
  position: relative;
}
.hero-right-panel::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 50%, rgba(220,38,38,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px; letter-spacing: 4px;
  color: var(--brand);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7vw, 100px);
  line-height: 0.95;
  letter-spacing: 3px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.hero-sub {
  color: var(--muted);
  font-size: 17px; line-height: 1.7;
  max-width: 460px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.hero-trust-row {
  display: flex; flex-wrap: wrap; gap: 16px;
  position: relative;
  z-index: 1;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  color: var(--muted);
}
.hero-trust-item svg { color: var(--brand); flex-shrink: 0; }

/* Hero reveal */
.hero-el { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.hero-el.vis { opacity: 1; transform: none; }

/* Word Slam */
.ws-word { display: inline-block; overflow: hidden; vertical-align: top; }
.ws-inner { display: block; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(220,38,38,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(220,38,38,0.08) 0%, transparent 60%),
    repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,0.012) 40px, rgba(255,255,255,0.012) 41px);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px; letter-spacing: 4px;
  color: var(--brand);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.page-hero-eyebrow::before {
  content: ''; width: 32px; height: 2px;
  background: var(--brand);
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: 3px;
  margin-bottom: 20px;
  max-width: 900px;
}
.page-hero-sub {
  font-size: 18px; color: var(--muted);
  max-width: 620px; line-height: 1.7;
  margin-bottom: 32px;
}
.page-hero-breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
  color: var(--muted);
  letter-spacing: 1px; text-transform: uppercase;
}
.page-hero-breadcrumb a { color: var(--muted); transition: color 0.2s; }
.page-hero-breadcrumb a:hover { color: var(--brand); }
.page-hero-breadcrumb-sep { color: var(--muted2); }
.page-hero-breadcrumb-current { color: var(--brand); }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}
.trust-strip-inner {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 8px 28px; padding: 0 24px;
}
.trust-item {
  font-size: 13px; font-weight: 600;
  color: var(--muted);
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
}
.trust-item svg { color: var(--brand); flex-shrink: 0; }
.trust-dot {
  width: 4px; height: 4px;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== TICKER ===== */
.ticker {
  background: var(--brand);
  padding: 14px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex; width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px; letter-spacing: 3px;
  color: rgba(255,255,255,0.9);
  padding: 0 32px;
  display: flex; align-items: center; gap: 32px;
  white-space: nowrap;
}
.ticker-item::after {
  content: '/';
  font-size: 18px; opacity: 0.4;
  transform: skewX(-12deg);
  display: inline-block;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== COUNTER-SCROLL DIVIDER ===== */
.counter-scroll { overflow: hidden; padding: 32px 0; }
.counter-scroll-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 10vw, 140px);
  white-space: nowrap;
  color: rgba(220,38,38,0.06);
  letter-spacing: 12px;
  will-change: transform;
  user-select: none;
}

/* ===== SERVICES ===== */
.services-section { background: var(--bg2); }
.services-section.no-divider::before { display: none; }
.services-section::before {
  content: ''; display: block;
  height: 80px;
  background: linear-gradient(to bottom right, var(--bg) 49.5%, var(--bg2) 50.5%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 0 var(--radius) 0 var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--brand);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border-color: var(--brand-border);
}
.service-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px; line-height: 1;
  color: rgba(220,38,38,0.06);
  position: absolute;
  top: 12px; right: 20px;
  user-select: none;
}
.service-icon {
  width: 44px; height: 44px;
  background: var(--brand-dim);
  border: 1px solid var(--brand-border);
  border-radius: 0 10px 0 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--brand);
}
.service-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 1.5px;
  margin-bottom: 10px;
  color: var(--text);
}
.service-price {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-dim);
  border: 1px solid var(--brand-border);
  border-radius: 0 8px 0 8px;
  padding: 4px 10px;
  margin-bottom: 12px;
}
.service-desc {
  font-size: 14.5px; color: var(--muted);
  line-height: 1.65;
}
.service-features {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
}
.service-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--muted);
}
.service-feature svg {
  color: var(--brand); flex-shrink: 0;
  margin-top: 3px;
}
.services-cta { text-align: center; margin-top: 48px; }

/* ===== PROCESS ===== */
.process-section { position: relative; }
.process-section.no-divider::before { display: none; }
.process-section::before {
  content: ''; display: block;
  height: 80px;
  background: linear-gradient(to bottom left, var(--bg2) 49.5%, var(--bg) 50.5%);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.process-step {
  background: var(--bg2);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.process-step:hover {
  border-bottom-color: var(--brand);
  background: var(--bg3);
}
.process-step:first-child { border-radius: 0 0 0 var(--radius); }
.process-step:last-child { border-radius: 0 0 var(--radius) 0; }
.process-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 100px; line-height: 1;
  color: rgba(220,38,38,0.07);
  position: absolute; top: 20px; right: 24px;
  user-select: none;
}
.process-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: 4px;
  color: var(--brand);
  margin-bottom: 12px;
}
.process-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.process-desc { font-size: 14.5px; color: var(--muted); line-height: 1.65; }

/* ===== ABOUT ===== */
.about-section { background: var(--bg2); position: relative; }
.about-section.no-divider::before { display: none; }
.about-section::before {
  content: ''; display: block;
  height: 80px;
  background: linear-gradient(to bottom right, var(--bg) 49.5%, var(--bg2) 50.5%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-photo {
  border-radius: 0 var(--radius) 0 var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  margin-bottom: 32px;
}
.about-photo img {
  width: 100%; height: 500px;
  object-fit: cover;
  filter: brightness(0.9);
  transition: transform 0.6s ease;
}
.about-photo:hover img { transform: scale(1.04); }
.about-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 60px);
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 28px;
}
.about-text p {
  font-size: 16px; color: var(--muted);
  line-height: 1.8; margin-bottom: 20px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-stats {
  display: flex; flex-direction: column; gap: 16px;
}
.about-stat-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--radius) 0 var(--radius);
  padding: 24px 28px;
  display: flex; align-items: center; gap: 16px;
  transition: border-color 0.3s, transform 0.3s;
}
.about-stat-card:hover {
  border-color: var(--brand-border);
  transform: translateX(6px);
}
.about-stat-icon {
  width: 48px; height: 48px;
  background: var(--brand-dim);
  border: 1px solid var(--brand-border);
  border-radius: 0 10px 0 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--brand);
}
.about-stat-label {
  font-size: 14.5px; font-weight: 600;
  color: var(--text); line-height: 1.4;
}
.about-stat-sub {
  font-size: 12.5px; color: var(--muted); margin-top: 2px;
}

/* ===== GALLERY ===== */
.gallery { overflow: hidden; padding: 0; }
.gallery.no-divider::before { display: none; }
.gallery::before {
  content: ''; display: block;
  height: 80px;
  background: linear-gradient(to bottom left, var(--bg2) 49.5%, var(--bg) 50.5%);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.gallery-grid.gallery-large {
  grid-template-columns: repeat(6, 1fr);
}
.gallery-grid.gallery-large .gallery-item { grid-column: span 2; }
/* When 5 items, center the bottom row of 2 by offsetting the first into col 2 */
.gallery-grid.gallery-large .gallery-item:nth-last-child(2):nth-child(4) { grid-column-start: 2; }
.gallery-item {
  position: relative; height: 360px;
  overflow: hidden; cursor: pointer;
}
.gallery-grid.gallery-large .gallery-item { height: 440px; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: transform 0.6s ease, filter 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); filter: brightness(0.5); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 30%, rgba(220,38,38,0.12) 60%, rgba(10,10,10,0.8) 100%);
  transition: opacity 0.3s;
}
.gallery-label {
  position: absolute; bottom: 24px; left: 24px;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.gallery-item:hover .gallery-label {
  transform: none; opacity: 1;
}
.gallery-cat {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px; letter-spacing: 3px;
  color: var(--brand);
  margin-bottom: 4px;
}
.gallery-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 1px;
  color: #fff;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--bg2); position: relative; }
.testimonials-section.no-divider::before { display: none; }
.testimonials-section::before {
  content: ''; display: block;
  height: 80px;
  background: linear-gradient(to bottom right, var(--bg) 49.5%, var(--bg2) 50.5%);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 0 var(--radius) 0 var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testi-card::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--brand-dim) 0%, transparent 100%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.testi-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px; color: var(--brand);
  line-height: 0.7; opacity: 0.5;
  margin-bottom: 16px;
}
.testi-text {
  font-size: 15px; color: var(--muted);
  line-height: 1.7; margin-bottom: 24px;
  font-style: italic;
}
.testi-stars {
  color: var(--gold);
  font-size: 14px; letter-spacing: 2px;
  margin-bottom: 12px;
}
.testi-name {
  font-weight: 700; font-size: 14px;
  color: var(--text);
}
.testi-loc { font-size: 12.5px; color: var(--muted); margin-top: 2px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--brand);
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(0,0,0,0.05) 30px,
    rgba(0,0,0,0.05) 31px
  );
  pointer-events: none;
}
.cta-banner-inner {
  position: relative; z-index: 1;
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 6vw, 80px);
  color: #fff;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 20px;
}
.cta-banner p {
  font-size: 17px; color: rgba(255,255,255,0.8);
  max-width: 480px; margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-banner .btn-white {
  background: #fff; color: var(--brand);
  border: 2px solid #fff;
  border-radius: 0 12px 0 12px;
}
.cta-banner .btn-white:hover {
  background: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ===== MERCH TEASER ===== */
.merch-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.merch-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0 var(--radius) 0 var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.merch-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-border);
}
.merch-icon {
  width: 56px; height: 56px;
  background: var(--brand-dim);
  border: 1px solid var(--brand-border);
  border-radius: 0 12px 0 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--brand);
}
.merch-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.merch-desc { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.merch-badge {
  display: inline-block; margin-top: 14px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-dim);
  border: 1px solid var(--brand-border);
  border-radius: 0 8px 0 8px;
  padding: 5px 12px;
}
.merch-badge-gold {
  color: var(--gold);
  background: var(--gold-dim);
  border-color: var(--gold-border);
}
.merch-cta { text-align: center; margin-top: 48px; }

/* ===== FAQ ===== */
.faq-section { position: relative; }
.faq-section.no-divider::before { display: none; }
.faq-section::before {
  content: ''; display: block;
  height: 80px;
  background: linear-gradient(to bottom left, var(--bg2) 49.5%, var(--bg) 50.5%);
}
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left;
  padding: 22px 0;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  font-size: 16px; font-weight: 600;
  color: var(--text);
  background: none;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--brand); }
.faq-icon {
  width: 28px; height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 0 8px 0 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px;
  color: var(--muted);
  transition: all 0.25s;
}
.faq-item.open .faq-icon {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding-bottom: 22px;
  font-size: 15px; color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ===== CONTACT ===== */
.contact-section { background: var(--bg2); position: relative; }
.contact-section.no-divider::before { display: none; }
.contact-section::before {
  content: ''; display: block;
  height: 80px;
  background: linear-gradient(to bottom right, var(--bg) 49.5%, var(--bg2) 50.5%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 60px);
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 16px;
}
.contact-left p {
  color: var(--muted); font-size: 16px;
  line-height: 1.7; margin-bottom: 36px;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; color: var(--muted);
}
.contact-info-item a { color: var(--muted); transition: color 0.2s; }
.contact-info-item a:hover { color: var(--brand); }
.contact-info-icon {
  width: 40px; height: 40px;
  background: var(--brand-dim);
  border: 1px solid var(--brand-border);
  border-radius: 0 10px 0 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--brand);
}

/* Form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted);
}
.form-input, .form-select, .form-textarea {
  background: var(--bg3);
  border: 1.5px solid var(--border);
  border-radius: 0 var(--radius-sm) 0 var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted2); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--brand-border);
  box-shadow: 0 0 0 3px var(--brand-dim);
}
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: var(--bg3); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-submit { grid-column: 1 / -1; }
.form-status {
  grid-column: 1 / -1;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) 0 var(--radius-sm);
  border: 1px solid transparent;
  display: none;
}
.form-status.is-success {
  display: block;
  color: #4ade80;
  background: rgba(34,197,94,0.08);
  border-color: rgba(34,197,94,0.25);
}
.form-status.is-error {
  display: block;
  color: #fca5a5;
  background: rgba(220,38,38,0.08);
  border-color: rgba(220,38,38,0.3);
}

/* Form down notice */
.form-down-notice {
  background: var(--bg3);
  border: 1px solid var(--brand-border);
  border-radius: 0 var(--radius) 0 var(--radius);
  padding: 40px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.form-down-notice::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--brand), transparent);
}
.form-down-icon {
  width: 64px; height: 64px;
  border-radius: 0 14px 0 14px;
  background: var(--brand-dim);
  border: 1px solid var(--brand-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  margin: 0 auto 20px;
}
.form-down-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 14px;
}
.form-down-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 28px;
}
.form-down-actions {
  display: flex; flex-direction: column;
  gap: 10px;
  max-width: 320px;
  margin: 0 auto;
}
.form-down-btn {
  width: 100%;
  justify-content: center;
  font-size: 16px;
}

/* ===== LOCATIONS (contact page) ===== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.location-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 0 var(--radius) 0 var(--radius);
  padding: 28px;
  transition: transform 0.3s, border-color 0.3s;
}
.location-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-border);
}
.location-icon {
  width: 44px; height: 44px;
  background: var(--brand-dim);
  border: 1px solid var(--brand-border);
  border-radius: 0 10px 0 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  margin-bottom: 16px;
}
.location-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.location-addr { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ===== FOOTER ===== */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px; align-items: start;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand-logo { margin-bottom: 12px; }
.footer-tagline {
  color: var(--muted); font-size: 14px;
  margin-bottom: 20px; font-style: italic;
  max-width: 420px;
}
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
  color: var(--muted); font-size: 14px; font-weight: 500;
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-links a:hover { color: var(--brand); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0 var(--radius-sm) 0 var(--radius-sm);
  padding: 10px 20px;
  font-size: 13.5px; font-weight: 600;
  color: var(--muted);
  transition: all 0.2s;
}
.footer-social a:hover {
  border-color: var(--brand-border);
  color: var(--text);
}
.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: var(--muted2); }
.footer-credit a { color: var(--brand); font-weight: 600; }
.footer-credit a:hover { color: var(--brand-light); }

/* ===== MOBILE STICKY CTA ===== */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 200;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}
.mobile-cta-call {
  flex: 1;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  color: var(--text);
  font-weight: 600; font-size: 14px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px;
  text-decoration: none;
}
.mobile-cta-quote {
  flex: 1.5;
  background: var(--brand);
  color: #fff;
  font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  text-decoration: none;
}

/* ===== FABs ===== */
.fab-wrap {
  position: fixed; bottom: 28px; right: 24px;
  z-index: 100;
  display: flex; flex-direction: column;
  gap: 12px; align-items: flex-end;
}
.fab {
  width: 48px; height: 48px;
  border-radius: 0 12px 0 12px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.fab:hover { transform: scale(1.1); }
.fab-top {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--muted);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
}
.fab-top.visible { opacity: 1; pointer-events: all; }
.fab-ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  box-shadow: 0 4px 20px rgba(220,39,67,0.35);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== CUSTOM CURSOR ===== */
@media (hover: hover) and (pointer: fine) {
  body.custom-cursor, body.custom-cursor * { cursor: none !important; }
  .cursor-dot {
    position: fixed; top: 0; left: 0;
    width: 6px; height: 6px;
    background: var(--brand);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
  }
  .cursor-ring {
    position: fixed; top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(220,38,38,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.25s, height 0.25s, border-color 0.25s, background 0.25s;
  }
  .cursor-ring.hovering {
    width: 56px; height: 56px;
    border-color: var(--brand);
    background: rgba(220,38,38,0.08);
  }
  .cursor-dot.hovering { width: 4px; height: 4px; }
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-light) 100%);
  z-index: 9500;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(220,38,38,0.4);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9500;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img-wrap {
  position: relative;
  max-width: 90vw; max-height: 85vh;
  transform: scale(0.95);
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1);
}
.lightbox.open .lightbox-img-wrap { transform: scale(1); }
.lightbox-img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain;
  border-radius: 0 var(--radius) 0 var(--radius);
  border: 2px solid var(--brand);
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}
.lightbox-caption {
  position: absolute; bottom: -44px; left: 0; right: 0;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px; letter-spacing: 3px;
  color: #fff;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(0,0,0,0.5);
  border: 1.5px solid var(--border);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 0 10px 0 10px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 1;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1.05);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-counter {
  position: fixed; top: 24px; left: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px; letter-spacing: 3px;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 10px 16px;
  border-radius: 0 10px 0 10px;
  border: 1.5px solid var(--border);
}

/* ===== STICKY DOT NAVIGATION ===== */
.dot-nav {
  position: fixed;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex; flex-direction: column;
  gap: 16px;
}
.dot-nav a {
  display: block;
  width: 10px; height: 10px;
  background: rgba(255,255,255,0.2);
  border: 1.5px solid transparent;
  border-radius: 50%;
  transition: all 0.3s;
  position: relative;
}
.dot-nav a::before {
  content: attr(data-label);
  position: absolute; right: 24px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px; letter-spacing: 2px;
  color: var(--muted);
  white-space: nowrap;
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 0 6px 0 6px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.dot-nav a:hover::before { opacity: 1; }
.dot-nav a:hover {
  background: var(--brand);
  transform: scale(1.3);
}
.dot-nav a.active {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1.4);
  box-shadow: 0 0 12px rgba(220,38,38,0.5);
}
@media (max-width: 1100px) { .dot-nav { display: none; } }

/* ===== DROP CAP (about page) ===== */
.drop-cap::first-letter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5em;
  line-height: 0.85;
  float: left;
  margin: 6px 12px -8px 0;
  color: var(--brand);
  padding: 8px 4px 0;
}

/* ===== HOVER REVEAL CARDS ===== */
.service-card {
  perspective: 1200px;
}
.service-card-reveal {
  position: absolute; inset: 0;
  background: var(--bg3);
  border-radius: 0 var(--radius) 0 var(--radius);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  border-top: 3px solid var(--brand);
}
.service-card:hover .service-card-reveal {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.service-card-reveal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 2px;
  color: var(--brand);
  margin-bottom: 16px;
}
.service-card-reveal-list {
  display: flex; flex-direction: column; gap: 10px;
}
.service-card-reveal-item {
  font-size: 14px; color: var(--text);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.5;
}
.service-card-reveal-item svg {
  color: var(--brand); flex-shrink: 0;
  margin-top: 2px;
}

/* ===== GRAIN ===== */
.grain {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9000;
  mix-blend-mode: overlay;
  opacity: 0.045;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left-panel {
    clip-path: none;
    min-height: auto;
    padding: 120px 48px 56px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .hero-right-panel { padding: 56px 48px 80px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .gallery-grid,
  .gallery-grid.gallery-large { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid.gallery-large .gallery-item { grid-column: span 1; }
  /* 5 items in 2-col layout — last lone item spans both cols */
  .gallery-grid.gallery-large .gallery-item:nth-last-child(2):nth-child(4) { grid-column-start: auto; }
  .gallery-grid.gallery-large .gallery-item:nth-last-child(1):nth-child(odd) { grid-column: span 2; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-ghost-links { display: none; }
  .section { padding: 80px 0; }
  .page-hero { padding: 140px 0 80px; }
  .hero-left-panel { padding: 100px 24px 40px; flex-direction: column; align-items: flex-start; }
  .hero-right-panel { padding: 40px 24px 72px; }
  .hero h1 { font-size: clamp(48px, 12vw, 72px); }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .merch-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid,
  .gallery-grid.gallery-large { grid-template-columns: 1fr; }
  .gallery-item,
  .gallery-grid.gallery-large .gallery-item { height: 280px; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 56px; }
  .fab-wrap { bottom: 80px; }
  .hero-btns { flex-direction: column; }
  .services-section::before,
  .process-section::before,
  .about-section::before,
  .gallery::before,
  .testimonials-section::before,
  .faq-section::before,
  .contact-section::before { height: 48px; }
}
@media (max-width: 480px) {
  .hero-left-panel { padding: 90px 20px 32px; }
  .hero-right-panel { padding: 32px 20px 64px; }

  /* Tighten Bebas Neue letter-spacing on small phones to prevent overflow */
  .hero h1 { letter-spacing: 1.5px; word-break: break-word; }
  .hero-left-stat { letter-spacing: 1px; }
  .page-hero h1 { font-size: clamp(44px, 11vw, 56px); letter-spacing: 1.5px; word-break: break-word; }
  .page-hero-sub { font-size: 16px; }
  .section-header h2 { font-size: clamp(34px, 8vw, 44px); letter-spacing: 1px; }
  .about-h2 { font-size: clamp(34px, 8vw, 44px); letter-spacing: 1px; }
  .contact-left h2 { font-size: clamp(34px, 8vw, 44px); letter-spacing: 1px; }
  .cta-banner h2 { font-size: clamp(36px, 9vw, 48px); letter-spacing: 1.5px; }
  .cta-banner p { font-size: 15px; }

  /* Service cards on small phones — tighter padding, smaller titles */
  .service-card { padding: 28px 22px; }
  .service-title { font-size: 19px; letter-spacing: 1px; }
  .service-card-num { font-size: 56px; top: 8px; right: 14px; }

  /* Process / merch cards */
  .process-step { padding: 36px 24px; }
  .process-title { font-size: 21px; letter-spacing: 1px; }
  .process-num { font-size: 76px; top: 14px; right: 16px; }
  .merch-card { padding: 28px 22px; }
  .merch-name { font-size: 18px; letter-spacing: 1px; }

  /* Testimonials */
  .testi-card { padding: 28px 22px; }
  .testi-text { font-size: 14.5px; }

  /* FAQ */
  .faq-question { font-size: 15px; padding: 18px 0; gap: 12px; }
  .faq-answer-inner { font-size: 14.5px; }

  /* Counter scroll text */
  .counter-scroll-text { font-size: clamp(48px, 14vw, 80px); letter-spacing: 8px; }

  /* Hero certifications */
  .hero-cert { font-size: 12px; }

  /* Trust strip on tiny phones */
  .trust-item { font-size: 12px; }
  .ticker-item { font-size: 14px; padding: 0 22px; gap: 22px; }

  /* Buttons — reduce padding so they fit better */
  .btn { padding: 14px 24px; font-size: 16px; letter-spacing: 1.5px; }

  /* Footer adjustments */
  .footer-tagline { font-size: 13.5px; }
  .footer-name, .nav-brand-text { letter-spacing: 1px; }

  /* Page hero breadcrumb */
  .page-hero-breadcrumb { font-size: 12px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .ticker-track { animation: none; }
}
