/* ============================================================
   Shalimar Transmission — css/styles.css
   Design System: Supabase / Supabaze Guidelines
   Primary: #3ecf8e (emerald) | Canvas: #ffffff | Ink: #171717
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  /* Colors */
  --primary:          #3ecf8e;
  --primary-deep:     #24b47e;
  --primary-soft:     #4ade80;

  --canvas:           #ffffff;
  --canvas-soft:      #fafafa;
  --canvas-night:     #1c1c1c;
  --canvas-night-soft:#202020;

  --hairline:         #dfdfdf;
  --hairline-strong:  #c7c7c7;
  --hairline-cool:    #ededed;

  --ink:              #171717;
  --ink-secondary:    #212121;
  --ink-mute:         #707070;
  --ink-mute-2:       #9a9a9a;
  --ink-faint:        #b2b2b2;
  --on-primary:       #171717;
  --on-dark:          #ffffff;

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

  /* Border Radius */
  --r-xs:   4px;
  --r-sm:   6px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-xl:   16px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-0: none;
  --shadow-1: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-2: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-3: 0 16px 48px rgba(0,0,0,0.12);

  /* Typography */
  --font-main: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, Menlo, Monaco, Consolas, monospace;

  /* Section max-width */
  --max-w: 1280px;
  --section-pad: var(--sp-huge) var(--sp-xl);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  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: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  padding: var(--sp-lg) var(--sp-xl);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--sp-xxl);
}
.nav__logo {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__logo span {
  color: var(--primary);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-xxl);
  flex: 1;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mute);
  transition: color 0.15s ease;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--ink);
}
.nav__cta {
  margin-left: auto;
  flex-shrink: 0;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--sp-xs);
  margin-left: auto;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: var(--sp-lg);
  padding: var(--sp-lg) var(--sp-xl) var(--sp-xxl);
  border-top: 1px solid var(--hairline);
  background: var(--canvas);
}
.nav__mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid var(--hairline-cool);
}
.nav__mobile.open { display: flex; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: var(--sp-sm) var(--sp-lg);
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--primary);
  color: var(--on-primary);
  border-color: var(--primary);
}
.btn--primary:hover {
  background: var(--primary-deep);
  border-color: var(--primary-deep);
}
.btn--primary:active {
  background: var(--primary-deep);
}
.btn--outline {
  background: var(--canvas);
  color: var(--ink);
  border-color: var(--hairline-strong);
}
.btn--outline:hover {
  border-color: var(--ink);
}
.btn--dark {
  background: var(--canvas-night);
  color: var(--on-dark);
  border-color: var(--canvas-night);
}
.btn--dark:hover {
  background: var(--canvas-night-soft);
}
.btn--lg {
  font-size: 15px;
  padding: 12px var(--sp-xl);
}
.btn--block {
  width: 100%;
}

