/* ===== JERSEY JAYS CORNHOLE — REDESIGNED STYLESHEET ===== */

:root {
  --red:        #CC0000;
  --red-dark:   #990000;
  --red-light:  #e60000;
  --black:      #080808;
  --dark:       #101010;
  --dark-2:     #181818;
  --dark-3:     #202020;
  --dark-4:     #282828;
  --border:     rgba(255,255,255,0.07);
  --border-med: rgba(255,255,255,0.12);
  --white:      #ffffff;
  --off-white:  #f0f0f0;
  --gray-light: #aaaaaa;
  --gray:       #666666;
  --gray-dark:  #333333;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Barlow+Condensed:wght@600;700;800;900&display=swap');

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color 0.25s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }

.display-font { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; text-transform: uppercase; letter-spacing: 0.01em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.section-title span { color: var(--red); }

.section-body {
  font-size: 1rem;
  color: var(--gray-light);
  line-height: 1.75;
  max-width: 580px;
}

/* ===== LAYOUT ===== */
.container  { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

.section    { padding: 7rem 0; }
.section-sm { padding: 4rem 0; }

.center { text-align: center; }
.center .section-body { margin: 0 auto; }
.center .eyebrow { justify-content: center; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(204,0,0,0.35); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.06); transform: translateY(-2px); }

.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,255,255,0.15); }

.btn-group { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(24px);
  border-bottom-color: var(--border-med);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 64px; width: auto; object-fit: contain; display: block; }

/* Nav Links */
.nav-links { display: flex; align-items: center; gap: 0.1rem; }
.nav-links > a, .nav-dropdown > a {
  padding: 0.5rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  border-radius: 3px;
  transition: color 0.2s;
}
.nav-links > a:hover, .nav-dropdown:hover > a { color: var(--white); }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%);
  background: var(--dark-2);
  border: 1px solid var(--border-med);
  border-radius: 6px;
  min-width: 200px;
  padding: 0.4rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s, top 0.2s;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: all; top: calc(100% + 6px); }
.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: all 0.2s;
}
.nav-dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.06); padding-left: 1.25rem; }

.nav-cta {
  margin-left: 0.5rem;
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 3px;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  transition: background 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { background: var(--red-dark) !important; box-shadow: 0 4px 20px rgba(204,0,0,0.4) !important; }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; background: none; border: none; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; background: rgba(8,8,8,0.99);
  z-index: 999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  padding: 0.3rem 1.5rem;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--red); }
.mobile-menu-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}

/* Full-bleed background image */
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,8,8,0.96) 0%,
    rgba(8,8,8,0.88) 45%,
    rgba(8,8,8,0.50) 100%
  );
  z-index: 1;
}
/* subtle red glow bottom-left */
.hero-glow {
  position: absolute; bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(204,0,0,0.18) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 8rem 1.5rem 5rem;
  width: 100%;
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(204,0,0,0.4);
  border-radius: 100px;
  background: rgba(204,0,0,0.08);
  font-size: 0.72rem; font-weight: 700;
  color: #ff6666; letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-pill-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.8rem, 9vw, 8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-h1 .red { color: var(--red); }
.hero-h1 .stroke {
  -webkit-text-stroke: 2px white;
  color: transparent;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero-stats-row {
  display: flex; gap: 2.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--border-med);
  margin-top: 2.5rem;
}
.hero-stat-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem; font-weight: 900;
  color: var(--white); line-height: 1;
}
.hero-stat-val span { color: var(--red); }
.hero-stat-lbl {
  font-size: 0.7rem; color: var(--gray-light);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

/* Right-side image stack */
.hero-img-col {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 44%;
  display: flex; flex-direction: column;
  gap: 0;
  overflow: hidden;
}
.hero-img-panel {
  flex: 1; overflow: hidden; position: relative;
}
.hero-img-panel img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-img-panel:hover img { transform: scale(1.04); }
.hero-img-divider { height: 3px; background: var(--black); flex-shrink: 0; }

/* Scroll indicator */
.scroll-cue {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
  z-index: 10;
}
.scroll-cue i { font-size: 0.9rem; }
@keyframes float { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ===== TICKER ===== */
.ticker {
  background: var(--red);
  padding: 0.9rem 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  animation: ticker 35s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 0 2rem;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.95);
  white-space: nowrap;
}
.ticker-sep { width: 4px; height: 4px; background: rgba(255,255,255,0.5); border-radius: 50%; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== STATS BAND ===== */
.stats-band { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-band-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-block {
  padding: 3.5rem 2rem;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.3s;
}
.stat-block:last-child { border-right: none; }
.stat-block:hover { background: rgba(204,0,0,0.04); }
.stat-block::after {
  content: ''; position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--red);
  transition: width 0.4s;
}
.stat-block:hover::after { width: 60%; }

.stat-block-icon {
  width: 48px; height: 48px;
  background: rgba(204,0,0,0.1);
  border: 1px solid rgba(204,0,0,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--red);
  font-size: 1.1rem;
}
.stat-block-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 900; color: var(--white); line-height: 1;
}
.stat-block-val sup { color: var(--red); font-size: 0.6em; }
.stat-block-lbl {
  font-size: 0.72rem; color: var(--gray-light);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-top: 0.5rem;
}

/* ===== IMAGE GALLERY STRIP ===== */
.gallery-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 4px;
  background: var(--black);
}
.gallery-item { overflow: hidden; position: relative; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== SERVICE CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); }
.svc-card {
  background: var(--dark);
  padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}
