/* ============================================
   THE KNIFE GUYS — Premium Design System
   Ken Burns Hero + GSAP Scroll + Luxury Feel
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables (Official Brand Colors) ── */
:root {
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-card: #141414;
  --text-primary: #f0f0f0;
  --text-secondary: #c0c0c0;
  --accent-red: #ff0000;
  --accent-red-dim: #cc0000;
  --accent-blue: #0040ff;
  --accent-blue-dim: #0030cc;
  --accent-silver: #d0d0d0;
  --accent-brown: #602010;
  --border-subtle: rgba(255, 0, 0, 0.15);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent-red); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--text-primary); }
img { max-width: 100%; display: block; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.4s var(--ease-smooth);
}
.nav.scrolled {
  padding: 0.6rem 2rem;
  background: rgba(10, 10, 10, 0.95);
}
.nav-logo img { border-radius: 4px; }
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav-logo span { color: var(--accent-red); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding: 0.3rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-red);
  transition: width 0.3s var(--ease-smooth);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--accent-red); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--accent-red);
  color: var(--bg-primary);
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--text-primary); color: var(--bg-primary); }

/* Mobile nav */
.nav-toggle { display: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); margin: 5px 0; transition: all 0.3s; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s var(--ease-smooth);
    border-left: 1px solid var(--border-subtle);
  }
  .nav-links.open { right: 0; }
  .nav-cta { display: none; }
}

/* ── Hero with Ken Burns Effect ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: -15%;
  background-size: cover;
  background-position: center;
  animation: kenBurns 15s ease-in-out infinite alternate;
  z-index: 0;
  filter: brightness(0.9) contrast(1.1) saturate(1.2);
}
@keyframes kenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  20%  { transform: scale(1.08) translate(-2%, 1%); }
  40%  { transform: scale(1.15) translate(1%, -2%); }
  60%  { transform: scale(1.1) translate(-1%, 2%); }
  80%  { transform: scale(1.2) translate(2%, -1%); }
  100% { transform: scale(1.18) translate(-1%, 1%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
  z-index: 1;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.8);
  z-index: 2;
  pointer-events: none;
}

/* ═══ Premium Cinematic Effects (Seedance-style) ═══ */

/* Moving light reflection across the hero */
.blade-reflection {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.blade-reflection::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 30%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 169, 110, 0.03) 20%,
    rgba(201, 169, 110, 0.08) 40%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(201, 169, 110, 0.08) 60%,
    rgba(201, 169, 110, 0.03) 80%,
    transparent 100%
  );
  transform: rotate(-25deg);
  animation: bladeSweep 6s ease-in-out infinite;
}
@keyframes bladeSweep {
  0%   { left: -60%; }
  50%  { left: 120%; }
  100% { left: -60%; }
}

/* Floating spark particles */
.spark-container {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.spark {
  position: absolute;
  width: 3px;
  height: 3px;
  background: radial-gradient(circle, var(--accent-blue) 0%, var(--accent-blue-dim) 50%, transparent 70%);
  border-radius: 50%;
  animation: sparkFloat 8s ease-in-out infinite;
  opacity: 0;
}
.spark:nth-child(1)  { left: 15%; top: 30%; animation-delay: 0s; animation-duration: 7s; }
.spark:nth-child(2)  { left: 40%; top: 50%; animation-delay: 1.2s; animation-duration: 9s; }
.spark:nth-child(3)  { left: 65%; top: 20%; animation-delay: 2.5s; animation-duration: 6s; }
.spark:nth-child(4)  { left: 80%; top: 60%; animation-delay: 0.8s; animation-duration: 8s; }
.spark:nth-child(5)  { left: 25%; top: 70%; animation-delay: 3s; animation-duration: 7.5s; }
.spark:nth-child(6)  { left: 55%; top: 40%; animation-delay: 1.5s; animation-duration: 10s; }
.spark:nth-child(7)  { left: 70%; top: 75%; animation-delay: 4s; animation-duration: 6.5s; }
.spark:nth-child(8)  { left: 35%; top: 15%; animation-delay: 2s; animation-duration: 8.5s; }
.spark:nth-child(9)  { left: 50%; top: 85%; animation-delay: 0.5s; animation-duration: 7s; }
.spark:nth-child(10) { left: 90%; top: 45%; animation-delay: 3.5s; animation-duration: 9s; }
@keyframes sparkFloat {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  10%  { opacity: 1; transform: translateY(-10px) scale(1); }
  50%  { opacity: 0.6; transform: translateY(-60px) scale(0.8); }
  90%  { opacity: 0; transform: translateY(-120px) scale(0.3); }
  100% { opacity: 0; transform: translateY(-130px) scale(0); }
}

/* Light rays emanating from center */
.light-rays {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(201, 169, 110, 0.03) 10deg,
    transparent 20deg,
    transparent 80deg,
    rgba(201, 169, 110, 0.02) 90deg,
    transparent 100deg,
    transparent 160deg,
    rgba(201, 169, 110, 0.03) 170deg,
    transparent 180deg,
    transparent 240deg,
    rgba(201, 169, 110, 0.02) 250deg,
    transparent 260deg,
    transparent 340deg,
    rgba(201, 169, 110, 0.03) 350deg,
    transparent 360deg
  );
  animation: rotateRays 30s linear infinite;
}
@keyframes rotateRays {
  0%   { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Heat shimmer at bottom of hero */
.heat-shimmer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    0deg,
    rgba(10, 10, 10, 0.95) 0%,
    transparent 100%
  );
  animation: shimmer 4s ease-in-out infinite alternate;
}
@keyframes shimmer {
  0%   { opacity: 0.8; }
  50%  { opacity: 1; }
  100% { opacity: 0.8; }
}

