/* CIA CONSEIL — Professional insurance broker theme
   Burgundy + warm off-white with Instrument Serif headings */

:root {
  --burgundy: #8B1A2B;
  --burgundy-dark: #6B1220;
  --burgundy-light: rgba(139,26,43,0.08);
  --burgundy-border: rgba(139,26,43,0.15);
  --gray: #1a1a1a;
  --gray-light: #3a3a3a;
  --white: #ffffff;
  --off-white: #f9f8f6;
  --cream: #f3f1ed;
  --muted: #5a5a5a;
  --muted-light: #8a8a8a;
  --nav-h: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--gray);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--burgundy); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--burgundy-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-brand:hover { text-decoration: none; }

.nav-logo {
  width: 42px; height: 42px;
  background: var(--burgundy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}

.nav-logo-text {
  font-family: 'Instrument Serif', serif;
  font-size: 17px; font-weight: 400;
  color: var(--white); letter-spacing: 0.02em;
}

.nav-name {
  font-family: 'Instrument Serif', serif;
  font-size: 22px; font-weight: 400;
  color: var(--gray); letter-spacing: 0.01em;
}

.nav-tagline {
  font-size: 11px; color: var(--muted-light);
  letter-spacing: 0.1em; text-transform: uppercase;
  display: block; margin-top: 1px;
}

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }

.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--gray); text-decoration: none;
  transition: color 0.2s; letter-spacing: 0.01em;
  position: relative;
}

.nav-links a:hover { color: var(--burgundy); text-decoration: none; }

.nav-cta {
  padding: 10px 22px !important;
  background: var(--burgundy) !important;
  color: var(--white) !important;
  border-radius: 8px;
  font-size: 14px !important; font-weight: 600 !important;
  transition: background 0.2s, transform 0.1s;
}

.nav-cta:hover {
  background: var(--burgundy-dark) !important;
  transform: translateY(-1px);
}

.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--gray); margin: 5px 0; border-radius: 1px; transition: all 0.3s; }

/* ─── HERO ─── */
.hero {
  background: linear-gradient(170deg, var(--off-white) 0%, var(--white) 50%, var(--cream) 100%);
  padding: 80px 48px 100px;
  position: relative; overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(139,26,43,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 80px; align-items: center;
}

.hero-content { position: relative; z-index: 2; }

.hero-overline {
  display: inline-block; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--burgundy); font-weight: 600;
  margin-bottom: 20px; border-left: 3px solid var(--burgundy);
  padding-left: 12px;
}

.hero-headline {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 400; line-height: 1.15;
  color: var(--gray); margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-headline em {
  color: var(--burgundy);
  font-style: italic;
}

.hero-lede {
  font-size: 17px; color: var(--muted);
  line-height: 1.75; margin-bottom: 32px;
}

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

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

.hero-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--muted);
  font-weight: 500;
}

.hero-trust-item svg { color: var(--burgundy); flex-shrink: 0; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: var(--burgundy);
  color: var(--white); border-radius: 8px;
  font-size: 15px; font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none; border: none; cursor: pointer;
}

.btn-primary:hover { background: var(--burgundy-dark); transform: translateY(-1px); text-decoration: none; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: transparent;
  color: var(--gray); border: 1.5px solid var(--burgundy-border);
  border-radius: 8px; font-size: 15px; font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}

.btn-secondary:hover { border-color: var(--burgundy); color: var(--burgundy); text-decoration: none; }

.hero-visual { display: flex; flex-direction: column; gap: 14px; }

.hero-card {
  background: var(--white); border: 1px solid var(--burgundy-border);
  border-radius: 14px; padding: 24px;
  box-shadow: 0 2px 16px rgba(139,26,43,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}

.hero-card:hover {
  box-shadow: 0 6px 28px rgba(139,26,43,0.1);
  transform: translateY(-2px);
}

.hero-card-icon {
  width: 44px; height: 44px;
  background: var(--burgundy-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}

.hero-card h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 18px; color: var(--gray); margin-bottom: 6px;
}

.hero-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--burgundy);
  padding: 40px 48px;
}

.stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center;
}

.stat-item { text-align: center; flex: 1; }

.stat-number {
  font-family: 'Instrument Serif', serif;
  font-size: 36px; color: var(--white);
  line-height: 1.1; margin-bottom: 4px;
}

