/* ═══════════════════════════════════════════════════════════
   FCL BRUTAL — Raw Industrial Brutalism
   Design tokens, layout, components, animations
   ═══════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  /* ─── COLORS ─── */
  --red: #FF2D2D;
  --red-dark: #CC2424;
  --dark: #0a0a0a;
  --mid: #0e0e0e;
  --surface: #111111;
  --surface-hover: #151515;
  --border: #1a1a1a;
  --gray-900: #222;
  --gray-700: #444;
  --gray-500: #666;
  --gray-400: #888;
  --gray-300: #aaa;
  --gray-200: #ccc;
  --white: #ffffff;

  /* ─── TYPOGRAPHY SYSTEM ───
     Central tokens. Customizer overrides these via inline <style>.
     Every font-size, weight, spacing in the theme references these. */

  /* Font stacks */
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-condensed: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', 'Helvetica Neue', sans-serif;

  /* Display scale — headings, hero, stats */
  --fs-hero: clamp(48px, 6vw, 72px);       /* Hero h1 */
  --fs-section: clamp(38px, 5vw, 56px);    /* Section h2 */
  --fs-stat: 42px;                          /* Stats numbers */
  --fs-card-title: 26px;                    /* Service card name, price label */
  --fw-display: 700;                        /* Display weight (Bebas is single-weight, ignored) */
  --lh-display: 0.95;                       /* Display line-height */
  --ls-display: 0.1em;                      /* Display letter-spacing */
  --tt-display: uppercase;                  /* Display text-transform */

  /* Condensed scale — labels, nav, tags, buttons */
  --fs-nav: 12px;                           /* Nav links */
  --fs-label: 13px;                         /* Section labels (01, SLUŽBY) */
  --fs-tag: 10px;                           /* Tags, badges, micro text */
  --fs-button: 17px;                        /* CTA buttons */
  --fw-condensed: 700;                      /* Condensed weight */
  --ls-condensed: 0.15em;                   /* Condensed letter-spacing */
  --tt-condensed: uppercase;                /* Condensed text-transform */

  /* Body scale — paragraphs, descriptions, features */
  --fs-body: 14px;                          /* Body text, descriptions */
  --fs-small: 12px;                         /* Features, footer, captions */
  --fs-micro: 9px;                          /* Field labels, badges */
  --fw-body: 300;                           /* Body weight */
  --fw-body-strong: 600;                    /* Body strong/semi-bold */
  --lh-body: 1.7;                           /* Body line-height */
  --ls-body: 0;                             /* Body letter-spacing */

  /* Logo */
  --logo-height: 64px;

  /* ─── LAYOUT ─── */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1400px;
  --pad-x: 48px;
}

@media (max-width: 768px) {
  :root {
    --pad-x: 20px;
  }
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  line-height: var(--lh-body);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
main img,
.site-nav img,
.site-footer img { display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--red); }

/* ─── TYPOGRAPHY ─── */
.t-display {
  font-family: var(--font-display);
  letter-spacing: var(--ls-display);
  line-height: var(--lh-display);
  text-transform: var(--tt-display);
}
.t-condensed {
  font-family: var(--font-condensed);
  letter-spacing: var(--ls-condensed);
  text-transform: var(--tt-condensed);
  font-weight: var(--fw-condensed);
}
.t-body {
  font-family: var(--font-body);
  font-weight: var(--fw-body);
  color: var(--gray-500);
  line-height: var(--lh-body);
}
.t-red { color: var(--red); }

/* ─── LAYOUT ─── */
.fcl-container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.fcl-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .fcl-section { padding-top: 60px; padding-bottom: 60px; }
}

/* ─── SECTION LABEL (numbered) ─── */
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.section-label__num {
  font-family: var(--font-condensed);
  font-size: var(--fs-label);
  font-weight: var(--fw-condensed);
  letter-spacing: 0.3em;
  color: var(--red);
}
.section-label__line {
  flex: 1;
  height: 1px;
  background: var(--gray-700);
}
.section-label__text {
  font-family: var(--font-condensed);
  font-size: var(--fs-label);
  font-weight: var(--fw-body-strong);
  letter-spacing: var(--ls-condensed);
  color: var(--gray-500);
  text-transform: var(--tt-condensed);
}

