/* ============================================
   LIQUID FIRE VINTAGE NEON — Main Stylesheet
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #080808;
  color: #e2d9c8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* === CSS VARIABLES === */
:root {
  --red: #e63030;
  --red-dark: #cc2828;
  --blue: #3db8f5;
  --bg: #080808;
  --bg-dark: #0c0c0c;
  --bg-mid: #0f0f0f;
  --border: #1a1a1a;
  --border-subtle: #141414;
  --text: #e2d9c8;
  --text-muted: #888;
  --text-dim: #666;
  --text-ghost: #2e2e2e;
}

/* === NAV === */
#navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2.5rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.nav-active {
  color: var(--text) !important;
}

.logo-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.logo-txt {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--text);
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}

.logo-txt em {
  color: var(--blue);
  font-style: normal;
  text-shadow: 0 0 12px rgba(61, 184, 245, 0.6);
}

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-style: normal;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta {
  background: var(--red);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.7rem 1.4rem;
  border-radius: 2px;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--red-dark);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

/* === MOBILE MENU === */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: #080808f5;
  z-index: 2000;
  padding: 3rem 2rem;
  gap: 1.5rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-close {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 1rem;
}

.mobile-link {
  font-size: 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  transition: color 0.2s;
}

.mobile-link:hover {
  color: var(--blue);
}

.mobile-cta {
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 1.5rem;
  border-radius: 2px;
  text-align: center;
  margin-top: 1rem;
}

/* === PARALLAX HERO (home) === */
.parallax-hero {
  min-height: 100vh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.parallax-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 70% at 50% 50%, rgba(0,0,0,0.55) 0%, transparent 100%),
    linear-gradient(to bottom, rgba(8,8,8,0.65) 0%, rgba(8,8,8,0.88) 100%);
  z-index: 0;
}

.parallax-hero > * { position: relative; z-index: 1; }

/* === PAGE HERO (sub-pages) === */
.page-hero {
  min-height: 58vh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 4rem 2.5rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.2) 0%, rgba(8,8,8,0.88) 100%);
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  color: #f0e8d5;
  text-shadow: 0 2px 0 rgba(0,0,0,0.6), 0 0 60px rgba(240,232,213,0.08);
  margin-top: 0.5rem;
}

/* === PARALLAX DIVIDER === */
.parallax-divider {
  min-height: 55vh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.parallax-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 0;
}

.parallax-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 800px;
}

.par-label {
  font-size: 0.66rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--blue);
  text-shadow: 0 0 16px rgba(61,184,245,0.5);
  margin-bottom: 0.8rem;
}

.par-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 0.92;
  text-shadow: 0 2px 0 rgba(0,0,0,0.5);
}

.par-sub {
  font-size: 0.92rem;
  color: #aaa;
  line-height: 1.8;
  margin-top: 1rem;
}

.par-stat-row {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.par-stat { text-align: center; }

.par-stat-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.par-stat-n.blue { color: var(--blue); text-shadow: 0 0 20px rgba(61,184,245,0.6); }
.par-stat-n.red  { color: var(--red);  text-shadow: 0 0 20px rgba(230,48,48,0.6); }

.par-stat-l {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
}

/* === FEATURED GRID === */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 3rem;
}

.featured-grid .pg-item img {
  height: 260px;
}

.featured-link {
  display: block;
  text-align: center;
  margin-top: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  text-shadow: 0 0 12px rgba(61,184,245,0.4);
  transition: color 0.2s;
  text-decoration: none;
}

.featured-link:hover { color: #fff; }

/* === SOCIAL BUTTON ROW === */
.social-btn-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === CTA STRIP === */
.cta-strip {
  padding: 5rem 2.5rem;
  text-align: center;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
}

.cta-strip .sec-h { margin-bottom: 1rem; }

.cta-strip p {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* === HERO === */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 5rem;
  position: relative;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(to bottom, rgba(8,8,8,0.55) 0%, rgba(8,8,8,0.72) 100%),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(230, 48, 48, 0.1) 0%, transparent 60%),
    #080808;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 2rem;
  text-shadow: 0 0 20px rgba(61, 184, 245, 0.7), 0 1px 8px rgba(0,0,0,0.8);
  font-weight: 500;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6.5rem, 17vw, 12rem);
  line-height: 0.86;
  letter-spacing: 0.03em;
  color: #ffffff;
  margin-bottom: 1.6rem;
  text-shadow:
    0 3px 0 rgba(0,0,0,0.8),
    0 0 80px rgba(240,232,213,0.1);
}

