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

/* ── Custom Properties ─────────────────────────────── */
:root {
  --yellow:       #C8DF00;
  --yellow-hover: #b0c400;
  --black:        #1A1A1A;
  --grey:         #3D3D3D;
  --grey-light:   #4a4a4a;
  --white:        #FFFFFF;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;
  --nav-height:   72px;
  --max-width:    1200px;
  --radius:       4px;
  --transition:   0.2s ease;
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography ────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1 { font-size: clamp(3.2rem, 8vw, 7rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h4 { font-size: 1.4rem; }
p  { line-height: 1.75; color: rgba(255,255,255,0.75); }

/* ── Utilities ─────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section         { padding: 5rem 0; }
.section--grey   { background-color: var(--grey); }
.section--yellow { background-color: var(--yellow); }
.section--carbon {
  background: transparent;
}
.section--carbon::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: var(--black);
  background-image:
    linear-gradient(to bottom, transparent 0%, var(--black) 18%),
    linear-gradient(45deg,  #222 25%, transparent 25%, transparent 75%, #222 75%),
    linear-gradient(-45deg, #222 25%, transparent 25%, transparent 75%, #222 75%),
    linear-gradient(45deg,  #1e1e1e 25%, transparent 25%, transparent 75%, #1e1e1e 75%),
    linear-gradient(-45deg, #1e1e1e 25%, transparent 25%, transparent 75%, #1e1e1e 75%);
  background-size: auto, 6px 6px, 6px 6px, 6px 6px, 6px 6px;
  background-position: 0 0, 0 0, 0 3px, 3px -3px, -3px 0;
}
.text-yellow     { color: var(--yellow); }
.text-center     { text-align: center; }

.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--yellow);
  margin: 1.25rem 0 1.75rem;
}
.divider--center { margin-left: auto; margin-right: auto; }

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn--primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}
.btn--primary:hover {
  background: var(--yellow-hover);
  border-color: var(--yellow-hover);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}
.btn--dark {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}
.btn--dark:hover {
  background: var(--grey);
  transform: translateY(-2px);
}

/* ── Navigation ────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--yellow);
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 62px;
  width: auto;
  display: block;
  border-radius: var(--radius);
}
.nav__links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.25rem;
}
.nav__link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius);
  transition: color var(--transition);
  display: block;
}
.nav__link:hover,
.nav__link.active { color: var(--yellow); }
.nav__phone {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--yellow);
  letter-spacing: 0.05em;
  margin-left: 1.25rem;
  transition: color var(--transition);
}
.nav__phone:hover { color: var(--yellow-hover); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: #111;
  border-bottom: 2px solid var(--yellow);
  padding: 2rem 1.5rem;
  z-index: 999;
}
.nav__mobile.open { display: block; }
.nav__mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav__mobile-link {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.8);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: block;
  transition: color var(--transition);
}
.nav__mobile-link:hover,
.nav__mobile-link.active { color: var(--yellow); }
.nav__mobile-phone {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--yellow);
  margin-top: 1.5rem;
}

/* ── Page Hero (inner pages) ───────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 4rem;
  background: var(--grey);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(26,26,26,0.88) 0%, rgba(26,26,26,0.72) 55%, rgba(26,26,26,0.5) 100%);
  z-index: 0;
}
.page-hero--blend { position: relative; z-index: 2; }
.page-hero--blend::after { display: none; }
.page-hero--blend .page-hero__bg {
  background:
    linear-gradient(to bottom, transparent 60%, var(--black) 100%),
    linear-gradient(100deg, rgba(26,26,26,0.88) 0%, rgba(26,26,26,0.72) 55%, rgba(26,26,26,0.5) 100%);
}
.page-hero__accent {
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: var(--yellow);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.04;
  pointer-events: none;
}

/* ── Home Hero ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
  background-color: var(--black);
  /* Swap in the van photo: background-image: url('../images/van-hero.jpg'); */
  background-size: cover;
  background-position: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(26,26,26,0.96) 0%, rgba(26,26,26,0.88) 50%, rgba(26,26,26,0.55) 100%);
  z-index: 0;
}
.hero__accent {
  position: absolute;
  top: 0; right: -8%;
  width: 55%;
  height: 100%;
  background: var(--yellow);
  clip-path: polygon(28% 0%, 100% 0%, 100% 100%, 8% 100%);
  opacity: 0.055;
  z-index: 0;
}
.hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 0;
}
.hero__bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 14rem;
  background: linear-gradient(to bottom, transparent, var(--grey));
  z-index: 1;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  max-width: 680px;
}
.hero__title {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero__title .accent { color: var(--yellow); display: block; }
.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero__stats {
  display: flex;
  gap: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero__stat-value {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--yellow);
  line-height: 1;
  display: block;
}
.hero__stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.3rem;
  display: block;
}

