/* ═══════════════════════════════════════════════
   RGESTPROJECTS — Engenharia e Construção
   Dark industrial · Red system · Gold accent
   ═══════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────── */
:root {
  --red:        #E10600;
  --red-dim:    rgba(225,6,0,0.15);
  --gold:       #C8A96A;
  --gold-dim:   rgba(200,169,106,0.15);
  --bg:         #06080C;
  --surface:    #0D1017;
  --surface-2:  #111418;
  --border:     rgba(225,6,0,0.1);
  --border-dim: rgba(255,255,255,0.06);
  --text:       #E8EAED;
  --text-muted: rgba(232,234,237,0.45);
  --font-main:  'Space Grotesk', sans-serif;
  --font-body:  'Inter', sans-serif;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --tr:         0.45s;
  --max-w:      1200px;
}

/* ─── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

a  { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
em { color: var(--red); font-style: normal; }

/* ─── LAYOUT ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
}
.section          { padding: 7rem 0; }
.section--surface { background: var(--surface); }
.section--dark    { background: #040608; }
.section--cta     { background: var(--surface-2); border-top: 1px solid var(--border-dim); }

/* ─── CURSOR ─────────────────────────────────── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(225,6,0,0.5);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), border-color 0.25s;
}
body.cursor-hover .cursor-ring { width: 52px; height: 52px; border-color: var(--red); }
body.cursor-mag   .cursor-ring { width: 64px; height: 64px; border-color: rgba(225,6,0,0.8); background: rgba(225,6,0,0.05); }

/* ─── PROGRESS BAR ───────────────────────────── */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), #FF4A46);
  box-shadow: 0 0 10px rgba(225,6,0,0.6);
  z-index: 1000;
  width: 0%;
  transition: width 0.1s linear;
}

/* ─── HEADER ─────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.2rem 0;
  transition: background var(--tr), border-color var(--tr), padding var(--tr);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(6,8,12,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border-dim);
  padding: 0.75rem 0;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* ─── LOGO ───────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.logo__icon {
  width: 30px; height: 30px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 6px rgba(225,6,0,0.5));
}
.logo__wordmark {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
}
.logo__sub {
  color: var(--red);
  font-size: 0.85em;
}

/* ─── NAV ────────────────────────────────────── */
.nav {
  display: flex;
  gap: 2.5rem;
  margin-left: auto;
}
.nav a {
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:hover          { color: #fff; }
.nav a:hover::after   { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.65);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.3s;
}

/* ─── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 2px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, border-color 0.3s;
}
.btn--sm    { padding: 0.6rem 1.4rem; font-size: 0.8rem; }
.btn--large { padding: 1rem 2.6rem; font-size: 0.95rem; }

.btn--red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn--red:hover {
  background: #C60500;
  border-color: #C60500;
  box-shadow: 0 0 32px rgba(225,6,0,0.4), 0 8px 24px rgba(0,0,0,0.35);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.18);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.55);
  color: #fff;
  background: rgba(255,255,255,0.04);
}

/* ─── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.hero__video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__video.loaded { opacity: 1; }

.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    145deg,
    rgba(6,8,12,0.95) 0%,
    rgba(6,8,12,0.80) 45%,
    rgba(6,8,12,0.60) 100%
  );
}

/* Red radial glow — more visible, double layer */
.hero__glow {
  position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(ellipse 60% 55% at 5% 90%, rgba(225,6,0,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 50% 85%, rgba(225,6,0,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 95% 10%, rgba(225,6,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__grain {
  position: absolute; inset: 0; z-index: 3;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
}

.hero__tech {
  position: absolute; inset: 0; z-index: 4;
  width: 100%; height: 100%;
  pointer-events: none;
}

@keyframes scanDown {
  0%   { transform: translateY(0);     opacity: 0.8; }
  80%  { opacity: 0.25; }
  100% { transform: translateY(900px); opacity: 0; }
}
.scan-line { animation: scanDown 6s linear infinite; }

/* Hero content */
.hero__content {
  position: relative;
  z-index: 5;
  padding-top: 7rem;
  padding-bottom: 10rem;
  max-width: 840px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.hero__eyebrow.is-visible { opacity: 1; transform: none; }
.hero__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px rgba(225,6,0,0.8);
  flex-shrink: 0;
}

.hero__headline {
  font-family: var(--font-main);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 2rem;
}
.split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin-right: 0.28em;
  transform: translateY(110%);
  transition: transform 0.75s var(--ease);
}
.split-word.is-visible { transform: translateY(0); }

.hero__sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.58);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.78;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease) 0.5s, transform 0.7s var(--ease) 0.5s;
}
.hero__sub.is-visible { opacity: 1; transform: none; }

.hero__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease) 0.65s, transform 0.7s var(--ease) 0.65s;
}
.hero__btns.is-visible { opacity: 1; transform: none; }