/* ─── SECTION HEADING ─── */
.section-heading {
  font-family: var(--font-display);
  font-size: var(--fs-section);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-display);
  margin-bottom: 48px;
}

/* ─── CTA BUTTON ─── */
.cta-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--fs-button);
  letter-spacing: var(--ls-condensed);
  padding: 14px 36px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
  text-align: center;
  border: none;
  color: var(--white);
  text-transform: uppercase;
}
.cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}
.cta-btn:hover { transform: scale(1.03); letter-spacing: 0.25em; }
.cta-btn:hover::after { left: 100%; }
.cta-btn--primary { background: var(--red); }
.cta-btn--ghost {
  background: transparent;
  border: none;
  box-shadow: inset 0 0 0 1px var(--gray-700);
  color: var(--gray-300);
}
.cta-btn--full { display: block; width: 100%; }

/* ─── NAV ─── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 45, 45, 0.15);
}
.site-nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
}
.site-nav__brand {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.site-nav__logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.12em;
  color: var(--white);
  line-height: 1;
}
.site-nav__dot {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--red);
  line-height: 1;
}
.site-nav__est {
  font-family: var(--font-condensed);
  font-size: var(--fs-tag);
  font-weight: var(--fw-body-strong);
  color: var(--gray-700);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-left: 8px;
}
.site-nav__brand--logo {
  display: flex;
  align-items: center;
}
.site-nav__logo-img {
  height: var(--logo-height);
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
  filter: brightness(1.1);
}
.site-nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.site-nav__link {
  font-family: var(--font-condensed);
  font-size: var(--fs-nav);
  font-weight: var(--fw-body-strong);
  letter-spacing: var(--ls-condensed);
  text-transform: var(--tt-condensed);
  color: var(--gray-400);
  position: relative;
  transition: color 0.3s;
}
.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s;
}
.site-nav__link:hover,
.site-nav__link--active { color: var(--red); }
.site-nav__link:hover::after,
.site-nav__link--active::after { width: 100%; }
.site-nav__cta {
  font-size: 15px;
  padding: 10px 24px;
  margin-left: 12px;
}

/* Mobile nav */
.site-nav__mobile { display: none; align-items: center; gap: 16px; }
.site-nav__phone {
  font-family: var(--font-condensed);
  font-size: 11px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.08em;
}
.hamburger {
  width: 24px; cursor: pointer; background: none; border: none; padding: 0;
  display: flex; flex-direction: column; gap: 5px;
}
.hamburger span { display: block; height: 2px; transition: all 0.3s; }
.hamburger span:nth-child(1) { background: var(--red); width: 100%; }
.hamburger span:nth-child(2) { background: var(--white); width: 70%; }
.hamburger span:nth-child(3) { background: var(--red); width: 100%; }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.is-open { opacity: 1; pointer-events: all; }
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: var(--fs-stat);
  letter-spacing: 0.15em;
  color: var(--white);
  transition: color 0.3s;
}
.mobile-menu__link:hover { color: var(--red); }
.mobile-menu__close {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 32px;
  color: var(--red);
  background: none; border: none; cursor: pointer;
  font-family: var(--font-display);
}

@media (max-width: 768px) {
  .site-nav__links { display: none; }
  .site-nav__mobile { display: flex; }
  .site-nav__logo { font-size: 22px; }
  .site-nav__est { display: none; }
  .site-nav__logo-img { height: calc(var(--logo-height) * 0.75); }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  /* Content is constrained by padding, image bleeds full-width */
  padding-left: max(var(--pad-x), calc((100% - var(--container)) / 2 + var(--pad-x)));
}
.hero__bg-num {
  position: absolute;
  right: -40px; top: -30px;
  font-family: var(--font-display);
  font-size: 420px;
  color: rgba(255, 45, 45, 0.08);
  line-height: 0.8;
  user-select: none;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 0;
}
.hero__tagline {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__tagline::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--red);
}
.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-display);
  margin-bottom: 20px;
}
.hero__desc {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--gray-500);
  max-width: 380px;
  margin-bottom: 32px;
  font-weight: var(--fw-body);
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero slider */
.hero__slider {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 48%;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
}
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero__slide--active {
  opacity: 1;
}
.hero__image--placeholder {
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
}

/* Slider dots */
.hero__slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero__slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}
.hero__slider-dot--active {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.2);
}
.hero__slider-dot:hover {
  border-color: var(--white);
}

