*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:       #0a0a0a;
  --ink-soft:  #262626;
  --white:     #ffffff;
  --pale:      #f7f7f7;
  --gray-100:  #f0f0f0;
  --gray-200:  #e0e0e0;
  --gray-400:  #a0a0a0;
  --gray-500:  #737373;
  --gray-600:  #525252;

  --font-body:    'Inter', sans-serif;
  --font-display: 'Plus Jakarta Sans', sans-serif;

  --section-py: 100px;
  --radius:     0px;   /* sharp corners match the card's geometric aesthetic */
  --radius-sm:  0px;

  --shadow:    0 2px 16px rgba(0,0,0,.08);
  --shadow-md: 0 4px 28px rgba(0,0,0,.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-600);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── LOGO ─── */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* The bracket-N mark from the business card */
.logo-bracket {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bracket-n {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--ink);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .02em;
}

.logo-bracket--light .bracket-n {
  border-color: var(--white);
  color: var(--white);
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.logo-nc {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.01em;
}

.logo-mechanical {
  font-family: var(--font-body);
  font-size: .52rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.logo--footer .logo-nc { color: var(--white); }
.logo--footer .logo-mechanical { color: rgba(255,255,255,.45); }

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.10); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.desktop-nav { display: flex; align-items: center; gap: 36px; }

.desktop-nav a {
  text-decoration: none;
  color: var(--gray-500);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color .2s;
}
.desktop-nav a:hover { color: var(--ink); }

.btn-nav {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--ink) !important;
  color: var(--white) !important;
  padding: 9px 18px;
  font-size: .84rem !important;
  font-weight: 600 !important;
  letter-spacing: .02em;
  transition: background .2s, transform .15s !important;
  white-space: nowrap;
  border: 1px solid var(--ink);
}
.btn-nav:hover { background: var(--ink-soft) !important; transform: translateY(-1px); }

.btn-nav--outline {
  background: transparent !important;
  color: var(--ink) !important;
  border: 1px solid var(--ink) !important;
}
.btn-nav--outline:hover { background: var(--ink) !important; color: var(--white) !important; }

.menu-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.menu-toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); border-radius: 0; transition: all .3s; }

.mobile-menu {
  display: none; flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--gray-100);
  gap: 2px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .93rem;
  letter-spacing: .02em;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  padding: 13px 28px;
  border: 1.5px solid var(--white);
  font-weight: 600; font-size: .95rem;
  letter-spacing: .03em;
  transition: background .2s, color .2s, transform .15s;
}
.btn-primary:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-1px);
}

/* btn-primary on white bg (about section) */
.about-content .btn-primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.about-content .btn-primary:hover {
  background: transparent;
  color: var(--ink);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  padding: 13px 28px;
  border: 1px solid rgba(255,255,255,.4);
  font-weight: 500; font-size: .95rem;
  letter-spacing: .02em;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.08);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(8, 8, 8, .88);
}

/* Wave SVG decorations */
.deco-wave {
  position: absolute;
  width: 340px; height: 420px;
  opacity: .18;
  pointer-events: none;
}
.deco-wave--tr { top: -60px; right: -60px; }
.deco-wave--bl { bottom: -60px; left: -60px; transform: rotate(180deg); }

.hero-content {
  position: relative; z-index: 1;
  padding: 80px 24px;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255,255,255,.22);
  padding: 6px 16px;
  font-size: .72rem; font-weight: 600;
  color: rgba(255,255,255,.70);
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 32px;
}

.badge-dot {
  width: 6px; height: 6px;
  background: rgba(255,255,255,.80);
  border-radius: 50%;
  animation: blink 2.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -.025em;
}

/* Underline accent on key phrase (matches card's thin rule under "Owner/operator") */
.hero-rule {
  position: relative;
  display: inline-block;
}
.hero-rule::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 2px;
  background: var(--white);
  opacity: .5;
}

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

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }

