/* ============ RESET / BASE ============ */
:root {
  --navy: #1a2332;
  --navy-deep: #0f1620;
  --navy-soft: #253044;
  --grey: #c9ccd1;
  --grey-light: #e8eaed;
  --grey-bg: #f5f6f8;
  --text: #1a1a1a;
  --text-muted: #5a6170;
  --white: #ffffff;
  --accent: #c9a15a;         /* warm muted gold for CTAs */
  --accent-dark: #a88341;

  --radius: 6px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 20px rgba(15, 22, 32, 0.12);
  --shadow-lg: 0 20px 50px rgba(15, 22, 32, 0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--accent); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-lead {
  color: var(--text-muted);
  margin-top: 14px;
  font-size: 1.05rem;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-primary {
  background: var(--accent);
  color: var(--navy);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  background: var(--navy);
  color: var(--white);
  z-index: 100;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px 24px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  height: 52px;
}
.logo {
  height: 44px;
  width: auto;
}
.primary-nav ul { display: flex; gap: 28px; }
.primary-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--grey);
  transition: color 0.2s ease;
  padding: 8px 0;
  position: relative;
}
.primary-nav a:hover { color: var(--white); }
.primary-nav a:hover::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--accent);
}

.header-cta { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.header-phone {
  color: var(--grey);
  font-weight: 600;
  font-size: 0.95rem;
}
.header-phone:hover { color: var(--white); }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(15, 22, 32, 0.92) 0%,
    rgba(15, 22, 32, 0.75) 45%,
    rgba(15, 22, 32, 0.35) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 900px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--grey-light);
  max-width: 600px;
  margin-bottom: 36px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============ INTRO ============ */
.intro { padding: 96px 0; background: var(--white); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.intro-body p + p { margin-top: 18px; }
.intro-body p { color: var(--text-muted); font-size: 1.05rem; }

/* ============ SERVICES ============ */
.services { padding: 96px 0; background: var(--grey-bg); }
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.services-grid--4 .service-card {
  flex: 0 1 calc(25% - 18px);
}
.service-img--carousel {
  overflow: hidden;
}
.service-slides {
  display: flex;
  transition: transform 0.6s ease;
}
.service-slides img {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-img { aspect-ratio: 4/3; overflow: hidden; }
.service-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img img { transform: scale(1.05); }
.service-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.service-body h3 { margin-bottom: 10px; }
.service-body p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 16px; flex: 1; }
.service-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  align-self: flex-start;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}
.service-link:hover { color: var(--accent-dark); }

/* ============ STATS ============ */
.stats { background: var(--navy); padding: 48px 0; color: var(--white); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}
.stats-grid strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stats-grid span {
  display: block;
  color: var(--grey);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.stat-google { display: flex; align-items: center; justify-content: center; }
.google-review-img { height: 4.2rem; width: auto; }

/* ============ REVIEW TICKER ============ */
.review-ticker {
  background: var(--grey-bg);
  padding: 28px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 60s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-content {
  display: flex;
  gap: 20px;
  padding-right: 20px;
}
.review-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  min-width: max-content;
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.review-body { display: flex; flex-direction: column; gap: 2px; }
.review-stars {
  color: #FBBC05;
  font-size: 0.8rem;
  letter-spacing: 1px;
}
.review-body p {
  font-size: 0.85rem;
  color: var(--text);
  margin: 0;
}
.review-g {
  height: 22px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.7;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes ticker-scroll-vertical {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* ============ WORK GRID ============ */
.work { padding: 96px 0; background: var(--white); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.work-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
}
.work-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s ease;
}
.work-item:hover img { transform: scale(1.06); }
.work-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,22,32,0.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.work-item:hover::after { opacity: 1; }
.work-label {
  position: absolute;
  left: 16px; bottom: 16px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.work-item:hover .work-label { opacity: 1; transform: translateY(0); }
.work-item--placeholder {
  background: var(--grey-bg);
  border: 2px dashed var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-item--placeholder .work-label {
  position: static;
  opacity: 1;
  transform: none;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.work-gallery-link {
  text-align: center;
  margin-top: 28px;
}
.gallery-link {
  color: var(--navy);
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}
.gallery-link:hover { color: var(--accent-dark); }
.gallery-arrow {
  font-size: 1.3rem;
  transition: transform 0.2s ease;
}
.gallery-link:hover .gallery-arrow { transform: translateX(6px); }

/* ============ BEFORE / AFTER ============ */
.before-after-section { padding: 96px 0; background: var(--grey-bg); }
.ba-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-before {
  clip-path: inset(0 50% 0 0);
  will-change: clip-path;
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--grey);
  transform: translateX(-50%);
  z-index: 3;
  will-change: left;
}
.ba-handle-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 64px;
  background: var(--grey);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.ba-handle-knob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--white);
  border: 2px solid var(--grey);
  color: var(--navy);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
.ba-label {
  position: absolute;
  top: 16px;
  padding: 6px 12px;
  background: rgba(15, 22, 32, 0.8);
  color: var(--white);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
}
.ba-label-before { left: 16px; }
.ba-label-after { right: 16px; }

/* Before/after carousel navigation */
.ba-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ba-carousel .ba-slider { display: none; flex: 1; }
.ba-carousel .ba-slider.is-active { display: block; }
.ba-nav {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  transition: background 0.2s ease, transform 0.15s ease;
}
.ba-nav:hover { background: var(--navy-soft); transform: scale(1.08); }

/* ============ GALLERY ============ */
.gallery-page { padding-bottom: 96px; }
.gallery-hero { margin-bottom: 48px; }
.gallery-title-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
}
.gallery-logo {
  height: 91px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
  margin-top: 10px;
}
.gallery-title-row h1 { margin: 0; }
.gallery-title-row .section-lead { margin-top: 6px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.carousel {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease;
}
.carousel-slide {
  min-width: 100%;
  height: 100%;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.carousel:hover .carousel-nav { opacity: 1; }
.carousel-nav--prev { left: 10px; }
.carousel-nav--next { right: 10px; }
.carousel-nav:hover { background: var(--white); }

.project-card-label {
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}
.project-card--locked {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey-bg);
  border: 2px dashed var(--grey);
}
.locked-content { text-align: center; padding: 24px; }
.locked-icon { font-size: 2rem; margin-bottom: 12px; opacity: 0.5; }
.locked-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.locked-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

/* ============ PROJECT MODAL ============ */
.project-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-in 0.25s ease;
}
.project-modal[hidden] { display: none; }
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 22, 32, 0.85);
}
.modal-content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 1000px;
  width: 92%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px 32px 32px;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover { color: var(--navy); }
.modal-title {
  margin-bottom: 24px;
  font-size: 1.4rem;
}
.modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.modal-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.modal-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}
@keyframes modal-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-in 0.2s ease;
}
.lightbox[hidden] { display: none; }
.lightbox-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 2.4rem;
  color: var(--white);
  cursor: pointer;
  z-index: 2;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.3); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ============ CONTACT ============ */
