:root {
  --bg: #101214;
  --bg-alt: #16191c;
  --steel: #1e2225;
  --steel-line: #2d3236;
  --white: #F4F1EA;
  --off-white: #C6C9C7;
  --muted: #7c8386;
  --accent: #E85C1F;
  --accent-dark: #C7481A;
  --accent-bright: #FF8A42;
  --accent-soft: rgba(232, 92, 31, 0.12);
  --gold: #C9A227;
  --whatsapp: #25D366;
  --radius: 10px;
  --notch: 14px;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(.16,.84,.44,1), transform 0.7s cubic-bezier(.16,.84,.44,1);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.reveal.in-view { opacity: 1; transform: none; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--off-white);
  line-height: 1.65;
}

h1, h2 {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
h3, .brand-name, .btn, .nav a, .hours-title {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.mono, .plate-tag, .section-label, .stat-num, .stat-label, .service-price,
.hours-row, .topbar-item, .map-address {
  font-family: 'IBM Plex Mono', monospace;
}

h1, h2, h3 { color: var(--white); }
h1 { font-size: clamp(3rem, 7vw, 5.6rem); line-height: 0.95; font-weight: 400; }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 400; line-height: 1; margin-bottom: 18px; }
h3 { font-size: 1.1rem; font-weight: 600; }

.icon { width: 1em; height: 1em; flex-shrink: 0; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.section { padding: 100px 24px; }
.section-inner { max-width: 1140px; margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-label::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}
.section-label-light { color: var(--accent); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 30px;
  clip-path: polygon(12px 0, 100% 0, 100% 100%, 0 100%, 0 12px);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.btn .icon { width: 16px; height: 16px; }
.btn-accent {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent-dark));
  color: #1A0D00;
  box-shadow: 0 8px 22px rgba(232, 92, 31, 0.28);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(232, 92, 31, 0.4); }
.btn-ghost {
  border-color: var(--steel-line);
  color: var(--white);
  background: rgba(255,255,255,0.02);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* Announcement ribbon */
.announce-bar {
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
  color: #1A0D00;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  font-weight: 600;
}
.announce-bar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 9px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.announce-bar a { text-decoration: underline; text-underline-offset: 3px; margin-left: auto; padding-right: 16px; }
.announce-bar-close {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: #1A0D00;
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.announce-bar-inner { position: relative; }
.announce-bar.hidden { display: none; }

/* Topbar */
.topbar {
  background: #0A0B0C;
  border-bottom: 1px solid var(--steel-line);
  font-size: 0.76rem;
}
.topbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  gap: 24px;
  align-items: center;
  color: var(--muted);
}
.topbar-item { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); }
.topbar-item .icon { width: 13px; height: 13px; opacity: 0.85; }
.topbar-item:hover { color: var(--accent); }
.topbar-hours { margin-left: auto; }
@media (max-width: 760px) { .topbar-item .icon { width: 12px; height: 12px; } }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 23, 26, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--steel-line);
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-size: 1.05rem; font-weight: 700; color: var(--white); }
.brand-nv { color: var(--accent); }
.brand-tag { font-size: 0.62rem; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }

.nav { display: flex; gap: 30px; }
.nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--off-white);
  position: relative;
  padding: 6px 0;
}
.nav a:hover { color: var(--accent); }
.nav a.active { color: var(--accent); }

.header-cta { padding: 11px 22px; font-size: 0.82rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--white); }

