/* ============================================================
   ELBERTA TRANSMISSION — Bugatti Design System Implementation
   ============================================================ */

/* --- Google Fonts (Open Source Substitutes) --- */
@import url('https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@400&family=Cormorant+Garamond:ital,wght@0,400;1,400&family=JetBrains+Mono:wght@400&display=swap');

/* --- CSS Variables (Bugatti Token System) --- */
:root {
  /* Colors */
  --canvas:            #000000;
  --surface-soft:      #0d0d0d;
  --surface-card:      #141414;
  --surface-elevated:  #1f1f1f;
  --hairline:          #262626;
  --hairline-strong:   #3a3a3a;

  --on-dark:           #ffffff;
  --body-color:        #cccccc;
  --body-strong:       #e6e6e6;
  --muted:             #999999;
  --muted-soft:        #666666;
  --link:              #c3d9f3;

  --warning:           #d4a017;

  /* Typography */
  --font-display:      'Saira Condensed', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:         'Cormorant Garamond', Garamond, 'Times New Roman', serif;
  --font-mono:         'JetBrains Mono', ui-monospace, 'SF Mono', 'Cascadia Mono', monospace;

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

  /* Radius */
  --radius-none: 0px;
  --radius-pill: 9999px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--canvas);
  color: var(--body-color);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ============================================================
   TOP NAVIGATION
   ============================================================ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--sp-xl);
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--on-dark);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--on-dark);
}

.nav-links a:focus-visible {
  outline: 1px solid var(--link);
  outline-offset: 3px;
}

.nav-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--on-dark) !important;
  border: 1px solid var(--on-dark);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-cta:hover {
  background: var(--on-dark);
  color: var(--canvas) !important;
}

.nav-cta:active {
  background: var(--body-strong);
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--on-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Mobile menu */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  padding: var(--sp-lg) var(--sp-xl);
  gap: var(--sp-lg);
  z-index: 99;
}

.nav-mobile-menu.open {
  display: flex;
}

.nav-mobile-menu a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid var(--hairline);
}

.nav-mobile-menu a:last-child {
  border-bottom: none;
  color: var(--on-dark);
}

/* ============================================================
   HERO PHOTO BAND
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.55);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.0) 35%,
    rgba(0,0,0,0.7) 80%,
    rgba(0,0,0,0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-xl) var(--sp-xxl);
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sp-md);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--on-dark);
  max-width: 760px;
  margin-bottom: var(--sp-lg);
}

.hero-subhead {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--body-strong);
  max-width: 560px;
  margin-bottom: var(--sp-xl);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 32px;
  background: transparent;
  color: var(--on-dark);
  border: 1px solid var(--on-dark);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--on-dark);
  color: var(--canvas);
}

.btn-primary:focus-visible {
  outline: 1px solid var(--link);
  outline-offset: 3px;
}

.btn-primary:active {
  background: var(--body-strong);
  color: var(--canvas);
}

.btn-primary.btn-dark {
  color: var(--canvas);
  border-color: var(--canvas);
  background: transparent;
}

.btn-primary.btn-dark:hover {
  background: var(--canvas);
  color: var(--on-dark);
}

.call-tracking-number {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--on-dark);
}

a.call-tracking-number {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  transition: color 0.2s ease;
}

a.call-tracking-number:hover {
  color: var(--link);
}

/* ============================================================
   SECTION BASE
   ============================================================ */

.section {
  padding: var(--sp-section) var(--sp-xl);
  max-width: 1280px;
  margin: 0 auto;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--hairline);
  margin: 0;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sp-md);
}

.section-title {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--on-dark);
  margin-bottom: var(--sp-xl);
}

.section-title-md {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--on-dark);
  margin-bottom: var(--sp-lg);
}

/* ============================================================
   TRUST BLOCKS (3-UP GRID)
   ============================================================ */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
  padding-top: var(--sp-section);
  padding-bottom: var(--sp-section);
  max-width: 1280px;
  margin: 0 auto;
  padding-left: var(--sp-xl);
  padding-right: var(--sp-xl);
}

.trust-card {
  border-top: 1px solid var(--hairline);
  padding-top: var(--sp-xl);
}

.trust-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--muted-soft);
  margin-bottom: var(--sp-md);
  line-height: 1;
}

.trust-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--on-dark);
  margin-bottom: var(--sp-md);
  line-height: 1.3;
}

.trust-body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--body-color);
}

/* ============================================================
   LEAD FORM SECTION
   ============================================================ */

.form-section {
  background: var(--surface-card);
  padding: var(--sp-section) var(--sp-xl);
}

.form-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xxl);
  align-items: start;
}

.form-left {
  position: sticky;
  top: 80px;
}

.form-left .section-eyebrow {
  margin-bottom: var(--sp-md);
}

.form-left .section-title {
  margin-bottom: var(--sp-lg);
}

.form-left p {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--body-strong);
  margin-bottom: var(--sp-lg);
}

.form-left .towing-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warning);
  border: 1px solid var(--warning);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  display: inline-block;
}

/* The form itself */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

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

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

.form-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input,
.form-select,
.form-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline-strong);
  color: var(--on-dark);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  height: 44px;
  padding: 0;
  width: 100%;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s ease;
}

.form-select {
  cursor: pointer;
  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='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.form-select option {
  background: var(--surface-card);
  color: var(--on-dark);
}

.form-textarea {
  height: auto;
  min-height: 80px;
  resize: vertical;
  padding-top: var(--sp-sm);
  border: 1px solid var(--hairline-strong);
  padding: var(--sp-sm);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-soft);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--on-dark);
}

.form-input:focus-visible,
.form-select:focus-visible,
.form-textarea:focus-visible {
  outline: none;
  border-color: var(--link);
}

