/* =========================================================
   PACE TRANSMISSION — css/styles.css
   Design system: Sanity Editorial (dark-first)
   ========================================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Barlow+Condensed:wght@400;600;700&display=swap');

/* --- CSS Variables (Design Tokens) --- */
:root {
  /* Colors */
  --canvas:          #0b0b0b;
  --canvas-soft:     #1a1a1a;
  --canvas-light:    #ffffff;
  --canvas-paper:    #ededed;
  --brand:           #c0392b;        /* deep transmission red */
  --brand-deep:      #961e15;
  --ink:             #0b0b0b;
  --ink-soft:        #212121;
  --graphite:        #353535;
  --slate:           #3c4758;
  --mute:            #797979;
  --ash:             #b9b9b9;
  --on-primary:      #ffffff;
  --hairline-soft:   #2e2e2e;
  --hairline:        #e0e0e0;
  --success:         #37cd84;
  --error:           #dd0000;
  --link-blue:       #0052ef;
  --link-blue-soft:  #55beff;

  /* Spacing */
  --sp-xxs:    4px;
  --sp-xs:     8px;
  --sp-sm:     12px;
  --sp-md:     16px;
  --sp-lg:     24px;
  --sp-xl:     32px;
  --sp-xxl:    48px;
  --sp-section:     64px;
  --sp-section-lg:  96px;

  /* Radius */
  --r-none:       0px;
  --r-app-xs:     3px;
  --r-app-sm:     4px;
  --r-app-md:     5px;
  --r-app-lg:     6px;
  --r-marketing:  12px;
  --r-full:       99999px;

  /* Typography */
  --font-sans:  'Barlow', 'Barlow Condensed', sans-serif;
  --font-mono:  'IBM Plex Mono', monospace;
  --font-display: 'Barlow Condensed', 'Barlow', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ash);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline-soft);
  height: 64px;
  display: flex;
  align-items: center;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Brand */
.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  flex-shrink: 0;
}

.nav__dot {
  width: 10px;
  height: 10px;
  border-radius: var(--r-full);
  background: var(--brand);
  flex-shrink: 0;
}

.nav__wordmark {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--on-primary);
  text-transform: uppercase;
}

/* Menu */
.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--sp-xxl);
  list-style: none;
}

.nav__link {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--ash);
  transition: color 0.18s ease;
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.active { color: var(--on-primary); }

/* CTA group */
.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  flex-shrink: 0;
}

.nav__call {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--brand);
  white-space: nowrap;
  transition: opacity 0.18s ease;
}

.nav__call:hover { opacity: 0.8; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-xs);
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--on-primary);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

/* Mobile overlay */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--canvas);
  z-index: 99;
  padding: var(--sp-xl) var(--sp-lg);
  flex-direction: column;
  gap: var(--sp-lg);
  border-top: 1px solid var(--hairline-soft);
}

.nav__overlay.open { display: flex; }

.nav__overlay .nav__link {
  font-size: 18px;
  font-weight: 500;
  color: var(--on-primary);
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid var(--hairline-soft);
}

.nav__overlay .nav__call {
  font-size: 15px;
  margin-top: var(--sp-md);
}

/* =========================================================
   TYPOGRAPHY TOKENS
   ========================================================= */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--mute);
  text-transform: uppercase;
  margin-bottom: var(--sp-md);
}

.eyebrow--brand {
  color: var(--brand);
}

.display-xl {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--on-primary);
}

.display-lg {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--on-primary);
}

.display-md {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--on-primary);
}

.display-sm {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--on-primary);
}

.heading-md {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--on-primary);
}

.subtitle {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--ash);
}

.body-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ash);
}

.caption {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--mute);
}

/* On light surfaces */
.on-light { color: var(--ink); }
.on-light .eyebrow { color: var(--mute); }
.on-light .display-xl,
.on-light .display-lg,
.on-light .display-md,
.on-light .display-sm,
.on-light .heading-md { color: var(--ink); }
.on-light .subtitle,
.on-light .body-text { color: var(--ink-soft); }
.on-light .caption { color: var(--mute); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-xs);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.18s ease, transform 0.14s ease, background 0.18s ease;
  border: none;
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

/* Primary on dark */
.btn--primary {
  background: var(--canvas-light);
  color: var(--ink);
  padding: var(--sp-sm) var(--sp-xl);
  border-radius: var(--r-full);
  height: 44px;
  border: 1.5px solid var(--canvas-light);
}
.btn--primary:hover { opacity: 0.92; }

/* Primary on light */
.btn--primary-dark {
  background: var(--ink);
  color: var(--on-primary);
  padding: var(--sp-sm) var(--sp-xl);
  border-radius: var(--r-full);
  height: 44px;
}
.btn--primary-dark:hover { opacity: 0.82; }