/* ── Services Strip (home) ─────────────────────────── */
.services-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  margin-top: 3rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.strip-item {
  background: var(--black);
  padding: 2rem 1.25rem;
  text-align: center;
  border-top: 3px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.strip-item:hover {
  border-top-color: var(--yellow);
  background: rgba(255,255,255,0.03);
}
.strip-item__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.strip-item__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--white);
}

/* ── About Teaser (home) ───────────────────────────── */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-teaser__visual {
  position: relative;
}
.about-teaser__img {
  aspect-ratio: 4/5;
  background: var(--grey);
  border-radius: var(--radius);
  overflow: hidden;
  /* Swap in photo: background-image: url('../images/mitch-photo.jpg'); */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.06);
}
.about-teaser__img-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.2);
  font-size: 0.85rem;
  padding: 2rem;
}
.about-teaser__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--yellow);
  color: var(--black);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.about-teaser__badge-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  line-height: 1;
  display: block;
}
.about-teaser__badge-txt {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.2rem;
}
.about-teaser__text p { margin-bottom: 1rem; }
.about-teaser__text p:last-of-type { margin-bottom: 2rem; }

/* ── Features / Why Choose ─────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.feature {
  background: var(--grey);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  border-bottom: 3px solid transparent;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.feature:hover {
  border-bottom-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--yellow);
  flex-shrink: 0;
}
.feature__title {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.feature__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
}

/* ── Mobile Advantage Rows ─────────────────────────── */
.mobile-advantage-header {
  margin-bottom: 1rem;
}
.mobile-advantage {
  margin-top: 2rem;
}
.mobile-advantage__row {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  align-items: center;
  padding: 2.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-advantage__row:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-advantage__left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.mobile-advantage__left .feature__icon {
  margin-bottom: 0;
  flex-shrink: 0;
}
.mobile-advantage__title {
  font-size: 1.5rem;
  color: var(--white);
  margin: 0;
}
.mobile-advantage__desc {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin: 0;
}

/* ── CTA Banner ────────────────────────────────────── */
.cta-banner {
  background: var(--yellow);
  padding: 4.5rem 0;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner__title {
  color: var(--black);
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.cta-banner__sub {
  color: rgba(26,26,26,0.65);
  margin-top: 0.4rem;
  font-size: 1rem;
}
.cta-banner__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── Services Grid (services page) ────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--grey);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid var(--yellow);
  padding: 2.25rem;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.service-card__icon {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--yellow);
  width: 36px;
  height: 36px;
}
.service-card__title {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.service-card__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* Pricing callout */
.pricing-callout {
  background: var(--yellow);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.pricing-callout__text h3 {
  color: var(--black);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.pricing-callout__text p { color: rgba(26,26,26,0.7); font-size: 0.95rem; }

/* ── Stats Row ─────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  margin-top: 3rem;
  border-top: 3px solid var(--yellow);
}
.stat {
  background: var(--black);
  padding: 2.5rem 2rem;
  text-align: center;
}
.section--grey .stat { background: var(--grey); }
.section--grey .stats-row { margin-top: 0; }
.stat__number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--yellow);
  line-height: 1;
  display: block;
}
.stat__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.5rem;
  display: block;
}

/* ── About Page ────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: start;
}
.about-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.about-photo__frame {
  aspect-ratio: 3/4;
  background: var(--grey);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  /* Swap in real photo: background-image: url('../images/mitch.jpg'); */
  background-size: cover;
  background-position: center top;
}
.about-photo__placeholder {
  text-align: center;
  color: rgba(255,255,255,0.2);
  font-size: 0.85rem;
  padding: 2rem;
}
.about-photo__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--yellow);
  color: var(--black);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  z-index: 2;
}
.about-photo__badge-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  line-height: 1;
  display: block;
}
.about-photo__badge-txt {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
  display: block;
}
.about-content p { margin-bottom: 1.1rem; }
.about-content p:last-of-type { margin-bottom: 2rem; }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--grey);
  padding: 2rem;
  border-radius: var(--radius);
  border-top: 3px solid var(--yellow);
  transition: transform var(--transition);
}
.value-card:hover { transform: translateY(-4px); }
.value-card__icon { display: block; margin-bottom: 1rem; color: var(--yellow); width: 32px; height: 32px; }
.value-card__title { font-size: 1.4rem; color: var(--white); margin-bottom: 0.5rem; }
.value-card__desc  { font-size: 0.9rem; color: rgba(255,255,255,0.6); }

/* Social strip */
.social-strip {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  background: var(--grey);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  transition: all var(--transition);
}
.social-link:hover {
  background: rgba(200,223,0,0.1);
  border-color: var(--yellow);
  color: var(--yellow);
}

/* ── Gallery ───────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  /* Swap in real photos: background-image: url('../images/job-01.jpg'); */
  background-size: cover;
  background-position: center;
}
.gallery-item:nth-child(4)  { grid-column: span 2; aspect-ratio: auto; min-height: 280px; }
.gallery-item:nth-child(7)  { grid-column: span 2; aspect-ratio: auto; min-height: 280px; }