/* call-tracking-number — always styled as primary CTA */
.call-tracking-number {
  background: var(--primary);
  color: var(--on-primary);
  border-color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: 14px;
  font-weight: 500;
  padding: var(--sp-sm) var(--sp-lg);
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.call-tracking-number:hover {
  background: var(--primary-deep);
}

/* ============================================================
   PILLS / TAGS
   ============================================================ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  padding: var(--sp-xxs) var(--sp-sm);
  border-radius: var(--r-full);
}
.pill--green {
  background: var(--primary);
  color: var(--on-primary);
}
.pill--soft {
  background: var(--canvas-soft);
  color: var(--ink);
  border: 1px solid var(--hairline);
}
.pill--green-outline {
  background: transparent;
  color: var(--primary-deep);
  border: 1px solid var(--primary);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 12px var(--sp-xl);
}
.section--soft {
  background: var(--canvas-soft);
}
.section--dark {
  background: var(--canvas-night);
  color: var(--on-dark);
}
.section__header {
  margin-bottom: var(--sp-xxl);
}
.section__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-deep);
  margin-bottom: var(--sp-md);
}
.section__title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.72px;
  color: var(--ink);
}
.section--dark .section__title {
  color: var(--on-dark);
}
.section__sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-mute);
  margin-top: var(--sp-lg);
  max-width: 640px;
}
.section--dark .section__sub {
  color: var(--ink-faint);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 12px var(--sp-xl);
  background: var(--canvas);
  overflow: hidden;
}
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-huge);
  align-items: center;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-lg);
}
.hero__h1 {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1.92px;
  color: var(--ink);
  margin-bottom: var(--sp-xl);
}
.hero__h1 em {
  font-style: normal;
  color: var(--primary-deep);
}
.hero__sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-mute);
  margin-bottom: var(--sp-xxl);
  max-width: 520px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  flex-wrap: wrap;
  margin-bottom: var(--sp-xxl);
}
.hero__trust {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}
.hero__trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
}
.hero__trust-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.hero__trust-text strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.hero__trust-text span {
  font-size: 13px;
  color: var(--ink-mute);
}

/* Hero image panel */
.hero__visual {
  position: relative;
}
.hero__img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  aspect-ratio: 4/3;
}
.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23,23,23,0.55) 0%, transparent 55%);
}
.hero__img-badge {
  position: absolute;
  bottom: var(--sp-xl);
  left: var(--sp-xl);
  right: var(--sp-xl);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  padding: var(--sp-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  box-shadow: var(--shadow-2);
}
.hero__badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.hero__badge-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.hero__badge-text span {
  font-weight: 400;
  color: var(--ink-mute);
}

/* ============================================================
   OFFER BANNER
   ============================================================ */
.offer-banner {
  background: var(--canvas-night);
  padding: 12px var(--sp-xl);
}
.offer-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-xl);
  flex-wrap: wrap;
}
.offer-banner__text {
  font-size: 15px;
  font-weight: 500;
  color: var(--on-dark);
}
.offer-banner__text em {
  font-style: normal;
  color: var(--primary);
}
.offer-banner__sub {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-faint);
  margin-top: 2px;
}

/* ============================================================
   TRUST STRIP / STATS
   ============================================================ */
.trust-strip {
  padding: 12px var(--sp-xl);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.trust-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xxl);
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  padding: var(--sp-xl);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
}
.trust-item__num {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.72px;
  color: var(--ink);
}
.trust-item__num span {
  color: var(--primary);
}
.trust-item__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.trust-item__desc {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.5;
}

/* ============================================================
   LEAD FORM
   ============================================================ */
.form-section {
  padding: 12px var(--sp-xl);
}
.form-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-huge);
  align-items: start;
}
.form-side__intro {
  position: sticky;
  top: 100px;
}
.form-side__intro .section__label {
  margin-bottom: var(--sp-md);
}
.form-side__intro h2 {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.72px;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: var(--sp-lg);
}
.form-side__intro p {
  font-size: 16px;
  color: var(--ink-mute);
  line-height: 1.6;
  margin-bottom: var(--sp-xl);
}
.form-side__contact {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  padding: var(--sp-xl);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  background: var(--canvas-soft);
}
.form-side__contact-row {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
}
.contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--primary-deep);
  margin-top: 1px;
}
.form-side__contact-info strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.form-side__contact-info span,
.form-side__contact-info a {
  font-size: 13px;
  color: var(--ink-mute);
}
.form-side__contact-info a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-side__contact-info a:hover {
  color: var(--ink);
}

/* The actual form card */
.lead-form {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  padding: var(--sp-xxl);
  box-shadow: var(--shadow-1);
}
.lead-form__title {
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--sp-xxl);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid var(--hairline-cool);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  margin-bottom: var(--sp-lg);
}
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-secondary);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-sm);
  padding: var(--sp-sm) var(--sp-md);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
  min-height: 36px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-deep);
  box-shadow: 0 0 0 3px rgba(62,207,142,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-faint);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23707070' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}