/* Brand red CTA */
.btn--brand {
  background: var(--brand);
  color: var(--on-primary);
  padding: var(--sp-sm) var(--sp-xl);
  border-radius: var(--r-full);
  height: 44px;
  letter-spacing: 0.01em;
}
.btn--brand:hover { background: var(--brand-deep); }

/* Secondary */
.btn--secondary {
  background: var(--canvas-soft);
  color: var(--ash);
  padding: var(--sp-sm) var(--sp-lg);
  border-radius: var(--r-app-md);
  height: 36px;
  font-size: 13px;
  border: 1px solid var(--hairline-soft);
}
.btn--secondary:hover { color: var(--on-primary); border-color: var(--graphite); }

/* Ghost on dark */
.btn--ghost {
  background: transparent;
  color: var(--ash);
  padding: var(--sp-sm) var(--sp-lg);
  border-radius: var(--r-full);
  font-size: 15px;
  font-weight: 500;
}
.btn--ghost:hover { color: var(--on-primary); }

/* Full width variant */
.btn--full { width: 100%; }

/* Large variant */
.btn--lg {
  font-size: 18px;
  height: 52px;
  padding: var(--sp-md) var(--sp-xxl);
}

/* =========================================================
   SECTION WRAPPERS
   ========================================================= */
.section-dark {
  background: var(--canvas);
  padding: 12px 0;
}

.section-soft {
  background: var(--canvas-soft);
  padding: 12px 0;
}

.section-light {
  background: var(--canvas-light);
  padding: 12px 0;
}

.section-paper {
  background: var(--canvas-paper);
  padding: 12px 0;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--canvas);
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.35;
  filter: grayscale(40%) contrast(1.1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11,11,11,0.2) 0%,
    rgba(11,11,11,0.55) 50%,
    rgba(11,11,11,0.92) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--sp-section-lg) 0 12px 0;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: var(--sp-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}

.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--brand);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--on-primary);
  margin-bottom: var(--sp-xl);
  max-width: 900px;
}

.hero__sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ash);
  max-width: 600px;
  margin-bottom: var(--sp-xxl);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar {
  background: var(--canvas-soft);
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
  padding: 12px 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--sp-xl) var(--sp-lg);
  gap: var(--sp-md);
}

.trust-item__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--on-primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--on-primary);
  text-transform: uppercase;
}

.trust-item__body {
  font-size: 14px;
  color: var(--ash);
  line-height: 1.55;
}

/* =========================================================
   FORM SECTION
   ========================================================= */
.form-section {
  background: var(--canvas);
  padding: 12px 0;
}

.form-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-section);
  align-items: start;
}

.form-section__left {
  padding-top: var(--sp-xl);
}

.form-section__right {}

/* Feature list */
.feature-list {
  margin: var(--sp-xxl) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  font-size: 15px;
  color: var(--ash);
  line-height: 1.5;
}

.feature-list__item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  margin-top: 7px;
  flex-shrink: 0;
}

/* Offer badges */
.offer-badges {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  margin-top: var(--sp-xl);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xxs);
  padding: var(--sp-xxs) var(--sp-sm);
  border-radius: var(--r-full);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge--brand {
  background: var(--brand);
  color: var(--on-primary);
}

.badge--outline {
  background: transparent;
  color: var(--ash);
  border: 1px solid var(--hairline-soft);
}

/* =========================================================
   LEAD FORM
   ========================================================= */
.lead-form {
  background: var(--canvas-soft);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-marketing);
  padding: var(--sp-xl);
}

.lead-form__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--on-primary);
  margin-bottom: var(--sp-xxs);
}

.lead-form__sub {
  font-size: 13px;
  color: var(--mute);
  margin-bottom: var(--sp-xl);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xxs);
}

.form-group--full { grid-column: 1 / -1; }

label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--mute);
  text-transform: uppercase;
}

input, select, textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--on-primary);
  background: var(--canvas);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-app-xs);
  padding: var(--sp-sm) var(--sp-md);
  height: 44px;
  width: 100%;
  outline: none;
  appearance: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23797979' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

select option { background: var(--canvas-soft); color: var(--on-primary); }

textarea {
  height: auto;
  min-height: 80px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.18);
}

input::placeholder,
textarea::placeholder { color: var(--graphite); }

.form-submit {
  grid-column: 1 / -1;
  margin-top: var(--sp-sm);
}

/* Form states */
.form-message {
  margin-top: var(--sp-md);
  padding: var(--sp-md);
  border-radius: var(--r-app-lg);
  font-size: 14px;
  display: none;
}

.form-message--success {
  background: rgba(55, 205, 132, 0.12);
  border: 1px solid var(--success);
  color: var(--success);
}

.form-message--error {
  background: rgba(221, 0, 0, 0.1);
  border: 1px solid var(--error);
  color: #ff6b6b;
}