/* ═══ Loading Screen ═══ */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading-logo img { max-height: 60px; }
.loading-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent-red);
  letter-spacing: 8px;
  text-transform: uppercase;
  animation: loadPulse 1.5s ease-in-out infinite;
  margin-bottom: 2rem;
}
@keyframes loadPulse {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 1; }
}
.loading-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 1px;
  overflow: hidden;
}
.loading-bar-fill {
  height: 100%;
  background: var(--accent-red);
  border-radius: 1px;
  animation: loadFill 2s ease-out forwards;
}
@keyframes loadFill {
  0%   { width: 0; }
  100% { width: 100%; }
}

/* ═══ Custom Gold Cursor ═══ */
@media (hover: hover) {
  body {
    cursor: none;
  }
  .cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent-red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, background 0.3s;
    mix-blend-mode: difference;
  }
  .cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--accent-red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.4s ease, width 0.3s, height 0.3s, border-color 0.3s;
    opacity: 0.5;
  }
  .cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-color: #fff;
    opacity: 0.8;
  }
  a, button, .btn, [role="button"] {
    cursor: none;
  }
}

/* ═══ Scroll Progress Bar ═══ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-blue));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(201, 169, 110, 0.5);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}
.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.5rem;
  border: 1px solid var(--accent-red);
  color: var(--accent-red);
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(40px);
}
.hero-title .gold { color: var(--accent-red); }
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  transform: translateY(30px);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--accent-red);
  color: var(--bg-primary);
}
.btn-primary:hover { background: var(--text-primary); color: var(--bg-primary); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--accent-red);
}
.btn-outline:hover { background: var(--accent-red); color: var(--bg-primary); transform: translateY(-2px); }
.btn-phone {
  background: var(--accent-red);
  color: var(--text-primary);
}
.btn-phone:hover { background: #a62d00; transform: translateY(-2px); }

/* ── Sections ── */
.section {
  padding: 8rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-label {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
  font-weight: 300;
}

/* ── Product Cards ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
}
.product-card:hover {
  border-color: var(--accent-red);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(211, 47, 47, 0.1);
}
.product-card-img {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.product-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--bg-card) 0%, transparent 50%);
}
.product-card-img .ken-burns-inner {
  position: absolute;
  inset: -10%;
  background: inherit;
  background-size: cover;
  background-position: center;
  animation: kenBurnsSlow 30s ease-in-out infinite alternate;
}
@keyframes kenBurnsSlow {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}
.product-card-body { padding: 1.5rem; }
.product-card-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 0.5rem;
}
.product-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.product-card-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.product-card-price {
  color: var(--accent-red);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 1px;
}
.product-card-cta {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent-red);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.product-card-cta:hover { border-color: var(--accent-red); }

/* ── Brand Strip ── */
.brand-strip {
  padding: 4rem 2rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}
.brand-strip-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: scrollBrands 25s linear infinite;
  width: max-content;
}
@keyframes scrollBrands {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-item {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 4px;
  color: var(--text-secondary);
  opacity: 0.5;
  white-space: nowrap;
  transition: opacity 0.3s;
}
.brand-item:hover { opacity: 1; color: var(--accent-red); }

/* ── Stats ── */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 4rem 0;
}
.stat {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--accent-red);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ── Locations ── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}
.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: all 0.3s;
}
.location-card:hover { border-color: var(--accent-red); }
.location-card-map {
  height: 250px;
  background: var(--bg-secondary);
  position: relative;
}
.location-card-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) brightness(0.6) contrast(1.2);
  transition: filter 0.4s;
}
.location-card:hover .location-card-map iframe {
  filter: grayscale(50%) brightness(0.7) contrast(1.1);
}
.location-card-body { padding: 2rem; }
.location-card-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.location-card-address {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.location-card-hours {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.location-card-hours strong { color: var(--text-primary); }
.location-card-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── CTA Banner ── */
.cta-banner {
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  animation: kenBurns 20s ease-in-out infinite alternate;
  filter: brightness(0.3);
}
.cta-banner-content { position: relative; z-index: 2; }
.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.cta-banner-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 2.5rem;
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--accent-red);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}
.testimonial-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}
.testimonial-role {
  color: var(--accent-red);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  padding: 1.5rem 3rem 1.5rem 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--accent-red); }
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent-red);
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth), padding 0.4s;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.5rem; }
.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── Contact Form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-red);
}
.form-textarea { min-height: 150px; resize: vertical; }
.form-select { appearance: none; cursor: pointer; }

