/* =========================================================
   DEPOCU EMIN USTA — Industrial Red/Black/White Design System
   ========================================================= */

:root {
  --red: #D2001C;
  --red-dark: #9C0016;
  --red-deep: #5C0010;
  --ink: #0B0B0C;
  --ink-soft: #1A1A1C;
  --steel: #2E2E31;
  --steel-light: #55555B;
  --paper: #F7F6F3;
  --white: #FFFFFF;
  --line: #E4E2DC;

  --font-display: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  --font-alt: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', -apple-system, sans-serif;

  --shadow-hard: 6px 6px 0 var(--ink);
  --shadow-hard-red: 6px 6px 0 var(--red);
  --shadow-soft: 0 20px 45px -20px rgba(0,0,0,.45);

  --radius: 4px;
  --container: 1200px;

  --z-header: 50;
  --z-fab: 40;
  --z-photo-modal: 55;
  --z-lightbox: 60;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; letter-spacing: .02em; line-height: 1.05; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

@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; }
  /* the blanket rule above would leave these tracks parked at their end frame */
  .marquee__track, .photo-strip__track { animation: none !important; transform: none !important; }
  .nav { transition: transform .3s ease, visibility .3s ease !important; }
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.text-red { color: var(--red); }

.grain-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-alt); font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  padding: 13px 24px; border-radius: var(--radius); border: 2px solid var(--ink);
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
  min-height: 44px; white-space: nowrap;
}
.btn--primary { background: var(--red); color: var(--white); border-color: var(--ink); box-shadow: var(--shadow-hard); }
.btn--primary:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.btn--primary:active { transform: translate(0,0); box-shadow: 2px 2px 0 var(--ink); }
.btn--ghost { background: transparent; color: var(--white); border-color: var(--white); }
.btn--ghost:hover { background: var(--white); color: var(--ink); transform: translate(-2px,-2px); box-shadow: 8px 8px 0 rgba(255,255,255,.35); }
.btn--sm { padding: 9px 16px; font-size: .85rem; }
.btn--lg { padding: 16px 30px; font-size: 1.02rem; }

/* ---------- TOPBAR ---------- */
.topbar { background: var(--ink); color: var(--paper); font-family: var(--font-alt); font-size: .82rem; letter-spacing: .03em; position: relative; z-index: var(--z-header); }
.topbar__inner { display: flex; align-items: center; gap: 28px; height: 38px; }
.topbar__item { display: inline-flex; align-items: center; gap: 6px; color: var(--paper); opacity: .9; transition: opacity .15s, color .15s; }
.topbar__item:hover { opacity: 1; color: var(--red); }
.topbar__item svg { flex-shrink: 0; }
.topbar__item--muted { margin-right: auto; opacity: .65; }
.topbar__item--wa { margin-left: auto; color: #4ADE80; }
.topbar__item--wa:hover { color: #6EE7A2; }
@media (max-width: 900px) {
  .topbar__item--muted { display: none; }
  .topbar__item--wa { margin-left: auto; }
  /* 44px minimum touch target */
  .topbar__inner { height: 44px; }
  .topbar__item { min-height: 44px; padding: 0 2px; }
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(11,11,12,.92); backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--red);
}
.site-header__inner { display: flex; align-items: center; gap: 24px; height: 84px; }
.brand__logo { height: 56px; width: auto; }
.nav { display: flex; gap: 32px; margin-left: 32px; margin-right: auto; }
.nav a {
  font-family: var(--font-alt); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: .92rem;
  color: var(--paper); position: relative; padding: 6px 2px;
}
.nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--red); transition: right .2s ease; }
.nav a:hover { color: var(--red); }
.nav a:hover::after { right: 0; }