.form__submit-row {
  margin-top: var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}
.form__disclaimer {
  font-size: 12px;
  color: var(--ink-mute-2);
  line-height: 1.5;
  text-align: center;
}
#form-status {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: var(--sp-md);
  border-radius: var(--r-sm);
  display: none;
}
#form-status.success {
  background: rgba(62,207,142,0.1);
  color: var(--primary-deep);
  display: block;
}
#form-status.error {
  background: rgba(239,68,68,0.08);
  color: #dc2626;
  display: block;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
}
.service-card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--sp-xxl);
  box-shadow: var(--shadow-1);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-2);
  border-color: var(--hairline-strong);
}
.service-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: rgba(62,207,142,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-lg);
  color: var(--primary-deep);
}
.service-card__icon svg {
  width: 20px;
  height: 20px;
}
.service-card__title {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--sp-sm);
  letter-spacing: -0.2px;
}
.service-card__desc {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.6;
}

/* ============================================================
   IMAGE FEATURE ROWS
   ============================================================ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-huge);
  align-items: center;
  padding: 12px var(--sp-xl);
  max-width: var(--max-w);
  margin: 0 auto;
}
.feature-row--reverse { direction: rtl; }
.feature-row--reverse > * { direction: ltr; }

.feature-row__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  aspect-ratio: 4/3;
}
.feature-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-row__content .section__label { margin-bottom: var(--sp-md); }
.feature-row__content h2 {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.72px;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: var(--sp-lg);
}
.feature-row__content p {
  font-size: 16px;
  color: var(--ink-mute);
  line-height: 1.65;
  margin-bottom: var(--sp-xl);
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-xl);
}
.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  font-size: 14px;
  color: var(--ink);
}
.feature-list__item::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23171717' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================================
   HOURS & LOCATION (used in index + contact)
   ============================================================ */
.hours-location {
  background: var(--canvas-soft);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 12px var(--sp-xl);
}
.hours-location__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-huge);
}
.hours-location__block h3 {
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--sp-xl);
  letter-spacing: -0.2px;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table tr {
  border-bottom: 1px solid var(--hairline-cool);
}
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: var(--sp-sm) 0;
  font-size: 14px;
  color: var(--ink-mute);
}
.hours-table td:first-child {
  font-weight: 500;
  color: var(--ink);
  width: 55%;
}
.hours-table td.closed {
  color: var(--ink-faint);
}
.location-detail {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}
.location-detail__row {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
}
.location-detail__row svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--primary-deep);
}
.location-detail__row div strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}
.location-detail__row div span,
.location-detail__row div a {
  font-size: 14px;
  color: var(--ink-mute);
}
.location-detail__row div a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.location-detail__row div a:hover { color: var(--ink); }

/* Map embed */
.map-embed {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-1);
  margin-top: var(--sp-xl);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: none;
}

/* ============================================================
   SERVICES PAGE — full service list
   ============================================================ */
.services-hero {
  padding: 12px var(--sp-xl);
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
}
.services-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.services-hero h1 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -1.44px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: var(--sp-lg);
  margin-top: var(--sp-xl);
}
.services-hero p {
  font-size: 18px;
  color: var(--ink-mute);
  line-height: 1.55;
  max-width: 100%;
}

.service-detail-card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: box-shadow 0.2s ease;
}
.service-detail-card:hover {
  box-shadow: var(--shadow-2);
}
.service-detail-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.service-detail-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-detail-card:hover .service-detail-card__img img {
  transform: scale(1.03);
}
.service-detail-card__body {
  padding: var(--sp-xxl);
}
.service-detail-card__body h3 {
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--sp-md);
  letter-spacing: -0.2px;
}
.service-detail-card__body p {
  font-size: 15px;
  color: var(--ink-mute);
  line-height: 1.65;
  margin-bottom: var(--sp-xl);
}
.service-detail-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  padding: 12px var(--sp-xl);
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
}
.contact-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.contact-hero h1 {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -1.44px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: var(--sp-lg);
  margin-top: var(--sp-xl);
}
.contact-hero p {
  font-size: 18px;
  color: var(--ink-mute);
  line-height: 1.55;
  max-width: 100%;
}