/* Stats strip */
.hero__strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 5;
  background: rgba(6,8,12,0.9);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(225,6,0,0.12);
}
.hero__strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: stretch;
}
.hero__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 2rem;
  gap: 0.2rem;
  position: relative;
}
.hero__stat + .hero__stat::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(225,6,0,0.12);
}
.hero__stat-num {
  font-family: var(--font-main);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.hero__stat-unit {
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(225,6,0,0.65);
  margin-left: 3px;
}
.hero__stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 0.15rem;
}

/* ─── SECTION META ───────────────────────────── */
.section__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.section__num {
  font-family: var(--font-main);
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(225,6,0,0.4);
  letter-spacing: 0.15em;
}
.section__label {
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  padding-left: 1.4rem;
  position: relative;
}
.section__label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 1px;
  background: var(--red);
  transition: width 0.6s var(--ease);
}
.section__label.line-drawn::before { width: 18px; }

.section__title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 4rem;
}
.section--dark .section__title { color: #fff; }

/* ─── SERVICE CARDS ──────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-dim);
  border: 1px solid var(--border-dim);
}
.service-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
  cursor: default;
}
/* Red glow on hover */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 15% 85%, rgba(225,6,0,0.07) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { background: var(--surface); }

.service-card__icon {
  color: rgba(225,6,0,0.4);
  margin-bottom: 1.25rem;
  transition: color 0.3s;
}
.service-card:hover .service-card__icon { color: var(--red); }

.service-card__num {
  font-family: var(--font-main);
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(225,6,0,0.35);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.75rem;
}
.service-card h3 {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  transition: color 0.3s;
}
.service-card:hover h3 { color: #fff; }
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.72;
}

/* Red bottom line on hover */
.service-card__line {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--red), transparent);
  box-shadow: 0 0 10px rgba(225,6,0,0.5);
  transition: width 0.5s var(--ease);
}
.service-card:hover .service-card__line { width: 100%; }

/* Left accent bar */
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--red);
  transition: height 0.4s var(--ease);
}
.service-card:hover::after { height: 100%; }

/* ─── PROCESS ────────────────────────────────── */
.process-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border-dim);
  border: 1px solid var(--border-dim);
}
.process-item {
  background: var(--surface);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}
.process-item--wide { grid-column: span 2; }

.process-item__num {
  font-family: var(--font-main);
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  font-weight: 700;
  color: rgba(225,6,0,0.1);
  line-height: 1;
  letter-spacing: -0.03em;
  transition: color 0.4s;
}
.process-item:hover .process-item__num { color: rgba(225,6,0,0.18); }

.process-item__body h3 {
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.process-item__body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.72;
}
.process-item__accent {
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--red);
  transition: height 0.5s var(--ease);
}
.process-item:hover .process-item__accent { height: 100%; }

/* ─── NUMBER BLOCKS ──────────────────────────── */
.number-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-dim);
  border: 1px solid var(--border-dim);
}
.number-block {
  background: var(--bg);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
/* Strong red glow from below on hover */
.number-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 110%, rgba(225,6,0,0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.number-block:hover::before { opacity: 1; }
.number-block:hover         { background: var(--surface); }
.number-block::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--red);
  box-shadow: 0 0 10px rgba(225,6,0,0.5);
  transition: width 0.4s var(--ease);
}
.number-block:hover::after { width: 60%; }

.number-block__val {
  font-family: var(--font-main);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.25rem;
  display: block;
}
.number-block__unit {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(225,6,0,0.55);
  margin-bottom: 0.75rem;
  display: block;
}
.number-block__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  line-height: 1.4;
  display: block;
}