/* drawer CTAs exist only in the mobile nav */
.nav__cta { display: none; }

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--paper); transition: transform .25s ease, opacity .25s ease; }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .site-header__inner { height: 72px; }
  .brand__logo { height: 46px; }
  .nav {
    position: fixed; inset: 72px 0 0 0; height: calc(100vh - 72px); height: calc(100dvh - 72px);
    background: var(--ink); flex-direction: column; align-items: stretch; padding: 24px 24px 40px; margin: 0; gap: 4px;
    transform: translateX(100%); visibility: hidden;
    transition: transform .3s ease, visibility .3s ease;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .nav.is-open { transform: translateX(0); visibility: visible; }
  /* direct children only — must not restyle the .btn links in .nav__cta */
  .nav > a { font-size: 1.35rem; padding: 14px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); }
  /* CTA buttons inside the mobile drawer */
  .nav__cta { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
  .nav__cta .btn { width: 100%; justify-content: center; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 92vh; min-height: 92svh; display: flex; align-items: center; color: var(--white); overflow: hidden; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim { position: absolute; inset: 0; background:
  linear-gradient(100deg, rgba(11,11,12,.96) 20%, rgba(11,11,12,.78) 55%, rgba(92,0,16,.55) 100%); }
.hero__stripes { position: absolute; right: -10%; top: -10%; width: 55%; height: 130%; z-index: -1;
  background: repeating-linear-gradient(-35deg, transparent 0 26px, rgba(210,0,28,.14) 26px 52px); }
.hero__inner { position: relative; padding: 100px 24px 70px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-alt); text-transform: uppercase; letter-spacing: .12em; font-size: .85rem; color: var(--red); font-weight: 700; margin-bottom: 18px; }
.eyebrow__bar { width: 34px; height: 2px; background: var(--red); display: inline-block; }
.eyebrow--center { justify-content: center; }
.hero__title { font-size: clamp(2.8rem, 7vw, 6rem); text-transform: uppercase; margin-bottom: 22px; }
.hero__title span { color: var(--red); -webkit-text-stroke: 1px var(--red); }
.hero__desc { max-width: 560px; font-size: 1.08rem; color: rgba(255,255,255,.82); margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 46px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 34px; font-family: var(--font-alt); text-transform: uppercase; font-size: .85rem; letter-spacing: .03em; color: rgba(255,255,255,.7); }
.hero__trust strong { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--white); letter-spacing: .02em; }

/* hero load-in cascade */
.hero__inner > .eyebrow,
.hero__inner > .hero__title,
.hero__inner > .hero__desc,
.hero__inner > .hero__actions,
.hero__inner > .hero__trust {
  animation: hero-rise .7s cubic-bezier(.16,.9,.3,1) both;
}
.hero__inner > .eyebrow { animation-delay: .05s; }
.hero__inner > .hero__title { animation-delay: .15s; }
.hero__inner > .hero__desc { animation-delay: .32s; }
.hero__inner > .hero__actions { animation-delay: .46s; }
.hero__inner > .hero__trust { animation-delay: .58s; }
@keyframes hero-rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .hero__inner > .eyebrow, .hero__inner > .hero__title, .hero__inner > .hero__desc,
  .hero__inner > .hero__actions, .hero__inner > .hero__trust { animation: none; }
}