.stat-label { font-size: 13px; color: rgba(255,255,255,0.7); letter-spacing: 0.03em; }

.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.2); }

/* ─── SECTIONS ─── */
.section { padding: 80px 48px; }
.section-alt { background: var(--off-white); }

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  display: inline-block; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--burgundy); font-weight: 600;
  margin-bottom: 12px; border-left: 3px solid var(--burgundy);
  padding-left: 10px;
}

.section-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--gray); line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px; color: var(--muted);
  line-height: 1.75; max-width: 600px;
  margin-bottom: 48px;
}

/* ─── PILLARS ─── */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.pillar-card {
  background: var(--white); border: 1px solid var(--burgundy-border);
  border-radius: 14px; padding: 32px 24px;
  transition: box-shadow 0.25s, transform 0.25s;
}

.pillar-card:hover {
  box-shadow: 0 8px 32px rgba(139,26,43,0.1);
  transform: translateY(-3px);
}

.pillar-icon {
  width: 52px; height: 52px;
  background: var(--burgundy); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.pillar-card h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 22px; color: var(--gray); margin-bottom: 10px;
}

.pillar-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }

.pillar-list { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }

.pillar-list li {
  font-size: 13px; color: var(--muted);
  padding-left: 20px; position: relative;
}

.pillar-list li::before {
  content: '\2713'; position: absolute; left: 0;
  color: var(--burgundy); font-size: 12px; font-weight: 700;
}

.pillar-link {
  font-size: 14px; font-weight: 600;
  color: var(--burgundy); text-decoration: none;
  transition: color 0.2s;
}

.pillar-link:hover { text-decoration: underline; }

/* ─── WHY US ─── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.why-card { text-align: center; padding: 36px 24px; }

.why-icon {
  width: 60px; height: 60px;
  background: var(--burgundy-light);
  border: 1px solid var(--burgundy-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}

.why-card h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 20px; color: var(--gray); margin-bottom: 10px;
}

.why-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ─── INSURANCE GRID ─── */
.insurance-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.insurance-card {
  padding: 28px 24px;
  border: 1px solid var(--burgundy-border);
  border-radius: 12px; background: var(--white);
  transition: box-shadow 0.2s, transform 0.2s;
}

.insurance-card:hover {
  box-shadow: 0 4px 20px rgba(139,26,43,0.08);
  transform: translateY(-2px);
}

.insurance-icon {
  width: 48px; height: 48px;
  background: var(--burgundy-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

.insurance-card h4 {
  font-family: 'Instrument Serif', serif;
  font-size: 18px; color: var(--gray); margin-bottom: 6px;
}

.insurance-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ─── TESTIMONIALS ─── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testimonial-card {
  background: var(--white); border: 1px solid var(--burgundy-border);
  border-radius: 14px; padding: 28px 24px;
}

.testimonial-stars { color: var(--burgundy); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }

.testimonial-text {
  font-size: 15px; color: var(--muted);
  line-height: 1.7; font-style: italic; margin-bottom: 20px;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.testimonial-avatar {
  width: 40px; height: 40px;
  background: var(--burgundy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Instrument Serif', serif;
  font-size: 15px; color: var(--white);
}

.testimonial-name { font-size: 14px; font-weight: 600; color: var(--gray); }
.testimonial-role { font-size: 12px; color: var(--muted-light); }

/* ─── FAQ ─── */
.faq-list { max-width: 760px; display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--burgundy-border);
}

.faq-item:first-child { border-top: 1px solid var(--burgundy-border); }

.faq-question {
  padding: 20px 0; font-size: 16px;
  font-weight: 600; color: var(--gray);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--burgundy); }

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+'; font-size: 22px; font-weight: 300;
  color: var(--burgundy); transition: transform 0.2s;
  flex-shrink: 0; margin-left: 16px;
}

.faq-item[open] .faq-question::after {
  content: '\2212'; /* minus sign */
}

.faq-answer {
  padding: 0 0 20px;
  font-size: 15px; color: var(--muted);
  line-height: 1.75;
}

/* ─── CTA STRIP ─── */
.cta-strip {
  background: var(--burgundy);
  padding: 64px 48px; text-align: center;
}

.cta-strip h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--white); margin-bottom: 12px;
}