/* Hero */
.hero {
  position: relative;
  padding: 170px 24px 100px;
  background: var(--bg);
}
.hero-clip { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 38%;
  filter: saturate(1.05) contrast(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 9, 10, 0.3) 0%, rgba(8, 9, 10, 0.62) 48%, var(--bg) 97%),
    linear-gradient(90deg, rgba(8, 9, 10, 0.4) 0%, transparent 45%, rgba(8, 9, 10, 0.28) 100%);
}
.hero-fan {
  position: absolute;
  top: -22%;
  right: -18%;
  width: 78vmin;
  height: 78vmin;
  background: repeating-conic-gradient(from 205deg at 25% 25%, transparent 0 6.5deg, rgba(244, 241, 234, 0.06) 6.5deg 8deg);
  -webkit-mask-image: radial-gradient(circle at 25% 25%, black 0%, transparent 65%);
  mask-image: radial-gradient(circle at 25% 25%, black 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 3; max-width: 820px; margin: 0 auto; text-align: center; }
.hero h1 { margin-bottom: 26px; }
.plate-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border: 1px solid var(--steel-line);
  background: rgba(30, 34, 37, 0.55);
  backdrop-filter: blur(6px);
  clip-path: polygon(10px 0, 100% 0, 100% 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 30px;
}
.plate-tag-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); display: inline-block; }
.hero-sub {
  font-size: 1.1rem;
  color: var(--off-white);
  max-width: 620px;
  margin: 22px auto 34px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--steel-line);
  padding-top: 30px;
}
.stat { display: flex; flex-direction: column; gap: 6px; padding: 0 32px; }
.stat:not(:first-child) { border-left: 1px solid var(--steel-line); }
.stat-num { font-size: 1.5rem; font-weight: 600; color: var(--accent); }
.stat-label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

.hero-underline { display: inline-block; position: relative; }
.hero-underline svg {
  position: absolute;
  left: 0;
  bottom: -0.12em;
  width: 100%;
  height: 0.3em;
  overflow: visible;
}
.hero-underline path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  transition: stroke-dashoffset 1.1s cubic-bezier(.16,.84,.44,1) 0.5s;
}
.hero-inner.in-view .hero-underline path { stroke-dashoffset: 0; }


/* Two col sections */
.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.two-col.reverse .col-visual { order: 2; }
.two-col.reverse .col-text { order: 1; }

.over-ons { background: var(--bg); }
.checklist { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.checklist li {
  padding-left: 28px;
  position: relative;
  color: var(--off-white);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 3px;
  background: var(--accent);
}

.badge-card {
  position: relative;
  background: var(--steel);
  border: 1px solid var(--steel-line);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  aspect-ratio: 1;
  max-width: 340px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  box-shadow: var(--shadow);
}
.badge-card img { border-radius: 50%; }
.bolt {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--steel-line);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.5), 0 0 0 1px rgba(244,241,234,0.06);
}
.bolt-tl { top: 22px; left: 22px; }
.bolt-tr { top: 22px; right: 22px; }
.bolt-bl { bottom: 22px; left: 22px; }
.bolt-br { bottom: 22px; right: 22px; }

/* Diensten */
.diensten { background: var(--bg-alt); border-top: 1px solid var(--steel-line); border-bottom: 1px solid var(--steel-line); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-top: 40px;
}
.service-card {
  background: var(--steel);
  border: 1px solid var(--steel-line);
  clip-path: polygon(var(--notch) 0, 100% 0, 100% calc(100% - var(--notch)), calc(100% - var(--notch)) 100%, 0 100%, 0 var(--notch));
  padding: 30px 24px;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.service-icon { color: var(--accent); margin-bottom: 16px; }
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { margin-bottom: 10px; text-transform: none; }
.service-card p { font-size: 0.92rem; color: var(--muted); margin-bottom: 16px; }
.service-price {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  border-top: 1px solid var(--steel-line);
  padding-top: 14px;
  width: 100%;
}
.price-note { margin-top: 30px; font-size: 0.85rem; color: var(--muted); }

/* Modellen */
.catalog-viewer {
  width: 100%;
  height: 75vh;
  min-height: 480px;
  border: 1px solid var(--steel-line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-alt);
}
.catalog-viewer iframe { width: 100%; height: 100%; border: 0; }
.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
@media (max-width: 640px) {
  .catalog-viewer { height: 60vh; }
}

/* Ons werk */
.werk { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--steel-line);
  aspect-ratio: 4 / 3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--accent);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 14px 12px;
  font-size: 0.8rem;
  color: var(--white);
  background: linear-gradient(to top, rgba(13, 15, 17, 0.92), transparent);
}