/* ---------- MARQUEE ---------- */
.marquee { background: var(--red); color: var(--white); overflow: hidden; padding: 14px 0; border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.marquee__track { display: flex; width: max-content; gap: 28px; animation: scroll-left 26s linear infinite; }
.marquee__track span { font-family: var(--font-alt); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: 1rem; white-space: nowrap; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- SECTION HEAD ---------- */
.section-head { max-width: 640px; margin-bottom: 54px; }
.section-head--center { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); text-transform: uppercase; margin-bottom: 14px; }
.section-head__desc { color: var(--steel-light); font-size: 1.05rem; }
.section-head--light .section-head__desc { color: rgba(255,255,255,.72); }
.section-head--light h2 { color: var(--white); }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section-head--row .btn { flex-shrink: 0; }
@media (max-width: 640px) { .section-head--row .btn { width: 100%; justify-content: center; } }

/* ---------- SERVICES ---------- */
.services { padding: 100px 0; background: var(--paper); position: relative; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  position: relative; overflow: hidden;
  background: var(--white); border: 2px solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
}
.services__grid .service-card { transition: opacity .6s ease, transform .18s ease, box-shadow .18s ease; }
.service-card:hover { transform: translate(-4px, -4px); box-shadow: 10px 10px 0 var(--ink); }
.services__grid .service-card:nth-child(1) { transition-delay: 0s; }
.services__grid .service-card:nth-child(2) { transition-delay: .08s; }
.services__grid .service-card:nth-child(3) { transition-delay: .16s; }
.service-card--featured { background: var(--ink); color: var(--white); border-color: var(--ink); box-shadow: var(--shadow-hard-red); }
.service-card--featured:hover { box-shadow: 10px 10px 0 var(--red); }
.service-card--featured .service-card__icon { background: var(--red); color: var(--white); }
.service-card--featured p { color: rgba(255,255,255,.72); }

.service-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; border-bottom: 2px solid var(--ink); background: var(--ink); }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-card__media img { transform: scale(1.07); }
.service-card__media::before {
  content: ''; position: absolute; top: 0; left: 0; width: 46px; height: 46px; z-index: 1;
  background: var(--red); clip-path: polygon(0 0, 100% 0, 0 100%);
}
.service-card__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.32) 0%, transparent 45%); }
.service-card__badge {
  position: absolute; right: 10px; bottom: 10px; z-index: 2;
  background: var(--white); color: var(--ink); border: 2px solid var(--ink);
  font-family: var(--font-alt); font-weight: 700; text-transform: uppercase; font-size: .74rem; letter-spacing: .03em;
  padding: 4px 10px; border-radius: 999px;
}

.service-card__body { position: relative; padding: 26px 26px 30px; }
.service-card__icon {
  width: 56px; height: 56px; border-radius: var(--radius); background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center; margin-top: -54px; margin-bottom: 16px;
  border: 2px solid var(--ink); position: relative; z-index: 2; box-shadow: 3px 3px 0 var(--ink);
}
.service-card h3 { font-size: 1.5rem; text-transform: uppercase; margin-bottom: 10px; letter-spacing: .01em; }
.service-card p { color: var(--steel-light); font-size: .96rem; }

@media (max-width: 980px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services__grid { grid-template-columns: 1fr; } }

/* ---------- PHOTO STRIP (continuous auto-scroll) ---------- */
.photo-strip { position: relative; margin-top: 56px; overflow: hidden; }
.photo-strip__track {
  display: flex; align-items: center; gap: 10px; width: max-content;
  animation: photo-strip-scroll 130s linear infinite;
}
.photo-strip__track img {
  height: 150px; width: auto; flex-shrink: 0; object-fit: cover;
  border-radius: var(--radius); border: 2px solid var(--ink);
}
.photo-strip__fade { position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none; }
.photo-strip__fade--l { left: 0; background: linear-gradient(90deg, var(--ink) 0%, transparent 100%); }
.photo-strip__fade--r { right: 0; background: linear-gradient(270deg, var(--ink) 0%, transparent 100%); }
@keyframes photo-strip-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 640px) { .photo-strip__track img { height: 110px; } .photo-strip__fade { width: 40px; } }

/* ---------- PHOTO MODAL (view all) ---------- */
.photo-modal {
  position: fixed; inset: 0; z-index: var(--z-photo-modal); background: var(--ink);
  display: flex; flex-direction: column; opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}