.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}
.trust-dash { color: rgba(255,255,255,.35); }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  animation: bounce 2.5s ease-in-out infinite;
}
@keyframes bounce {
  0%,100%{ transform: translateX(-50%) translateY(0); }
  50%{ transform: translateX(-50%) translateY(9px); }
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 13px 0;
}
.trust-bar-inner {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 12px 0;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.bar-divider { padding: 0 20px; opacity: .3; }

/* ─── SECTION SHARED ─── */
.section { padding: var(--section-py) 0; }
.section-pale { background: var(--pale); }
.section-ink  { background: var(--ink); position: relative; overflow: hidden; }

.section-header { text-align: center; margin-bottom: 60px; }

.section-label {
  display: inline-block;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 14px;
}
.section-label--light { color: rgba(255,255,255,.40); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; line-height: 1.12;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -.025em;
}
.section-title--light { color: var(--white); }

.section-sub {
  color: var(--gray-400);
  max-width: 500px;
  margin: 0 auto;
  font-size: .95rem;
  font-weight: 300;
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;                          /* gap-as-border using ink background */
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

/* Chevron decoration for services */
.chevron-wrap {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 140px; height: 340px;
  opacity: .04;
  pointer-events: none;
  overflow: hidden;
}
.section { position: relative; }

.service-card {
  background: var(--white);
  padding: 36px 30px 30px;
  position: relative;
  transition: background .25s, color .25s;
  cursor: default;
}
.service-card:hover {
  background: var(--ink);
}
.service-card:hover h3,
.service-card:hover p { color: var(--white); }
.service-card:hover .card-arrow { color: var(--white); transform: translateX(4px); }
.service-card:hover .service-num { color: rgba(255,255,255,.25); }

.service-num {
  font-family: var(--font-display);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .12em;
  color: var(--gray-300);
  margin-bottom: 18px;
  display: block;
}
.service-num--light { color: rgba(255,255,255,.35); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 800;
  color: var(--ink); margin-bottom: 12px;
  letter-spacing: -.01em;
  transition: color .25s;
}
.service-card p {
  font-size: .88rem; color: var(--gray-500);
  line-height: 1.65; font-weight: 300;
  transition: color .25s;
}

.card-arrow {
  display: block;
  font-size: 1rem; color: var(--gray-300);
  margin-top: 24px;
  transition: color .25s, transform .25s;
}
.card-arrow--light { color: rgba(255,255,255,.50); }

/* Dark emergency card */
.service-card--dark {
  background: var(--ink);
}
.service-card--dark h3,
.service-card--dark p { color: var(--white); }
.service-card--dark .service-num { color: rgba(255,255,255,.35); }
.service-card--dark:hover { background: #1a1a1a; }

/* ─── HOW IT WORKS ─── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center; gap: 0;
  position: relative; z-index: 1;
}

.step {
  border: 1px solid rgba(255,255,255,.10);
  padding: 36px 28px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 800;
  color: rgba(255,255,255,.18);
  margin-bottom: 16px; line-height: 1;
  letter-spacing: -.03em;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.step p { font-size: .88rem; color: rgba(255,255,255,.45); line-height: 1.65; font-weight: 300; }

.step-arrow {
  font-size: 1.2rem;
  color: rgba(255,255,255,.18);
  text-align: center; padding: 0 24px;
  letter-spacing: .1em;
}

/* ─── ABOUT ─── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.about-photo { position: relative; }
.about-photo img {
  width: 100%; height: 520px;
  object-fit: cover; display: block;
  filter: grayscale(20%) contrast(1.05);
  box-shadow: var(--shadow-lg);
  background: var(--gray-200);
}

.about-chip {
  position: absolute;
  bottom: -28px; right: -28px;
  background: var(--ink); color: var(--white);
  padding: 20px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.chip-num {
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 800; line-height: 1; margin-bottom: 4px;
}
.chip-label { font-size: .7rem; font-weight: 600; opacity: .7; line-height: 1.5; letter-spacing: .05em; text-transform: uppercase; }

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800; color: var(--ink);
  margin: 12px 0 0;
  line-height: 1.15; letter-spacing: -.025em;
}

.about-rule {
  width: 40px; height: 2px;
  background: var(--ink);
  margin: 20px 0;
}

.about-owner {
  font-size: .82rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 20px !important;
}

.about-content p {
  color: var(--gray-500); margin-bottom: 14px;
  font-size: .93rem; line-height: 1.75; font-weight: 300;
}

.about-points { list-style: none; margin: 24px 0 36px; display: flex; flex-direction: column; gap: 10px; }
.about-points li {
  display: flex; align-items: center; gap: 12px;
  font-size: .88rem; color: var(--ink);
  font-weight: 500; letter-spacing: .01em;
}
.point-dash { color: var(--gray-400); font-weight: 300; }

/* ─── STATS ─── */
.stats-section {
  background: var(--ink);
  padding: 72px 0;
  position: relative; overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative; z-index: 1;
  text-align: center;
  border: 1px solid rgba(255,255,255,.10);
}
.stat-item {
  padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 800;
  color: var(--white); line-height: 1;
  margin-bottom: 10px; letter-spacing: -.03em;
}
.stat-num span { font-size: 1.4rem; opacity: .5; }
.stat-label { font-size: .74rem; color: rgba(255,255,255,.45); font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
}

.testimonial-card {
  background: var(--white);
  padding: 36px 32px;
  transition: background .25s;
}
.testimonial-card:hover { background: var(--pale); }

.quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem; line-height: .5;
  color: var(--gray-200);
  display: block; margin-bottom: 20px;
  font-weight: 700;
}

.testimonial-card p {
  font-size: .92rem; color: var(--gray-600);
  line-height: 1.78; font-style: italic; font-weight: 300;
  margin-bottom: 24px;
}

.reviewer-rule { width: 28px; height: 1px; background: var(--gray-200); margin-bottom: 20px; }

.reviewer-row { display: flex; align-items: center; gap: 12px; }

.reviewer-monogram {
  width: 38px; height: 38px;
  border: 1.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700;
  color: var(--ink); flex-shrink: 0;
  letter-spacing: .05em;
}
.reviewer-name { font-weight: 700; font-size: .88rem; color: var(--ink); letter-spacing: .02em; }
.reviewer-meta { font-size: .74rem; color: var(--gray-400); margin-top: 2px; }

/* ─── LOCATION ─── */
.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.location-info h2 {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: var(--ink); margin: 12px 0 0;
  letter-spacing: -.025em;
}
.location-rule { width: 36px; height: 2px; background: var(--ink); margin: 18px 0 24px; }

.location-address {
  display: flex; gap: 10px; align-items: center;
  font-size: .97rem; color: var(--gray-600);
  margin-bottom: 32px;
}
.location-address svg { color: var(--ink); flex-shrink: 0; }

.hours-block { margin-bottom: 28px; }
.hours-block h4,
.service-cities h4 {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: 14px;
}

.hours-table { border-collapse: collapse; width: 100%; }
.hours-table td {
  padding: 9px 0;
  font-size: .88rem; color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  font-weight: 300;
}
.hours-table td:first-child { font-weight: 600; color: var(--ink); min-width: 110px; }

.emergency-tag {
  font-size: .74rem; font-weight: 600;
  color: var(--gray-500); letter-spacing: .04em;
}

.cities-wrap { display: flex; flex-wrap: wrap; gap: 6px; }
.cities-wrap span {
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  font-size: .76rem; font-weight: 500;
  padding: 4px 12px; letter-spacing: .03em;
}

/* map card */
.map-card { border: 1px solid var(--gray-200); }

.map-iframe-wrap {
  position: relative;
  width: 100%;
  height: 360px;
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}

.map-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.btn-map {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--ink); color: var(--white);
  text-decoration: none;
  padding: 15px;
  font-size: .84rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  transition: background .2s;
}
.btn-map:hover { background: var(--ink-soft); }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--ink);
  padding: 60px 0;
  position: relative; overflow: hidden;
}