@media (max-width: 768px) {
  .hero { min-height: auto; flex-direction: column; padding: 60px 0 0; }
  .hero__bg-num { font-size: 200px; right: -20px; top: -10px; }
  .hero__content { max-width: 100%; padding: 0 var(--pad-x); }
  .hero__slider {
    position: relative; width: 100%; height: 220px;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
    margin-top: 32px;
  }
}

/* ─── STATS STRIP ─── */
.stats-strip {
  background: var(--red);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-strip__item {
  text-align: center;
  padding: 28px 0;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stats-strip__item:last-child { border-right: none; }
.stats-strip__val {
  font-family: var(--font-display);
  font-size: var(--fs-stat);
  line-height: 1;
  letter-spacing: 0.05em;
}
.stats-strip__val small {
  font-size: 20px;
}
.stats-strip__label {
  font-family: var(--font-condensed);
  font-size: var(--fs-tag);
  font-weight: var(--fw-body-strong);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stats-strip__item { padding: 20px 0; }
  .stats-strip__item:nth-child(1),
  .stats-strip__item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.2); }
  .stats-strip__item:nth-child(2) { border-right: none; }
  .stats-strip__val { font-size: 32px; }
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.service-card {
  background: #0f0f0f;
  border: 1px solid var(--border);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}
.service-card:hover {
  background: var(--surface-hover);
  border-color: var(--red);
  transform: translateY(-8px);
}
.service-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.service-card__img-placeholder {
  width: 100%; height: 160px; background: var(--border);
}
.service-card__body { padding: 20px 16px; }
.service-card__tag {
  font-family: var(--font-condensed);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--red);
  margin-bottom: 8px;
}
.service-card__name {
  font-family: var(--font-display);
  font-size: var(--fs-card-title);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.service-card__desc {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--gray-500);
  line-height: 1.5;
  font-weight: var(--fw-body);
}
.service-card__more {
  font-family: var(--font-condensed);
  font-size: var(--fs-tag);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-card__more span {
  display: inline-block;
  width: 12px;
  height: 1px;
  background: var(--red);
  transition: width 0.3s;
}
.service-card:hover .service-card__more span { width: 24px; }

@media (max-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .service-card:hover { transform: none; }
  .service-card__img, .service-card__img-placeholder { height: 120px; }
  .service-card__body { padding: 16px 12px; }
  .service-card__name { font-size: 20px; }
}

/* ─── WHY US ─── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.why-item:last-child { margin-bottom: 0; }
.why-item__num {
  font-family: var(--font-display);
  font-size: 32px;
  color: rgba(255, 45, 45, 0.15);
  line-height: 1;
  flex-shrink: 0;
}
.why-item__title {
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.why-item__desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.6;
  font-weight: var(--fw-body);
}
.why-image {
  clip-path: polygon(8% 0, 100% 0, 100% 92%, 0 100%);
  overflow: hidden;
  height: 450px;
}
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-badge {
  background: var(--red);
  padding: 16px 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
}
.why-badge__year {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.1em;
}
.why-badge__text {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: var(--fw-body-strong);
  letter-spacing: 0.15em;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-image {
    clip-path: polygon(0 0, 100% 3%, 100% 97%, 0 100%);
    height: 260px;
  }
  .why-badge { margin-left: 0; }
}

/* ─── PRICING ─── */
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2px;
  align-items: start;
}
.pricing-table {
  background: var(--surface);
  border: 1px solid var(--border);
}
.pricing-table__group {
  padding: 0;
}
.pricing-table__group + .pricing-table__group {
  border-top: 1px solid var(--border);
}
.pricing-table__group-label {
  font-family: var(--font-condensed);
  font-size: var(--fs-tag);
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--red);
  padding: 16px 24px 8px;
}
.pricing-table__row {
  display: flex;
  align-items: baseline;
  padding: 12px 24px;
  transition: background 0.2s;
}
.pricing-table__row:hover {
  background: var(--surface-hover);
}
.pricing-table__row--alt {
  background: rgba(255,255,255,0.015);
}
.pricing-table__name {
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: var(--fw-body-strong);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.pricing-table__dots {
  flex: 1;
  border-bottom: 1px dotted var(--gray-700);
  margin: 0 12px;
  min-width: 20px;
  position: relative;
  top: -4px;
}
.pricing-table__price {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.pricing-table__price small {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: var(--fw-body-strong);
  color: var(--gray-500);
}

/* Featured card */
.pricing-featured {
  background: var(--red);
  padding: 40px 32px;
  text-align: center;
  position: relative;
}
.pricing-featured__badge {
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--font-condensed);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.15em;
  background: rgba(0,0,0,0.3);
  padding: 4px 10px;
  text-transform: uppercase;
}
.pricing-featured__label {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.pricing-featured__amount {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
}
.pricing-featured__unit {
  font-family: var(--font-condensed);
  font-size: 22px;
  font-weight: var(--fw-body-strong);
  color: rgba(255,255,255,0.7);
  margin-left: 4px;
}
.pricing-featured__sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.pricing-featured__divider {
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin-bottom: 20px;
}
.pricing-featured__feature {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  padding: 5px 0;
}

@media (max-width: 768px) {
  .pricing-layout { grid-template-columns: 1fr; }
  .pricing-featured { margin-top: 2px; }
  .pricing-table__price { font-size: 24px; }
}

/* ─── REVIEWS ─── */
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.reviews-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.reviews-stars { display: flex; gap: 2px; font-size: 16px; }
.reviews-stars .star--active { color: #FFB300; }
.reviews-stars .star--inactive { color: var(--gray-700); }
.reviews-score {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.05em;
}
.reviews-label {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--gray-500);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.review-card {
  background: var(--surface);
  padding: 24px;
  border-left: 3px solid var(--border);
}
.review-card:first-child { border-left-color: var(--red); }
.review-card__stars { display: flex; gap: 2px; margin-bottom: 16px; font-size: 12px; }
.review-card__text {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-400);
  font-weight: var(--fw-body);
  margin-bottom: 16px;
  font-style: italic;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.review-card__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--gray-900);
  overflow: hidden;
}
.review-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-card__name {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.review-card__date {
  font-family: var(--font-body);
  font-size: var(--fs-tag);
  color: var(--gray-700);
}

@media (max-width: 768px) {
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 2px;
}
.gallery-grid__item {
  overflow: hidden;
  position: relative;
}
.gallery-grid__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease-out-expo);
}
.gallery-grid__item:hover img { transform: scale(1.05); }
.gallery-grid__item--tall { grid-row: 1 / 3; }
.gallery-grid__cta {
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}
.gallery-grid__cta:hover { background: var(--red-dark); }
.gallery-grid__cta-text {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.2em;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 140px 140px 140px 140px;
  }
  .gallery-grid__item--tall { grid-row: auto; }
  .gallery-grid__cta { grid-column: 1 / -1; }
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
}
.contact-item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--surface);
}
.contact-item__dot {
  color: var(--red);
  font-size: 8px;
  margin-top: 4px;
  flex-shrink: 0;
}
.contact-item__label {
  font-family: var(--font-condensed);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gray-700);
  margin-bottom: 4px;
}
.contact-item__value {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gray-200);
  font-weight: 400;
}
.contact-social {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}
.contact-social__link {
  font-family: var(--font-condensed);
  font-size: var(--fs-tag);
  font-weight: 700;
  letter-spacing: 0.15em;
  border: 1px solid var(--gray-700);
  padding: 8px 16px;
  color: var(--gray-500);
  transition: all 0.3s;
}
.contact-social__link:hover {
  border-color: var(--red);
  color: var(--red);
}