.hero h1 em {
  color: var(--red);
  font-style: normal;
  display: block;
  text-shadow:
    0 3px 0 rgba(0,0,0,0.8),
    0 0 50px rgba(230, 48, 48, 0.7),
    0 0 100px rgba(230, 48, 48, 0.3);
}

.hero-sub {
  font-size: 1.15rem;
  font-weight: 500;
  color: #ffffff;
  max-width: 540px;
  margin: 0 auto 2.8rem;
  line-height: 1.8;
  text-shadow: 0 1px 20px rgba(0,0,0,1), 0 0 60px rgba(0,0,0,0.9);
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-red {
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  transition: background 0.2s;
}

.btn-red:hover {
  background: var(--red-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  border: 1px solid #2a2a2a;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--text-muted);
  color: #fff;
}

/* === TICKER (animated scroll) === */
.ticker-wrap {
  overflow: hidden;
  background: var(--bg-mid);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.ticker-track {
  display: flex;
  gap: 3rem;
  padding: 1.2rem 2.5rem;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
  width: max-content;
}

.ticker-wrap:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tick-item {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  flex-shrink: 0;
}

.tick-item strong {
  color: var(--text-muted);
}

/* === SECTIONS === */
.section {
  padding: 5rem 2.5rem;
  border-bottom: 1px solid var(--border);
}

.section-dark {
  background:
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(230, 48, 48, 0.05) 0%, transparent 70%),
    var(--bg-dark);
}

.section-flush {
  padding-bottom: 0;
}

.sec-label {
  font-size: 0.66rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.8rem;
  text-shadow: 0 0 16px rgba(61, 184, 245, 0.4);
}

.sec-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  letter-spacing: 0.04em;
  color: #f0e8d5;
  line-height: 0.95;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(240, 232, 213, 0.07);
}

.sec-body {
  font-size: 0.93rem;
  color: #999;
  line-height: 1.9;
  max-width: 520px;
}

/* === TWO COLUMN === */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-img {
  width: 100%;
  border-radius: 2px;
  filter: brightness(0.9);
}

/* === BADGES === */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.5rem;
}

.badge {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid #1e1e1e;
  color: #444;
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
}

.badge.blue {
  border-color: rgba(61, 184, 245, 0.3);
  color: var(--blue);
  background: rgba(61, 184, 245, 0.04);
}

.badge.red {
  border-color: rgba(230, 48, 48, 0.3);
  color: var(--red);
  background: rgba(230, 48, 48, 0.04);
}

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
}

.svc {
  background: var(--bg-dark);
  padding: 2rem 1.6rem;
  transition: background 0.2s;
}

.svc:hover {
  background: #111;
}

.svc-icon {
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
}

.svc-icon.blue { color: var(--blue); }
.svc-icon.red  { color: var(--red); }

.svc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: #f0e8d5;
  margin-bottom: 0.5rem;
}

.svc-desc {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.8;
}

/* === PROCESS === */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  border: 1px solid var(--border);
}

.step {
  padding: 1.8rem 1.4rem;
  border-right: 1px solid var(--border);
}

.step:last-child {
  border-right: none;
}

.step-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: #161616;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.step-t {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.step-d {
  font-size: 0.74rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* === PORTFOLIO === */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 3rem;
}

.pg-item {
  overflow: hidden;
  background: #111;
  position: relative;
}

.pg-item.tall { grid-row: span 2; }
.pg-item.wide { grid-column: span 2; }

.pg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  filter: brightness(0.8);
  transition: filter 0.35s, transform 0.4s;
}

.pg-item:hover img {
  filter: brightness(1);
  transform: scale(1.04);
}

.pg-ov {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.pg-item:hover .pg-ov {
  background: rgba(0, 0, 0, 0.45);
}

.pg-tag {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid rgba(61, 184, 245, 0.35);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}

.pg-item:hover .pg-tag {
  opacity: 1;
}

/* === OFFER / RENT-BUY-CUSTOM === */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #1a1a1a;
  margin-top: 3rem;
}

.offer-card {
  padding: 2.8rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: transform 0.2s;
}