.cta-strip p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 28px; }

.cta-strip .btn-primary {
  background: var(--white); color: var(--burgundy);
  font-size: 16px; padding: 16px 36px;
}

.cta-strip .btn-primary:hover { background: var(--off-white); }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-info-header h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 28px; color: var(--gray); margin-bottom: 8px;
}

.contact-info-header p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 8px; }

.contact-item { display: flex; gap: 14px; align-items: flex-start; }

.contact-icon {
  width: 42px; height: 42px;
  background: var(--burgundy-light);
  border: 1px solid var(--burgundy-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-label { font-size: 12px; color: var(--muted-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.contact-value { font-size: 15px; color: var(--gray); font-weight: 500; }

.engagements-box {
  margin-top: 16px; padding: 24px;
  background: var(--off-white);
  border: 1px solid var(--burgundy-border);
  border-radius: 12px;
}

.engagements-box h4 { font-size: 14px; font-weight: 700; color: var(--gray); margin-bottom: 14px; }

.engagements-list { display: flex; flex-direction: column; gap: 8px; }

.engagement-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }

.engagement-check { color: var(--burgundy); font-weight: 700; }

/* ─── FORM ─── */
.form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label { font-size: 13px; font-weight: 600; color: var(--gray); letter-spacing: 0.01em; }

.form-input, .form-select, .form-textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--burgundy-border);
  border-radius: 8px; font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  color: var(--gray); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(139,26,43,0.08);
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-privacy { font-size: 12px; color: var(--muted-light); line-height: 1.5; }

.form-submit {
  padding: 14px 32px;
  background: var(--burgundy); color: var(--white);
  border: none; border-radius: 8px;
  font-size: 15px; font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}

.form-submit:hover { background: var(--burgundy-dark); transform: translateY(-1px); }

.form-success {
  padding: 16px 20px;
  background: #f0f9f0; border: 1px solid #4caf50;
  border-radius: 8px; color: #2e7d32; font-size: 14px;
}

.form-error {
  padding: 16px 20px;
  background: #fff0f0; border: 1px solid var(--burgundy);
  border-radius: 8px; color: var(--burgundy); font-size: 14px;
}

/* ─── SERVICES PAGE ─── */
.services-hero {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  padding: 80px 48px;
  color: var(--white); text-align: center;
}

.services-hero h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(34px, 4.5vw, 54px);
  margin-bottom: 16px;
}

.services-hero p { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto; }

.service-block {
  padding: 72px 48px; max-width: 1100px;
  margin: 0 auto; display: grid;
  grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}

.service-block:nth-child(even) { direction: rtl; }
.service-block:nth-child(even) > * { direction: ltr; }
.service-block + .service-block { border-top: 1px solid var(--burgundy-border); }

.service-visual {
  display: flex; align-items: center;
  justify-content: center; padding: 40px;
  background: var(--off-white); border-radius: 14px;
  border: 1px solid var(--burgundy-border);
}

.service-icon {
  width: 68px; height: 68px;
  background: var(--burgundy-light);
  border: 1px solid var(--burgundy-border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.service-block h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 30px; color: var(--gray); margin-bottom: 14px;
}

.service-block p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }

.service-list {
  list-style: none; display: flex;
  flex-direction: column; gap: 10px;
}

.service-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--gray);
}

.service-list li::before {
  content: ''; width: 7px; height: 7px;
  background: var(--burgundy); border-radius: 50%; flex-shrink: 0;
}

/* ─── PROCESS STEPS ─── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.process-step {
  padding: 28px 20px;
  border: 1px solid var(--burgundy-border);
  border-radius: 14px; background: var(--white);
  text-align: center;
}

.process-number {
  font-family: 'Instrument Serif', serif;
  font-size: 36px; color: var(--burgundy);
  margin-bottom: 12px; line-height: 1;
}

.process-step h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 18px; color: var(--gray); margin-bottom: 8px;
}

.process-step p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ─── ABOUT PAGE ─── */
.about-hero {
  background: var(--off-white); padding: 80px 48px;
  border-bottom: 1px solid var(--burgundy-border);
}

.about-hero-inner { max-width: 800px; margin: 0 auto; text-align: center; }

.about-hero h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(34px, 4.5vw, 50px);
  color: var(--gray); margin-bottom: 20px;
}

