:root {
  --navy: #071d49;
  --navy-2: #0c2d68;
  --red: #e31f26;
  --red-dark: #b8141a;
  --charcoal: #202631;
  --muted: #647082;
  --line: #dbe1ea;
  --soft: #f3f6fa;
  --soft-2: #e9eef5;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(7, 29, 73, 0.14);
  --shadow-strong: 0 28px 70px rgba(7, 29, 73, 0.22);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--charcoal);
  background:
    linear-gradient(180deg, #ffffff 0, #ffffff 45%, #f7f9fc 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 86px 0;
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(140deg, rgba(7, 29, 73, 0.99), rgba(10, 43, 95, 0.96)),
    var(--navy);
  background-size: 56px 56px, 56px 56px, auto;
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0)),
    var(--soft);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 4px;
}

.skip-link:focus {
  top: 12px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 225, 234, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(7, 29, 73, 0);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(7, 29, 73, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 84px;
}

.brand img {
  width: 154px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #263244;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--red);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(7, 29, 73, 0.1);
  transition: transform 180ms ease, background 180ms ease, border 180ms ease, box-shadow 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(7, 29, 73, 0.16);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.btn-primary {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.btn-large {
  min-height: 52px;
  padding: 14px 22px;
}

.btn-full {
  width: 100%;
}

.nav-toggle {
  display: none;
}

.hero {
  padding: 84px 0 42px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, rgba(227, 31, 38, 0.18), transparent 28%),
    linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.16) 100%);
  content: "";
  pointer-events: none;
}

.hero > .container {
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.76fr);
  gap: 58px;
  align-items: center;
}

.hero-copy {
  position: relative;
  padding-left: 22px;
}

.hero-copy::before {
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 10px;
  width: 4px;
  background: linear-gradient(180deg, var(--red), rgba(255, 255, 255, 0.18));
  border-radius: 999px;
  content: "";
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #ff6268;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 7vw, 4.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.22rem;
}

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

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-assurance span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  border: 8px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: visible;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
}

.hero-visual::after {
  position: absolute;
  right: -22px;
  bottom: -22px;
  z-index: -1;
  width: 72%;
  height: 72%;
  background: var(--red);
  border-radius: var(--radius);
  content: "";
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: 4px;
  filter: saturate(1.02) contrast(1.02);
}

.project-label {
  position: absolute;
  top: 18px;
  left: -18px;
  max-width: 260px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(7, 29, 73, 0.94);
  border-left: 4px solid var(--red);
  border-radius: 6px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.project-label span,
.project-label strong {
  display: block;
}

.project-label span {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.project-label strong {
  line-height: 1.25;
}

.visual-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  padding: 16px;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.94);
  border-left: 5px solid var(--red);
  border-radius: 6px;
}

.visual-note span {
  color: #3f4b5a;
}