.photo-modal.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.photo-modal__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 24px; border-bottom: 3px solid var(--red); background: var(--ink); flex-shrink: 0;
}
.photo-modal__title { font-family: var(--font-alt); text-transform: uppercase; letter-spacing: .04em; font-weight: 700; color: var(--white); font-size: 1.05rem; }
.photo-modal__count { color: var(--red); }
.photo-modal__close {
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--white); color: var(--white);
  font-size: 1.8rem; line-height: 1; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .15s ease, border-color .15s ease;
}
.photo-modal__close:hover { background: var(--red); border-color: var(--red); }
.photo-modal__grid {
  flex: 1; overflow-y: auto; padding: 24px; display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px;
}
.photo-modal__thumb {
  position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: var(--radius);
  border: 2px solid var(--steel); padding: 0; cursor: pointer; transition: border-color .15s ease, transform .15s ease;
}
.photo-modal__thumb:hover { border-color: var(--red); transform: translateY(-2px); }
.photo-modal__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 640px) {
  .photo-modal__grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); padding: 16px; gap: 8px; }
  .photo-modal__bar { padding: 14px 16px; }
}

/* ---------- GALLERY ---------- */
.gallery { padding: 100px 0; background: var(--ink); }
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; grid-auto-flow: dense; gap: 14px; }
.gallery__item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; border: 2px solid var(--steel); }
.gallery__grid .gallery__item:nth-child(1) { transition-delay: 0s; }
.gallery__grid .gallery__item:nth-child(2) { transition-delay: .06s; }
.gallery__grid .gallery__item:nth-child(3) { transition-delay: .12s; }
.gallery__grid .gallery__item:nth-child(4) { transition-delay: .18s; }
.gallery__grid .gallery__item:nth-child(5) { transition-delay: .24s; }
.gallery__grid .gallery__item:nth-child(6) { transition-delay: .3s; }
.gallery__grid .gallery__item:nth-child(7) { transition-delay: .36s; }
.gallery__grid .gallery__item:nth-child(8) { transition-delay: .42s; }
.gallery__grid .gallery__item:nth-child(9) { transition-delay: .48s; }
.gallery__grid .gallery__item:nth-child(n+10) { transition-delay: .5s; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.75) 100%); opacity: 0; transition: opacity .25s ease; }
.gallery__item:hover::after { opacity: 1; }
.gallery__tag {
  position: absolute; left: 12px; bottom: 12px; z-index: 2; color: var(--white);
  font-family: var(--font-alt); text-transform: uppercase; font-size: .78rem; letter-spacing: .04em; font-weight: 700;
  opacity: 0; transform: translateY(6px); transition: opacity .25s ease, transform .25s ease;
}
.gallery__item:hover .gallery__tag { opacity: 1; transform: translateY(0); }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }

@media (max-width: 980px) { .gallery__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 10px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
}

/* Touch devices have no hover: reveal the caption permanently instead of on hover */
@media (hover: none) {
  .gallery__item::after { opacity: 1; }
  .gallery__tag { opacity: 1; transform: translateY(0); }
  .gallery__item:hover img,
  .service-card:hover .service-card__media img { transform: none; }
  .service-card:hover { transform: none; box-shadow: var(--shadow-hard); }
  .service-card--featured:hover { box-shadow: var(--shadow-hard-red); }
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: var(--z-lightbox); background: rgba(6,6,7,.95);
  display: flex; align-items: center; justify-content: center; padding: 40px;
  opacity: 0; visibility: hidden; transition: opacity .25s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 88vh; border: 3px solid var(--red); border-radius: 4px; }
.lightbox__close { position: absolute; top: 24px; right: 28px; width: 48px; height: 48px; font-size: 2.2rem; color: var(--white); line-height: 1; border: 2px solid var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .15s ease, color .15s ease; }
.lightbox__close:hover { background: var(--red); border-color: var(--red); }
.lightbox__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px;
  border-radius: 50%; border: 2px solid var(--white); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  background: rgba(11,11,12,.4); transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.lightbox__arrow:hover { background: var(--red); border-color: var(--red); }