.deco-chevron {
  position: absolute;
  height: 340px; width: auto;
  opacity: .12;
  pointer-events: none;
}
.deco-chevron--right { right: -20px; top: 50%; transform: translateY(-50%); }

.cta-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: var(--white); margin-bottom: 6px;
  letter-spacing: -.025em;
}
.cta-text p { color: rgba(255,255,255,.50); font-size: .93rem; font-weight: 300; }

.btn-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--ink);
  text-decoration: none;
  padding: 15px 36px;
  font-weight: 700; font-size: .95rem;
  letter-spacing: .04em; text-transform: uppercase;
  border: 1.5px solid var(--white);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.btn-cta:hover { background: transparent; color: var(--white); }

.btn-cta--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-cta--outline:hover { background: rgba(255,255,255,.10); border-color: var(--white); }

.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── CONTACT ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px; align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: var(--ink); margin: 12px 0 0;
  letter-spacing: -.025em;
}
.contact-info > p {
  color: var(--gray-500); margin-bottom: 36px;
  font-size: .93rem; line-height: 1.75; font-weight: 300;
}

.contact-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.contact-list li {
  display: flex; align-items: center; gap: 14px;
  font-size: .9rem; color: var(--gray-600); line-height: 1.5;
}
.contact-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--ink);
}
.contact-list a { color: var(--ink); text-decoration: none; font-weight: 600; }
.contact-list a:hover { text-decoration: underline; }