.about-hero p { font-size: 17px; color: var(--muted); line-height: 1.75; }

/* Timeline */
.timeline-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }

.timeline-card {
  padding: 28px; border: 1px solid var(--burgundy-border);
  border-radius: 14px; transition: box-shadow 0.2s;
}

.timeline-card:hover { box-shadow: 0 4px 20px rgba(139,26,43,0.08); }

.timeline-year {
  font-family: 'Instrument Serif', serif;
  font-size: 40px; color: var(--burgundy);
  margin-bottom: 8px; line-height: 1;
}

.timeline-card h3 { font-size: 16px; font-weight: 700; color: var(--gray); margin-bottom: 8px; }
.timeline-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }

.value-card {
  text-align: center; padding: 36px 24px;
  border: 1px solid var(--burgundy-border);
  border-radius: 14px;
}

.value-card .why-icon { margin: 0 auto 20px; }

.value-card h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 22px; color: var(--gray); margin-bottom: 10px;
}

.value-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* Certifications */
.certs-grid { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 40px; }

.cert-badge {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  padding: 24px 28px;
  border: 1px solid var(--burgundy-border);
  border-radius: 14px; background: var(--off-white);
  min-width: 150px; text-align: center;
  flex: 1;
}

.cert-badge h4 { font-size: 14px; font-weight: 600; color: var(--gray); }
.cert-badge span { font-size: 12px; color: var(--muted-light); }

/* ─── PAGE HEADER ─── */
.page-header {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  padding: 80px 48px 60px;
  color: var(--white);
}

.page-header-inner { max-width: 1100px; margin: 0 auto; }

.page-header h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(34px, 4.5vw, 50px);
  margin-bottom: 12px;
}

.page-header p { font-size: 17px; color: rgba(255,255,255,0.85); max-width: 600px; }

/* ─── MAP ─── */
.map-section { padding: 80px 48px; background: var(--off-white); }
.map-inner { max-width: 1100px; margin: 0 auto; }

.map-title {
  font-family: 'Instrument Serif', serif;
  font-size: 28px; color: var(--gray); margin-bottom: 8px;
}

.map-subtitle { font-size: 15px; color: var(--muted); margin-bottom: 24px; }

.map-embed { border-radius: 14px; overflow: hidden; border: 1px solid var(--burgundy-border); }

/* ─── FOOTER ─── */
.footer {
  background: var(--gray); color: rgba(255,255,255,0.7);
  padding: 48px;
}

.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand-name {
  font-family: 'Instrument Serif', serif;
  font-size: 20px; color: var(--white); margin-bottom: 6px;
}

.footer-brand-sub { font-size: 11px; color: var(--muted-light); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.footer-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); }

.footer-col h4 { font-size: 12px; font-weight: 600; color: var(--white); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-links li { font-size: 14px; color: rgba(255,255,255,0.55); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 36px; padding-top: 20px;
  display: flex; justify-content: space-between;
  align-items: center; font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; direction: ltr !important; }
  .service-block > * { direction: ltr; }
  .values-grid { grid-template-columns: 1fr; }
  .timeline-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .certs-grid { justify-content: center; }
  .insurance-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .stat-item { min-width: 120px; }
}

@media (max-width: 640px) {
  .nav { padding: 0 20px; }
  .nav-links {
    display: none; position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white);
    flex-direction: column; gap: 0;
    padding: 8px 0;
    border-bottom: 1px solid var(--burgundy-border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; padding: 14px 24px;
    font-size: 15px !important;
  }
  .nav-links a:hover { background: var(--off-white); }
  .nav-cta { margin: 8px 24px !important; text-align: center; display: block !important; }
  .nav-hamburger { display: block; }
  .hero { padding: 48px 20px 64px; }
  .section { padding: 48px 20px; }
  .cta-strip { padding: 40px 20px; }
  .page-header { padding: 48px 20px 36px; }
  .service-block { padding: 48px 20px; }
  .about-hero { padding: 48px 20px; }
  .certifications { padding: 48px 20px; }
  .footer { padding: 32px 20px; }
  .services-hero { padding: 48px 20px; }
  .map-section { padding: 48px 20px; }
  .insurance-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-bar { padding: 28px 20px; }
  .hero-trust { flex-direction: column; gap: 8px; }
}
