/* ADINDA Paint & Carbon — global styles */
:root {
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #161616;
  --ink: #1c1c1c;
  --yellow: #FFD400;
  --yellow-2: #FFC700;
  --yellow-soft: #fff3a8;
  --white: #f5f5f3;
  --mute: #8a8a86;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
@media (max-width: 800px) { body { cursor: auto; } }

img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

.font-display {
  font-family: 'Anton', 'Bebas Neue', 'Helvetica Neue', Impact, sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.92;
  text-transform: uppercase;
}
.font-mono { font-family: 'JetBrains Mono', 'Courier New', monospace; }

/* Carbon weave bg */
.carbon-bg {
  background-color: #0c0c0c;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 4px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 4px),
    radial-gradient(circle at 50% 0%, rgba(255,212,0,0.06), transparent 60%);
}

/* Cursor paint trail */
.cursor-dot {
  position: fixed; pointer-events: none; z-index: 9999;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--yellow);
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: transform 0.18s cubic-bezier(.2,.9,.3,1);
}
.cursor-trail {
  position: fixed; pointer-events: none; z-index: 9998;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--yellow);
  transform: translate(-50%, -50%);
  opacity: 0.9;
  animation: paint-fade 0.7s forwards;
}
@keyframes paint-fade {
  0% { opacity: 0.9; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(0.2); }
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* Layout */
.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 700px) { .container { padding: 0 18px; } }

.section { padding: 120px 0; position: relative; }
@media (max-width: 700px) { .section { padding: 80px 0; } }

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--yellow);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 28px; border: 0; border-radius: 999px;
  font-weight: 700; letter-spacing: 0.02em; font-size: 14px;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.btn-primary { background: var(--yellow); color: #0a0a0a; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,212,0,0.35); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid var(--line-2); }
.btn-ghost:hover { background: rgba(255,255,255,0.06); }
.btn .arrow { display: inline-block; transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 32px;
  backdrop-filter: blur(14px);
  background: rgba(10,10,10,0.55);
  border-bottom: 1px solid var(--line);
}
.site-header .brand { display: flex; align-items: center; gap: 14px; }
.site-header .brand img { height: 56px; width: auto; }
.site-header .brand .name { font-family: 'Anton', sans-serif; font-size: 22px; letter-spacing: 0.1em; }
.site-header .brand .name small { color: var(--mute); font-family: 'JetBrains Mono', monospace; font-size: 10px; display: block; letter-spacing: 0.2em; margin-top: 2px; }
.site-nav { display: flex; gap: 28px; }
.site-nav a {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--white); opacity: 0.7;
  position: relative; padding: 4px 0;
}
.site-nav a:hover { opacity: 1; color: var(--yellow); }
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--yellow);
  transition: width 0.3s ease;
}
.site-nav a:hover::after { width: 100%; }
.header-right { display: flex; align-items: center; gap: 16px; }
.lang-toggle {
  display: inline-flex; border: 1px solid var(--line-2); border-radius: 999px; padding: 4px;
  background: rgba(0,0,0,0.4);
}
.lang-toggle button {
  background: transparent; border: 0; color: var(--white); opacity: 0.55;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.15em;
  padding: 6px 12px; border-radius: 999px;
}
.lang-toggle button.active { background: var(--yellow); color: #0a0a0a; opacity: 1; font-weight: 700; }
@media (max-width: 800px) {
  .site-header { padding: 12px 16px; }
  .site-header .brand img { height: 48px; }
  .site-header .brand .name { font-size: 18px; }
  .site-nav { display: none; }
}

/* HERO base */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  padding: 120px 0 60px;
  overflow: hidden;
}
.hero-content {
  position: relative; z-index: 3;
}
.hero-eyebrow { margin-bottom: 24px; }
.hero h1.font-display {
  font-size: clamp(64px, 12vw, 220px);
  margin: 0 0 24px;
}
.hero h1 .yellow { color: var(--yellow); display: inline-block; position: relative; }
.hero p.sub {
  max-width: 540px; font-size: 18px; line-height: 1.5; color: rgba(245,245,243,0.78);
  margin: 0 0 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  position: absolute; bottom: 36px; right: 32px; z-index: 4;
  display: flex; align-items: center; gap: 12px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.scroll-line { width: 1px; height: 40px; background: var(--yellow); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ""; position: absolute; top: -100%; left: 0; right: 0; height: 50%;
  background: linear-gradient(to bottom, transparent, #fff);
  animation: scroll-drip 2.2s ease-in-out infinite;
}
@keyframes scroll-drip {
  0% { top: -100%; } 100% { top: 200%; }
}

/* Hero variant 1: Cinematic full-bleed photo */
.hero-v1 .bg-photo {
  position: absolute; inset: 0; z-index: 1;
  background-image: url("fb2c2b17-27f5-4a6f-b171-2b00c035b3fe");
  background-size: cover; background-position: center;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.05);
}
.hero-v1 .bg-photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.2) 30%, rgba(0,0,0,0.85) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 60%);
}
.hero-v1 .splash {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
}
.hero-v1 .splash svg { width: 100%; height: 100%; }
.hero-v1 .splash-blob {
  fill: var(--yellow);
  transform-origin: 30% 60%;
  animation: splash-in 1.6s cubic-bezier(.2,.9,.2,1) both;
}
@keyframes splash-in {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.05); opacity: 0.95; }
  100% { transform: scale(1); opacity: 0.85; }
}