/* form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 40px;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 800;
  color: var(--ink); margin-bottom: 28px;
  letter-spacing: -.01em;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: .68rem; font-weight: 700;
  color: var(--gray-400); margin-bottom: 14px;
  letter-spacing: .1em; text-transform: uppercase;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 11px 14px;
  border: 1px solid var(--gray-200);
  font-family: var(--font-body);
  font-size: .9rem; color: var(--ink);
  background: var(--white);
  transition: border-color .2s;
  border-radius: 0;
  text-transform: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--ink);
}

.btn-submit {
  width: 100%;
  background: var(--ink); color: var(--white);
  border: none; padding: 13px;
  font-family: var(--font-body);
  font-size: .84rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
  margin-top: 4px;
}
.btn-submit:hover { background: var(--ink-soft); }
.form-note { font-size: .82rem; color: #3d7a3d; margin-top: 12px; text-align: center; letter-spacing: .02em; }

/* ─── FOOTER ─── */
.footer { background: var(--ink); position: relative; overflow: hidden; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 24px 52px;
  position: relative; z-index: 1;
}

.footer-brand p {
  color: rgba(255,255,255,.38);
  font-size: .83rem; margin-top: 20px;
  line-height: 1.7; max-width: 240px; font-weight: 300;
}
.footer-license { color: rgba(255,255,255,.22) !important; font-size: .72rem !important; margin-top: 10px !important; letter-spacing: .06em; }

.footer-col h4 {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.30); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: .83rem; color: rgba(255,255,255,.42); line-height: 1.5; font-weight: 300; }
.footer-col a { text-decoration: none; color: rgba(255,255,255,.42); transition: color .2s; }
.footer-col a:hover { color: var(--white); }

.footer-bar {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 24px;
  font-size: .74rem; color: rgba(255,255,255,.25);
  text-align: center; letter-spacing: .06em;
  position: relative; z-index: 1;
}

/* ─── SECTION ALTERNATION ─── */

/* Generic: labels + titles inside any dark section */
.section-ink .section-label  { color: rgba(255,255,255,.40); }
.section-ink .section-title  { color: var(--white); }
.section-ink .section-sub    { color: rgba(255,255,255,.45); }