.contact-cta { padding: 96px 0; background: var(--navy); color: var(--grey-light); }
.contact-cta h2 { color: var(--white); margin-bottom: 16px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-list { margin-bottom: 32px; }
.contact-list li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 1rem; }
.contact-list strong { color: var(--white); margin-right: 8px; display: inline-block; width: 70px; }
.contact-list a { color: var(--accent); }
.contact-list a:hover { color: var(--white); }

/* Lead form */
.lead-form { margin-top: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; }
.form-group + .form-group:not(.form-row .form-group) { margin-top: 16px; }
.lead-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.lead-form input::placeholder,
.lead-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.1);
}
.lead-form select { cursor: pointer; }
.lead-form select option { background: var(--navy); color: var(--white); }
.lead-form .btn { margin-top: 20px; width: 100%; }
.lead-form textarea { resize: vertical; min-height: 100px; }
.form-success {
  margin-top: 28px;
  padding: 20px;
  background: rgba(201, 161, 90, 0.12);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  text-align: center;
}
.form-success p { color: var(--white); margin: 0; }
.note {
  font-size: 0.78rem;
  color: #e8b43a;
  background: rgba(232, 180, 58, 0.12);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  font-style: normal;
  letter-spacing: 0.02em;
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============ FOOTER ============ */
.site-footer { background: var(--navy-deep); color: var(--grey); padding-top: 64px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo { width: 130px; margin-bottom: 16px; }
.footer-grid h4 { color: var(--white); margin-bottom: 16px; }
.footer-grid ul li { padding: 6px 0; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--white); }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
  color: var(--grey);
  font-size: 0.85rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .primary-nav.open {
    display: block;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy);
    padding: 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 101;
  }
  .primary-nav.open ul { flex-direction: column; gap: 0; }
  .primary-nav.open a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }

  .service-card,
  .services-grid--4 .service-card { flex: 0 1 calc(50% - 12px); }
  .intro-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Compact footer on mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 32px;
  }
  .footer-grid > div:first-child {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .footer-logo { width: 90px; margin-bottom: 0; flex-shrink: 0; }
  .footer-grid > div:first-child p { margin: 0; font-size: 0.88rem; }
  .footer-grid ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
  }
  .footer-grid ul li {
    padding: 4px 0;
    width: 50%;
  }

  .hero { min-height: 70vh; }
  .intro, .services, .work, .before-after-section, .contact-cta { padding: 64px 0; }

  /* Hide stats strip on mobile */
  .stats { display: none; }

  /* Gallery mobile adjustments */
  .gallery-lead-desktop { display: none; }
  .gallery-title-row h1 { font-size: 2.8rem; }
  .gallery-hero { padding-top: 24px !important; margin-bottom: 32px; }

  /* Vertical review ticker on mobile */
  .review-ticker {
    height: 320px;
    position: relative;
    padding: 0;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  }
  .ticker-track {
    flex-direction: column;
    width: 100%;
    animation: ticker-scroll-vertical 40s linear infinite;
  }
  .ticker-content {
    flex-direction: column;
    gap: 14px;
    padding: 14px 18px;
    padding-right: 18px;
  }
  .review-chip {
    white-space: normal;
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .container { padding: 0 18px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; }
  h1 { font-size: 2.2rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Single-column service cards on phone */
  .service-card,
  .services-grid--4 .service-card { flex: 0 1 100%; }
  .service-img { aspect-ratio: 16/10; }

  /* Bigger before/after slider */
  .ba-slider { aspect-ratio: 4/3; }
  .ba-carousel { gap: 8px; }
  .ba-nav { width: 36px; height: 36px; font-size: 1.2rem; }

  /* More breathing room between sections */
  .intro, .services, .work, .before-after-section, .contact-cta { padding: 48px 0; }
  .section-head { margin-bottom: 32px; }
  .services-grid { gap: 18px; }
  .work-grid { gap: 14px; }
}
