/* ==============================================
   BARBER RICO — DA: Classic American Barber
   Zwart / Wit / Rood + barber-pole accent (blauw)
   ============================================== */

:root {
  --red: #C8202D;
  --red-dark: #9E1721;
  --red-light: #E5394A;
  --blue: #1A4D8C;
  --black: #0a0a0a;
  --black-2: #141414;
  --black-3: #1c1c1c;
  --white: #ffffff;
  --cream: #f5f1e8;
  --gray: #e9e4d8;
  --text: #1a1a1a;
  --text-light: #5a5a5a;
  --line: rgba(0,0,0,.1);

  --display: 'Oswald', 'Bebas Neue', Impact, sans-serif;
  --heading: 'Playfair Display', Georgia, serif;
  --body: 'Inter', -apple-system, sans-serif;

  --max-w: 1200px;
  --radius: 6px;
  --speed: .3s;
}

/* ---------- RESET ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--body); font-size: 16px; line-height: 1.65; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color var(--speed); }
ul { list-style: none; }
img, svg { max-width: 100%; display: block; }
::selection { background: var(--red); color: var(--white); }

/* ---------- LAYOUT ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ==============================================
   BARBER POLE PATTERN (herbruikbaar)
   ============================================== */
.pole-divider {
  height: 14px;
  background: repeating-linear-gradient(
    115deg,
    var(--white) 0 14px,
    var(--red) 14px 28px,
    var(--white) 28px 42px,
    var(--blue) 42px 56px
  );
  background-size: 56px 100%;
  animation: pole-slide 6s linear infinite;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}
.pole-divider--reverse { animation-direction: reverse; }
@keyframes pole-slide {
  from { background-position: 0 0; }
  to   { background-position: 56px 0; }
}

/* ==============================================
   BUTTONS
   ============================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 600; font-size: 14px;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 14px 30px; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  position: relative; overflow: hidden;
}
.btn svg { flex-shrink: 0; transition: transform .3s ease; }
.btn:hover svg { transform: scale(1.15); }

.btn--red {
  background: var(--red); color: var(--white); border-color: var(--red);
  box-shadow: 0 4px 14px rgba(200,32,45,.3);
}
.btn--red:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-3px); box-shadow: 0 10px 26px rgba(200,32,45,.45); }

.btn--white { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--white:hover { background: transparent; color: var(--white); transform: translateY(-3px); }

.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); transform: translateY(-3px); }

.btn--lg { padding: 16px 38px; font-size: 15px; }
.btn--sm { padding: 10px 22px; font-size: 12px; }

.btn--pulse { animation: pulse 2s ease-in-out infinite; }
.btn--pulse:hover { animation: none; }
@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(200,32,45,.55) } 50%{ box-shadow: 0 0 0 14px rgba(200,32,45,0) } }

/* ==============================================
   HEADER
   ============================================== */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(10,10,10,.85); backdrop-filter: blur(16px);
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
.header--scrolled { background: rgba(10,10,10,.97); box-shadow: 0 4px 24px rgba(0,0,0,.4); }
.header__stripe {
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0 33%, var(--white) 33% 66%, var(--blue) 66% 100%);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__logo { color: var(--white); display: flex; align-items: center; transition: transform .3s ease; }
.nav__logo:hover { transform: scale(1.03); }
.nav__logo-svg { width: 150px; height: 44px; }
.nav__menu { display: flex; gap: 28px; }
.nav__link {
  font-family: var(--display); font-size: 13px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.78);
  position: relative; padding: 4px 0;
}
.nav__link::after {
  content: ''; position: absolute; bottom: -4px; left: 50%; width: 0; height: 2px;
  background: var(--red); transition: all .3s cubic-bezier(.4,0,.2,1);
  transform: translateX(-50%);
}
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__link:hover, .nav__link.active { color: var(--white); }

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  background: var(--red); color: var(--white);
  padding: 10px 22px; border-radius: var(--radius);
  transition: all .3s ease;
}
.nav__cta:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(200,32,45,.45); }

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  color: var(--white); background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  transition: all .3s ease;
}
.nav__social:hover { transform: translateY(-1px); }
.nav__social--ig:hover { background: #E1306C; border-color: #E1306C; box-shadow: 0 6px 16px rgba(225,48,108,.45); }
.nav__social--wa:hover { background: #25D366; border-color: #25D366; box-shadow: 0 6px 16px rgba(37,211,102,.45); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__toggle span { display: block; width: 26px; height: 2px; background: var(--white); transition: all .35s ease; transform-origin: center; }
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); background: var(--red); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); background: var(--red); }