/* Hero variant 2: Carbon weave + lightning */
.hero-v2 { background: #050505; }
.hero-v2 .weave {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 3px, transparent 3px 6px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.05) 0 3px, transparent 3px 6px);
  background-color: #0a0a0a;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 75%);
  animation: weave-pulse 8s ease-in-out infinite;
}
@keyframes weave-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.04); opacity: 1; }
}
.hero-v2 .bolt {
  position: absolute; right: -5%; top: 10%; width: 70%; height: 90%; z-index: 2;
  filter: drop-shadow(0 0 60px rgba(255,212,0,0.5));
  animation: bolt-flicker 6s ease-in-out infinite;
}
@keyframes bolt-flicker {
  0%, 100% { opacity: 1; }
  47% { opacity: 1; }
  48% { opacity: 0.4; }
  49% { opacity: 1; }
  50% { opacity: 0.7; }
  51% { opacity: 1; }
}
.hero-v2 .bolt svg { width: 100%; height: 100%; }
.hero-v2 .grid-glow {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(circle at 70% 40%, rgba(255,212,0,0.18), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255,212,0,0.08), transparent 50%);
}

/* Hero variant 3: 3D rotating bike with paint drip */
.hero-v3 { background: #060606; }
.hero-v3 .stage {
  position: absolute; right: -8%; top: 5%; width: 75%; height: 95%; z-index: 2;
}
.hero-v3 .turntable {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  perspective: 1200px;
}
.hero-v3 .turntable .ring {
  position: absolute; bottom: 8%; width: 90%; aspect-ratio: 2.5 / 1;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,212,0,0.25), transparent 60%);
  filter: blur(20px);
  animation: ring-pulse 3s ease-in-out infinite;
}
@keyframes ring-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
.hero-v3 .bike-photo {
  position: relative; max-height: 80%; max-width: 90%;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.8));
  animation: bike-rock 6s ease-in-out infinite;
}
@keyframes bike-rock {
  0%, 100% { transform: rotateY(-8deg) translateY(0); }
  50% { transform: rotateY(8deg) translateY(-10px); }
}
.hero-v3 .drip-svg {
  position: absolute; left: 0; top: 0; width: 50%; height: 100%; z-index: 2; pointer-events: none;
}
.hero-v3 .drip {
  fill: var(--yellow);
  animation: drip-down 4s cubic-bezier(.4,0,.2,1) infinite;
  transform-origin: top;
}
@keyframes drip-down {
  0% { transform: scaleY(0); opacity: 1; }
  60% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(20px); opacity: 0; }
}

