/* ==========================================================================
   Design MJB Building Design, styles.css
   Mobile-first, plain CSS. Brand: black / white / gold per old site + logo.
   ========================================================================== */

/* --- Tokens --- */
:root {
  --ink: #121316;          /* near-black backgrounds, headings */
  --ink-soft: #33363c;     /* body text */
  --gold: #f0b323;         /* brand gold (CTAs, accents) */
  --gold-dark: #d09a0e;    /* hover state */
  --paper: #ffffff;
  --grey-50: #f7f7f8;
  --grey-200: #e4e5e8;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(18, 19, 22, 0.08);
  --shadow-lift: 0 8px 24px rgba(18, 19, 22, 0.14);
  --container: 1160px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
}

/* --- Reset & base --- */
*,
*::before,
*::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--paper);
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

h1, h2, h3 {
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 700;
}

h1 { font-size: clamp(1.75rem, 4.5vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.125rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

img, video, iframe { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* --- Utilities --- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.container-narrow { max-width: 820px; }

.is-hidden { display: none; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  fill: currentColor;
  flex: none;
  vertical-align: -0.25em;
}

.section { padding-block: 3.5rem; }
.section-grey { background: var(--grey-50); }
.section-dark { background: var(--ink); }
.section-dark h2, .section-dark h3 { color: var(--paper); }
.section-dark p { color: #c8cacf; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.section-head p { margin-bottom: 0; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: var(--gold-dark); }

.btn-dark {
  background: var(--ink);
  color: var(--paper);
}
.btn-dark:hover { background: #2b2d33; }

.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-outline-dark {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--ink);
  color: var(--paper);
}

.text-link {
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
}
.text-link:hover { color: var(--gold-dark); }

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.5rem;
}

.brand img {
  width: 81px;
  height: 81px;
  border-radius: 4px;
}

.site-nav { margin-left: auto; }

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.25rem;
}

.nav-menu a {
  display: block;
  padding: 0.5rem 0.9rem;
  color: var(--paper);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--gold); }

.header-phone { white-space: nowrap; padding: 0.6rem 1.2rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.75rem;
  cursor: pointer;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: var(--paper);
  transition: transform 0.2s;
}
.nav-toggle-bar { position: relative; }
.nav-toggle-bar::before { position: absolute; top: -8px; }
.nav-toggle-bar::after { position: absolute; top: 8px; }

/* --- Hero (full-bleed image, dark overlay, trust row) --- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--paper);
  padding-block: 5rem 2.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

/* Scrim is weighted to the text side so the render stays legible on the right */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(18, 19, 22, 0.62) 0%, rgba(18, 19, 22, 0.78) 100%);
}

.hero-inner { max-width: var(--container); }

.hero h1 {
  color: var(--paper);
  max-width: 18em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.hero-lead {
  font-size: 1.1rem;
  max-width: 46em;
  color: #eef0f2;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
}

.hero-trust { text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6); }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.btn-outline-light {
  border-color: var(--paper);
  color: var(--paper);
  background: transparent;
}
.btn-outline-light:hover {
  background: var(--paper);
  color: var(--ink);
}

.hero-trust {
  list-style: none;
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.35;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-trust .icon {
  width: 1.6em;
  height: 1.6em;
  color: var(--gold);
}

/* --- Strip --- */
.strip {
  background: var(--ink);
  color: var(--paper);
  font-size: 0.95rem;
}

.strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 3rem;
  padding-block: 0.75rem;
}

.strip p { margin: 0; display: flex; align-items: center; gap: 0.5rem; }
.strip a { color: var(--gold); text-decoration: none; }
.strip a:hover { text-decoration: underline; }
.strip .icon { color: var(--gold); }

/* --- Trust badges --- */
.badges { padding-block: 1.75rem; border-bottom: 1px solid var(--grey-200); }

.badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 3rem;
}

.badges-row img { width: auto; height: 64px; }
.badges-row .badge-tall { height: 120px; }

/* --- Cards --- */
.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card {
  background: var(--paper);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: var(--shadow-lift); }

.card > img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.card-body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.card-tagline {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  flex: none;
}

.card-body p { flex: 1; }
.card-body .text-link { align-self: flex-start; }

/* --- Banner --- */
.banner {
  background: var(--gold);
  color: var(--ink);
}

.banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  padding-block: 2rem;
}

.banner-title {
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0;
}
.banner-sub { margin: 0 0 0.75rem; }