.svc-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.svc-card:hover { background: var(--dark-2); }
.svc-card:hover::before { transform: scaleX(1); }

.svc-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 4rem; font-weight: 900;
  color: rgba(255,255,255,0.04); line-height: 1;
  margin-bottom: -0.5rem;
}
.svc-icon {
  width: 52px; height: 52px;
  background: rgba(204,0,0,0.1);
  border: 1px solid rgba(204,0,0,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1.15rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}
.svc-card:hover .svc-icon { background: var(--red); border-color: var(--red); color: white; }
.svc-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.75rem; }
.svc-card p { font-size: 0.88rem; color: var(--gray-light); line-height: 1.75; margin-bottom: 1.5rem; }
.svc-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.75rem; font-weight: 700;
  color: var(--red); text-transform: uppercase; letter-spacing: 0.1em;
}
.svc-card:hover .svc-link i { transform: translateX(4px); }
.svc-link i { transition: transform 0.25s; }

/* ===== IMAGE+CONTENT SPLIT ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; }
.split-img { position: relative; overflow: hidden; background: var(--dark-3); }
.split-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s; }
.split-img:hover img { transform: scale(1.04); }
.split-body {
  background: var(--dark);
  padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

/* ===== CHECK LIST ===== */
.check-list { display: flex; flex-direction: column; gap: 1rem; }
.check-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.25s, transform 0.25s;
}
.check-item:hover { border-color: rgba(204,0,0,0.3); transform: translateX(4px); }
.check-icon {
  width: 38px; height: 38px; min-width: 38px;
  border: 1px solid rgba(204,0,0,0.25);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 0.85rem;
  background: rgba(204,0,0,0.08);
}
.check-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.check-item p { font-size: 0.85rem; color: var(--gray-light); line-height: 1.6; margin: 0; }

/* ===== PROCESS STEPS ===== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); }
.process-step {
  background: var(--dark-2);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.3s;
}
.process-step:hover { background: var(--dark-3); }
.process-step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5rem; font-weight: 900;
  color: rgba(255,255,255,0.04); line-height: 1;
  position: absolute; top: 1rem; right: 1.5rem;
}
.process-step-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--border-med);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem;
  margin-bottom: 1.25rem;
}
.process-step h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.85rem; color: var(--gray-light); line-height: 1.7; }

/* ===== PHOTO MOSAIC (3-wide gallery) ===== */
.photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: var(--black);
}
.photo-cell { overflow: hidden; aspect-ratio: 4/3; position: relative; }
.photo-cell img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s; }
.photo-cell:hover img { transform: scale(1.06); }