/* Hero variant 4: Yellow paint stroke wipe */
.hero-v4 { background: #0a0a0a; }
.hero-v4 .stroke-stage {
  position: absolute; inset: 0; z-index: 1; overflow: hidden;
}
.hero-v4 .stroke-bg {
  position: absolute; inset: 0;
  background-image: url("7a4fa21c-3401-460f-8e5c-8afd4322cc11");
  background-size: cover; background-position: center;
  filter: saturate(0.4) brightness(0.55);
}
.hero-v4 .stroke-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.85));
}
.hero-v4 .yellow-stroke {
  position: absolute; left: -10%; top: 30%; width: 130%; height: 22%;
  background: var(--yellow);
  transform: skewY(-3deg);
  animation: stroke-wipe 1.6s cubic-bezier(.2,.9,.2,1) both;
  transform-origin: left;
}
@keyframes stroke-wipe {
  0% { transform: skewY(-3deg) scaleX(0); }
  100% { transform: skewY(-3deg) scaleX(1); }
}
.hero-v4 .yellow-stroke::before {
  content: ""; position: absolute; right: -20px; top: 0; bottom: 0; width: 80px;
  background: var(--yellow);
  clip-path: polygon(0 0, 100% 30%, 60% 70%, 30% 50%, 0 100%);
}
.hero-v4 .yellow-stroke::after {
  content: ""; position: absolute; left: -10px; top: -8px; right: -10px; bottom: -8px;
  background: repeating-linear-gradient(90deg, transparent 0 4px, rgba(0,0,0,0.05) 4px 6px);
  opacity: 0.6;
}
.hero-v4 .stroke-content { position: relative; z-index: 3; }

/* ---- Hero responsive ---- */
@media (max-width: 800px) {
  .hero {
    min-height: 92vh;
    padding: 110px 0 90px;
  }
  .hero h1.font-display {
    font-size: clamp(56px, 17vw, 96px);
    margin-bottom: 18px;
  }
  .hero p.sub {
    font-size: 16px; max-width: 100%;
    margin-bottom: 26px;
  }
  .hero-eyebrow { margin-bottom: 16px; }
  .hero-ctas { gap: 10px; width: 100%; }
  .hero-ctas .btn { padding: 14px 20px; font-size: 12px; flex: 1 1 auto; justify-content: center; }
  .hero-meta { display: none; }

  /* V2 Bolt: pull bolt up so it doesn't overlap text, dim more */
  .hero-v2 { align-items: flex-end; }
  .hero-v2 .bolt {
    right: -15%; top: -2%; width: 110%; height: 60%;
    opacity: 0.55;
    filter: drop-shadow(0 0 30px rgba(255,212,0,0.4));
  }
  .hero-v2 .grid-glow {
    background:
      radial-gradient(circle at 70% 25%, rgba(255,212,0,0.22), transparent 50%),
      radial-gradient(circle at 50% 100%, rgba(0,0,0,0.7), transparent 50%);
  }

  /* V4 Stroke: thinner stroke, lower position */
  .hero-v4 .yellow-stroke {
    top: 22%; height: 14%;
  }
  .hero-v4 .stroke-bg::after {
    background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.92));
  }

  /* Variant chips: smaller on mobile */
  .hero-variant-chips button {
    padding: 6px 8px; font-size: 10px; letter-spacing: 0.1em;
  }
}

@media (max-width: 480px) {
  .hero h1.font-display { font-size: clamp(48px, 16vw, 72px); }
  .hero-v2 .bolt { width: 130%; right: -25%; opacity: 0.45; }
  .hero-v4 .yellow-stroke { height: 11%; top: 24%; }
}