.lightbox__arrow--prev { left: 16px; }
.lightbox__arrow--next { right: 16px; }
@media (max-width: 640px) {
  .lightbox { padding: 16px; }
  .lightbox img { max-height: 74svh; }
  .lightbox__close { top: 12px; right: 12px; width: 44px; height: 44px; font-size: 1.9rem; }
  .lightbox__arrow { width: 46px; height: 46px; top: auto; bottom: 20px; transform: none; }
  .lightbox__arrow--prev { left: 16px; }
  .lightbox__arrow--next { right: 16px; }
}

/* ---------- ABOUT ---------- */
.about { padding: 110px 0; background: var(--paper); }
.about__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.about__media { position: relative; }
.about__reel {
  position: relative; width: 100%; aspect-ratio: 4/5; overflow: hidden;
  border-radius: var(--radius); border: 2px solid var(--ink); box-shadow: var(--shadow-hard-red);
  background: var(--ink);
}
.about__reel img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; animation: reel-cycle 16s infinite;
}
.about__reel img:nth-child(1) { animation-delay: 0s; }
.about__reel img:nth-child(2) { animation-delay: 4s; }
.about__reel img:nth-child(3) { animation-delay: 8s; }
.about__reel img:nth-child(4) { animation-delay: 12s; }
.about__reel::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(11,11,12,.08) 0%, transparent 30%, transparent 70%, rgba(11,11,12,.35) 100%);
}
@keyframes reel-cycle {
  0%   { opacity: 0; transform: scale(1.04); }
  3%   { opacity: 1; }
  22%  { opacity: 1; }
  25%  { opacity: 0; transform: scale(1.15); }
  100% { opacity: 0; transform: scale(1.15); }
}
@media (prefers-reduced-motion: reduce) {
  .about__reel img { animation: none; opacity: 0; transform: none; }
  .about__reel img:nth-child(1) { opacity: 1; }
}
.about__badge {
  position: absolute; bottom: -24px; left: -24px; background: var(--red); color: var(--white);
  border: 2px solid var(--ink); border-radius: var(--radius); padding: 18px 22px; text-align: center;
  box-shadow: var(--shadow-hard);
}
.about__badge-num { display: block; font-family: var(--font-display); font-size: 2.4rem; line-height: 1; }
.about__badge-label { font-family: var(--font-alt); text-transform: uppercase; font-size: .74rem; letter-spacing: .04em; }
.about__content h2 { margin-bottom: 20px; }
.about__content > p { color: var(--steel-light); font-size: 1.05rem; margin-bottom: 26px; }
.about__list { display: grid; gap: 12px; margin-bottom: 32px; }
.about__list li { display: flex; align-items: center; gap: 12px; font-family: var(--font-alt); font-weight: 600; text-transform: uppercase; font-size: .95rem; letter-spacing: .02em; }
.about__list li span { width: 26px; height: 26px; border-radius: 50%; background: var(--red); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: .8rem; flex-shrink: 0; }

@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__badge { left: 16px; bottom: -20px; }
}

/* ---------- CONTACT ---------- */
.contact { position: relative; padding: 110px 0; background: var(--ink); color: var(--white); overflow: hidden; }
.contact__stripes { position: absolute; inset: 0; z-index: 0;
  background: repeating-linear-gradient(-35deg, transparent 0 30px, rgba(210,0,28,.08) 30px 60px); }