/* ==============================================
   FAB & MOBILE BAR
   ============================================== */
.fab {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(200,32,45,.5);
  opacity: 0; pointer-events: none;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  animation: fab-glow 2.5s ease-in-out infinite;
  border: 2px solid var(--white);
}
.fab.visible { opacity: 1; pointer-events: auto; }
.fab:hover { transform: scale(1.15) rotate(10deg); animation: none; background: var(--red-dark); }
@keyframes fab-glow { 0%,100%{ box-shadow: 0 4px 24px rgba(200,32,45,.5) } 50%{ box-shadow: 0 4px 24px rgba(200,32,45,.5), 0 0 0 12px rgba(200,32,45,.12) } }

.mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998; background: var(--black); padding: 10px 12px; box-shadow: 0 -4px 24px rgba(0,0,0,.5); opacity: 0; transform: translateY(100%); transition: all .5s cubic-bezier(.4,0,.2,1); border-top: 3px solid var(--red); }
.mobile-bar.visible { opacity: 1; transform: translateY(0); }
.mobile-bar__btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; border-radius: var(--radius); font-family: var(--display); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; background: var(--red); color: var(--white); }
.mobile-bar__btn:active { background: var(--red-dark); }

/* ==============================================
   HERO
   ============================================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--black);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255,255,255,.06) 0%, transparent 60%),
    repeating-linear-gradient(45deg, transparent 0 22px, rgba(255,255,255,.015) 22px 23px);
}

/* Barber poles links/rechts */
.hero__pole {
  position: absolute; top: 0; bottom: 0; width: 36px;
  background: repeating-linear-gradient(
    115deg,
    var(--white) 0 10px,
    var(--red) 10px 20px,
    var(--white) 20px 30px,
    var(--blue) 30px 40px
  );
  background-size: 40px 100%;
  animation: pole-slide 5s linear infinite;
  box-shadow: inset 0 0 12px rgba(0,0,0,.4);
  z-index: 1;
}
.hero__pole--left { left: 0; }
.hero__pole--right { right: 0; animation-direction: reverse; }

.hero__content {
  position: relative; z-index: 2; text-align: center;
  padding: 130px 24px 100px;
  max-width: 900px;
}

.hero__welcome {
  font-family: var(--display); font-size: 14px; font-weight: 400;
  text-transform: uppercase; letter-spacing: 7px;
  color: rgba(255,255,255,.6); margin-bottom: 14px; display: block;
}

.hero__badge {
  margin: 0 auto -60px;
  max-width: 520px;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,.75));
  animation: heroBadge 1s cubic-bezier(.2,.7,.3,1.2) both;
}
.hero__badge-img { width: 100%; height: auto; display: block; }

