/* ============================================
   Akaki Building Inspections and Consulting
   Base stylesheet
   ============================================ */

:root {
  --teal: #1b3238;
  --teal-800: #16282d;
  --teal-600: #274e57;
  --teal-tint: #e8eeee;
  --cream: #f6efe5;
  --cream-dark: #ece1cf;
  --cream-darker: #ddceb3;
  --terracotta: #b64f2c;
  --terracotta-dark: #96401f;
  --terracotta-tint: #f3ded4;
  --text: #1b3238;
  --text-muted: #52676b;
  --white: #ffffff;
  --radius: 10px;
  --shadow-sm: 0 2px 8px rgba(27, 50, 56, 0.08);
  --shadow-md: 0 8px 30px rgba(27, 50, 56, 0.12);
  --max-width: 1180px;
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--text-muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--terracotta);
  display: inline-block;
}

.section {
  padding: 88px 0;
}
.section--tight { padding: 64px 0; }
.section--cream-dark { background: var(--cream-dark); }
.section--teal {
  background: var(--teal);
  color: var(--cream);
}
.section--teal p { color: #b9c7c9; }
.section--teal h2, .section--teal h3 { color: var(--white); }

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(182, 79, 44, 0.35);
}
.btn--primary:hover { background: var(--terracotta-dark); }
.btn--outline {
  background: transparent;
  border-color: currentColor;
  color: var(--teal);
}
.btn--outline:hover { background: var(--teal); color: var(--white); }
.btn--outline-light {
  background: transparent;
  border-color: rgba(246,239,229,0.5);
  color: var(--cream);
}
.btn--outline-light:hover { background: var(--cream); color: var(--teal); }
.btn--sm { padding: 10px 18px; font-size: 0.88rem; }
.btn--block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 239, 229, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(27,50,56,0.08);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 42px; width: auto; }
.brand__text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.18rem;
  line-height: 1.1;
  color: var(--teal);
}
.brand__text span {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}
.main-nav a:hover { color: var(--terracotta); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--teal);
  white-space: nowrap;
  flex-shrink: 0;
}
.header-phone svg { flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  margin: 5px 0;
  transition: all 0.2s ease;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 90px;
  background: var(--cream);
}
.hero__glyph {
  position: absolute;
  right: -80px;
  top: -60px;
  width: 480px;
  opacity: 0.07;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { color: var(--teal); }
.hero h1 em {
  font-style: normal;
  color: var(--terracotta);
}
.hero__lede {
  font-size: 1.12rem;
  max-width: 480px;
  margin-bottom: 30px;
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero__call {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.stat-row__item {
  min-width: 120px;
}
.stat-row__num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
}
.stat-row__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero__photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__photo-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(27,50,56,0.85);
  color: var(--cream);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__photo-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  display: inline-block;
}
.hero__badge {
  position: absolute;
  top: -22px;
  right: -22px;
  background: var(--terracotta);
  color: var(--white);
  width: 108px;
  height: 108px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: 0 8px 20px rgba(182,79,44,0.4);
  transform: rotate(6deg);
}

/* ===== Trust strip ===== */
.trust-strip {
  background: var(--teal);
  color: var(--cream);
  padding: 22px 0;
}
.trust-strip__row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-strip__row div { display: flex; align-items: center; gap: 10px; }
.trust-strip__row svg { flex-shrink: 0; color: var(--terracotta); }

/* ===== Services ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-grid--5 { grid-template-columns: repeat(5, 1fr); }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27,50,56,0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--terracotta-tint);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card__price {
  font-weight: 700;
  color: var(--terracotta);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.service-card h3 { margin-bottom: 8px; }
.service-card p { flex-grow: 1; }
.service-card__link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
}
.service-card__link svg { transition: transform 0.15s ease; }
.service-card:hover .service-card__link svg { transform: translateX(3px); }

/* ===== Why us ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-grid--top { align-items: flex-start; gap: 56px; }
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.why-list li {
  display: flex;
  gap: 18px;
}
.why-list__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--teal-tint);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-list h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 4px;
}
.why-list p { margin: 0; font-size: 0.95rem; }

.why-photo-stack {
  position: relative;
}
.why-photo-stack img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.why-photo-stack .photo-main {
  width: 84%;
  margin-left: auto;
}
.why-photo-stack .photo-sub {
  position: absolute;
  width: 55%;
  left: 0;
  bottom: -32px;
  border: 6px solid var(--cream);
}

/* ===== Comparison ===== */
.compare-wrap {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(27,50,56,0.06);
}
.compare-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
}
.compare-grid > div {
  padding: 22px 20px;
  border-bottom: 1px solid rgba(27,50,56,0.07);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
}
.compare-grid .row-label {
  color: var(--text);
  font-weight: 500;
}
.compare-grid > div:not(.row-label) { justify-content: center; text-align: center; }
.compare-head {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem !important;
  flex-direction: column;
  align-items: center !important;
  gap: 4px;
  background: var(--cream-dark);
}
.compare-head.is-comprehensive { background: var(--teal); color: var(--white); }
.compare-head small {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--terracotta);
}
.compare-head.is-comprehensive small { color: #f0c9b5; }
.tick { color: var(--terracotta); font-size: 1.15rem; font-weight: 700; }
.dash { color: #c8c1b3; }
.compare-grid > div:last-child { border-bottom: none; }
.compare-cta {
  padding: 26px 20px;
  text-align: center;
  background: var(--cream-dark);
}

.compare-cards { display: none; }
.compare-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27,50,56,0.06);
  overflow: hidden;
  margin-bottom: 16px;
}
.compare-card__head {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 18px 20px;
  background: var(--cream-dark);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.compare-card__head small {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--terracotta);
}
.compare-card--comprehensive .compare-card__head {
  background: var(--teal);
  color: var(--white);
}
.compare-card--comprehensive .compare-card__head small { color: #f0c9b5; }
.compare-card ul {
  list-style: none;
  margin: 0;
  padding: 10px 20px 18px;
}
.compare-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(27,50,56,0.06);
}
.compare-card li:last-child { border-bottom: none; }
.compare-card .tick { color: var(--terracotta); font-weight: 700; }
.compare-card .dash { color: #c8c1b3; }

/* ===== How it works ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 8px;
}
.step__num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--terracotta-tint);
  -webkit-text-stroke: 1.5px var(--terracotta);
  line-height: 1;
  margin-bottom: 14px;
}
.step h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  margin-bottom: 8px;
}
.step p { font-size: 0.92rem; margin-bottom: 0; }

/* ===== Evidence gallery ===== */
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
}
.evidence-grid figure {
  margin: 0;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.evidence-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.evidence-grid figure:hover img { transform: scale(1.06); }
.evidence-grid figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 12px 14px 10px;
  background: linear-gradient(to top, rgba(27,50,56,0.92), rgba(27,50,56,0));
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.evidence-grid .span-2 { grid-column: span 2; }
.evidence-grid .span-2-row { grid-row: span 2; }

/* ===== Service areas ===== */
.areas-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.areas-list span {
  background: rgba(246,239,229,0.08);
  border: 1px solid rgba(246,239,229,0.22);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
}
.areas-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 3px solid var(--terracotta);
  background: rgba(246,239,229,0.06);
  font-size: 0.9rem;
}
.areas-note p { margin: 0; color: #cfd9da; }

.map-graphic {
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 2px dashed rgba(246,239,229,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}
.map-graphic::before {
  content: "";
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 2px dashed rgba(246,239,229,0.2);
}
.map-graphic__center {
  background: var(--terracotta);
  color: var(--white);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: 0 0 0 10px rgba(182,79,44,0.15);
}

/* ===== About teaser ===== */
.people-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.people-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27,50,56,0.06);
}
.people-card__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.people-card h3 { margin-bottom: 2px; }
.people-card__role {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
  display: block;
}