/* Contact form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  padding-bottom: 40px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), 3% 100%);
}
.contact-form__title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: var(--font-condensed);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gray-700);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 80px; }

/* Map */
.contact-map {
  margin-top: 40px;
  overflow: hidden;
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}
.contact-map iframe {
  width: 100%;
  height: 280px;
  border: none;
  filter: grayscale(1) invert(1) contrast(1.1);
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { clip-path: none; margin-top: 40px; padding: 24px; }
  .contact-map { clip-path: none; }
}

/* ─── FOOTER ─── */
.site-footer {
  border-top: 1px solid var(--surface);
  padding: 32px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}
.site-footer__copy {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: var(--fw-body-strong);
  letter-spacing: 0.15em;
  color: var(--gray-500);
}
.site-footer__links {
  display: flex;
  gap: 20px;
}
.site-footer__link {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: var(--fw-body-strong);
  letter-spacing: 0.15em;
  color: var(--gray-500);
  transition: color 0.3s;
}
.site-footer__link:hover { color: var(--red); }

@media (max-width: 768px) {
  .site-footer { flex-direction: column; gap: 12px; text-align: center; padding: 24px var(--pad-x); }
}

/* ─── SCROLL REVEAL ANIMATION ─── */
/* Default state: VISIBLE. Content is never hidden by CSS alone.
   JS adds .fcl-reveal-init to <html> after marking in-viewport
   elements as .is-visible, so only below-fold items get hidden. */