.credibility-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  margin: 48px 0 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.credibility-strip li {
  position: relative;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.credibility-strip li::before {
  display: block;
  width: 28px;
  height: 3px;
  margin-bottom: 12px;
  background: var(--red);
  border-radius: 999px;
  content: "";
}

.credibility-strip li:last-child {
  border-right: 0;
}

.credibility-strip strong,
.credibility-strip span {
  display: block;
}

.credibility-strip strong {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.credibility-strip span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.two-column,
.split-panel,
.areas-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.positioning {
  background:
    linear-gradient(90deg, transparent 0, transparent calc(50% - 1px), rgba(7, 29, 73, 0.06) calc(50% - 1px), rgba(7, 29, 73, 0.06) calc(50% + 1px), transparent calc(50% + 1px)),
    var(--white);
}

.positioning h2 {
  color: var(--navy);
}

.copy-stack p:last-child {
  margin-bottom: 0;
}

.response-card {
  display: grid;
  gap: 4px;
  margin-top: 24px;
  padding: 18px 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
}

.response-card strong {
  color: var(--navy);
}

.response-card span {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.align-left {
  margin-left: 0;
  text-align: left;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card,
.work-card {
  position: relative;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(7, 29, 73, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card {
  min-height: 188px;
  overflow: hidden;
}

.service-card::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--navy));
  content: "";
}

.service-card::after {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 34px;
  height: 34px;
  background:
    linear-gradient(90deg, transparent 45%, rgba(7, 29, 73, 0.16) 45%, rgba(7, 29, 73, 0.16) 55%, transparent 55%),
    linear-gradient(180deg, transparent 45%, rgba(7, 29, 73, 0.16) 45%, rgba(7, 29, 73, 0.16) 55%, transparent 55%);
  border: 1px solid rgba(7, 29, 73, 0.14);
  border-radius: 6px;
  content: "";
}

.service-card:hover,
.work-card:hover {
  transform: translateY(-3px);
  border-color: rgba(7, 29, 73, 0.22);
  box-shadow: var(--shadow);
}

.service-card h3 {
  max-width: calc(100% - 44px);
  color: var(--navy);
}

.service-card p,
.work-card p,
.site-type-grid span,
.area-list span {
  color: var(--muted);
}

.service-card-wide {
  grid-column: span 2;
  background:
    linear-gradient(135deg, var(--navy), var(--navy-2));
  border-color: var(--navy);
}

.service-card-wide::after {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(90deg, transparent 45%, rgba(255, 255, 255, 0.22) 45%, rgba(255, 255, 255, 0.22) 55%, transparent 55%),
    linear-gradient(180deg, transparent 45%, rgba(255, 255, 255, 0.22) 45%, rgba(255, 255, 255, 0.22) 55%, transparent 55%);
}

.service-card-wide h3,
.service-card-wide p {
  color: var(--white);
}

.commercial-sites {
  background: var(--white);
}

.split-panel {
  position: relative;
  padding: 44px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  background-size: 42px 42px, 42px 42px, auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.split-panel::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: var(--red);
  content: "";
}

.split-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.site-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.site-type-grid span {
  position: relative;
  padding: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  font-weight: 800;
}

.site-type-grid span::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--red);
  border-radius: 2px;
  content: "";
}

.why-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 54px;
  align-items: start;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.why-list div {
  position: relative;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
}

.why-list div::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: rgba(227, 31, 38, 0.82);
  content: "";
}