/* =========================================================
   FEATURE CARDS
   ========================================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.cards-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--canvas-soft);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-marketing);
  padding: var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  transition: border-color 0.2s ease;
}

.card:hover { border-color: var(--graphite); }

.card--brand {
  background: var(--brand);
  border-color: var(--brand-deep);
}

.card--brand .card__title,
.card--brand .card__body { color: var(--on-primary); }

.card--brand .card__eyebrow { color: rgba(255,255,255,0.65); }

.card--light {
  background: var(--canvas-light);
  border-color: var(--hairline);
}

.card--light .card__eyebrow { color: var(--mute); }
.card--light .card__title { color: var(--ink); }
.card--light .card__body { color: var(--ink-soft); }

.card__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--mute);
  text-transform: uppercase;
}

.card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--on-primary);
}

.card__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ash);
}

.card__image {
  border-radius: var(--r-app-lg);
  overflow: hidden;
  margin-bottom: var(--sp-xs);
}

.card__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card__image img { transform: scale(1.03); }

/* =========================================================
   IMAGE FEATURE SECTIONS
   ========================================================= */
.image-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-section);
  align-items: center;
}

.image-feature--reverse .image-feature__visual { order: 2; }
.image-feature--reverse .image-feature__content { order: 1; }

.image-feature__visual {
  position: relative;
  border-radius: var(--r-marketing);
  overflow: hidden;
}

.image-feature__visual img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
}

.image-feature__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,57,43,0.12) 0%, transparent 60%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.image-feature__content {
  padding: var(--sp-xl) 0;
}

.image-feature__content .eyebrow { margin-bottom: var(--sp-lg); }

.image-feature__content .display-md { margin-bottom: var(--sp-lg); }

.image-feature__content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ash);
  margin-bottom: var(--sp-lg);
}

/* =========================================================
   HOURS + LOCATION STRIP
   ========================================================= */
.info-strip {
  background: var(--canvas-soft);
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
  padding: 12px 0;
}

.info-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
  align-items: start;
}

.info-block__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--mute);
  text-transform: uppercase;
  margin-bottom: var(--sp-sm);
}

.info-block__value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--on-primary);
  line-height: 1.4;
}

.info-block__value a { color: var(--brand); }
.info-block__value a:hover { opacity: 0.8; }

.hours-table {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xxs);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ash);
  padding: var(--sp-xxs) 0;
  border-bottom: 1px solid var(--hairline-soft);
  gap: var(--sp-md);
}

.hours-row:last-child { border-bottom: none; }

.hours-row__day { color: var(--mute); }
.hours-row__time { font-weight: 500; color: var(--on-primary); }
.hours-row__closed { color: var(--graphite); }

/* =========================================================
   SERVICES PAGE
   ========================================================= */
.services-hero {
  background: var(--canvas);
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline-soft);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-section);
  padding: var(--sp-xxl) 0;
  border-bottom: 1px solid var(--hairline-soft);
  align-items: start;
}

.service-item:last-child { border-bottom: none; }

.service-item__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--mute);
  text-transform: uppercase;
  margin-bottom: var(--sp-sm);
}

.service-item__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--on-primary);
  line-height: 1.1;
}

.service-item__content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ash);
  margin-bottom: var(--sp-md);
}

.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  margin-top: var(--sp-md);
}

.service-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  font-size: 14px;
  color: var(--ash);
  line-height: 1.5;
}

.service-detail-list li::before {
  content: '→';
  color: var(--brand);
  font-size: 13px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-hero {
  background: var(--canvas);
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-section);
  align-items: start;
}

.contact-info {
  padding-top: var(--sp-xl);
}

.contact-info-block {
  padding: var(--sp-xl) 0;
  border-bottom: 1px solid var(--hairline-soft);
}

.contact-info-block:first-child { padding-top: 0; }
.contact-info-block:last-child { border-bottom: none; }

.contact-info-block__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--mute);
  text-transform: uppercase;
  margin-bottom: var(--sp-sm);
}

.contact-info-block__value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--on-primary);
  line-height: 1.35;
}

.contact-info-block__value a {
  color: var(--on-primary);
  transition: color 0.15s ease;
}

.contact-info-block__value a:hover { color: var(--brand); }

.contact-info-block__sub {
  font-size: 13px;
  color: var(--mute);
  margin-top: var(--sp-xs);
}

/* =========================================================
   MAP EMBED
   ========================================================= */
.map-embed {
  width: 100%;
  border-radius: var(--r-marketing);
  overflow: hidden;
  border: 1px solid var(--hairline-soft);
  margin-top: var(--sp-xl);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: none;
  filter: grayscale(80%) invert(90%) contrast(0.85);
}