/* ─── PORTFOLIO GALLERY ──────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 2px;
  background: var(--border-dim);
  border: 1px solid var(--border-dim);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: default;
}
.gallery-item--large { grid-column: span 2; }

.gallery-item__img {
  width: 100%;
  height: 240px;
  transition: transform 0.55s var(--ease);
}
.gallery-item--large .gallery-item__img { height: 320px; }
.gallery-item:hover .gallery-item__img  { transform: scale(1.04); }

/* Blueprint-like dark construction gradients */
.gallery-item__img--1 {
  background: linear-gradient(145deg, #0D1017 0%, #161C24 40%, #1A1510 100%);
  position: relative;
}
.gallery-item__img--1::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(225,6,0,0.04) 80px),
              repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(225,6,0,0.04) 80px);
}
.gallery-item__img--2 {
  background: linear-gradient(135deg, #0E1318 0%, #151D22 50%, #111510 100%);
}
.gallery-item__img--2::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 39px, rgba(200,169,106,0.03) 40px);
}
.gallery-item__img--3 { background: linear-gradient(135deg, #0C1016 0%, #181F28 60%, #131310 100%); }
.gallery-item__img--4 { background: linear-gradient(135deg, #0E1218 0%, #161E26 50%, #151210 100%); }
.gallery-item__img--5 { background: linear-gradient(135deg, #0D1218 0%, #1B2030 40%, #141210 100%); }
.gallery-item__img--6 { background: linear-gradient(135deg, #0C1015 0%, #181820 50%, #131210 100%); }

/* Red glow overlay on hover */
.gallery-item__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 80%, rgba(225,6,0,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.gallery-item:hover .gallery-item__glow { opacity: 1; }

.gallery-item__info {
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border-top: 1px solid var(--border-dim);
  position: relative;
}
.gallery-item__info::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.4s var(--ease);
}
.gallery-item:hover .gallery-item__info::before { width: 100%; }

.gallery-item__type {
  font-family: var(--font-main);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.35rem;
}
.gallery-item__info h4 {
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.gallery-item__info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── CONFIANÇA ──────────────────────────────── */
.confianca__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 0;
}
.confianca__quote {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.confianca__line {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}
blockquote {
  font-family: var(--font-main);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  font-style: italic;
}
cite {
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  font-style: normal;
}

/* ─── CTA ────────────────────────────────────── */
.cta__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 4rem 0;
}
.cta__inner h2 {
  font-family: var(--font-main);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 1rem 0 1.25rem;
}
.cta__inner p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 2.5rem;
}
.cta__btns { margin-bottom: 2rem; }
.cta__group-link a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
  transition: color 0.3s;
}
.cta__group-link a:hover { color: rgba(255,255,255,0.65); }

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  background: #040608;
  color: rgba(255,255,255,0.45);
  padding: 4rem 0 0;
  border-top: 1px solid var(--border-dim);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer__brand .footer__logo { margin-bottom: 1rem; }
.footer__brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  max-width: 280px;
}
.footer__links h4 {
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  margin-bottom: 1rem;
}
.footer__links a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}
.footer__links a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 1.25rem 0; }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.22); }
.footer__bottom a { color: var(--red); }

/* ─── REVEAL ANIMATIONS ──────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-up.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .service-grid  { grid-template-columns: repeat(2, 1fr); }
  .number-grid   { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--large { grid-column: span 2; }
}
@media (max-width: 768px) {
  .section { padding: 5rem 0; }
  .nav            { display: none; }
  .btn--sm        { display: none; }
  .nav-toggle     { display: flex; }
  .process-list   { grid-template-columns: 1fr; }
  .process-item--wide { grid-column: span 1; }
  .footer__inner  { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}
@media (max-width: 600px) {
  .service-grid  { grid-template-columns: 1fr; }
  .number-grid   { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  { grid-template-columns: 1fr; }
  .gallery-item--large { grid-column: span 1; }
  .hero__strip-inner { flex-wrap: wrap; }
  .hero__stat    { flex: 1 1 50%; }
}
@media (max-width: 480px) {
  .container     { padding: 0 1.25rem; }
  .hero__btns    { flex-direction: column; }
  .hero__headline { font-size: 2.4rem; }
}
