/* ============================================================
   HARFORD AUTO STUDIO — shared stylesheet
   v1.0 · 2026
   ============================================================ */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; }
img, svg, video { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
button { border: none; cursor: pointer; background: none; padding: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

/* ---------- TOKENS ---------- */
:root {
  --ink: #0a0a0a;
  --paper: #ffffff;
  --off: #f5f5f5;
  --muted: #6b6b6b;
  --line: #e8e8e8;
  --accent: #fbbf24;

  --font-sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --font-mono: "SF Mono", Menlo, Monaco, Consolas, monospace;

  --container: 1240px;
  --container-tight: 980px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;
  --space-7: 128px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- TYPE ---------- */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow.light { color: rgba(255,255,255,0.75); }

.display {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.98;
}
.h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 900; letter-spacing: -0.02em; line-height: 1.05; }
.h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; letter-spacing: -0.01em; line-height: 1.1; }
.h3 { font-size: clamp(22px, 2.5vw, 30px); font-weight: 700; letter-spacing: -0.005em; line-height: 1.2; }
.h4 { font-size: 18px; font-weight: 700; letter-spacing: 0; line-height: 1.3; }

.lead {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--muted);
}
.lead.light { color: rgba(255,255,255,0.85); }
.body { font-size: 16px; line-height: 1.65; color: var(--ink); }
.body.light { color: rgba(255,255,255,0.85); }
.small { font-size: 13px; color: var(--muted); }

.serif-italic { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

/* ---------- LAYOUT ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-tight { max-width: var(--container-tight); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--space-6) 0; }
.section-tight { padding: var(--space-5) 0; }
.section-large { padding: var(--space-7) 0; }
.section-dark { background: var(--ink); color: var(--paper); }
.section-dark .eyebrow { color: rgba(255,255,255,0.7); }
.section-dark .lead { color: rgba(255,255,255,0.8); }
.section-dark .small { color: rgba(255,255,255,0.6); }
.section-off { background: var(--off); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--space-3); }

.flex { display: flex; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 40px; }

.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 40px; } .mt-5 { margin-top: 64px; } .mt-6 { margin-top: 96px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 40px; } .mb-5 { margin-bottom: 64px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-720 { max-width: 720px; }
.max-640 { max-width: 640px; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.brand-mark {
  font-weight: 600; letter-spacing: 0.36em; font-size: 13px; color: var(--ink); white-space: nowrap;
}
.brand-mark::after {
  content: ""; display: block; width: 40px; height: 1.5px; background: var(--ink);
  opacity: 0.4; margin-top: 4px;
}

.nav-primary { display: flex; align-items: center; gap: 28px; }
.nav-primary a {
  font-size: 14px; font-weight: 500; color: var(--ink); letter-spacing: 0.02em;
  padding: 8px 0; position: relative; transition: opacity 0.15s ease;
}
.nav-primary a:hover { opacity: 0.6; }
.nav-primary a.current::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--ink);
}

.nav-cta,
.nav-primary a.nav-cta,
.mobile-nav a.nav-cta {
  background: var(--accent); color: var(--ink);
  padding: 10px 20px; border-radius: var(--radius-sm);
  font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  transition: all 0.15s ease;
  box-shadow: 0 2px 6px rgba(251,191,36,0.25);
}
.nav-cta:hover,
.nav-primary a.nav-cta:hover,
.mobile-nav a.nav-cta:hover { background: #f59e0b; color: var(--ink); transform: translateY(-1px); opacity: 1; }

.mobile-toggle { display: none; width: 32px; height: 32px; position: relative; }
.mobile-toggle span {
  position: absolute; left: 4px; right: 4px; height: 2px; background: var(--ink); transition: all 0.2s ease;
}
.mobile-toggle span:nth-child(1) { top: 10px; }
.mobile-toggle span:nth-child(2) { top: 16px; }
.mobile-toggle span:nth-child(3) { top: 22px; }
.mobile-toggle.open span:nth-child(1) { top: 16px; transform: rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { top: 16px; transform: rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
  background: var(--paper); padding: 32px 24px;
  z-index: 99; overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; font-size: 22px; font-weight: 700; padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .nav-cta { display: inline-block; margin-top: 32px; }

/* ---------- HERO ---------- */
.hero {
  background: var(--ink); color: var(--paper);
  padding: 100px 0 120px; position: relative; overflow: hidden;
}
.hero.has-image {
  background-image: var(--hero-bg);
  background-size: cover; background-position: center;
}
.hero.has-image::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.95) 100%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero .eyebrow { color: rgba(255,255,255,0.75); margin-bottom: 24px; }
.hero .display { color: var(--paper); margin-bottom: 24px; }
.hero .lead { color: rgba(255,255,255,0.85); max-width: 640px; margin-bottom: 40px; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 32px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  transition: all 0.18s ease; cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-primary:hover { background: transparent; color: var(--paper); }
.btn-primary.dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-primary.dark:hover { background: transparent; color: var(--ink); }
.btn-outline { background: transparent; color: var(--paper); border-color: var(--paper); }
.btn-outline:hover { background: var(--paper); color: var(--ink); }
.btn-outline.dark { color: var(--ink); border-color: var(--ink); }
.btn-outline.dark:hover { background: var(--ink); color: var(--paper); }
.btn-small { padding: 10px 18px; font-size: 11px; }

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  background: var(--ink); color: var(--paper); padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1);
}
.trust-strip .container {
  display: flex; align-items: center; justify-content: space-around; gap: 32px; flex-wrap: wrap;
}
.trust-strip .trust-item {
  font-size: 11px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); white-space: nowrap;
}

