/* ==========================================================================
   Robert Palmer Contracting — stylesheet
   ========================================================================== */

@import url('/assets/fonts/fonts.css');

:root {
  /* Colors (OKLCH, matching design tokens from handoff) */
  --bg: oklch(0.985 0.004 90);
  --surface: oklch(0.99 0.002 90);
  --text: oklch(0.22 0.02 250);
  --text-muted: oklch(0.42 0.02 250);
  --text-muted-2: oklch(0.45 0.02 250);
  --navy: oklch(0.22 0.03 250);
  --navy-light: oklch(0.28 0.03 250);
  --navy-dark: oklch(0.16 0.02 250);
  --accent: oklch(0.55 0.17 25);
  --accent-light: oklch(0.7 0.15 25);
  --accent-tint: oklch(0.93 0.05 25);
  --border: oklch(0.9 0.005 90);
  --white: oklch(0.99 0 0);

  --font-sans: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Source Serif 4', Georgia, serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1280px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
h1, h2, h3, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Focus states (accessibility) ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--white);
  padding: 12px 20px;
  font-weight: 700;
  font-size: 14px;
  z-index: 200;
  border-radius: 0 0 4px 0;
}
.skip-link:focus {
  left: 0;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  background: oklch(0.985 0.004 90 / 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav__logo img { height: 46px; width: auto; display: block; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__link {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
}
.nav__link:hover { opacity: 0.75; }
.nav__cta {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--accent);
  color: var(--white);
  padding: 11px 22px;
  border-radius: 3px;
}
.nav__toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 60;
}
.nav__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__toggle[aria-expanded="true"] { position: fixed; top: 14px; right: 20px; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar { background: var(--white); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.btn:hover, .btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px oklch(0 0 0 / 0.18);
}
.btn--primary { background: var(--accent); color: var(--white); }
.btn--outline-dark { border: 1.5px solid oklch(0.92 0.01 90 / 0.6); color: var(--white); background: transparent; }
.btn--outline-light { border: 1.5px solid oklch(0.99 0 0 / 0.3); color: var(--white); background: transparent; }

.card-lift { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.card-lift:hover { transform: translateY(-5px); box-shadow: 0 16px 32px oklch(0 0 0 / 0.1); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes rpFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-fade-up { animation: rpFadeUp 0.9s var(--ease-out) both; }

/* ---------- Eyebrow / section heading ---------- */
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-head {
  max-width: 620px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head h2 { font-size: 42px; font-weight: 800; letter-spacing: -0.01em; color: var(--text); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
}
.hero__poster,
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--navy);
}
.hero__video {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.hero__video.is-ready {
  opacity: 1;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, oklch(0.18 0.03 250 / 0.85) 5%, oklch(0.18 0.03 250 / 0.15) 60%);
}
.hero__content {
  position: relative;
  padding: 140px 48px 64px;
  max-width: 900px;
}
.hero__eyebrow {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  text-shadow: 0 1px 4px oklch(0.1 0.02 250 / 0.8);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: 64px;
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 22px;
}
.hero p {
  font-size: 19px;
  line-height: 1.6;
  color: oklch(0.92 0.01 90);
  max-width: 620px;
  margin: 0 0 32px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Strength / two-column section ---------- */
.strength {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--surface);
}
.strength__text {
  padding: 96px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
}
.strength__text h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 22px;
}
.strength__text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 16px;
}
.strength__link {
  font-weight: 700;
  font-size: 15px;
  color: oklch(0.28 0.06 250);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 3px;
  margin-top: 10px;
}
.strength__img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  padding: 44px 48px;
}
.stats__item {
  text-align: center;
  border-right: 1px solid oklch(0.35 0.03 250);
  padding: 0 12px;
}
.stats__item:last-child { border-right: none; }
.stats__value { font-size: 38px; font-weight: 900; color: var(--accent-light); letter-spacing: -0.01em; }
.stats__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: oklch(0.85 0.01 90);
  margin-top: 6px;
}