/* ===== Testimonial-ish / quote ===== */
.quote-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.quote-block__mark {
  font-family: var(--font-head);
  font-size: 4rem;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 4px;
}
.quote-block p.quote-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--teal);
  font-weight: 500;
  line-height: 1.4;
}

/* ===== FAQ accordion ===== */
.faq-group { max-width: 820px; margin: 0 auto; }
.faq-group + .faq-group { margin-top: 48px; }
.faq-group__title {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 18px;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(27,50,56,0.08);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 52px 20px 24px;
  position: relative;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--teal);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--terracotta);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item__body { padding: 0 24px 22px; }
.faq-item__body p { margin: 0; font-size: 0.96rem; }
.faq-item__body p + p { margin-top: 10px; }

/* ===== Contact ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.contact-info {
  background: var(--teal);
  color: var(--cream);
  padding: 48px 42px;
}
.contact-info h3 { color: var(--white); }
.contact-info p { color: #b9c7c9; }
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-line svg { color: var(--terracotta); flex-shrink: 0; margin-top: 3px; }
.contact-line a, .contact-line span { font-weight: 600; color: var(--white); font-size: 0.98rem; }
.contact-line small { display: block; color: #93a5a8; font-weight: 400; font-size: 0.78rem; margin-top: 2px; }

.contact-form { padding: 48px 42px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--teal);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid #ddd2bd;
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}
.field textarea { resize: vertical; min-height: 100px; }

/* ===== Footer ===== */
.site-footer {
  background: var(--teal-800);
  color: #9fb0b2;
  padding: 60px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(246,239,229,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 36px; }
.footer-brand span { font-family: var(--font-head); color: var(--cream); font-weight: 600; font-size: 1.05rem; }
.site-footer h5 {
  color: var(--cream);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer ul a { font-size: 0.9rem; }
.site-footer ul a:hover { color: var(--terracotta); }
.footer-disclaimer {
  font-size: 0.78rem;
  line-height: 1.65;
  color: #7c9092;
  max-width: 920px;
  padding-top: 26px;
  margin: 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.82rem;
}
.social-links { display: flex; gap: 14px; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(246,239,229,0.2);
  display: flex; align-items: center; justify-content: center;
}
.social-links a:hover { background: var(--terracotta); border-color: var(--terracotta); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__photo { max-width: 420px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; }
  .why-photo-stack { max-width: 420px; margin: 40px auto 0; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid--5 { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .evidence-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-wrap { grid-template-columns: 1fr; }
  .map-graphic { margin-top: 30px; }
  .people-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .service-grid { grid-template-columns: 1fr; }
  .service-grid--5 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .evidence-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .evidence-grid .span-2 { grid-column: span 2; }
  .compare-wrap { display: none; }
  .compare-cards { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stat-row { gap: 24px; }

  .header-phone { display: none; }
  .brand__text span { display: none; }
  .brand__text { font-size: 1.05rem; }
  .site-header__bar { gap: 12px; }
  .header-actions { gap: 10px; }
  .btn--primary.btn--sm { padding: 9px 14px; font-size: 0.82rem; }
}

@media (max-width: 360px) {
  .brand__text { display: none; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--teal);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-nav__close { background: none; border: none; color: var(--cream); font-size: 1.8rem; cursor: pointer; }
.mobile-nav a {
  color: var(--cream);
  font-family: var(--font-head);
  font-size: 1.4rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(246,239,229,0.12);
}