.contact .container { position: relative; z-index: 1; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.contact__cards { display: grid; gap: 16px; }
.contact-card {
  display: flex; align-items: center; gap: 16px; background: var(--ink-soft); border: 2px solid var(--steel);
  border-radius: var(--radius); padding: 20px 22px; transition: border-color .18s ease, transform .18s ease;
}
.contact-card:not(.contact-card--static):hover { border-color: var(--red); transform: translateX(4px); }
.contact-card__icon { width: 48px; height: 48px; border-radius: 50%; background: var(--red); color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card--wa .contact-card__icon { background: #25D366; }
.contact-card h3 { font-family: var(--font-alt); text-transform: uppercase; font-size: .95rem; letter-spacing: .03em; margin-bottom: 4px; }
.contact-card p { color: rgba(255,255,255,.7); font-size: .92rem; }
.contact__map { border-radius: var(--radius); overflow: hidden; border: 2px solid var(--steel); min-height: 340px; box-shadow: var(--shadow-hard-red); }
.contact__map iframe { width: 100%; height: 100%; min-height: 340px; filter: grayscale(.3) contrast(1.1); }

@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } }

/* ---------- FOOTER ---------- */
.footer { background: #060607; color: rgba(255,255,255,.75); padding: 64px 0 0; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__logo { height: 44px; width: auto; margin-bottom: 14px; }
.footer__brand p { max-width: 320px; font-size: .92rem; color: rgba(255,255,255,.55); }
.footer__col h4 { font-family: var(--font-alt); text-transform: uppercase; color: var(--white); font-size: .95rem; letter-spacing: .04em; margin-bottom: 16px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; font-size: .92rem; }
.footer__col a:hover { color: var(--red); }
.footer__bottom { display: flex; justify-content: center; text-align: center; padding: 22px 24px; font-size: .82rem; color: rgba(255,255,255,.4); }

@media (max-width: 900px) {
  /* 44px minimum touch target for the footer link lists */
  .footer__col a { display: flex; align-items: center; min-height: 44px; }
  .footer__col { gap: 0; }
  /* keep the last line clear of the floating call button */
  .footer__bottom { padding-bottom: 96px; }
}
@media (max-width: 760px) { .footer__inner { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- FAB ---------- */
.fab { position: fixed; right: 22px; bottom: 22px; z-index: var(--z-fab); display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.fab__options { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.fab__option {
  display: flex; align-items: center; gap: 10px; background: var(--white); color: var(--ink);
  min-height: 44px; padding: 10px 18px 10px 14px; border-radius: 999px; border: 2px solid var(--ink);
  font-family: var(--font-alt); font-weight: 700; text-transform: uppercase; font-size: .82rem; letter-spacing: .03em;
  box-shadow: 4px 4px 0 var(--ink);
  opacity: 0; transform: translateY(10px) scale(.9); pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.fab.is-open .fab__option { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.fab__option--wa { color: #0c8a41; }
.fab__option--call { color: var(--red-dark); }
.fab__option svg { flex-shrink: 0; }
.fab__main {
  width: 60px; height: 60px; border-radius: 50%; background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center; border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink); position: relative; transition: transform .2s ease, box-shadow .2s ease;
  animation: pulse-ring 2.6s ease-in-out infinite;
}
.fab__main:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--ink); }
.fab__icon-close { position: absolute; opacity: 0; transform: rotate(-45deg) scale(.6); transition: opacity .2s ease, transform .2s ease; }
.fab__icon-phone { transition: opacity .2s ease, transform .2s ease; }
.fab.is-open .fab__icon-phone { opacity: 0; transform: rotate(45deg) scale(.6); }
.fab.is-open .fab__icon-close { opacity: 1; transform: rotate(0) scale(1); }
.fab.is-open .fab__main { animation: none; }

@keyframes pulse-ring {
  0%, 100% { box-shadow: 5px 5px 0 var(--ink), 0 0 0 0 rgba(210,0,28,.5); }
  50% { box-shadow: 5px 5px 0 var(--ink), 0 0 0 10px rgba(210,0,28,0); }
}

/* ---------- SCROLL REVEAL ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE TYPE / SPACING ---------- */
@media (max-width: 640px) {
  .services, .gallery, .about, .contact { padding: 64px 0; }
  .hero__inner { padding: 120px 24px 56px; }
  .hero__actions { gap: 12px; }
  .hero__actions .btn { flex: 1 1 100%; justify-content: center; }
  .hero__trust { gap: 20px 26px; }
  .hero__trust strong { font-size: 1.6rem; }
}

/* very narrow phones */
@media (max-width: 360px) {
  .container { padding: 0 16px; }
  .hero__inner { padding: 112px 16px 48px; }
  .btn { padding: 12px 18px; }
}