/* ---------- Services ---------- */
.services { padding: 110px 48px; background: var(--bg); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  max-width: var(--container);
  margin: 0 auto;
  border: 1px solid var(--border);
}
.service-card {
  background: var(--surface);
  padding: 40px 34px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-align: left;
  border: none;
  width: 100%;
  transition: background 0.2s, transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { background: oklch(0.97 0.005 90); }
.service-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-card__icon span { width: 14px; height: 14px; background: var(--accent); border-radius: 3px; }
.service-card h3 { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 12px; }
.service-card p.desc { font-size: 15px; line-height: 1.65; color: oklch(0.45 0.02 250); }
.service-card__deep {
  font-size: 14.5px;
  line-height: 1.7;
  color: oklch(0.3 0.03 250);
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-style: italic;
  display: none;
}
.service-card[aria-expanded="true"] .service-card__deep { display: block; }
.service-card__toggle { font-size: 13px; font-weight: 700; color: var(--accent); margin-top: 16px; }
.service-card--cta {
  background: var(--accent);
  padding: 40px 34px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card--cta h3 { font-size: 20px; font-weight: 800; color: var(--white); margin: 0 0 12px; line-height: 1.25; }
.service-card--cta p { font-size: 15px; line-height: 1.6; color: oklch(0.95 0.04 25); margin: 0 0 20px; }
.service-card--cta a {
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  border-bottom: 2px solid oklch(0.99 0 0 / 0.6);
  width: fit-content;
  padding-bottom: 2px;
}

/* ---------- Gallery ---------- */
.gallery { background: var(--bg); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.gallery__item { aspect-ratio: 1; overflow: hidden; }
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery__item:hover img { transform: scale(1.06); }

/* ---------- History / Team ---------- */
.history { padding: 110px 48px; background: var(--surface); }
.history .section-head p { font-size: 17px; line-height: 1.7; color: oklch(0.42 0.02 250); }
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 72px;
}
.team-card {
  text-align: center;
  cursor: pointer;
  padding: 16px;
  border-radius: 10px;
  border: none;
  background: none;
  width: 100%;
}
.team-card__photo { width: 100%; aspect-ratio: 1; border-radius: 6px; overflow: hidden; margin-bottom: 20px; }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__name { font-size: 17px; font-weight: 800; letter-spacing: 0.01em; }
.team-card__role { font-size: 14px; font-weight: 600; color: var(--accent); margin-top: 4px; font-style: italic; }
.team-card__bio {
  text-align: left;
  font-size: 14.5px;
  line-height: 1.7;
  color: oklch(0.35 0.02 250);
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: none;
}
.team-card[aria-expanded="true"] .team-card__bio { display: block; }
.team-card__toggle { font-size: 13px; font-weight: 700; color: var(--accent); margin-top: 12px; }
.history__quote {
  text-align: center;
  font-size: 18px;
  font-family: var(--font-serif);
  font-style: italic;
  color: oklch(0.3 0.02 250);
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- Service areas ---------- */
.service-areas {
  padding: 64px 48px;
  background: var(--surface);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.service-areas h2 { font-size: 24px; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 18px; }
.service-areas p { font-size: 15.5px; line-height: 1.7; color: oklch(0.45 0.02 250); max-width: 820px; margin: 0 auto; }

/* ---------- FAQ ---------- */
.faq { padding: 110px 48px; background: var(--bg); }
.faq .section-head { max-width: 700px; margin-bottom: 56px; }
.faq .section-head h2 { font-size: 38px; }
.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.faq__item { background: var(--surface); padding: 26px 30px; }
.faq__item h3 { font-size: 17px; font-weight: 800; margin: 0 0 10px; }
.faq__item p { font-size: 15px; line-height: 1.65; color: oklch(0.42 0.02 250); }

/* ---------- Contact / CTA ---------- */
.contact { padding: 110px 48px; background: var(--navy); text-align: center; }
.contact__eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-light); margin-bottom: 18px;
}
.contact h2 {
  font-size: 46px; font-weight: 900; letter-spacing: -0.02em; color: var(--white);
  margin: 0 0 20px; max-width: 780px; margin-left: auto; margin-right: auto;
}
.contact > p { font-size: 17px; color: oklch(0.82 0.01 90); max-width: 560px; margin: 0 auto 40px; }

.contact-form { max-width: 640px; margin: 0 auto; text-align: left; display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field label {
  display: block; font-size: 13px; font-weight: 600; color: oklch(0.82 0.01 90); margin-bottom: 7px;
}
.form-field input,
.form-field select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 3px;
  border: 1px solid oklch(0.4 0.02 250);
  background: var(--white);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
}
.form-field input:focus-visible,
.form-field select:focus-visible { outline: 2px solid var(--accent-light); outline-offset: 1px; }
.form-submit { margin-top: 8px; width: fit-content; }
.form-error {
  font-size: 13px;
  color: oklch(0.75 0.15 30);
  margin-top: 4px;
  display: none;
}
.form-field.has-error input,
.form-field.has-error select { border-color: oklch(0.6 0.18 30); }
.form-field.has-error .form-error { display: block; }
.form-honeypot {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.form-submit-error {
  font-size: 14px;
  color: oklch(0.75 0.15 30);
  background: oklch(0.75 0.15 30 / 0.1);
  border: 1px solid oklch(0.6 0.18 30);
  border-radius: 4px;
  padding: 12px 14px;
}
.form-submit-error a { color: inherit; text-decoration: underline; }
.form-submit[disabled] { opacity: 0.7; cursor: not-allowed; }

.contact-confirm {
  max-width: 520px;
  margin: 0 auto;
  background: var(--navy-light);
  border-radius: 6px;
  padding: 40px;
  text-align: center;
}
.contact-confirm__title { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.contact-confirm p { font-size: 15px; color: oklch(0.82 0.01 90); }

.contact__alt { margin-top: 32px; display: flex; gap: 16px; justify-content: center; }

/* ---------- Footer ---------- */
.footer { padding: 64px 48px 40px; background: var(--navy-dark); color: oklch(0.85 0.01 90); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto 48px;
}
.footer__logo img { height: 44px; width: auto; display: block; }
.footer__tagline { font-size: 14px; line-height: 1.7; color: oklch(0.65 0.01 90); margin-top: 16px; max-width: 280px; }
.footer__social { display: flex; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.footer__social a {
  font-size: 13px; font-weight: 600; color: oklch(0.85 0.01 90);
  border: 1px solid oklch(0.35 0.02 250); padding: 8px 14px; border-radius: 3px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer__social a:hover { border-color: var(--accent); color: var(--white); }
.footer__col-title {
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: oklch(0.5 0.02 90); margin-bottom: 16px;
}
.footer__col p { font-size: 14px; line-height: 1.7; }
.footer__col a[href^="tel:"] { font-weight: 700; color: var(--white); }
.footer__col a[href^="mailto:"] { text-decoration: underline; text-underline-offset: 2px; }
.footer__bottom {
  border-top: 1px solid oklch(0.3 0.02 250);
  padding-top: 28px;
  max-width: var(--container);
  margin: 0 auto;
  font-size: 13px;
  color: oklch(0.5 0.02 90);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Page hero (Our Builds / Reviews) ---------- */
.page-hero { padding: 88px 48px 64px; max-width: 780px; margin: 0 auto; text-align: center; }
.page-hero h1 { font-size: 46px; font-weight: 900; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 20px; }
.page-hero p { font-size: 17px; line-height: 1.7; color: oklch(0.42 0.02 250); }

/* ---------- Our Builds ---------- */
.builds { max-width: 1100px; margin: 0 auto; padding: 0 48px 110px; display: flex; flex-direction: column; gap: 4px; }
.build-row { display: grid; gap: 48px; align-items: center; padding: 56px 0; border-bottom: 1px solid var(--border); }
.build-row__photos { display: grid; gap: 10px; }
.build-row__photos--stacked { gap: 16px; margin-bottom: 32px; }
.build-row__photo { aspect-ratio: 4/3; border-radius: 6px; overflow: hidden; }
.build-row__photo img { width: 100%; height: 100%; object-fit: cover; }
.build-row__text { max-width: 720px; }
.build-row__tag {
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.build-row__text h2 { font-size: 28px; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 14px; }
.build-row__text p { font-size: 16px; line-height: 1.75; color: var(--text-muted); }
.build-row--stacked { display: block; }

/* ---------- Reviews ---------- */
.reviews-summary { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.reviews-summary__score { font-size: 22px; font-weight: 900; }
.reviews-summary__stars { color: oklch(0.7 0.15 55); font-size: 20px; letter-spacing: 2px; }
.reviews-summary__label { font-size: 15px; color: oklch(0.45 0.02 250); }
.page-hero .reviews-note { font-size: 15px; line-height: 1.7; color: oklch(0.5 0.02 250); margin-top: 20px; }

.reviews-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 48px 110px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.review-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
  padding: 28px; display: flex; flex-direction: column;
}
.review-card__stars { color: oklch(0.7 0.15 55); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.review-card p { font-size: 15px; line-height: 1.65; color: oklch(0.32 0.02 250); margin: 0 0 20px; flex-grow: 1; }
.review-card__footer {
  display: flex; align-items: center; gap: 10px; padding-top: 16px; border-top: 1px solid oklch(0.92 0.005 90);
}
.review-card__avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--accent-tint);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: var(--accent); flex-shrink: 0;
}
.review-card__name { font-size: 14px; font-weight: 700; }
.review-card__meta { font-size: 12.5px; color: oklch(0.5 0.02 250); }

/* ---------- Generic CTA band (Our Builds / Reviews) ---------- */
.cta-band { padding: 90px 48px; background: var(--navy); text-align: center; }
.cta-band h2 { font-size: 38px; font-weight: 900; letter-spacing: -0.02em; color: var(--white); margin: 0 0 18px; }
.cta-band p { font-size: 16px; color: oklch(0.82 0.01 90); max-width: 520px; margin: 0 auto 32px; }
.cta-band__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.mini-footer { padding: 32px 48px; background: var(--navy-dark); color: oklch(0.6 0.01 90); text-align: center; font-size: 13px; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .team { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (max-width: 900px) {
  .strength { grid-template-columns: 1fr; }
  .strength__text { padding: 64px 32px; max-width: none; order: 2; }
  .strength__img { order: 1; min-height: 320px; }
  .hero h1 { font-size: 46px; }
  .hero p { font-size: 17px; }
  .contact h2 { font-size: 36px; }
  .build-row { grid-template-columns: 1fr !important; }
  .build-row .build-row__photos { order: 1 !important; }
  .build-row .build-row__text { order: 2 !important; }
}

@media (max-width: 760px) {
  .nav { padding: 14px 20px; }
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    top: 0;
    height: 100vh;
    width: min(320px, 85vw);
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 48px 40px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__link { color: var(--white); font-size: 18px; }
  .nav__cta { width: 100%; text-align: center; }

  .hero__content { padding: 120px 20px 48px; }
  .hero h1 { font-size: 34px; }
  .hero__eyebrow { font-size: 13px; }
  .hero p { font-size: 16px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }

  .strength__text { padding: 48px 20px; }
  .strength__text h2 { font-size: 30px; }

  .stats { grid-template-columns: repeat(2, 1fr); gap: 24px 0; padding: 32px 20px; }
  .stats__item:nth-child(2n) { border-right: none; }
  .stats__item:nth-child(1), .stats__item:nth-child(2) { border-bottom: 1px solid oklch(0.35 0.03 250); padding-bottom: 20px; }

  .services { padding: 64px 20px; }
  .services__grid { grid-template-columns: 1fr; }
  .section-head h2 { font-size: 30px; }

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

  .history { padding: 64px 20px; }
  .team { grid-template-columns: 1fr; max-width: 400px; }

  .service-areas { padding: 48px 20px; }

  .faq { padding: 64px 20px; }
  .faq .section-head h2 { font-size: 28px; }
  .faq__item { padding: 20px; }

  .contact { padding: 64px 20px; }
  .contact h2 { font-size: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .contact__alt { flex-direction: column; align-items: stretch; }
  .form-submit { width: 100%; }

  .footer { padding: 48px 20px 32px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; }

  .page-hero { padding: 64px 20px 40px; }
  .page-hero h1 { font-size: 32px; }

  .builds { padding: 0 20px 64px; }
  .build-row { gap: 24px; padding: 40px 0; }
  .build-row__photos { grid-template-columns: 1fr !important; }
  .build-row__text h2 { font-size: 24px; }

  .reviews-grid { grid-template-columns: 1fr; padding: 0 20px 64px; }

  .cta-band { padding: 56px 20px; }
  .cta-band h2 { font-size: 28px; }
  .cta-band__actions { flex-direction: column; align-items: stretch; }
}