.why-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.testimonial {
  background:
    linear-gradient(180deg, #ffffff, #f8fafc);
}

.testimonial-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 52px;
  padding: 48px;
  background: var(--white);
  border-top: 5px solid var(--red);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.testimonial-card::before {
  position: absolute;
  right: 28px;
  top: -14px;
  color: rgba(7, 29, 73, 0.07);
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 13rem;
  line-height: 1;
}

blockquote {
  position: relative;
  margin: 0;
  color: #2c3440;
  font-size: 1.1rem;
}

blockquote p {
  margin-bottom: 16px;
}

blockquote footer {
  display: grid;
  gap: 2px;
  margin-top: 24px;
  padding-top: 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

blockquote footer strong {
  color: var(--navy);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.work-card {
  padding: 0;
  overflow: hidden;
}

.work-card::before {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 4px;
  background: var(--red);
  content: "";
}

.work-card h3,
.work-card p {
  padding-inline: 20px;
}

.work-card h3 {
  margin-top: 20px;
}

.work-card p {
  padding-bottom: 22px;
}

.work-image {
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 4;
  color: var(--navy);
  background:
    linear-gradient(90deg, rgba(7, 29, 73, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 29, 73, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, rgba(7, 29, 73, 0.08), rgba(227, 31, 38, 0.1)),
    #eef2f7;
  background-size: 22px 22px, 22px 22px, auto;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) 1fr;
  gap: 56px;
  align-items: center;
}

.portrait-wrap {
  position: relative;
  padding: 12px;
  background:
    linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.portrait-wrap::after {
  position: absolute;
  right: -16px;
  bottom: -16px;
  z-index: -1;
  width: 68%;
  height: 68%;
  background: var(--red);
  border-radius: var(--radius);
  content: "";
}

.portrait-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.stats-row div,
.area-list div {
  position: relative;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(7, 29, 73, 0.05);
}

.area-list div {
  border-left: 5px solid var(--red);
}

.stats-row strong,
.stats-row span,
.area-list strong,
.area-list span {
  display: block;
}

.stats-row strong {
  color: var(--red);
  font-size: 1.7rem;
  line-height: 1;
}

.area-list {
  display: grid;
  gap: 14px;
}

.area-list strong {
  color: var(--navy);
}

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.faq-item {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(7, 29, 73, 0.05);
}

.faq-item h3 {
  color: var(--navy);
}

.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-item a {
  color: var(--navy);
  font-weight: 800;
  white-space: nowrap;
}

.contact {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, var(--navy), #101824);
  background-size: 52px 52px, 52px 52px, auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 34px;
  align-items: start;
}

.contact-panel,
.contact-form {
  padding: 30px;
  border-radius: var(--radius);
}

.contact-panel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.contact-lede {
  display: grid;
  gap: 2px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.contact-lede a {
  color: var(--white);
  font-weight: 800;
  white-space: nowrap;
  text-decoration: none;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-details a,
.contact-details span {
  color: rgba(255, 255, 255, 0.88);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  color: var(--charcoal);
  background: var(--white);
  border-top: 5px solid var(--red);
  box-shadow: var(--shadow-strong);
}

.field-group {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  color: #334154;
  font-weight: 800;
  font-size: 0.92rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd4df;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--charcoal);
  background: #fbfcfe;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(227, 31, 38, 0.18);
  border-color: var(--red);
}

textarea {
  resize: vertical;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 44px 0 82px;
  color: rgba(255, 255, 255, 0.78);
  background: #07111f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.footer-grid img {
  width: 150px;
  margin-bottom: 14px;
  padding: 8px;
  background: var(--white);
  border-radius: 6px;
}

.footer-grid p {
  max-width: 560px;
  margin-bottom: 8px;
}

.footer-grid div:last-child {
  display: grid;
  gap: 8px;
}

.footer-grid strong {
  color: var(--white);
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-qualifications {
margin-top: 3rem;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-qualifications h3 {
margin-bottom: 1.5rem;
color: rgba(255, 255, 255, 0.78);
font-size: 0.82rem;
font-weight: 800;
letter-spacing: 0.06em;
text-transform: uppercase;
}

.master-builders-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.mb-logo {
  width: 220px;
  height: auto;
  object-fit: contain;
}

.mb-number {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0;
}

.mb-intro {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0;
}

.footer-qualifications {
margin-top: 3rem;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-qualifications h3 {
margin-bottom: 1.5rem;
color: rgba(255, 255, 255, 0.78);
font-size: 0.82rem;
font-weight: 800;
letter-spacing: 0.06em;
text-transform: uppercase;
}

.mobile-call {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: none;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
  box-shadow: 0 16px 38px rgba(7, 29, 73, 0.24);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
  }

  .site-nav,
  .header-actions {
    grid-column: 1 / -1;
  }

  .site-nav {
    display: none;
    align-items: stretch;
    justify-content: start;
    gap: 0;
    padding: 12px 0 18px;
    border-top: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 11px 0;
  }

  .header-actions {
    display: none;
  }

  .hero-grid,
  .why-grid,
  .contact-grid,
  .testimonial-card,
  .about-grid,
  .two-column,
  .split-panel,
  .areas-grid {
    grid-template-columns: 1fr;
  }

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

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

  .credibility-strip li:nth-child(2) {
    border-right: 0;
  }

  .credibility-strip li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 56px 0;
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 116px;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-copy {
    padding-left: 16px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.75rem);
  }

  .hero-lede {
    font-size: 1.06rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 420px;
  }

  .hero-visual {
    border-width: 6px;
    overflow: hidden;
  }

  .hero-visual::after {
    display: none;
  }

  .project-label {
    left: 12px;
    right: 12px;
    max-width: none;
  }

  .visual-note {
    bottom: 82px;
  }

  .credibility-strip,
  .services-grid,
  .work-grid,
  .why-list,
  .site-type-grid,
  .stats-row,
  .faq-grid,
  .contact-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .credibility-strip li {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .credibility-strip li:last-child {
    border-bottom: 0;
  }

  .service-card-wide {
    grid-column: auto;
  }

  .split-panel,
  .testimonial-card,
  .contact-panel,
  .contact-form {
    padding: 24px;
  }

  .field-full,
  .form-note {
    grid-column: auto;
  }

  .site-footer {
    padding-bottom: 96px;
  }

  .mobile-call.is-visible {
    display: flex;
  }

  
  
}