/* Work marquee */
.marquee-section {
  border-top: 1px solid var(--steel-line);
  border-bottom: 1px solid var(--steel-line);
  background: var(--bg-alt);
  padding: 34px 0;
  overflow: hidden;
}
.marquee-label {
  max-width: 1140px;
  margin: 0 auto 20px;
  padding: 0 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.marquee { overflow: hidden; }
.marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: marqueeScroll 42s linear infinite;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  position: relative;
  width: 200px;
  height: 140px;
  flex-shrink: 0;
  border: 1px solid var(--steel-line);
  overflow: hidden;
  cursor: pointer;
}
.marquee-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.marquee-item:hover img { transform: scale(1.08); }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 760px) {
  .marquee-item { width: 150px; height: 105px; }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 11, 12, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(900px, 92vw);
  max-height: 82vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--steel);
  border: 1px solid var(--steel-line);
  color: var(--white);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox-close:hover { border-color: var(--accent); color: var(--accent); }

/* Werkgebied */
.map-card {
  background: var(--steel);
  border: 1px solid var(--steel-line);
  clip-path: polygon(var(--notch) 0, 100% 0, 100% calc(100% - var(--notch)), calc(100% - var(--notch)) 100%, 0 100%, 0 var(--notch));
  padding: 50px 30px;
  text-align: center;
}
.map-pin { color: var(--accent); margin-bottom: 12px; display: flex; justify-content: center; }
.map-pin svg { width: 38px; height: 38px; }
.map-city { font-family: 'Oswald', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--white); text-transform: uppercase; }
.map-address { color: var(--muted); margin-top: 8px; font-size: 0.82rem; }

.hours-card {
  margin-top: 26px;
  background: var(--steel);
  border: 1px solid var(--steel-line);
  clip-path: polygon(var(--notch) 0, 100% 0, 100% calc(100% - var(--notch)), calc(100% - var(--notch)) 100%, 0 100%, 0 var(--notch));
  padding: 22px 24px;
}
.hours-title { font-size: 0.8rem; color: var(--accent); margin-bottom: 12px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  padding: 7px 0;
  border-top: 1px solid var(--steel-line);
}
.hours-row:first-of-type { border-top: none; }

/* Contact */
.contact { background: var(--bg); }
.contact-sub { color: var(--muted); margin-bottom: 40px; }
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; }
.contact-form {
  background: var(--steel);
  border: 1px solid var(--steel-line);
  clip-path: polygon(var(--notch) 0, 100% 0, 100% calc(100% - var(--notch)), calc(100% - var(--notch)) 100%, 0 100%, 0 var(--notch));
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hidden-field { display: none; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--off-white);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form input, .contact-form textarea {
  background: var(--bg-alt);
  border: 1px solid var(--steel-line);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form button { margin-top: 6px; align-self: flex-start; }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--steel);
  border: 1px solid var(--steel-line);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  padding: 18px 20px;
  font-size: 0.9rem;
  transition: border-color 0.15s ease;
}
.contact-info-item:hover { border-color: var(--accent); }
.contact-icon { color: var(--accent); display: inline-flex; flex-shrink: 0; }
.contact-icon svg { width: 22px; height: 22px; }
.socials { display: flex; gap: 12px; margin-top: 4px; }
.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--steel);
  border: 1px solid var(--steel-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--off-white);
}
.socials a:hover { border-color: var(--accent); color: var(--accent); }

/* Page hero (sub-pages) */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 160px 24px 70px;
  background: radial-gradient(circle at 85% 0%, #1c2023 0%, var(--bg) 55%);
  text-align: center;
}
.page-hero .hero-fan { top: -30%; right: -20%; }
.page-hero-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); margin-bottom: 14px; }
.page-hero p { color: var(--off-white); font-size: 1.05rem; }

/* Process timeline */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid var(--steel-line);
  border-left: 1px solid var(--steel-line);
}
.process-step {
  padding: 30px 26px;
  border-right: 1px solid var(--steel-line);
  border-bottom: 1px solid var(--steel-line);
  position: relative;
}
.process-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.process-step h3 { margin-bottom: 8px; text-transform: none; }
.process-step p { font-size: 0.9rem; color: var(--muted); }