.offer-card.offer-blue {
  background: linear-gradient(160deg, #0d1a22 0%, #080808 60%);
  border-top: 3px solid var(--blue);
  box-shadow: 0 -6px 40px -10px rgba(61, 184, 245, 0.25);
}

.offer-card.offer-red {
  background: linear-gradient(160deg, #1a0d0d 0%, #080808 60%);
  border-top: 3px solid var(--red);
  box-shadow: 0 -6px 40px -10px rgba(230, 48, 48, 0.25);
}

.offer-card:hover {
  transform: translateY(-3px);
}

.offer-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.offer-num.blue {
  color: var(--blue);
  opacity: 0.3;
  text-shadow: 0 0 30px rgba(61, 184, 245, 0.5);
}

.offer-num.red {
  color: var(--red);
  opacity: 0.3;
  text-shadow: 0 0 30px rgba(230, 48, 48, 0.5);
}

.offer-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.offer-icon.blue {
  color: var(--blue);
  text-shadow: 0 0 20px rgba(61, 184, 245, 0.7);
}

.offer-icon.red {
  color: var(--red);
  text-shadow: 0 0 20px rgba(230, 48, 48, 0.7);
}

.offer-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1;
}

.offer-card.offer-blue .offer-title {
  text-shadow: 0 0 40px rgba(61, 184, 245, 0.2);
}

.offer-card.offer-red .offer-title {
  text-shadow: 0 0 40px rgba(230, 48, 48, 0.2);
}

.offer-desc {
  font-size: 0.86rem;
  color: #888;
  line-height: 1.85;
  margin-bottom: 1.6rem;
}

.offer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 2.2rem;
  flex: 1;
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #777;
}

.offer-list li i {
  font-size: 0.85rem;
  flex-shrink: 0;
}

.offer-card.offer-blue .offer-list li i {
  color: var(--blue);
  text-shadow: 0 0 8px rgba(61, 184, 245, 0.6);
}

.offer-card.offer-red .offer-list li i {
  color: var(--red);
  text-shadow: 0 0 8px rgba(230, 48, 48, 0.6);
}

.offer-btn {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1rem 1.4rem;
  border-radius: 2px;
  text-align: center;
  transition: all 0.2s;
}

.btn-ghost-blue {
  background: rgba(61, 184, 245, 0.1);
  border: 1px solid rgba(61, 184, 245, 0.5);
  color: var(--blue);
  text-shadow: 0 0 12px rgba(61, 184, 245, 0.4);
}

.btn-ghost-blue:hover {
  background: rgba(61, 184, 245, 0.2);
  border-color: var(--blue);
  box-shadow: 0 0 20px rgba(61, 184, 245, 0.2);
}

.btn-ghost-red {
  background: rgba(230, 48, 48, 0.1);
  border: 1px solid rgba(230, 48, 48, 0.5);
  color: var(--red);
  text-shadow: 0 0 12px rgba(230, 48, 48, 0.4);
}

.btn-ghost-red:hover {
  background: rgba(230, 48, 48, 0.2);
  border-color: var(--red);
  box-shadow: 0 0 20px rgba(230, 48, 48, 0.2);
}

/* === STATS === */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
}

.stat {
  background: var(--bg-dark);
  padding: 2rem 1.5rem;
  text-align: center;
}

.stat-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-n.blue {
  color: var(--blue);
  text-shadow: 0 0 30px rgba(61, 184, 245, 0.6), 0 0 60px rgba(61, 184, 245, 0.2);
}
.stat-n.red  {
  color: var(--red);
  text-shadow: 0 0 30px rgba(230, 48, 48, 0.6), 0 0 60px rgba(230, 48, 48, 0.2);
}

.stat-l {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* === TESTIMONIAL === */
.testimonial {
  border-left: 2px solid var(--red);
  padding: 0 0 0 1.5rem;
  margin: 3rem 0 0;
}

.testimonial p {
  font-size: 0.95rem;
  color: #aaa;
  font-style: italic;
  line-height: 1.85;
  margin-bottom: 0.5rem;
}

.testimonial cite {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-style: normal;
}

/* === INDUSTRIES === */
.industries {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
}

.ind {
  background: var(--bg-dark);
  padding: 1.4rem 1rem;
  text-align: center;
  transition: background 0.2s;
}

.ind:hover {
  background: #111;
}

.ind-icon {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.ind-icon.blue { color: var(--blue); }
.ind-icon.red  { color: var(--red); }

.ind-name {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* === PROCESS PHOTOS === */
.process-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 3rem;
}

.pp-item {
  position: relative;
  overflow: hidden;
  background: #111;
}

.pp-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: brightness(0.75);
  transition: filter 0.3s, transform 0.4s;
  display: block;
}

.pp-item:hover img {
  filter: brightness(0.95);
  transform: scale(1.03);
}

.pp-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.2rem 1.1rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: #aaa;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
}