@media (max-width: 768px) {
  .hero__badge { max-width: 420px; margin-bottom: -40px; }
}
@media (max-width: 480px) {
  .hero__badge { max-width: 320px; margin-bottom: -30px; }
}
@keyframes heroBadge {
  from { opacity: 0; transform: translateY(20px) scale(.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hero__tagline {
  font-family: var(--display); font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 300; color: rgba(255,255,255,.8); letter-spacing: 4px;
  margin-bottom: 28px; text-transform: uppercase;
}

.hero__rating {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 40px; padding: 10px 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  color: rgba(255,255,255,.9);
  font-family: var(--body); font-size: 14px;
}
.hero__rating-stars { color: #FFD24A; font-size: 16px; letter-spacing: 2px; }
.hero__rating strong { color: var(--white); font-family: var(--display); font-size: 16px; letter-spacing: 1px; }
.hero__rating-text { color: rgba(255,255,255,.6); font-size: 13px; }

.hero__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }

.hero__badges { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.hero__badges li {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--display); font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: 1.5px;
}
.hero__badges svg { stroke: var(--red-light); flex-shrink: 0; }

.hero__arrow {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.4); z-index: 3;
  animation: bounce 2.5s ease-in-out infinite;
}
.hero__arrow:hover { color: var(--white); }
@keyframes bounce { 0%,100%{ transform: translateX(-50%) translateY(0) } 50%{ transform: translateX(-50%) translateY(10px) } }

/* ==============================================
   STATS
   ============================================== */
.stats {
  background: var(--black);
  padding: 36px 0; position: relative;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats__item { transition: transform .3s ease; padding: 0 12px; position: relative; }
.stats__item + .stats__item::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 40px; background: rgba(255,255,255,.1);
}
.stats__item:hover { transform: scale(1.05); }
.stats__item strong { display: block; font-family: var(--display); font-size: 34px; font-weight: 700; color: var(--white); letter-spacing: 1px; }
.stats__item strong::after {
  content: ''; display: block; width: 30px; height: 2px;
  background: var(--red); margin: 6px auto;
}
.stats__item span { font-family: var(--display); font-size: 11px; font-weight: 500; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: 2px; }

/* ==============================================
   SECTIES
   ============================================== */
.section { padding: 110px 0; background: var(--white); }
.section--dark { background: var(--black); color: var(--white); }
.section--dark .section__title { color: var(--white); }
.section--cream { background: var(--cream); }

.section__head { text-align: center; margin-bottom: 64px; }
.section__tag {
  font-family: var(--display); font-size: 13px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 4px;
  color: var(--red); display: block; margin-bottom: 14px;
}
.section__tag--light { color: var(--red-light); }
.section__title {
  font-family: var(--display); font-size: clamp(36px, 5.5vw, 58px);
  font-weight: 700; color: var(--text); margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 2px;
}
.section__line {
  width: 80px; height: 3px; background: var(--red); margin: 0 auto;
  position: relative;
}
.section__line::before, .section__line::after {
  content: ''; position: absolute; top: 0; height: 3px; width: 10px;
}
.section__line::before { left: -16px; background: var(--blue); }
.section__line::after { right: -16px; background: var(--blue); }
.section__line--light { background: var(--red-light); }

.section__cta { text-align: center; margin-top: 56px; }
.section__cta p { font-family: var(--display); font-size: 16px; font-weight: 400; color: var(--text-light); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
.section--dark .section__cta p { color: rgba(255,255,255,.6); }

/* ==============================================
   OVER ONS
   ============================================== */
.about { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.about__img { position: relative; }
.about__photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius); display: block; box-shadow: 0 20px 50px rgba(0,0,0,.18); }
.about__badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--red); color: var(--white);
  width: 110px; height: 110px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 14px;
  letter-spacing: 1.5px; text-transform: uppercase; text-align: center;
  box-shadow: 0 12px 28px rgba(200,32,45,.4);
  border: 3px solid var(--white);
  transform: rotate(-8deg);
  animation: badgeFloat 4s ease-in-out infinite;
}
.about__badge svg { fill: #FFD24A; margin-bottom: 4px; }
.about__badge span { line-height: 1.2; font-size: 11px; }
@keyframes badgeFloat { 0%,100%{ transform: rotate(-8deg) translateY(0); } 50%{ transform: rotate(-6deg) translateY(-4px); } }

.about__eyebrow {
  font-family: var(--display); font-size: 12px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase; color: var(--red);
  margin-bottom: 16px; display: inline-block;
  padding: 4px 12px; border: 1px solid var(--red);
  border-radius: 50px;
}
.about__text h3 { font-family: var(--heading); font-size: clamp(24px, 2.5vw, 32px); font-weight: 700; margin-bottom: 22px; color: var(--text); line-height: 1.25; }
.about__text p { color: var(--text-light); margin-bottom: 14px; line-height: 1.85; }
.check-list { margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; align-items: center; gap: 14px; transition: transform .25s ease; }
.check-list li:hover { transform: translateX(6px); }
.check-list svg { flex-shrink: 0; stroke: var(--red); }
.check-list strong { display: block; font-family: var(--display); font-size: 15px; font-weight: 600; color: var(--text); text-transform: uppercase; letter-spacing: 1px; }
.check-list span { font-size: 13px; color: var(--text-light); }

/* Placeholders */
.placeholder {
  width: 100%; aspect-ratio: 1; background: rgba(0,0,0,.05);
  border-radius: var(--radius); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  color: var(--text-light); font-size: 13px; font-family: var(--display);
  text-transform: uppercase; letter-spacing: 2px;
  transition: all .4s ease; position: relative; overflow: hidden;
  border: 1px solid var(--line);
}
.placeholder--tall { aspect-ratio: 3/4; }
.placeholder svg { opacity: .35; color: var(--red); transition: all .4s ease; }
.placeholder:hover { background: rgba(0,0,0,.08); }
.placeholder:hover svg { opacity: .6; transform: scale(1.1); }

.section--dark .placeholder { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); color: rgba(255,255,255,.5); }
.section--dark .placeholder:hover { background: rgba(255,255,255,.07); }