/* Marquee strip */
.marquee-strip {
  background: var(--yellow); color: #0a0a0a; overflow: hidden;
  border-top: 2px solid #0a0a0a; border-bottom: 2px solid #0a0a0a;
  padding: 22px 0; position: relative;
}
.marquee-track {
  display: inline-flex; gap: 40px; align-items: center;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-strip .item {
  font-family: 'Anton', sans-serif; font-size: 36px; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.marquee-strip .dot {
  width: 14px; height: 14px; background: #0a0a0a; border-radius: 50%; display: inline-block;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Section heading */
.section-head { display: flex; flex-direction: column; gap: 20px; margin-bottom: 60px; }
.section-head h2 { font-size: clamp(40px, 7vw, 96px); margin: 0; }
.section-head .yellow { color: var(--yellow); }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--black-2); padding: 44px 36px;
  display: flex; flex-direction: column; gap: 22px; min-height: 460px;
  position: relative; overflow: hidden;
  transition: background 0.4s ease;
}
.service-card:hover { background: #181818; }
.service-card .tag { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--yellow); letter-spacing: 0.2em; }
.service-card h3 { font-family: 'Anton', sans-serif; font-size: 44px; text-transform: uppercase; margin: 0; letter-spacing: 0.01em; }
.service-card p { color: rgba(245,245,243,0.7); margin: 0; font-size: 15px; line-height: 1.6; }
.service-card ul { list-style: none; padding: 0; margin: auto 0 0; display: flex; flex-direction: column; gap: 8px; }
.service-card li {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; color: rgba(245,245,243,0.65);
  display: flex; align-items: center; gap: 10px; padding: 8px 0;
  border-top: 1px solid var(--line);
}
.service-card li::before { content: "+"; color: var(--yellow); font-size: 14px; }
.service-card .corner-bolt {
  position: absolute; top: 24px; right: 24px; width: 28px; height: 28px;
  opacity: 0.3; transition: opacity 0.3s ease, transform 0.3s ease;
}
.service-card:hover .corner-bolt { opacity: 1; transform: rotate(8deg); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.gallery-item { position: relative; overflow: hidden; background: #111; border-radius: 4px; }
.gallery-item img, .gallery-item video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(.2,.8,.2,1);
}
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.06); }
.gallery-item .label {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  display: flex; justify-content: space-between; align-items: flex-end;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: #fff;
  opacity: 0; transform: translateY(8px); transition: 0.4s ease;
}
.gallery-item:hover .label { opacity: 1; transform: none; }
.gallery-item .label .num { color: var(--yellow); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7));
  opacity: 0; transition: 0.4s ease;
}
.gallery-item:hover::after { opacity: 1; }
.g-1 { grid-column: span 8; aspect-ratio: 16/10; }
.g-2 { grid-column: span 4; aspect-ratio: 4/5; }
.g-3 { grid-column: span 4; aspect-ratio: 4/5; }
.g-4 { grid-column: span 4; aspect-ratio: 4/5; }
.g-5 { grid-column: span 4; aspect-ratio: 4/5; }
.g-6 { grid-column: span 12; aspect-ratio: 16/7; }
@media (max-width: 800px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .g-1, .g-6 { grid-column: span 2; aspect-ratio: 4/3; }
  .g-2, .g-3, .g-4, .g-5 { grid-column: span 1; }
}

/* Process */
.process-list { display: flex; flex-direction: column; }
.process-row {
  display: grid; grid-template-columns: 100px 1fr 1fr 60px;
  gap: 32px; padding: 36px 0; border-top: 1px solid var(--line);
  align-items: baseline; transition: background 0.3s ease;
}
.process-row:last-child { border-bottom: 1px solid var(--line); }
.process-row:hover { background: rgba(255,212,0,0.04); }
.process-row .num { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--yellow); letter-spacing: 0.2em; }
.process-row .title { font-family: 'Anton', sans-serif; font-size: 44px; text-transform: uppercase; }
.process-row .desc { color: rgba(245,245,243,0.7); font-size: 15px; }
.process-row .plus { text-align: right; color: var(--mute); font-size: 24px; transition: 0.3s ease; }
.process-row:hover .plus { color: var(--yellow); transform: rotate(90deg); }
@media (max-width: 800px) {
  .process-row { grid-template-columns: 60px 1fr; gap: 16px; }
  .process-row .desc { grid-column: 2; }
  .process-row .plus { display: none; }
  .process-row .title { font-size: 30px; }
}

/* Awards */
.awards { background: #050505; position: relative; overflow: hidden; }
.awards-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  margin-top: 60px;
}
.awards-stats .stat { background: var(--black-2); padding: 50px 30px; }
.awards-stats .stat .n { font-family: 'Anton', sans-serif; font-size: 88px; line-height: 1; color: var(--yellow); }
.awards-stats .stat .l { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,245,243,0.6); margin-top: 12px; }
@media (max-width: 800px) { .awards-stats { grid-template-columns: 1fr 1fr; } .awards-stats .stat .n { font-size: 56px; } .awards-stats .stat { padding: 30px 22px; } }

.trophy-photo {
  margin-top: 40px; aspect-ratio: 21/9; background: #111; overflow: hidden; border-radius: 4px;
}
.trophy-photo img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85); }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 800px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card { background: var(--black-2); border: 1px solid var(--line); padding: 32px; border-radius: 4px; }
.review-card .stars { color: var(--yellow); letter-spacing: 0.1em; margin-bottom: 16px; font-size: 14px; }
.review-card .body { font-size: 17px; line-height: 1.6; margin: 0 0 24px; }
.review-card .meta { display: flex; justify-content: space-between; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mute); }