/* --- Featured project & galleries --- */
.featured {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.featured-media {
  position: relative;
}

.featured-media video {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  background: var(--ink);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4.5rem;
  height: 4.5rem;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(18, 19, 22, 0.45);
  transition: transform 0.2s, background-color 0.2s;
}

.play-btn:hover {
  background: var(--gold-dark);
  transform: translate(-50%, -50%) scale(1.08);
}

.play-btn svg {
  width: 2.25rem;
  height: 2.25rem;
  fill: currentColor;
  margin-left: 0.2rem;
}

.play-btn[hidden] { display: none; }

.check-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 800;
}

.gallery-title {
  text-align: center;
  margin: 2.5rem 0 1.25rem;
  padding-top: 1rem;
}

.gallery {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s;
}
.gallery img:hover { box-shadow: var(--shadow-lift); }

/* Wide first tile keeps the grid free of trailing gaps */
@media (min-width: 640px) {
  .gallery .feature { grid-column: span 2; }
  .gallery .feature img { aspect-ratio: 2 / 1; }
}

/* --- Process steps --- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}

.steps li {
  background: #1c1e23;
  border: 1px solid #2b2d33;
  border-radius: var(--radius);
  padding: 1.5rem;
}

.steps h3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.05rem;
}

.steps p { margin: 0; }

.step-num {
  flex: none;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
}

/* --- Split sections --- */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.quote-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.quote-list li {
  border-left: 4px solid var(--gold);
  background: var(--grey-50);
  padding: 0.6rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--ink);
}

.about-media { margin: 0; }

.about-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
}

/* --- Meet the team --- */
.team-title {
  text-align: center;
  margin: 3.5rem 0 1.75rem;
  font-size: 1.4rem;
}

.team-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  max-width: 640px;
}

.team-grid figure { margin: 0; }

.team-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.team-grid figcaption {
  text-align: center;
  padding-top: 0.85rem;
}

.team-grid strong {
  display: block;
  color: var(--ink);
  font-size: 1.1rem;
}

.team-grid span {
  display: block;
  font-size: 0.9rem;
}

.team-quote {
  max-width: 44em;
  margin: 2.5rem auto 0;
  padding: 0 1rem;
  border-left: 4px solid var(--gold);
  text-align: center;
}

.team-quote p {
  margin: 0;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink);
}

/* --- Council strip --- */
.councils-title {
  text-align: center;
  margin: 3rem 0 1.5rem;
  font-size: 1.1rem;
}

.councils {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.councils li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.4rem;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  font-weight: 700;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.3;
}

.councils .icon {
  width: 1.9em;
  height: 1.9em;
  color: var(--gold-dark);
}

.councils img {
  width: auto;
  height: 56px;
  object-fit: contain;
}

.councils-note {
  max-width: 46em;
  margin: 1.5rem auto 0;
  text-align: center;
}

/* --- Why choose --- */
.why-title {
  text-align: center;
  margin: 3.5rem 0 1.5rem;
  font-size: 1.4rem;
}

.why-grid {
  display: grid;
  gap: 1.25rem;
}

.why-card {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.why-card .icon {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.why-card h4 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--ink);
}

.why-card p { margin: 0; }

/* --- Service areas --- */
.areas-grid {
  display: grid;
  gap: 1.75rem 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

/* Min-height keeps every list starting on the same line when a heading wraps */
.areas-grid h3 {
  border-bottom: 3px solid var(--gold);
  padding-bottom: 0.4rem;
  font-size: 1.05rem;
  min-height: calc(2.4em + 0.4rem);
  display: flex;
  align-items: flex-end;
  margin-bottom: 0.75rem;
}

.areas-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.areas-grid li { padding-block: 0.2rem; }

/* --- FAQ --- */
details {
  background: var(--paper);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow);
}

summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  padding: 1rem 1.25rem;
  list-style-position: inside;
}
summary:hover { color: var(--gold-dark); }

details p {
  padding: 0 1.25rem 1.25rem;
  margin: 0;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.form-row { display: grid; gap: 0 1rem; }

.form-field { margin-bottom: 1rem; }

.form-field label {
  display: block;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  font: inherit;
  color: var(--ink-soft);
  background: var(--paper);
}

.form-field textarea { resize: vertical; }

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold-dark);
}

.contact-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  background: var(--grey-50);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-block: 0.45rem;
  font-weight: 600;
  color: var(--ink);
}
.contact-list .icon { color: var(--gold-dark); }
.contact-list a { text-decoration: none; }
.contact-list a:hover { color: var(--gold-dark); }