/* ==============================================
   DIENSTEN (nieuwe layout)
   ============================================== */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 38px 28px 32px;
  position: relative; overflow: hidden;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover { transform: translateY(-8px); background: var(--black-3); border-color: rgba(255,255,255,.18); }
.service-card:hover::before { transform: scaleX(1); }

.service-card__num {
  position: absolute; top: 14px; right: 20px;
  font-family: var(--display); font-weight: 700; font-size: 56px;
  color: rgba(255,255,255,.05);
  letter-spacing: -2px;
  transition: color .4s ease;
}
.service-card:hover .service-card__num { color: rgba(200,32,45,.15); }

.service-card__icon {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200,32,45,.12);
  border: 1px solid rgba(200,32,45,.3);
  border-radius: var(--radius);
  margin-bottom: 24px;
  transition: all .35s ease;
}
.service-card:hover .service-card__icon { background: var(--red); border-color: var(--red); transform: rotate(-4deg); }
.service-card__icon svg { stroke: var(--white); color: var(--white); }
.service-card h3 {
  font-family: var(--display); font-size: 22px; font-weight: 700;
  color: var(--white); margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.service-card p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.75; flex-grow: 1; }

.service-card--cta {
  background: var(--red);
  border-color: var(--red);
  align-items: flex-start;
  justify-content: center;
}
.service-card--cta::before { background: var(--white); transform: scaleX(1); }
.service-card--cta:hover { background: var(--red-dark); border-color: var(--red-dark); }
.service-card--cta h3 { color: var(--white); }
.service-card--cta p { color: rgba(255,255,255,.85); margin-bottom: 20px; }
.service-card--cta .btn { background: var(--white); color: var(--red); border-color: var(--white); }
.service-card--cta .btn:hover { background: var(--black); color: var(--white); border-color: var(--black); }

/* ==============================================
   CTA BANNER
   ============================================== */
.banner {
  background:
    linear-gradient(rgba(10,10,10,.92), rgba(10,10,10,.92)),
    repeating-linear-gradient(45deg, var(--red) 0 30px, var(--black) 30px 60px);
  padding: 90px 0; position: relative; overflow: hidden;
  text-align: center;
}
.banner__eyebrow { font-family: var(--display); font-size: 12px; letter-spacing: 5px; color: var(--red-light); text-transform: uppercase; display: block; margin-bottom: 12px; }
.banner h2 { font-family: var(--display); font-size: clamp(32px, 5vw, 52px); font-weight: 700; color: var(--white); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 2px; }
.banner p { font-size: 17px; color: rgba(255,255,255,.75); margin-bottom: 32px; }
.banner small { display: block; margin-top: 22px; font-family: var(--display); font-size: 12px; color: rgba(255,255,255,.45); letter-spacing: 2px; text-transform: uppercase; }

/* ==============================================
   GALERIJ (masonry-achtig)
   ============================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.gallery__item {
  border-radius: var(--radius); overflow: hidden;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item .placeholder { height: 100%; aspect-ratio: auto; }
.gallery__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s cubic-bezier(.4,0,.2,1); }
.gallery__item:hover { transform: scale(1.03); z-index: 2; }
.gallery__item:hover .gallery__img { transform: scale(1.05); }
.gallery__item:hover .placeholder { background: rgba(0,0,0,.1); border-color: var(--red); }

/* ==============================================
   REVIEWS
   ============================================== */
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 22px; padding: 12px 26px;
  background: var(--white); border-radius: 50px;
  font-family: var(--display); font-weight: 600; font-size: 14px;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text);
  border: 2px solid var(--red);
}
.badge__stars { color: #FFD24A; font-size: 18px; letter-spacing: 2px; }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  position: relative; overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
.review::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: var(--red); transform: scaleY(0); transform-origin: top;
  transition: transform .4s ease;
}
.review::after {
  content: '"'; position: absolute; top: 12px; right: 24px;
  font-family: var(--heading); font-size: 70px; line-height: 1;
  color: rgba(200,32,45,.12); pointer-events: none;
}
.review:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(0,0,0,.12); }
.review:hover::before { transform: scaleY(1); }
.review__stars { color: #FFD24A; font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.review p { font-size: 15px; line-height: 1.8; color: var(--text-light); font-style: italic; margin-bottom: 22px; }
.review__author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--black); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 18px; flex-shrink: 0;
  border: 2px solid var(--red);
}
.review:hover .avatar { background: var(--red); border-color: var(--white); }
.review__author strong { display: block; font-family: var(--display); font-size: 14px; color: var(--text); text-transform: uppercase; letter-spacing: 1px; }
.review__author span { font-size: 12px; color: var(--text-light); }