.reveal {
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

/* Hidden state — only active when JS has initialized */
.fcl-reveal-init .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(60px);
}
.fcl-reveal-init .reveal--left:not(.is-visible) { transform: translateX(-60px); }
.fcl-reveal-init .reveal--right:not(.is-visible) { transform: translateX(60px); }

/* Revealed state */
.reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

/* Stagger delays — only during animation */
.fcl-reveal-init .reveal-d1 { transition-delay: 0.1s; }
.fcl-reveal-init .reveal-d2 { transition-delay: 0.2s; }
.fcl-reveal-init .reveal-d3 { transition-delay: 0.3s; }
.fcl-reveal-init .reveal-d4 { transition-delay: 0.4s; }

/* ─── ANIMATIONS ─── */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ─── SCHEMA / SEO HIDDEN ─── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ─── WP SPECIFIC ─── */
.wp-block-image img { height: auto; }
.alignwide { max-width: var(--container); margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }

/* ─── PAGE TEMPLATES ─── */
.page-header {
  padding: 120px var(--pad-x) 60px;
  max-width: var(--container);
  margin: 0 auto;
}
.page-header__title {
  font-family: var(--font-display);
  font-size: var(--fs-section);
  letter-spacing: 0.1em;
  line-height: 1;
}
.page-content {
  padding: 0 var(--pad-x) 80px;
  max-width: var(--container);
  margin: 0 auto;
}
.page-content p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-400);
  margin-bottom: 24px;
  font-weight: var(--fw-body);
}
.page-content h2 {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.1em;
  margin: 48px 0 16px;
}
.page-content h3 {
  font-family: var(--font-condensed);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 32px 0 12px;
  color: var(--red);
}

/* ─── 404 ─── */
.error-404 {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--pad-x);
}
.error-404__num {
  font-family: var(--font-display);
  font-size: clamp(120px, 20vw, 280px);
  color: rgba(255, 45, 45, 0.08);
  line-height: 1;
}
.error-404__text {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

/* ─── COOKIE CONSENT ─── */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--surface);
  border-top: 2px solid var(--red);
  padding: 0;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out-expo);
}
.cookie-bar.is-visible {
  transform: translateY(0);
}
.cookie-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 24px;
}
.cookie-bar__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-bar__icon svg {
  width: 40px;
  height: 40px;
}
.cookie-bar__text {
  flex: 1;
}
.cookie-bar__title {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.cookie-bar__desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.5;
}
.cookie-bar__desc a {
  color: var(--red);
  text-decoration: underline;
}
.cookie-bar__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-bar__btn {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.15em;
  padding: 10px 24px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}
.cookie-bar__btn--accept {
  background: var(--red);
  color: white;
}
.cookie-bar__btn--accept:hover {
  background: var(--red-dark);
}
.cookie-bar__btn--decline {
  background: transparent;
  color: var(--gray-400);
  box-shadow: inset 0 0 0 1px var(--gray-700);
}
.cookie-bar__btn--decline:hover {
  color: var(--white);
  box-shadow: inset 0 0 0 1px var(--gray-400);
}

@media (max-width: 768px) {
  .cookie-bar__inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .cookie-bar__icon { display: none; }
  .cookie-bar__actions { width: 100%; }
  .cookie-bar__btn { flex: 1; }
}

/* Floating cookie dumbbell */
.cookie-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9998;
  width: 48px;
  height: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  opacity: 0;
  transform: scale(0.5);
  pointer-events: none;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.cookie-float.is-visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}
.cookie-float:hover {
  border-color: var(--red);
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(255,45,45,0.2);
}
.cookie-float svg {
  width: 100%;
  height: 100%;
}