/* ============================================================
   CTA BLOCK (dark banner)
   ============================================================ */
.cta-block {
  background: var(--canvas-night);
  padding: 12px var(--sp-xl);
}
.cta-block__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-xxl);
  flex-wrap: wrap;
}
.cta-block__copy h2 {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.72px;
  line-height: 1.15;
  color: var(--on-dark);
  margin-bottom: var(--sp-md);
}
.cta-block__copy p {
  font-size: 16px;
  color: var(--ink-faint);
  line-height: 1.6;
  max-width: 480px;
}
.cta-block__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: 12px var(--sp-xl) var(--sp-xxl);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-huge);
  margin-bottom: var(--sp-huge);
}
.footer__brand p {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.65;
  margin-top: var(--sp-lg);
  max-width: 280px;
}
.footer__col h4 {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--sp-lg);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.footer__col ul li a {
  font-size: 14px;
  color: var(--ink-mute);
  transition: color 0.15s ease;
}
.footer__col ul li a:hover { color: var(--ink); }
.footer__bottom {
  padding-top: var(--sp-xl);
  border-top: 1px solid var(--hairline-cool);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-xl);
  flex-wrap: wrap;
}
.footer__bottom p {
  font-size: 12px;
  color: var(--ink-mute-2);
  line-height: 1.5;
}
.footer__disclaimer {
  font-size: 12px;
  color: var(--ink-faint);
  line-height: 1.55;
  text-align: right;
  max-width: 500px;
}

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

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

/* Tablet: 768–1023px */
@media (max-width: 1023px) {
  .hero__h1 { font-size: 42px; letter-spacing: -1.2px; }
  .hero__inner { grid-template-columns: 1fr; gap: var(--sp-xxl); }
  .hero__visual { order: -1; }
  .hero__sub { max-width: 100%; }

  .form-section__inner { grid-template-columns: 1fr; }
  .form-side__intro { position: static; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 1fr; gap: var(--sp-xxl); }
  .feature-row--reverse { direction: ltr; }

  .hours-location__inner { grid-template-columns: 1fr; gap: var(--sp-xxl); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-xxl); }
  .trust-strip__inner { grid-template-columns: 1fr 1fr; }
  .cta-block__inner { flex-direction: column; align-items: flex-start; }

  .section__title { font-size: 28px; }
  .services-hero h1,
  .contact-hero h1 { font-size: 36px; }
}

/* Mobile: < 768px */
@media (max-width: 767px) {
  :root {
    --sp-huge: 48px;
    --sp-xxl: 24px;
  }

  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero { padding: 12px var(--sp-lg); }
  .hero__h1 { font-size: 32px; letter-spacing: -0.8px; }
  .hero__sub { font-size: 16px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { text-align: center; justify-content: center; }

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

  .offer-banner__inner { flex-direction: column; align-items: flex-start; gap: var(--sp-lg); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__disclaimer { text-align: left; }

  .section { padding: 12px var(--sp-lg); }
  .section__title { font-size: 24px; letter-spacing: -0.42px; }
  .section__sub { font-size: 16px; }

  .cta-block__copy h2 { font-size: 26px; }
  .cta-block__actions { flex-direction: column; align-items: stretch; width: 100%; }
  .cta-block__actions .btn { justify-content: center; }

  .lead-form { padding: var(--sp-xl); }
  .feature-row { padding: 12px var(--sp-lg); }

  .services-hero,
  .contact-hero { padding: 12px var(--sp-lg); }
  .services-hero h1,
  .contact-hero h1 { font-size: 28px; }
}