/* ---------- SERVICE CARDS ---------- */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--line); }
.service-card {
  background: var(--paper); padding: 56px 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 320px; text-decoration: none; color: var(--ink);
  transition: background 0.2s ease;
}
.service-card:hover { background: var(--off); }
.service-card .eyebrow { margin-bottom: 16px; }
.service-card h3 { margin-bottom: 14px; }
.service-card .description { color: var(--muted); font-size: 15px; margin-bottom: 32px; max-width: 380px; }
.service-card .arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
}
.service-card .arrow::after { content: "→"; transition: transform 0.2s ease; }
.service-card:hover .arrow::after { transform: translateX(4px); }

/* ---------- PACKAGE TIERS ---------- */
.tier-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tier-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px; position: relative; display: flex; flex-direction: column;
}
.tier-card.popular { border: 2px solid var(--ink); }
.tier-card.flagship { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.tier-card.flagship .tier-name,
.tier-card.flagship .tier-subtitle,
.tier-card.flagship .tier-price-note { color: rgba(255,255,255,0.75); }
.tier-card .tier-badge {
  position: absolute; top: -12px; left: 28px;
  background: var(--accent); color: var(--ink);
  font-size: 10px; padding: 5px 12px; border-radius: 4px;
  letter-spacing: 0.2em; font-weight: 700;
}
.tier-card.flagship .tier-badge { background: var(--paper); }
.tier-card .tier-name { font-size: 11px; letter-spacing: 0.3em; font-weight: 700; color: var(--muted); text-transform: uppercase; }
.tier-card .tier-title { font-size: 26px; font-weight: 900; letter-spacing: -0.01em; margin: 6px 0 4px; }
.tier-card .tier-subtitle { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.tier-card .tier-price { font-size: 36px; font-weight: 900; letter-spacing: -0.01em; line-height: 1; }
.tier-card .tier-price-note { font-size: 11px; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; font-weight: 600; margin-top: 4px; }
.tier-card .tier-features { margin-top: 24px; flex: 1; }
.tier-card .tier-features li {
  position: relative; padding: 10px 0 10px 24px; font-size: 14px;
  border-top: 1px solid var(--line); line-height: 1.45;
}
.tier-card.flagship .tier-features li { border-color: rgba(255,255,255,0.12); }
.tier-card .tier-features li:first-child { border-top: 0; }
.tier-card .tier-features li::before {
  content: "✓"; position: absolute; left: 0; top: 10px; font-weight: 700;
}
.tier-card .btn { margin-top: 24px; }

/* ---------- INFO/STAT CARDS ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.stat-card {
  background: var(--off); border-radius: var(--radius-md);
  padding: 28px 24px; text-align: center;
}
.section-dark .stat-card { background: rgba(255,255,255,0.06); }
.stat-card .stat-value {
  font-size: 48px; font-weight: 900; letter-spacing: -0.02em; line-height: 1;
}
.stat-card .stat-label {
  font-size: 11px; letter-spacing: 0.25em; font-weight: 600; text-transform: uppercase;
  color: var(--muted); margin-top: 8px;
}
.section-dark .stat-card .stat-label { color: rgba(255,255,255,0.65); }

/* ---------- TESTIMONIAL ---------- */
.testimonial {
  text-align: center; padding: 56px 0;
}
.testimonial .quote-mark {
  font-family: var(--font-serif); font-size: 120px; font-weight: 700;
  line-height: 0.3; color: var(--muted); opacity: 0.35;
}
.testimonial blockquote {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(22px, 3vw, 32px); line-height: 1.45;
  max-width: 760px; margin: 0 auto;
}
.testimonial .attribution {
  margin-top: 28px; font-size: 13px; letter-spacing: 0.2em; font-weight: 600;
  text-transform: uppercase;
}
.testimonial .attribution .vehicle {
  display: block; font-size: 12px; letter-spacing: 0.1em; font-weight: 400;
  text-transform: none; color: var(--muted); margin-top: 4px;
}

/* ---------- ACCORDION (FAQ) ---------- */
.accordion details {
  border-bottom: 1px solid var(--line); padding: 24px 0;
}
.accordion details summary {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
  cursor: pointer; list-style: none; font-size: 18px; font-weight: 600;
}
.accordion details summary::-webkit-details-marker { display: none; }
.accordion details summary::after {
  content: "+"; font-size: 28px; line-height: 1; font-weight: 300;
  transition: transform 0.2s ease;
}
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion details .answer {
  margin-top: 16px; color: var(--muted); font-size: 15px; line-height: 1.65; max-width: 720px;
}

/* ---------- GALLERY ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.gallery-item {
  aspect-ratio: 4/5; background: var(--ink); border-radius: var(--radius-md);
  position: relative; overflow: hidden;
  background-size: cover; background-position: center;
}
.gallery-item.wide { grid-column: span 2; aspect-ratio: 16/10; }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
  display: flex; align-items: flex-end; padding: 20px;
  opacity: 0; transition: opacity 0.2s ease;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay .caption {
  color: var(--paper); font-size: 12px; letter-spacing: 0.2em; font-weight: 600;
  text-transform: uppercase;
}

/* Placeholder for empty gallery items */
.gallery-item.placeholder {
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.gallery-item.placeholder::after {
  content: "";
  color: rgba(255,255,255,0.25); font-size: 11px; letter-spacing: 0.3em; font-weight: 600;
}

/* ---------- FORM ---------- */
.form-block {
  background: var(--paper); border-radius: var(--radius-lg); padding: 48px;
}
.section-dark .form-block { background: rgba(255,255,255,0.05); color: var(--paper); }
.form-row { margin-bottom: 20px; }
.form-row.grid-2-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label {
  display: block; font-size: 11px; letter-spacing: 0.2em; font-weight: 600;
  text-transform: uppercase; margin-bottom: 8px; color: var(--muted);
}
.section-dark .form-label { color: rgba(255,255,255,0.7); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 16px; font-size: 15px;
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper);
  transition: border-color 0.15s ease;
}
.section-dark .form-input, .section-dark .form-select, .section-dark .form-textarea {
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); color: var(--paper);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--ink); }
.section-dark .form-input:focus, .section-dark .form-select:focus, .section-dark .form-textarea:focus { border-color: var(--paper); }
.form-textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.form-check-group { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-check {
  display: flex; align-items: center; gap: 10px; padding: 12px 16px;
  border: 1px solid var(--line); border-radius: var(--radius-sm); cursor: pointer;
  font-size: 14px; transition: all 0.15s ease;
}
.form-check input { accent-color: var(--ink); }
.form-check:hover { border-color: var(--ink); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,0.85); padding: 80px 0 40px;
}
.site-footer .container { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.site-footer h4 {
  font-size: 11px; letter-spacing: 0.25em; font-weight: 700;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.site-footer ul li { padding: 4px 0; }
.site-footer ul li a {
  font-size: 14px; color: rgba(255,255,255,0.85); transition: color 0.15s ease;
}
.site-footer ul li a:hover { color: var(--paper); }
.site-footer .brand-mark { color: var(--paper); margin-bottom: 16px; }
.site-footer .brand-mark::after { background: var(--paper); opacity: 0.4; }
.site-footer .footer-tag {
  font-size: 14px; color: rgba(255,255,255,0.65); max-width: 320px; line-height: 1.55;
}
.site-footer .legal-row {
  grid-column: 1 / -1; margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: 16px; font-size: 12px; color: rgba(255,255,255,0.5);
}

/* ---------- BANNER STRIPS ---------- */
.cta-banner {
  background: var(--ink); color: var(--paper);
  padding: 80px 0; text-align: center;
}
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner .lead { margin: 0 auto 32px; max-width: 600px; }

/* ---------- SPECIFICS ---------- */
.process-step {
  display: grid; grid-template-columns: 100px 1fr; gap: 32px; align-items: start;
  padding: 32px 0; border-top: 1px solid var(--line);
}
.process-step:first-child { border-top: 0; padding-top: 0; }
.process-step .step-num {
  font-size: 56px; font-weight: 900; letter-spacing: -0.02em; line-height: 1; color: var(--ink);
}
.section-dark .process-step .step-num { color: var(--paper); }
.section-dark .process-step { border-color: rgba(255,255,255,0.1); }
.process-step .step-content h3 { margin-bottom: 8px; }
.process-step .step-content p { color: var(--muted); max-width: 600px; }
.section-dark .process-step .step-content p { color: rgba(255,255,255,0.7); }

.review-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; position: relative;
}
.review-card .stars { color: var(--accent); font-size: 18px; letter-spacing: 0.1em; margin-bottom: 16px; }
.review-card blockquote {
  font-family: var(--font-serif); font-style: italic;
  font-size: 17px; line-height: 1.55; margin-bottom: 20px;
}
.review-card .reviewer {
  font-size: 12px; letter-spacing: 0.2em; font-weight: 600; text-transform: uppercase;
}
.review-card .reviewer .meta {
  display: block; font-size: 11px; letter-spacing: 0.05em; font-weight: 400;
  text-transform: none; color: var(--muted); margin-top: 4px;
}

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.team-card .team-photo {
  aspect-ratio: 4/5; background: var(--ink); border-radius: var(--radius-md);
  margin-bottom: 20px; background-size: cover; background-position: center;
  position: relative;
}
.team-card .team-photo.placeholder { display: flex; align-items: center; justify-content: center; }
.team-card .team-photo.placeholder::after {
  content: ""; color: rgba(255,255,255,0.25);
  font-size: 11px; letter-spacing: 0.3em; font-weight: 600;
}
.team-card .team-name { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 4px; }
.team-card .team-role { font-size: 11px; letter-spacing: 0.3em; font-weight: 700; color: var(--muted); text-transform: uppercase; margin-bottom: 16px; }
.team-card .team-bio { font-size: 15px; color: var(--muted); line-height: 1.6; }

.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-visual {
  aspect-ratio: 4/5; background: var(--ink); border-radius: var(--radius-md);
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.feature-visual.placeholder { display: flex; align-items: center; justify-content: center; }
.feature-visual.placeholder::after {
  content: ""; color: rgba(255,255,255,0.25);
  font-size: 12px; letter-spacing: 0.3em; font-weight: 600;
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  font-size: 12px; letter-spacing: 0.2em; font-weight: 600; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--paper); }
.breadcrumb .sep { margin: 0 12px; }

/* ---------- TABLE ---------- */
.price-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.price-table th, .price-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.price-table th { font-size: 11px; letter-spacing: 0.2em; font-weight: 700; text-transform: uppercase; color: var(--muted); }
.price-table td.right { text-align: right; font-weight: 700; }
.price-table tr:last-child td { border-bottom: 0; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .nav-primary { display: none; }
  .mobile-toggle { display: block; }
  .site-header .container { height: 64px; }
  .mobile-nav { top: 64px; }
  .grid-2, .grid-3, .grid-4, .tier-row, .team-grid { grid-template-columns: 1fr; gap: 20px; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse { direction: ltr; }
  .service-grid { grid-template-columns: 1fr; gap: 1px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 2; aspect-ratio: 16/10; }
  .site-footer .container { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row.grid-2-form { grid-template-columns: 1fr; }
  .form-check-group { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 1fr; gap: 16px; }
  .process-step .step-num { font-size: 44px; }
  .hero { padding: 64px 0 80px; }
  .section { padding: 64px 0; }
  .section-large { padding: 80px 0; }
  .form-block { padding: 28px; }
}

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: auto; }
  .site-footer .container { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 20px; }
}