/* === CONTACT === */
.contact-lead {
  font-size: 0.95rem;
  color: #999;
  line-height: 1.85;
  max-width: 600px;
  margin: 1rem 0 3rem;
}

.reach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: #1a1a1a;
  margin-bottom: 2.5rem;
}

.reach-card {
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
  position: relative;
}

.reach-card:nth-child(odd) {
  background: linear-gradient(160deg, #0d1a22 0%, #080808 65%);
  border-top: 3px solid var(--blue);
  box-shadow: 0 -6px 40px -10px rgba(61, 184, 245, 0.2);
}

.reach-card:nth-child(even) {
  background: linear-gradient(160deg, #1a0d0d 0%, #080808 65%);
  border-top: 3px solid var(--red);
  box-shadow: 0 -6px 40px -10px rgba(230, 48, 48, 0.2);
}

.reach-card:hover {
  transform: translateY(-3px);
}

.reach-icon-wrap {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.reach-icon-wrap.blue {
  color: var(--blue);
  text-shadow: 0 0 20px rgba(61, 184, 245, 0.7);
}

.reach-icon-wrap.red {
  color: var(--red);
  text-shadow: 0 0 20px rgba(230, 48, 48, 0.7);
}

.reach-label {
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.reach-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.reach-card:nth-child(odd) .reach-val {
  text-shadow: 0 0 20px rgba(61, 184, 245, 0.15);
}

.reach-card:nth-child(even) .reach-val {
  text-shadow: 0 0 20px rgba(230, 48, 48, 0.15);
}

.reach-hint {
  font-size: 0.72rem;
  color: #666;
  line-height: 1.5;
}

.contact-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 0 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.ci-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.ci-row i {
  color: var(--blue);
  font-size: 15px;
  flex-shrink: 0;
}

.ci-row a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.ci-row a:hover {
  color: var(--blue);
}

.form-success {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #3eb87a;
  letter-spacing: 0.06em;
  padding: 0.6rem 0;
}

.form-success.visible {
  display: flex;
}

/* === FOOTER === */
footer {
  padding: 3rem 2.5rem;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-ghost);
}

.footer-emails {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-emails a {
  font-size: 0.7rem;
  color: #333;
  transition: color 0.2s;
}

.footer-emails a:hover {
  color: var(--blue);
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.footer-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  opacity: 0.35;
}

.footer-copy {
  font-size: 0.6rem;
  color: #222;
  letter-spacing: 0.08em;
  text-align: center;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.footer-phone {
  font-size: 0.7rem;
  color: #333;
  letter-spacing: 0.04em;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
}

.footer-nav a {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-ghost);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--red);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .parallax-hero,
  .page-hero,
  .parallax-divider {
    background-attachment: scroll;
  }
}
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .reach-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .step {
    border-bottom: 1px solid var(--border);
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .process-photos {
    grid-template-columns: 1fr;
  }

  .pp-item img {
    height: 220px;
  }
}

@media (max-width: 768px) {
  #navbar {
    padding: 0.6rem 1.2rem;
  }

  .logo-img {
    width: 56px;
    height: 56px;
  }

  .logo-txt {
    font-size: 1.4rem;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: block;
  }

  .hero {
    padding: 4rem 1.2rem 3rem;
    min-height: 75vh;
  }

  .section {
    padding: 3.5rem 1.2rem;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .reach-grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured-grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured-grid .pg-item img {
    height: 200px;
  }

  .page-hero {
    min-height: 45vh;
    padding: 3rem 1.2rem;
  }

  .par-stat-row {
    gap: 2rem;
  }

  .cta-strip {
    padding: 3.5rem 1.2rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pg-item.tall { grid-row: span 1; }
  .pg-item.wide { grid-column: span 2; }

  footer {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-right {
    align-items: center;
  }

  .footer-nav {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(3.8rem, 18vw, 5rem);
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .pg-item.wide { grid-column: span 1; }

  .process-row {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
}