/* ── Footer ── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
/* Footer logo handled via inline img tag */
.footer-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 350px;
}
.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--accent-red); }
.footer-bottom {
  max-width: 1400px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  color: var(--text-secondary);
  font-size: 0.8rem;
}
.footer-phone {
  color: var(--accent-red);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

/* ── Scroll Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ── Light Rays Effect ── */
.light-rays {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.light-rays::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(211, 47, 47, 0.03) 10deg,
    transparent 20deg,
    transparent 40deg,
    rgba(211, 47, 47, 0.02) 50deg,
    transparent 60deg,
    transparent 80deg,
    rgba(211, 47, 47, 0.03) 90deg,
    transparent 100deg
  );
  animation: rotateRays 30s linear infinite;
  transform-origin: center;
}
@keyframes rotateRays {
  0% { transform: translateX(-50%) rotate(0deg); }
  100% { transform: translateX(-50%) rotate(360deg); }
}

/* ── Progress Bar (scroll) ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--accent-red);
  z-index: 1001;
  transition: width 0.1s;
}

/* ── Loading Screen ── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  transition: opacity 0.6s, visibility 0.6s;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-logo {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 8px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.2s forwards;
}
.loader-logo span { color: var(--accent-red); }
.loader-bar {
  width: 200px;
  height: 2px;
  background: var(--border-subtle);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.8s 0.4s forwards;
}
.loader-bar-fill {
  height: 100%;
  background: var(--accent-red);
  width: 0%;
  animation: loadProgress 1.5s 0.6s var(--ease-smooth) forwards;
}
@keyframes loadProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Floating CTA (mobile) ── */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--accent-red);
  padding: 0.75rem 1rem;
  z-index: 999;
  justify-content: center;
  gap: 0.75rem;
}
@media (max-width: 900px) {
  .floating-cta { display: flex; }
  body { padding-bottom: 70px; }
}

/* ── Page-specific hero variants ── */
.hero-page {
  height: 50vh;
  min-height: 400px;
}
.hero-page .hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

/* ── Engraving showcase ── */
.engraving-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.engraving-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
}
.engraving-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}
.engraving-item:hover img { transform: scale(1.1); }
.engraving-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,0.9) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s;
}
.engraving-item:hover .engraving-item-overlay { opacity: 1; }

/* ── Process Steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  counter-reset: step;
}
.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  counter-increment: step;
  transition: all 0.3s;
}
.process-step:hover { border-color: var(--accent-red); transform: translateY(-5px); }
.process-step::before {
  content: counter(step);
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--accent-red);
  opacity: 0.15;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.process-step-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── Knife category grid ── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}
.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: all 0.4s;
}
.category-card:hover { border-color: var(--accent-red); transform: translateY(-5px); }
.category-card-img {
  height: 200px;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
.category-card-body { padding: 2rem; }
.category-card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.category-card-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.category-card-brands {
  color: var(--accent-red);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