.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0);
  transition: background 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.gallery-item:hover .gallery-item__overlay { background: rgba(26,26,26,0.55); }
.gallery-item__label {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--white);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s;
}
.gallery-item:hover .gallery-item__label {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.15);
  font-size: 0.8rem;
  text-align: center;
  pointer-events: none;
}
.gallery-item__placeholder svg { opacity: 0.2; }

/* Social CTA cards */
.social-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.social-cta__card {
  background: var(--grey);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 3px solid var(--yellow);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.social-cta__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.social-cta__icon {
  width: 56px;
  height: 56px;
  background: rgba(200,223,0,0.08);
  border: 2px solid var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}
.social-cta__platform {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--white);
}
.social-cta__count {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--yellow);
  letter-spacing: 0.08em;
}
.social-cta__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
  margin-bottom: 0.5rem;
}
@media (max-width: 600px) {
  .social-cta { grid-template-columns: 1fr; }
}

/* ── Contact Page ──────────────────────────────────── */
.contact-form-panel {
  background: var(--grey);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 3px solid var(--yellow);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}
.contact-form-panel .form {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-form-panel .form-group--grow {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-form-panel .form-group--grow textarea {
  flex: 1;
  min-height: 140px;
}

.emergency-callout {
  background: var(--yellow);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.emergency-callout__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.6);
  margin-bottom: 0.5rem;
}
.emergency-callout__heading {
  font-size: 2rem;
  color: var(--black);
  margin-bottom: 0.6rem;
}
.emergency-callout__desc {
  font-size: 0.9rem;
  color: rgba(26,26,26,0.7);
  margin-bottom: 1.25rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 5rem;
  align-items: stretch;
  position: relative;
  z-index: 3;
}
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
input, select, textarea {
  background: var(--grey);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: var(--radius);
  transition: border-color var(--transition);
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(200,223,0,0.1);
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.28); }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23C8DF00' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
  cursor: pointer;
}
select option { background: var(--grey); }
textarea { resize: vertical; min-height: 140px; }

.form-success {
  display: none;
  background: rgba(200,223,0,0.08);
  border: 1px solid rgba(200,223,0,0.4);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.form-success.show { display: block; }
.form-success__icon { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; }
.form-success h3 { color: var(--yellow); margin-bottom: 0.5rem; }
.form-success p  { color: rgba(255,255,255,0.65); font-size: 0.95rem; }

.contact-sidebar { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-block { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-item__icon {
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--yellow);
  margin-top: 2px;
}
.contact-info-item__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--yellow);
  display: block;
  margin-bottom: 0.2rem;
}
.contact-info-item__value {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.5;
}
.contact-info-item__value a { color: var(--white); transition: color var(--transition); }
.contact-info-item__value a:hover { color: var(--yellow); }

.service-area-box {
  background: var(--grey);
  border-radius: var(--radius);
  padding: 1.75rem;
  border-left: 3px solid var(--yellow);
  flex: 1;
}
.service-area-box__title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.service-area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.area-tag {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
}

/* ── Footer ────────────────────────────────────────── */
.footer {
  background: #111;
  border-top: 2px solid var(--yellow);
  padding: 2.75rem 0 1.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}
.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  color: var(--white);
  display: block;
}
.footer__brand-sub {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--yellow);
  display: block;
  margin-bottom: 0.75rem;
}
.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
}
.footer__col-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.25rem;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__link:hover { color: var(--yellow); }
.footer__contact-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.7rem;
}
.footer__contact-line svg { color: var(--yellow); flex-shrink: 0; }
.footer__contact-line a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer__contact-line a:hover { color: var(--yellow); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer__social { display: flex; gap: 0.6rem; }
.footer__social-btn {
  width: 38px;
  height: 38px;
  background: var(--grey);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
  color: rgba(255,255,255,0.7);
}
.footer__social-btn:hover { background: var(--yellow); color: var(--black); }

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-strip { grid-template-columns: repeat(4, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > *:first-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav__links, .nav__phone { display: none; }
  .nav__hamburger { display: flex; }

  .about-teaser,
  .about-story,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-teaser__badge { right: 0; }
  .about-photo__badge  { right: 0; }

  .features { grid-template-columns: 1fr 1fr; }
  .mobile-advantage__row { grid-template-columns: 1fr; gap: 0.75rem; }
  .services-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(7) { grid-column: span 1; min-height: auto; aspect-ratio: 4/3; }
}

@media (max-width: 600px) {
  :root { --nav-height: 64px; }
  .section { padding: 3.5rem 0; }

  h1 { font-size: clamp(2.8rem, 12vw, 5rem); }

  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__stats { gap: 2rem; }

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

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

  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__actions { justify-content: center; }

  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__grid > *:first-child { grid-column: auto; }

  .pricing-callout { flex-direction: column; }
}