.form-submit {
  margin-top: var(--sp-sm);
}

.form-success {
  display: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--link);
  border: 1px solid var(--hairline);
  padding: var(--sp-lg);
  text-align: center;
  margin-top: var(--sp-md);
}

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-band {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cta-band-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}

.cta-band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.cta-band-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 12px var(--sp-xl);
  text-align: center;
}

.cta-band-content .section-eyebrow {
  margin-bottom: var(--sp-md);
}

.cta-band-content .section-title {
  max-width: 640px;
  margin: 0 auto var(--sp-xl);
}

.cta-band-content p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--body-strong);
  max-width: 480px;
  margin: 0 auto var(--sp-xl);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */

.services-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.service-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
}

.service-band:nth-child(even) .service-band-image-col {
  order: 2;
}

.service-band:nth-child(even) .service-band-text-col {
  order: 1;
}

.service-band-image-col {
  position: relative;
  overflow: hidden;
}

.service-band-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.service-band-text-col {
  background: var(--surface-card);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-xxl);
}

.service-band-text-col .section-eyebrow {
  margin-bottom: var(--sp-md);
}

.service-band-text-col .section-title-md {
  margin-bottom: var(--sp-lg);
}

.service-band-text-col p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body-color);
  margin-bottom: var(--sp-lg);
}

.service-feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-xl);
}

.service-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.service-feature-list li::before {
  content: '—';
  color: var(--muted-soft);
  flex-shrink: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.contact-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--sp-section) var(--sp-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xxl);
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 80px;
}

.contact-info .section-eyebrow {
  margin-bottom: var(--sp-md);
}

.contact-info .section-title {
  margin-bottom: var(--sp-lg);
}

.contact-info p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body-color);
  margin-bottom: var(--sp-xl);
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

.contact-meta-item {
  border-top: 1px solid var(--hairline);
  padding-top: var(--sp-md);
}

.contact-meta-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sp-xs);
}

.contact-meta-value {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--body-strong);
  line-height: 1.6;
}

.contact-meta-value .call-tracking-number {
  font-size: 20px;
}

.hours-table {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--body-color);
  line-height: 1.8;
}

.hours-table span {
  color: var(--muted);
  display: inline-block;
  min-width: 80px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: var(--sp-xxl) var(--sp-xl);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-xxl);
  margin-bottom: var(--sp-xl);
}

.footer-brand .nav-brand {
  display: block;
  margin-bottom: var(--sp-md);
}

.footer-brand p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: var(--sp-md);
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sp-lg);
}

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

.footer-col ul li a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--on-dark);
}

.footer-col ul li a:focus-visible {
  outline: 1px solid var(--link);
  outline-offset: 2px;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--hairline);
  padding-top: var(--sp-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}

.footer-legal {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted-soft);
  line-height: 1.6;
  max-width: 700px;
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--muted-soft);
}

/* ============================================================
   PAGE-SPECIFIC OVERRIDES
   ============================================================ */

/* Services page hero uses different image */
.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.65) 70%,
    rgba(0,0,0,0.92) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--sp-xl) var(--sp-xxl);
}

.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--on-dark);
  margin-bottom: var(--sp-md);
  line-height: 1.15;
}

/* Towing highlight */
.towing-banner {
  background: var(--surface-soft);
  border: 1px solid var(--warning);
  padding: var(--sp-lg) var(--sp-xl);
  text-align: center;
}

.towing-banner p {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warning);
}

/* ============================================================
   SPEC / INFO ROW
   ============================================================ */

.spec-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}

.spec-cell {
  padding: var(--sp-xl) 0;
  border-right: 1px solid var(--hairline);
  padding-right: var(--sp-xl);
  padding-left: var(--sp-xl);
}

.spec-cell:first-child {
  padding-left: 0;
}

.spec-cell:last-child {
  border-right: none;
}

.spec-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--on-dark);
  margin-bottom: var(--sp-xs);
}

.spec-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

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

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 48px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .spec-cell:nth-child(2) {
    border-right: none;
  }

  .spec-cell:nth-child(3) {
    border-top: 1px solid var(--hairline);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-nav {
    padding: 0 var(--sp-md);
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  :root {
    --sp-section: 12px;
    --sp-xxl: 40px;
  }

  .hero h1 {
    font-size: 32px;
    letter-spacing: 2px;
  }

  .section-title {
    font-size: 32px;
    letter-spacing: 2px;
  }

  .section {
    padding: var(--sp-section) var(--sp-md);
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding-left: var(--sp-md);
    padding-right: var(--sp-md);
  }

  .form-section {
    padding: var(--sp-section) var(--sp-md);
  }

  .form-section-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-xxl);
  }

  .form-left {
    position: static;
  }

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

  .service-band {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-band:nth-child(even) .service-band-image-col,
  .service-band:nth-child(even) .service-band-text-col {
    order: unset;
  }

  .service-band-image-col {
    height: 280px;
  }

  .service-band-text-col {
    padding: var(--sp-xl) var(--sp-md);
  }

  .contact-layout {
    grid-template-columns: 1fr;
    padding: var(--sp-section) var(--sp-md);
  }

  .contact-info {
    position: static;
  }

  .spec-row {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 var(--sp-md);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .cta-band-content {
    padding: 12px var(--sp-md);
  }

  .hero-content {
    padding: 0 var(--sp-md) var(--sp-xxl);
  }

  .page-hero-content {
    padding: 0 var(--sp-md) var(--sp-xxl);
  }

  .page-hero-content h1 {
    font-size: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band {
    min-height: 360px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

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

  .spec-cell {
    border-right: none;
    border-bottom: 1px solid var(--hairline);
  }

  .spec-cell:last-child {
    border-bottom: none;
  }
}