/* ==============================================
   CONTACT
   ============================================== */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__info { display: flex; flex-direction: column; gap: 24px; }
.contact__row { display: flex; gap: 18px; align-items: flex-start; transition: transform .25s ease; }
.contact__row:hover { transform: translateX(4px); }
.contact__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border-radius: var(--radius);
  border: 2px solid var(--red);
  transition: all .35s ease;
}
.contact__row:hover .contact__icon { background: var(--red); }
.contact__row:hover .contact__icon svg { stroke: var(--white); }
.contact__icon svg { stroke: var(--red); transition: stroke .35s ease; }
.contact__row strong { display: block; font-family: var(--display); font-size: 13px; font-weight: 600; color: var(--red); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 2px; }
.contact__row p { font-size: 15px; color: var(--text); line-height: 1.7; }
.contact__phone { font-size: 22px !important; font-weight: 700; font-family: var(--display); color: var(--red) !important; letter-spacing: 1px; }
.contact__phone:hover { color: var(--red-dark) !important; }

.hours { width: 100%; font-size: 14px; margin-top: 4px; }
.hours td { padding: 6px 0; border-bottom: 1px dashed var(--line); }
.hours td:first-child { font-family: var(--display); text-transform: uppercase; letter-spacing: 1.5px; font-size: 12px; color: var(--text); font-weight: 500; }
.hours td:last-child { text-align: right; font-weight: 500; color: var(--text-light); }
.hours tr:last-child td { border-bottom: none; }
.hours__closed { color: var(--red) !important; font-weight: 700 !important; text-transform: uppercase; font-family: var(--display); letter-spacing: 1.5px; }

.contact__btn { margin-top: 8px; width: 100%; justify-content: center; }
.contact__map {
  min-height: 480px; border-radius: var(--radius); overflow: hidden;
  border: 4px solid var(--black);
  position: relative;
}
.contact__map::before {
  content: ''; position: absolute; top: -4px; left: -4px; right: -4px; height: 6px;
  background: linear-gradient(90deg, var(--red) 0 33%, var(--white) 33% 66%, var(--blue) 66% 100%);
  z-index: 2;
}

/* ==============================================
   LAATSTE CTA
   ============================================== */
.final-cta {
  background: var(--black); color: var(--white);
  padding: 100px 0; text-align: center;
  position: relative; overflow: hidden;
}
.final-cta__pole {
  position: absolute; top: 0; bottom: 0; width: 28px;
  background: repeating-linear-gradient(115deg, var(--white) 0 8px, var(--red) 8px 16px, var(--white) 16px 24px, var(--blue) 24px 32px);
  background-size: 32px 100%;
  animation: pole-slide 5s linear infinite;
}
.final-cta__pole--left { left: 0; }
.final-cta__pole--right { right: 0; animation-direction: reverse; }
.final-cta__logo { width: 120px; height: auto; margin: 0 auto 24px; display: block; opacity: .95; }
.final-cta h2 { font-family: var(--display); font-size: clamp(32px, 5vw, 52px); font-weight: 700; color: var(--white); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 2px; }
.final-cta p { font-size: 17px; color: rgba(255,255,255,.7); margin-bottom: 36px; }
.final-cta small { display: block; margin-top: 22px; font-family: var(--display); font-size: 12px; color: rgba(255,255,255,.45); letter-spacing: 2px; text-transform: uppercase; }

/* ==============================================
   FOOTER
   ============================================== */