/* About on dark */
.section-ink .about-content h2          { color: var(--white); }
.section-ink .about-rule                { background: rgba(255,255,255,.30); }
.section-ink .about-owner               { color: rgba(255,255,255,.40); }
.section-ink .about-content p           { color: rgba(255,255,255,.55); }
.section-ink .about-points li           { color: var(--white); }
.section-ink .point-dash                { color: rgba(255,255,255,.30); }
.section-ink .about-content .btn-primary {
  background: var(--white); color: var(--ink); border-color: var(--white);
}
.section-ink .about-content .btn-primary:hover {
  background: transparent; color: var(--white);
}
/* Chip inverts: white box with dark text */
.section-ink .about-chip                { background: var(--white); color: var(--ink); }

/* Testimonials on dark */
.section-ink .testimonials-grid         { background: rgba(255,255,255,.08); border-color: transparent; }
.section-ink .testimonial-card          { background: transparent; }
.section-ink .testimonial-card:hover    { background: rgba(255,255,255,.05); }
.section-ink .quote-mark               { color: rgba(255,255,255,.12); }
.section-ink .testimonial-card p        { color: rgba(255,255,255,.58); }
.section-ink .reviewer-rule             { background: rgba(255,255,255,.14); }
.section-ink .reviewer-monogram        { border-color: rgba(255,255,255,.35); color: var(--white); }
.section-ink .reviewer-name             { color: var(--white); }
.section-ink .reviewer-meta             { color: rgba(255,255,255,.40); }

/* Stats on light/white */
.stats-section--light                   { background: var(--pale); }
.stats-section--light .stats-grid       { border-color: var(--gray-200); }
.stats-section--light .stat-item        { border-right-color: var(--gray-200); border-bottom-color: var(--gray-200); }
.stats-section--light .stat-num         { color: var(--ink); }
.stats-section--light .stat-num span    { color: var(--ink); opacity: .35; }
.stats-section--light .stat-label       { color: var(--gray-500); }
.stats-section--light .deco-wave path   { stroke: var(--ink); }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* stagger grid siblings */
.services-grid .reveal:nth-child(2) { transition-delay: .08s; }
.services-grid .reveal:nth-child(3) { transition-delay: .16s; }
.services-grid .reveal:nth-child(4) { transition-delay: .08s; }
.services-grid .reveal:nth-child(5) { transition-delay: .16s; }
.services-grid .reveal:nth-child(6) { transition-delay: .24s; }
.testimonials-grid .reveal:nth-child(2) { transition-delay: .10s; }
.testimonials-grid .reveal:nth-child(3) { transition-delay: .20s; }

/* ─── RESPONSIVE ─── */

/* Fix 4: Larger touch target for menu toggle (applies at all sizes) */
.menu-toggle {
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

/* Fix 5: Prevent long email from overflowing footer columns */
.footer-col li,
.footer-col a { word-break: break-all; }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }

  .desktop-nav { display: none; }
  .menu-toggle { display: flex; }

  .hero-content { padding: 64px 24px 80px; }

  .services-grid,
  .testimonials-grid { grid-template-columns: 1fr; }

  .steps-grid { grid-template-columns: 1fr; gap: 1px; background: rgba(255,255,255,.08); }
  .step-arrow { display: none; }

  .about-layout,
  .location-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }

  .about-photo { overflow: hidden; }
  .about-photo img { height: 300px; }
  /* Fix 2: Chip stays inside the image on mobile */
  .about-chip { right: 0; bottom: 0; }

  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,.08); }
  /* Fix 3: Reduce oversized stat numbers on mobile */
  .stat-num { font-size: 2rem; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-buttons { justify-content: center; flex-direction: column; align-items: center; }

  .chevron-wrap { display: none; }

  /* Fix 1: Scale down wave SVGs so they don't cause horizontal scroll */
  .deco-wave { width: 200px; height: 260px; opacity: .10; }
}

/* Fix 6: Extra-small screens (320px–400px) */
@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .contact-form { padding: 20px 16px; }
  .stat-num { font-size: 1.7rem; }
  .cta-text h2 { font-size: 1.5rem; }
  .about-chip { padding: 14px 18px; }
  .chip-num { font-size: 2rem; }
}