/* ===== TESTIMONIALS ===== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.testi-card:hover { border-color: rgba(204,0,0,0.3); transform: translateY(-4px); }
.testi-stars { color: #FFB800; font-size: 0.75rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.testi-quote { font-size: 0.92rem; color: rgba(255,255,255,0.78); line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 0.85rem; }
.testi-av {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.88rem; }
.testi-role { font-size: 0.75rem; color: var(--gray-light); }

/* ===== CITY CARDS ===== */
.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); gap: 0.75rem; }
.city-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem; font-weight: 600;
  transition: all 0.2s;
}
.city-card:hover { border-color: var(--red); color: var(--white); background: rgba(204,0,0,0.06); transform: translateY(-2px); }
.city-card i { color: var(--red); font-size: 0.8rem; flex-shrink: 0; }

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative; overflow: hidden;
  padding: 8rem 0;
  text-align: center;
  background: var(--dark);
}
.cta-bg-img {
  position: absolute; inset: 0;
  width:100%; height:100%; object-fit:cover;
  opacity: 0.12;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,8,8,0.7), rgba(204,0,0,0.15), rgba(8,8,8,0.7));
}
.cta-inner { position: relative; z-index: 1; }
.cta-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.cta-h2 span { color: var(--red); }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.75; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 10rem 0 5rem;
  position: relative; overflow: hidden;
  background: var(--dark);
}
.page-hero-bg {
  position: absolute; inset: 0;
  width:100%; height:100%; object-fit:cover;
  opacity: 0.08;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.2) 0%, rgba(8,8,8,0.85) 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1rem;
}
.page-hero h1 span { color: var(--red); }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.6); max-width: 580px; line-height: 1.75; margin-top: 1rem; }

.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--gray-light); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--red); }
.breadcrumb span { color: var(--gray); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; }
.contact-info-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem; background: var(--dark-2);
  border: 1px solid var(--border); border-radius: 6px;
  margin-bottom: 1rem;
}
.contact-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: rgba(204,0,0,0.1); border: 1px solid rgba(204,0,0,0.2);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 0.95rem;
}
.contact-lbl { font-size: 0.7rem; color: var(--gray-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.15rem; }
.contact-val { font-weight: 600; font-size: 0.92rem; }

.form-wrap { background: var(--dark-2); border: 1px solid var(--border); border-radius: 8px; padding: 2.5rem; }
.form-group { margin-bottom: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-light); margin-bottom: 0.45rem; }
input, select, textarea {
  width: 100%;
  background: var(--dark-3); border: 1px solid var(--border-med);
  border-radius: 4px; padding: 0.875rem 1rem;
  color: var(--white); font-family: inherit; font-size: 0.92rem;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
  appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--gray); }
input:focus, select:focus, textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(204,0,0,0.1); }
select option { background: var(--dark-3); }
textarea { resize: vertical; min-height: 120px; }

/* ===== FOOTER ===== */
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3.5rem; }
.footer-logo-img { height: 100px; width: auto; object-fit: contain; display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.87rem; color: var(--gray-light); line-height: 1.75; margin-bottom: 1.5rem; max-width: 280px; }
.footer-social { display: none; }

.footer-col h4 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gray-light); margin-bottom: 1.25rem; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem; color: var(--gray);
}

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; }
.fade-up.d4 { transition-delay: 0.4s; }

/* ===== SERVICE CARD WITH IMAGE ===== */
.svc-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--dark-3); }
.svc-card-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s; }
.svc-card:hover .svc-card-img img { transform: scale(1.06); }
.svc-card-body { padding: 2rem; }
.svc-card-icon {
  width: 48px; height: 48px;
  background: rgba(204,0,0,0.1); border: 1px solid rgba(204,0,0,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1.1rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
}
.svc-card:hover .svc-card-icon { background: var(--red); border-color: var(--red); color: white; }
.svc-card-title { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.6rem; }
.svc-card-desc { font-size: 0.87rem; color: var(--gray-light); line-height: 1.7; margin-bottom: 1.25rem; }
.svc-card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.73rem; font-weight: 700; color: var(--red);
  text-transform: uppercase; letter-spacing: 0.1em;
  transition: gap 0.2s;
}
.svc-card:hover .svc-card-link { gap: 0.7rem; }

/* 4-col service card grid with image */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.svc-card { background: var(--dark); overflow: hidden; transition: background 0.3s; cursor: default; }
.svc-card:hover { background: var(--dark-2); }