/* Value cards */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-top: 40px;
}
.value-card {
  background: var(--steel);
  border: 1px solid var(--steel-line);
  clip-path: polygon(var(--notch) 0, 100% 0, 100% calc(100% - var(--notch)), calc(100% - var(--notch)) 100%, 0 100%, 0 var(--notch));
  padding: 26px 22px;
}
.value-card .value-icon { color: var(--accent); margin-bottom: 14px; }
.value-card .value-icon svg { width: 26px; height: 26px; }
.value-card h3 { margin-bottom: 8px; text-transform: none; font-size: 1rem; }
.value-card p { font-size: 0.88rem; color: var(--muted); }

/* Service detail (diensten.html) */
.service-detail-list { display: flex; flex-direction: column; gap: 1px; margin-top: 44px; background: var(--steel-line); }
.service-detail {
  background: var(--bg);
  padding: 40px 4px;
  display: grid;
  grid-template-columns: 64px 1.4fr 1fr;
  gap: 30px;
  align-items: start;
}
.service-detail-icon { color: var(--accent); }
.service-detail-icon svg { width: 32px; height: 32px; }
.service-detail h3 { font-size: 1.4rem; margin-bottom: 10px; text-transform: none; }
.service-detail-desc { color: var(--off-white); margin-bottom: 16px; }
.service-detail-includes { display: flex; flex-direction: column; gap: 8px; }
.service-detail-includes li { padding-left: 22px; position: relative; font-size: 0.9rem; color: var(--muted); }
.service-detail-includes li::before { content: ""; position: absolute; left: 0; top: 8px; width: 12px; height: 2px; background: var(--accent); }
.service-detail-meta { text-align: right; }
.service-detail-price {
  font-family: 'IBM Plex Mono', monospace;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 16px;
}

/* Filter tabs (ons-werk.html) */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  margin-bottom: 8px;
}
.filter-tab {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 9px 16px;
  border: 1px solid var(--steel-line);
  background: var(--steel);
  color: var(--muted);
  cursor: pointer;
  clip-path: polygon(8px 0, 100% 0, 100% 100%, 0 100%, 0 8px);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.filter-tab:hover { color: var(--white); }
.filter-tab.active { border-color: var(--accent); color: var(--accent); }
.gallery-item.hidden { display: none; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--bg-alt) 0%, var(--steel) 100%);
  border-top: 1px solid var(--steel-line);
  border-bottom: 1px solid var(--steel-line);
  padding: 70px 24px;
  text-align: center;
}
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { color: var(--off-white); margin-bottom: 30px; }
.cta-band-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.site-footer {
  background: #0A0B0C;
  border-top: 1px solid var(--steel-line);
  padding: 60px 24px 24px;
}
.footer-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 18px;
}
.footer-col p { color: var(--muted); font-size: 0.88rem; margin-top: 14px; max-width: 320px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--off-white); font-size: 0.9rem; }
.footer-col a:hover { color: var(--accent); }
.footer-brand { display: flex; align-items: center; gap: 12px; color: var(--white); font-weight: 600; font-family: 'Oswald', sans-serif; text-transform: uppercase; }
.footer-brand img { width: 34px; height: 34px; border-radius: 50%; background: var(--white); }
.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  border-top: 1px solid var(--steel-line);
  padding-top: 22px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-credit { margin-left: auto; }
.footer-credit a { color: var(--accent); }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 60;
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* Responsive */
@media (max-width: 900px) {
  .two-col, .contact-grid { grid-template-columns: 1fr; }
  .two-col.reverse .col-visual { order: 1; }
  .two-col.reverse .col-text { order: 2; }
  .form-row { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 48px 1fr; }
  .service-detail-meta { grid-column: 1 / -1; text-align: left; margin-top: 4px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 760px) {
  .topbar-hours { display: none; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--steel-line);
    flex-direction: column;
    padding: 16px 24px;
    gap: 14px;
    display: none;
  }
  .nav.open { display: flex; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 70px 20px; }
  .hero { padding: 130px 20px 70px; }
  .hero-fan { display: none; }
  .stat { padding: 0 18px; }
  .page-hero { padding: 120px 20px 50px; }
  .footer-credit { margin-left: 0; }
}