/* =========================================================
   CTA STRIP
   ========================================================= */
.cta-strip {
  background: var(--brand);
  padding: 12px 0;
}

.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-xl);
  flex-wrap: wrap;
}

.cta-strip__headline {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--on-primary);
  line-height: 1.1;
}

.cta-strip__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-top: var(--sp-xs);
}

.cta-strip .btn--primary { background: var(--canvas); color: var(--on-primary); border-color: var(--canvas); }
.cta-strip .btn--primary:hover { background: var(--ink); }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline-soft);
  padding: 12px 0 var(--sp-xxl) 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-xxl);
  margin-bottom: var(--sp-section);
}

.footer__brand-col {}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  margin-bottom: var(--sp-lg);
}

.footer__dot {
  width: 10px;
  height: 10px;
  border-radius: var(--r-full);
  background: var(--brand);
}

.footer__wordmark {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--on-primary);
  text-transform: uppercase;
}

.footer__tagline {
  font-size: 14px;
  line-height: 1.6;
  color: var(--mute);
  max-width: 280px;
  margin-bottom: var(--sp-lg);
}

.footer__phone {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  color: var(--brand);
}

.footer__col-head {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--mute);
  text-transform: uppercase;
  margin-bottom: var(--sp-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.footer__link {
  font-size: 14px;
  color: var(--ash);
  transition: color 0.15s ease;
}

.footer__link:hover { color: var(--on-primary); }

.footer__hours-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.footer__hours-item {
  font-size: 13px;
  color: var(--ash);
  line-height: 1.4;
}

.footer__hours-item span { color: var(--mute); margin-right: var(--sp-xs); }

.footer__bottom {
  padding-top: var(--sp-lg);
  border-top: 1px solid var(--hairline-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}

.footer__legal {
  font-size: 12px;
  color: var(--mute);
  line-height: 1.5;
}

.footer__disclaimer {
  font-size: 11px;
  color: var(--graphite);
  max-width: 600px;
  line-height: 1.6;
  font-style: italic;
}

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline-soft);
}

/* =========================================================
   DIVIDER
   ========================================================= */
.divider {
  height: 1px;
  background: var(--hairline-soft);
  margin: 0;
}

/* =========================================================
   UTILITIES
   ========================================================= */
.text-brand { color: var(--brand); }
.text-mute  { color: var(--mute); }
.text-ash   { color: var(--ash); }
.text-center { text-align: center; }
.mt-sm  { margin-top: var(--sp-sm); }
.mt-md  { margin-top: var(--sp-md); }
.mt-lg  { margin-top: var(--sp-lg); }
.mt-xl  { margin-top: var(--sp-xl); }
.mt-xxl { margin-top: var(--sp-xxl); }
.mb-sm  { margin-bottom: var(--sp-sm); }
.mb-md  { margin-bottom: var(--sp-md); }
.mb-lg  { margin-bottom: var(--sp-lg); }
.mb-xl  { margin-bottom: var(--sp-xl); }
.mb-xxl { margin-bottom: var(--sp-xxl); }
.gap-lg { gap: var(--sp-lg); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim-fade-up {
  animation: fadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.22s; }
.anim-delay-3 { animation-delay: 0.34s; }
.anim-delay-4 { animation-delay: 0.46s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet (< 1100px) */
@media (max-width: 1100px) {
  .form-section__grid { grid-template-columns: 1fr; gap: var(--sp-xxl); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .service-item { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .image-feature { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .image-feature--reverse .image-feature__visual,
  .image-feature--reverse .image-feature__content { order: unset; }
  .contact-layout { grid-template-columns: 1fr; }
  .info-strip__grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile nav (< 960px) */
@media (max-width: 960px) {
  .nav__menu { display: none; }
  .nav__cta .nav__call { display: none; }
  .nav__hamburger { display: flex; }
}

/* Small tablet (< 768px) */
@media (max-width: 768px) {
  :root {
    --sp-section:    48px;
    --sp-section-lg: 64px;
  }

  .hero { min-height: 80vh; }
  .hero__headline { font-size: clamp(40px, 10vw, 64px); }

  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid--2 { grid-template-columns: 1fr; }
  .trust-bar__grid { grid-template-columns: 1fr; }
  .info-strip__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-strip__inner { flex-direction: column; text-align: center; }
  .cta-strip__headline { font-size: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .image-feature__visual img { height: 280px; }
}

/* Phone (< 480px) */
@media (max-width: 480px) {
  .container { padding: 0 var(--sp-md); }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .btn--lg { font-size: 16px; height: 48px; padding: var(--sp-md) var(--sp-xl); }
  .display-xl { font-size: 44px; }
  .display-lg { font-size: 36px; }
  .display-md { font-size: 30px; }
  .nav__cta { gap: var(--sp-sm); }
}