.map {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* --- Final CTA --- */
.final-cta {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding-block: 3.5rem;
}

.final-cta h2 { color: var(--paper); }
.final-cta p { color: #c8cacf; }
.final-cta .hero-ctas { justify-content: center; }
.final-cta .btn-outline { border-color: var(--paper); color: var(--paper); }
.final-cta .btn-outline:hover { background: var(--paper); color: var(--ink); }

/* --- Footer --- */
.site-footer {
  background: var(--ink);
  color: #c8cacf;
  border-top: 4px solid var(--gold);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-block: 3rem 2rem;
}

.footer-heading {
  color: var(--gold);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.hours {
  border-collapse: collapse;
  font-size: 0.9rem;
  width: 100%;
  max-width: 260px;
}
.hours th {
  text-align: left;
  font-weight: 600;
  color: var(--paper);
  padding: 0.2rem 0.75rem 0.2rem 0;
  white-space: nowrap;
}
.hours td {
  padding-block: 0.2rem;
  text-align: right;
  white-space: nowrap;
}

.footer-brand { text-align: center; }
.footer-brand img {
  width: 96px;
  height: 96px;
  margin: 0 auto 1rem;
  border-radius: 4px;
}

.footer-brand-name {
  color: var(--paper);
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.footer-tagline {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li { padding-block: 0.25rem; }
.footer-list a { color: #c8cacf; text-decoration: none; }
.footer-list a:hover { color: var(--gold); }

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  transition: background-color 0.2s;
}
.footer-socials a:hover { background: var(--gold-dark); }

.site-footer nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer nav a {
  display: inline-block;
  padding-block: 0.25rem;
  color: #c8cacf;
  text-decoration: none;
}
.site-footer nav a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid #2b2d33;
  padding-block: 1.25rem;
  font-size: 0.875rem;
  text-align: center;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ==========================================================================
   Tablet ≥ 640px
   ========================================================================== */
@media (min-width: 640px) {
  .section { padding-block: 4.5rem; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery-4 { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .banner-inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .banner-sub { margin-bottom: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { text-align: left; }
  .footer-brand img { margin-left: 0; }
  .footer-socials { justify-content: flex-start; }
}

/* ==========================================================================
   Desktop ≥ 960px
   ========================================================================== */
@media (min-width: 960px) {
  .hero {
    padding-block: 7rem 3rem;
    min-height: 82vh;
    display: flex;
    align-items: center;
  }
  .hero-inner { width: 100%; }

  /* Text side stays dark, right side clears so the render reads */
  .hero::after {
    background:
      linear-gradient(180deg, rgba(18, 19, 22, 0.2) 0%, rgba(18, 19, 22, 0) 30%, rgba(18, 19, 22, 0.5) 100%),
      linear-gradient(95deg, rgba(18, 19, 22, 0.92) 0%, rgba(18, 19, 22, 0.82) 34%, rgba(18, 19, 22, 0.42) 62%, rgba(18, 19, 22, 0.1) 88%);
  }

  .hero h1 { max-width: 15em; }
  .hero-lead { max-width: 32em; }
  .featured { grid-template-columns: 1.1fr 1fr; }
  .split { grid-template-columns: 1.2fr 1fr; gap: 4rem; }
  .split-media { grid-template-columns: 1fr 1.6fr; align-items: center; }
  .gallery-4 { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(5, 1fr); gap: 1rem; }
  .steps li { padding: 1.25rem; }
  .contact-grid { grid-template-columns: 1.2fr 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1.2fr 1fr 1fr 1.1fr; gap: 2rem; }
}

/* ==========================================================================
   Mobile nav ≤ 767px
   ========================================================================== */
@media (max-width: 767px) {
  .nav-toggle { display: block; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--ink);
    padding: 0.5rem 1.25rem 1rem;
    gap: 0;
    box-shadow: var(--shadow-lift);
  }

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

  .nav-menu a { padding: 0.85rem 0.5rem; border-bottom: 1px solid #2b2d33; }
  .nav-menu li:last-child a { border-bottom: 0; }

  .header-phone { margin-left: auto; padding: 0.5rem 0.9rem; font-size: 0.9rem; }
  .site-nav { margin-left: 0; order: 3; }

  /* Badge row: even two-column grid instead of ragged wrapping */
  .badges-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
    justify-items: center;
    align-items: center;
  }
  .badges-row img { height: 48px; }
  .badges-row .badge-tall { height: 110px; }

  /* Hero trust row: aligned two-column grid, orphan centred full-width */
  .hero-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .hero-trust li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-content: center;
  }
}