/* ===== PROCESS CARDS ===== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); }
.process-card {
  background: var(--dark-2); padding: 2.5rem 2rem;
  position: relative; transition: background 0.3s;
}
.process-card:hover { background: var(--dark-3); }
.process-step {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5rem; font-weight: 900;
  color: rgba(255,255,255,0.06); line-height: 1;
  position: absolute; top: 1rem; right: 1.5rem;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.process-icon, .process-title, .process-desc {
  position: relative;
  z-index: 1;
}
.process-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--border-med); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem; margin-bottom: 1.25rem;
}
.process-title { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.5rem; }
.process-desc { font-size: 0.85rem; color: var(--gray-light); line-height: 1.7; }

/* ===== PHOTO MOSAIC (why-us section) ===== */
.photo-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 4px; }
.photo-row-main { overflow: hidden; border-radius: 6px 0 0 6px; aspect-ratio: 4/5; }
.photo-row-main img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s; }
.photo-row-main:hover img { transform: scale(1.04); }
.photo-row-side { display: flex; flex-direction: column; gap: 4px; }
.photo-row-side-top { overflow: hidden; flex: 1; }
.photo-row-side-top img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s; }
.photo-row-side-top:hover img { transform: scale(1.04); }
.photo-row-badge {
  background: var(--red); padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.photo-row-badge-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem; font-weight: 900; color: white; line-height: 1;
}
.photo-row-badge-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 0.25rem; }

/* ===== CTA aliases ===== */
.cta-title { font-family:'Barlow Condensed',sans-serif; font-size:clamp(2.5rem,6vw,5rem); font-weight:900; text-transform:uppercase; color:var(--white); line-height:1; margin-bottom:1.25rem; }
.cta-title span { color: var(--red); }
.cta-body { font-size:1rem; color:rgba(255,255,255,0.65); max-width:500px; margin:0 auto 2.5rem; line-height:1.75; }

/* ===== TESTI aliases ===== */
.testi-avatar { width:42px; height:42px; border-radius:50%; background:var(--red); display:flex; align-items:center; justify-content:center; font-weight:800; font-size:0.9rem; flex-shrink:0; }
.testi-name { font-weight:700; font-size:0.88rem; }

/* ===== GALLERY STRIP (4-col) ===== */
.gallery-strip { display: grid; grid-template-columns: repeat(4,1fr); height: 320px; gap: 4px; background: var(--black); }
.gallery-strip-img { overflow: hidden; }
.gallery-strip-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s; }
.gallery-strip-img:hover img { transform: scale(1.07); }

/* stat-block-num alias */
.stat-block-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 900; color: var(--white); line-height: 1;
}
.stat-block-lbl {
  font-size: 0.72rem; color: var(--gray-light);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-top: 0.5rem;
}

/* service-card generic (for about/services pages) */
.service-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s;
}
.service-card:hover { border-color: rgba(204,0,0,0.3); transform: translateY(-3px); }
.service-card-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 700; color: var(--red);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 1rem;
}

/* check-item strong */
.check-item strong { display: block; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }

/* split grid (why-us) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

/* city-services-list */
.city-services-list { display: flex; flex-direction: column; gap: 0.75rem; }
.city-service-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.city-service-item i { color: var(--red); flex-shrink: 0; }

/* section-header */
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .eyebrow { justify-content: center; }
.section-header.centered .section-body { margin: 0 auto; }

/* page-hero btn aliases */
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

/* contact aliases */
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; background: var(--dark-2); border: 1px solid var(--border); border-radius: 6px; margin-bottom: 1rem; }
.contact-info-icon { width:42px; height:42px; min-width:42px; background:rgba(204,0,0,0.1); border:1px solid rgba(204,0,0,0.2); border-radius:8px; display:flex; align-items:center; justify-content:center; color:var(--red); font-size:0.95rem; }
.contact-info-label { font-size:0.7rem; color:var(--gray-light); text-transform:uppercase; letter-spacing:0.1em; margin-bottom:0.15rem; }
.contact-info-value { font-weight:600; font-size:0.92rem; }
.contact-form-wrap { background:var(--dark-2); border:1px solid var(--border); border-radius:8px; padding:2.5rem; }
.social-link { width:36px; height:36px; background:var(--dark-3); border:1px solid var(--border-med); border-radius:5px; display:flex; align-items:center; justify-content:center; color:var(--gray-light); font-size:0.85rem; transition:all 0.25s; }
.social-link:hover { background:var(--red); border-color:var(--red); color:white; }