.footer { background: #050505; color: var(--white); padding: 64px 0 0; position: relative; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1.3fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer__logo { display: inline-block; color: var(--white); margin-bottom: 14px; transition: transform .3s ease; }
.footer__logo:hover { transform: scale(1.03); }
.footer__logo svg { width: 180px; height: 50px; }
.footer__logo-sub { display: block; font-family: var(--display); font-size: 11px; letter-spacing: 4px; color: var(--red); text-transform: uppercase; margin-top: 4px; padding-left: 12px; }
.footer__seo { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.7; margin-top: 16px; max-width: 420px; }
.footer__col h4 { font-family: var(--display); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 18px; color: var(--red); }
.footer__col h4:not(:first-child) { margin-top: 20px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 13px; color: rgba(255,255,255,.5); transition: all .25s ease; display: inline-block; }
.footer__col a:hover { color: var(--red-light); transform: translateX(3px); }
.footer__col p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 6px; }
.footer__hours { font-size: 12px !important; color: rgba(255,255,255,.4) !important; }
.footer__areas { font-size: 12px; color: rgba(255,255,255,.4); }
.footer__pole {
  height: 6px;
  background: linear-gradient(90deg, var(--red) 0 33%, var(--white) 33% 66%, var(--blue) 66% 100%);
}
.footer__bottom { padding: 22px 0; text-align: center; }
.footer__bottom p { font-size: 12px; color: rgba(255,255,255,.35); font-family: var(--display); letter-spacing: 1.5px; text-transform: uppercase; }

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 1024px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stats__item:nth-child(3)::before { display: none; }
}

@media (max-width: 768px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__menu.active {
    display: flex; flex-direction: column; position: absolute;
    top: 75px; left: 0; right: 0; background: var(--black);
    padding: 28px 24px; gap: 6px;
    box-shadow: 0 16px 40px rgba(0,0,0,.4);
    border-bottom: 3px solid var(--red);
    animation: menuSlide .35s cubic-bezier(.4,0,.2,1);
  }
  .nav__menu.active .nav__link { padding: 12px 0; font-size: 15px; }
  @keyframes menuSlide { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

  .hero__pole { width: 18px; }
  .hero__content { padding: 110px 32px 90px; }

  .about, .contact { grid-template-columns: 1fr; gap: 40px; }
  .about__badge { width: 88px; height: 88px; right: 8px; bottom: -16px; }
  .services { grid-template-columns: 1fr; }
  .stats__item + .stats__item::before { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__buttons { flex-direction: column; align-items: stretch; }
  .hero__badges { flex-direction: column; align-items: center; gap: 10px; }
  .section { padding: 80px 0; }
  .btn--lg { padding: 14px 28px; font-size: 14px; }
  .fab { display: none; }
  .mobile-bar { display: flex; }
  .footer { padding-bottom: 80px; }
  .final-cta__pole { width: 16px; }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery__item--tall { grid-row: span 1; }
  .hero__welcome { letter-spacing: 4px; font-size: 11px; }
  .nav__logo-svg { width: 120px; height: 36px; }
}

/* ==============================================
   SCROLL ANIMATIES
   ============================================== */
.anim { opacity: 0; transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.anim.show { opacity: 1; transform: none !important; }
.anim--up { transform: translateY(40px); }
.anim--left { transform: translateX(-40px); }
.anim--right { transform: translateX(40px); }
.anim--scale { transform: scale(.92); }

.service-card.anim:nth-child(1) { transition-delay: 0s; }
.service-card.anim:nth-child(2) { transition-delay: .08s; }
.service-card.anim:nth-child(3) { transition-delay: .16s; }
.service-card.anim:nth-child(4) { transition-delay: .24s; }
.service-card.anim:nth-child(5) { transition-delay: .32s; }
.service-card.anim:nth-child(6) { transition-delay: .4s; }
.review.anim:nth-child(1) { transition-delay: 0s; }
.review.anim:nth-child(2) { transition-delay: .1s; }
.review.anim:nth-child(3) { transition-delay: .2s; }
.gallery__item.anim:nth-child(n) { transition-delay: calc(var(--i, 0) * .05s); }
.gallery__item.anim:nth-child(1) { transition-delay: 0s; }
.gallery__item.anim:nth-child(2) { transition-delay: .06s; }
.gallery__item.anim:nth-child(3) { transition-delay: .12s; }
.gallery__item.anim:nth-child(4) { transition-delay: .18s; }
.gallery__item.anim:nth-child(5) { transition-delay: .24s; }
.gallery__item.anim:nth-child(6) { transition-delay: .3s; }