/* Location */
.location-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 32px; }
@media (max-width: 900px) { .location-grid { grid-template-columns: 1fr; } }
.loc-info { background: var(--black-2); border: 1px solid var(--line); padding: 40px; border-radius: 4px; }
.loc-info h3 { font-family: 'Anton', sans-serif; font-size: 32px; text-transform: uppercase; margin: 16px 0 8px; }
.loc-info .addr { color: rgba(245,245,243,0.78); font-size: 15px; margin-bottom: 28px; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-top: 1px solid var(--line); }
.hours-table tr:last-child { border-bottom: 1px solid var(--line); }
.hours-table td { padding: 12px 0; font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.hours-table td:last-child { text-align: right; color: rgba(245,245,243,0.7); }
.hours-table tr.today td { color: var(--yellow); font-weight: 700; }
.loc-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.map-frame {
  border-radius: 4px; overflow: hidden; min-height: 540px; border: 1px solid var(--line);
  position: relative; background: #111;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 540px; border: 0; filter: invert(0.92) hue-rotate(180deg) saturate(0.4); }

/* Contact */
.contact { background: linear-gradient(180deg, #0a0a0a, #060606); position: relative; overflow: hidden; }
.contact .yellow-blob {
  position: absolute; right: -200px; top: -200px; width: 600px; height: 600px;
  background: var(--yellow); filter: blur(180px); opacity: 0.15; border-radius: 50%;
}
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 60px; align-items: start; position: relative; z-index: 1; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; position: relative; }
.field label { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,245,243,0.6); }
.field input, .field textarea, .field select {
  background: transparent; border: 0; border-bottom: 1px solid var(--line-2);
  padding: 14px 0; color: var(--white); font-size: 17px; font-family: inherit;
  outline: none; transition: border-color 0.3s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--yellow); }
.field textarea { resize: vertical; min-height: 100px; }
.field select option { background: #111; color: #fff; }
.service-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.service-pill {
  padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line-2);
  background: transparent; color: rgba(245,245,243,0.8);
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  transition: 0.2s ease;
}
.service-pill.active, .service-pill:hover { border-color: var(--yellow); background: var(--yellow); color: #0a0a0a; }
.contact-side { padding: 40px; background: #0d0d0d; border: 1px solid var(--line); border-radius: 4px; }
.contact-side h3 { font-family: 'Anton', sans-serif; font-size: clamp(36px, 5vw, 56px); text-transform: uppercase; margin: 16px 0; }
.whatsapp-btn {
  display: flex; align-items: center; gap: 14px; padding: 18px 24px;
  background: #25D366; color: #0a0a0a; border-radius: 999px; font-weight: 700;
  text-transform: uppercase; font-size: 14px; letter-spacing: 0.05em;
  width: fit-content; margin-top: 24px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(37,211,102,0.35); }
.send-btn {
  align-self: flex-start; margin-top: 12px;
  padding: 18px 36px; background: var(--yellow); color: #0a0a0a;
  border: 0; border-radius: 999px; font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase; font-size: 14px;
  transition: 0.25s ease;
}
.send-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,212,0,0.35); }

/* Footer */
.site-footer { padding: 60px 0 32px; border-top: 1px solid var(--line); background: #050505; }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; }
.footer-grid .brand { display: flex; align-items: center; gap: 16px; }
.footer-grid .brand img { height: 56px; }
.footer-grid .tag { font-size: 14px; color: rgba(245,245,243,0.6); max-width: 320px; }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mute); }

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--yellow); z-index: 200;
  transition: width 0.05s linear;
  box-shadow: 0 0 12px rgba(255,212,0,0.6);
}

/* Hero variant rotator — stacks Bolt and Stroke variants and crossfades
   between them on a 5s interval. The wrapper takes full hero height; each
   layer is absolutely positioned so the rest of the page flows below. */
.hero-rotator { position: relative; min-height: 100vh; }
.hero-rotator-layer {
  position: absolute; inset: 0;
  opacity: 0; pointer-events: none;
  transition: opacity 1.4s ease-in-out;
  will-change: opacity;
}
.hero-rotator-layer.is-active { opacity: 1; pointer-events: auto; }
.hero-rotator-layer .hero { min-height: 100vh; }