/* section-label alias (keep for backwards compat) */
.section-label { display:inline-flex; align-items:center; gap:0.6rem; font-size:0.7rem; font-weight:700; letter-spacing:0.18em; text-transform:uppercase; color:var(--red); margin-bottom:1rem; }
.section-label::before { content:''; display:block; width:28px; height:2px; background:var(--red); flex-shrink:0; }
.section-desc { font-size:1rem; color:var(--gray-light); line-height:1.75; max-width:580px; }

/* section-title span */
.section-title span { color: var(--red); }

/* feature list (about/services) */
.feature-list { display: flex; flex-direction: column; gap: 1rem; }
.feature-item { display: flex; align-items: flex-start; gap: 1rem; }
.feature-item-icon { width:44px; height:44px; min-width:44px; background:rgba(204,0,0,0.1); border:1px solid rgba(204,0,0,0.2); border-radius:8px; display:flex; align-items:center; justify-content:center; color:var(--red); font-size:0.9rem; }
.feature-item h4 { font-size:0.95rem; font-weight:700; margin-bottom:0.2rem; }
.feature-item p { font-size:0.85rem; color:var(--gray-light); line-height:1.6; margin:0; }

/* service-icon (for service-detail page) */
.service-icon { width:52px; height:52px; background:rgba(204,0,0,0.1); border:1px solid rgba(204,0,0,0.2); border-radius:10px; display:flex; align-items:center; justify-content:center; color:var(--red); font-size:1.15rem; margin-bottom:1rem; }

/* contact section */
.contact-section { background: var(--black); }

/* page-hero grid-2 */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ===== FOOTER PHOTO WALL ===== */
.footer-photo-wall {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}
.photo-wall-header {
  text-align: center;
  padding: 0 2rem 2.5rem;
}
.photo-wall-header .eyebrow { margin-bottom: 0.75rem; }
.photo-wall-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 0;
}
.photo-wall-header h2 span { color: var(--red); }

/* Single-row strip — always one line, full width, every device */
.photo-wall-strip {
  display: flex;
  width: 100%;
  height: 220px;
  gap: 3px;
  overflow: hidden;
}
.photo-wall-strip-item {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  position: relative;
}
.photo-wall-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.photo-wall-strip-item:hover img { transform: scale(1.07); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .grid-4, .services-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stats-band-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-block:nth-child(2) { border-right: none; }
  .stat-block:nth-child(3) { border-top: 1px solid var(--border); border-right: 1px solid var(--border); }
  .stat-block:nth-child(4) { border-top: 1px solid var(--border); }
  .hero-img-col { display: none; }
  .hero-overlay { background: linear-gradient(to bottom, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.85) 100%); }
  .photo-wall-strip { height: 180px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4, .services-grid, .process-grid, .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-band-inner { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split-img { min-height: 280px; }
  .split-body { padding: 3rem 1.5rem; }
  .split.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.tall { grid-row: auto; }
  .photo-row { grid-template-columns: 1fr 1fr; }
  .hero-stats-row { flex-wrap: wrap; gap: 1.5rem; }
  .section { padding: 4rem 0; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .cta-section { padding: 5rem 0; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-wall-strip { height: 140px; }
}

/* ===== FAQ SECTION ===== */
.faq-grid { display: flex; flex-direction: column; gap: 1rem; max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--red); }
.faq-q {
  padding: 1.4rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--white);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; color: var(--red); font-size: 1.4rem; font-weight: 400; flex-shrink: 0; transition: transform 0.2s; }
.faq-item[open] .faq-q::after { content: '\2212'; }
.faq-a {
  padding: 0 1.75rem 1.4rem;
  color: var(--gray-light);
  font-size: 0.92rem;
  line-height: 1.75;
  margin: 0;
}
