/* Blast & Go
   Colours are taken from the supplied logo.
   Recolour the site from the variables below. */

:root {
  --navy: #07182c;
  --navy-soft: #10243d;
  --blue: #0c5cba;
  --blue-deep: #094a96;
  --blue-bright: #1a73e0;
  --ink: #142033;
  --muted: #4a596c;
  --line: #d5dfeb;
  --paper: #f4f7fb;
  --mist: #e7f1fb;
  --sky: #d7e7f6;
  --white: #ffffff;
  --focus: #0c5cba;
  --header-offset: 92px;
  --display: "Outfit", "Segoe UI", sans-serif;
  --body: "Source Sans 3", "Segoe UI", sans-serif;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--blue);
}

a:hover {
  color: var(--blue-deep);
}

h1,
h2,
h3,
.btn,
.footer-title,
.ba-badge,
.step-num {
  font-family: var(--display);
  letter-spacing: -0.02em;
}

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

p:last-child {
  margin-bottom: 0;
}

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

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  z-index: 80;
  background: var(--white);
  color: var(--navy);
  padding: 0.5rem 0.75rem;
  font-weight: 700;
}

.skip-link:focus {
  top: 0.5rem;
}

.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;
}

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: 3.25rem 0;
}

.section-kicker {
  margin: 0 0 0.45rem;
  color: var(--blue);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section h2,
.final-cta h2,
.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.15;
  color: var(--navy);
}

.section-intro {
  max-width: 40rem;
  margin: 0 0 1.6rem;
  color: var(--muted);
  font-size: 1.125rem;
}

section[id],
.service-card[id] {
  scroll-margin-top: var(--header-offset);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.65rem 1.1rem;
  border: 2px solid transparent;
  border-radius: 3px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn:hover {
  background: var(--blue-deep);
  color: var(--white);
}

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

.btn-ghost:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-navy {
  background: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-soft);
}

.btn-line {
  background: var(--white);
  border-color: var(--navy);
  color: var(--navy);
}

.btn-line:hover {
  background: var(--navy);
  color: var(--white);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  border-top: 4px solid var(--blue);
  border-bottom: 1px solid var(--line);
}

.site-header.is-stuck {
  box-shadow: 0 8px 20px rgba(7, 24, 44, 0.06);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 84px;
  flex-wrap: wrap;
}

.logo-link {
  display: block;
  line-height: 0;
}

.logo {
  display: block;
  width: auto;
  height: 68px;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: auto;
}

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

.header-phone:hover {
  color: var(--blue);
}

.header-cta {
  min-height: 44px;
  padding: 0.45rem 0.8rem;
}

@media (max-width: 480px) {
  .logo {
    height: 56px;
  }

  .header-bar {
    min-height: 72px;
    gap: 0.4rem;
  }

  .header-tools {
    gap: 0.4rem;
  }

  .header-cta {
    padding: 0.4rem 0.65rem;
    font-size: 0.9rem;
  }
}

.cta-short {
  display: inline;
}

.cta-long {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: var(--navy);
  position: relative;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bar::before {
  top: -6px;
}

.nav-toggle-bar::after {
  top: 6px;
}

.js .nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  order: 3;
}

.site-nav a {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue);
}

.nav-phone {
  font-weight: 700;
}

.js .site-nav {
  display: none;
}

.js .site-nav.is-open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 30;
  max-height: calc(100vh - 80px);
  overflow: auto;
  padding: 0.25rem 1.25rem 0.75rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(7, 24, 44, 0.08);
}

/* Hero */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(88svh, 760px);
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  opacity: 1;
  filter: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 24, 44, 0.22) 0%, rgba(7, 24, 44, 0.08) 46%, rgba(7, 24, 44, 0.28) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  padding: 2.4rem 0 2.6rem;
  text-align: center;
}

.hero-copy-inner {
  max-width: 36rem;
  margin-inline: auto;
  padding: 1.15rem 1.15rem 1.3rem;
  background: rgba(7, 24, 44, 0.88);
}

.hero-logo {
  display: block;
  width: auto;
  height: 108px;
  margin: 0 auto 0.9rem;
  background: transparent;
}

.hero h1 {
  margin: 0 auto 0.85rem;
  max-width: 16ch;
  color: var(--white);
  font-size: clamp(2.05rem, 5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.08;
}

.lede {
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  color: #f4f8fc;
  font-size: 1.15rem;
}

.hero .actions {
  justify-content: center;
}

.hero .btn {
  box-shadow: 0 8px 20px rgba(7, 24, 44, 0.28);
}

.hero .btn-primary {
  background: var(--blue-bright);
}

.hero .btn-primary:hover {
  background: var(--blue);
}

.hero .btn-ghost {
  background: rgba(7, 24, 44, 0.35);
  border-color: rgba(255, 255, 255, 0.92);
}

/* Trust */

.trust-wrap {
  padding: 0.35rem 0;
  background: var(--navy);
}

.trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
}

.trust li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.trust-icon {
  display: grid;
  flex: none;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #d6e8ff;
  background: rgba(255, 255, 255, 0.08);
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.3;
}

.trust span {
  color: #c5d6ea;
  font-size: 0.95rem;
}

/* Services */

.service-grid {
  display: grid;
  gap: 0.85rem;
}

#services,
#why-us,
#areas {
  background: var(--mist);
}

#faqs {
  background: var(--white);
}

#our-work {
  background: var(--sky);
}

#build-up,
#how-it-works {
  background: var(--paper);
}

#contact {
  background: var(--mist);
}

#about {
  background: var(--white);
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.25rem 1.15rem 1.1rem;
  border: 1px solid #c5d7ea;
  border-top: 3px solid var(--blue);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(7, 24, 44, 0.06);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.service-card:hover {
  border-top-color: var(--blue-deep);
  box-shadow: 0 14px 28px rgba(7, 24, 44, 0.1);
}

.service-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  line-height: 1.25;
}

.service-card p {
  flex: 1;
  margin: 0 0 0.9rem;
  color: var(--muted);
}

.text-link {
  font-weight: 700;
  text-decoration: none;
}

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

.section-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin: 1.35rem 0 0;
}

/* Before and after */

.work {
  background: var(--sky);
}

.ba-title {
  margin: 0 0 0.8rem;
  font-size: 1.25rem;
}

.ba-project + .ba-project {
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid #b7cce2;
}

.ba-pair {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 88%;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0.15rem;
  padding-bottom: 0.2rem;
}

.ba-frame {
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid #b7cce2;
  background: #e7edf3;
  box-shadow: 0 16px 34px rgba(7, 24, 44, 0.14);
}

.ba-swipe {
  display: none;
}

.ba-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.ba-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.48rem 0.72rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(7, 24, 44, 0.28);
}

.ba-badge-after {
  background: var(--blue);
}

.ba-note {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.buildup-layout {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

.buildup-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid #c9d5e3;
  box-shadow: 0 16px 34px rgba(7, 24, 44, 0.12);
  background: #e7edf3;
}

.buildup-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 42%;
}

.buildup-layout p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.125rem;
}

.work-more {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid #d3deea;
}

.work-more h3 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
}

.work-more p {
  color: var(--muted);
}

/* Why */

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

.why-item {
  height: 100%;
  padding: 1.15rem 1.1rem 1.15rem;
  border: 1px solid #c5d7ea;
  border-top: 3px solid var(--navy);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(7, 24, 44, 0.05);
}

.why-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

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

/* Process */

.process {
  background: var(--paper);
}

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

.step {
  padding: 1.15rem 1.1rem 1.15rem;
  border-top: 3px solid var(--blue);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(7, 24, 44, 0.05);
}

.step-num {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.step h3 {
  margin: 0 0 0.3rem;
  font-size: 1.15rem;
}

.step p {
  margin: 0;
  color: var(--muted);
}

/* About */

.about-layout {
  display: grid;
  gap: 1.15rem;
  align-items: center;
}

.about-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid #c9d5e3;
  box-shadow: 0 16px 34px rgba(7, 24, 44, 0.12);
  background: #e7edf3;
}

.about-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.about-copy {
  max-width: 46rem;
  padding: 1.5rem 1.35rem 1.6rem;
  border-left: 4px solid var(--blue);
  background: var(--mist);
  box-shadow: 0 10px 24px rgba(7, 24, 44, 0.05);
}

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

.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
}

.area-list li {
  padding: 0.8rem 0.9rem;
  border: 1px solid #c5d7ea;
  border-left: 3px solid var(--blue);
  background: var(--white);
  color: var(--navy);
  font-family: var(--display);
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(7, 24, 44, 0.04);
}

.area-note,
.coverage-line {
  max-width: 40rem;
  margin: 0;
  color: var(--muted);
}

.coverage-line {
  margin: 0 0 1.15rem;
}

.footer-areas {
  margin-top: 0.35rem;
  font-size: 0.95rem;
}

.footer-areas a {
  color: #e8f1fb;
  text-decoration: none;
}

.footer-areas a:hover {
  color: #9ec4f5;
  text-decoration: underline;
}

/* FAQ */

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

.faq-list {
  border: 1px solid #c5d7ea;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(7, 24, 44, 0.06);
}

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

.faq-item h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.faq-item button {
  position: relative;
  width: 100%;
  padding: 1rem 2.2rem 1rem 1rem;
  border: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-family: var(--display);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: translateY(-70%) rotate(45deg);
}

.faq-item button[aria-expanded="true"]::after {
  transform: translateY(-20%) rotate(225deg);
}

.faq-item button:hover {
  color: var(--blue);
}

.faq-panel {
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.faq-panel a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.faq-panel a:hover {
  text-decoration: underline;
}

.faq-panel[hidden] {
  display: none;
}

/* Final CTA */

.final-cta {
  padding: 3.6rem 0;
  border-top: 4px solid var(--blue);
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  margin-inline: auto;
  max-width: 16ch;
  color: var(--white);
}

.final-cta p {
  max-width: 34rem;
  margin: 0 auto 1.25rem;
  color: #d7e4f2;
}

.final-cta .actions {
  justify-content: center;
}

.final-cta .btn-primary {
  background: var(--blue-bright);
  color: var(--white);
}

.final-cta .btn-primary:hover {
  background: var(--blue);
  color: var(--white);
}

.contact-actions {
  margin: 0 0 1.35rem;
  flex-wrap: wrap;
}

.final-cta .contact-actions {
  margin-bottom: 0;
  justify-content: center;
}

/* Contact */

.contact-panel {
  max-width: none;
  padding: 1.6rem 1.4rem 1.7rem;
  border: 1px solid #c5d7ea;
  border-top: 4px solid var(--blue);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(7, 24, 44, 0.08);
}

.contact-grid {
  display: grid;
  gap: 1.75rem;
}

.contact-details h2,
.contact-form h2 {
  font-size: clamp(1.7rem, 3vw, 2.15rem);
}

.contact-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  margin: 0 0 0.7rem;
}

.contact-list a {
  font-weight: 700;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

address {
  font-style: normal;
}

.form-row,
.form-grid {
  display: grid;
  gap: 0.85rem;
}

label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.req {
  color: var(--blue);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.65rem 0.75rem;
  border: 1px solid #b7c5d6;
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 400;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(12, 92, 186, 0.25);
}

.form-submit {
  margin-top: 0.25rem;
}

.quote-form {
  margin-top: 1.5rem;
}

.quote-form label {
  margin-bottom: 0.85rem;
}

.quote-form label input,
.quote-form label select,
.quote-form label textarea {
  margin-top: 0.35rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.uploader {
  margin: 0.2rem 0 1.1rem;
}

.uploader-label {
  margin: 0 0 0.4rem;
  font-weight: 700;
}

.uploader-drop {
  display: grid;
  gap: 0.15rem;
  padding: 0.95rem 1rem;
  border: 1px dashed #8eafd4;
  background: var(--mist);
  color: var(--muted);
  font-weight: 400;
  cursor: pointer;
}

.uploader-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.uploader-drop.is-drag {
  border-color: var(--blue);
  background: var(--white);
}

.uploader-cta {
  color: var(--blue);
  font-weight: 700;
}

.uploader-hint {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.uploader-list {
  display: grid;
  gap: 0.55rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.uploader-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.4rem;
  border: 1px solid #c5d7ea;
  background: var(--paper);
}

.uploader-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.uploader-item p {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 0.95rem;
}

.uploader-item span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.uploader-remove {
  width: 36px;
  height: 36px;
  border: 1px solid #c5d7ea;
  background: var(--white);
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.uploader-error {
  min-height: 1.2em;
  margin: 0.4rem 0 0;
  color: #9b2c2c;
  font-weight: 700;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.form-status {
  margin-top: 0.9rem;
  padding: 0.9rem 1rem;
  border-left: 4px solid var(--blue);
  background: #f4f8fc;
  color: var(--ink);
}

.form-status:empty {
  display: none;
}

.form-status.is-error {
  border-left-color: #9b2c2c;
}

/* Footer */

.site-footer {
  background: var(--navy);
  border-top: 4px solid var(--blue);
  color: #d5e2f0;
}

.footer-grid {
  display: grid;
  gap: 1.6rem;
  padding: 2.4rem 0;
}

.footer-logo {
  display: block;
  height: 92px;
  width: auto;
  background: transparent;
}

.slogan {
  margin: 0.8rem 0 0.35rem;
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
}

.footer-brand p {
  color: #c5d6ea;
}

.footer-title {
  margin: 0 0 0.55rem;
  color: #9ec4f5;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.site-footer li {
  margin: 0 0 0.35rem;
}

.site-footer a {
  color: #e8f1fb;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.site-footer a:hover {
  color: #9ec4f5;
  text-decoration: underline;
}

.footer-base {
  background: #05101c;
  color: #d5e2f0;
}

.footer-base p {
  margin: 0;
  padding: 0.85rem 0;
  font-size: 0.95rem;
}

.footer-base a {
  margin-left: 0.85rem;
}

.page-hero {
  padding: 2.5rem 0 0.5rem;
}

.prose {
  max-width: 42rem;
  padding-bottom: 3rem;
}

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

/* Wider screens */

@media (min-width: 640px) {
  .trust {
    grid-template-columns: 1fr 1fr;
  }

  .trust li:nth-child(odd) {
    padding-right: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 720px) {
  .service-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .area-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .step-list {
    grid-template-columns: 1fr 1fr;
  }

  .work-more {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .ba-pair {
    grid-auto-flow: row;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: auto;
    gap: 0.85rem;
    overflow: visible;
    scroll-snap-type: none;
  }

  .ba-swipe {
    display: none;
  }

  .buildup-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 2rem;
  }

  .about-layout {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 1.75rem;
  }

  .about-copy {
    max-width: none;
  }
}

@media (min-width: 1000px) {
  :root {
    --header-offset: 120px;
  }

  .wrap {
    width: min(1120px, calc(100% - 3rem));
  }

  .section {
    padding: 4.5rem 0;
  }

  .header-bar {
    flex-wrap: nowrap;
    min-height: 104px;
    gap: 1rem;
  }

  .logo {
    height: 88px;
  }

  .header-phone {
    display: inline;
  }

  .cta-short {
    display: none;
  }

  .cta-long {
    display: inline;
  }

  .nav-toggle,
  .js .nav-toggle {
    display: none;
  }

  .site-nav,
  .js .site-nav,
  .js .site-nav.is-open {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    order: 0;
    width: auto;
    flex: 1;
    position: static;
    max-height: none;
    overflow: visible;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav a {
    padding: 0.4rem 0.65rem;
    border-bottom: 0;
  }

  .nav-phone {
    display: none;
  }

  .hero {
    display: block;
    min-height: 560px;
    padding-right: 0;
  }

  .hero-bg {
    display: none;
  }

  .hero-shade {
    display: none;
  }

  .hero-copy {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    margin: 0;
    padding: 3.5rem 26rem 3.5rem 3.25rem;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    min-height: 560px;
  }

  .hero-copy-inner {
    padding: 0;
    background: transparent;
  }

  .hero h1,
  .lede {
    margin-left: 0;
    margin-right: 0;
  }

  .hero .actions {
    justify-content: flex-start;
  }

  .hero-logo {
    position: absolute;
    top: 50%;
    right: 4.5rem;
    height: 320px;
    margin: 0;
    transform: translateY(-50%);
  }

  .trust {
    grid-template-columns: repeat(4, 1fr);
    padding: 0.4rem 0;
  }

  .trust li,
  .trust li:nth-child(odd) {
    padding: 1.15rem 1rem 1.15rem 0;
    border-bottom: 0;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .step-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .step {
    border-left: 0;
    border-top: 3px solid var(--blue);
  }

  .contact-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 2.5rem;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.85fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 899px) {
  .location-page .work-board {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
  }

  .location-page .ba-project,
  .location-page .ba-pair {
    display: grid;
  }

  .location-page .ba-title {
    order: 0;
    grid-column: auto;
    margin: 0 0 0.55rem;
  }

  .location-page .ba-pair {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    overflow: visible;
  }

  .location-page .ba-feature,
  .location-page .ba-project:first-of-type .ba-frame:not(.ba-feature),
  .location-page .ba-project:last-of-type .ba-frame {
    order: 0;
    grid-column: auto;
  }

  .location-page .ba-frame img,
  .location-page .ba-feature img,
  .location-page .ba-project:first-of-type .ba-frame:not(.ba-feature) img,
  .location-page .ba-project:last-of-type .ba-frame img {
    height: 160px;
    object-fit: cover;
  }

  .location-page .loc-result-note {
    margin-top: 0.55rem;
  }

  .work-board {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .ba-project,
  .ba-pair {
    display: contents;
  }

  .ba-title {
    grid-column: 1 / -1;
    margin: 0.15rem 0 0;
    font-size: 1.05rem;
  }

  .ba-project:first-of-type .ba-title {
    order: 1;
  }

  .ba-project:first-of-type .ba-frame:not(.ba-feature) {
    order: 2;
    grid-column: 1 / -1;
  }

  .ba-feature {
    order: 3;
    grid-column: 1 / -1;
  }

  .ba-project:last-of-type .ba-title {
    order: 4;
    margin-top: 0.35rem;
  }

  .ba-project:last-of-type .ba-frame {
    order: 5;
  }

  .ba-project:last-of-type .ba-frame img {
    height: 214px;
    object-position: center 42%;
  }

  .ba-project + .ba-project {
    margin: 0;
    padding: 0;
    border: 0;
  }

  .ba-frame {
    min-width: 0;
  }

  .ba-frame img {
    width: 100%;
    height: 132px;
    object-fit: cover;
    object-position: center;
  }

  .ba-feature img {
    height: 230px;
    object-position: center 62%;
  }

  .ba-project:first-of-type .ba-frame:not(.ba-feature) img {
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .ba-frame:not(.ba-feature) .ba-badge {
    top: 0.4rem;
    left: 0.4rem;
    padding: 0.28rem 0.4rem;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }

  .buildup-layout {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 0.85rem;
    align-items: center;
  }

  .buildup-photo img {
    aspect-ratio: 2 / 3;
  }

  .buildup-layout p:last-child {
    font-size: 0.98rem;
  }

  .about-copy {
    order: 1;
  }

  .about-photo {
    order: 2;
  }
}

@media (max-width: 719px) {
  .section {
    padding: 2.15rem 0;
  }

  .section-intro {
    margin-bottom: 1rem;
    font-size: 1.02rem;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }

  .service-card {
    padding: 0.75rem 0.65rem 0.7rem;
    box-shadow: none;
  }

  .service-card h3 {
    font-size: 0.98rem;
  }

  .service-card p {
    margin-bottom: 0.45rem;
    font-size: 0.86rem;
  }

  .why-grid {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.2rem;
  }

  .why-item {
    flex: 0 0 78%;
    scroll-snap-align: start;
    padding: 0.85rem 0.8rem;
  }

  .location-page .loc-why-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.75rem;
    padding-bottom: 0.25rem;
  }

  .location-page .loc-why-grid .why-item {
    flex: 0 0 78%;
  }

  .location-page .loc-issue-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.2rem 0.75rem;
  }

  .location-page .loc-cta-actions .btn {
    flex: 1 1 calc(50% - 0.4rem);
    justify-content: center;
    text-align: center;
  }

  .step-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .step {
    padding: 0.75rem 0.65rem;
    box-shadow: none;
  }

  .step h3 {
    font-size: 1rem;
  }

  .step p {
    font-size: 0.88rem;
  }

  .area-list {
    gap: 0.45rem;
  }

  .area-list li {
    padding: 0.55rem 0.55rem;
    box-shadow: none;
    font-size: 0.92rem;
  }

  #about {
    background: var(--sky);
  }

  .about-copy {
    padding: 1rem 0.95rem 1.1rem;
    background: var(--white);
    box-shadow: none;
  }

  #faqs {
    background: var(--mist);
  }

  .trust {
    grid-template-columns: 1fr 1fr;
  }

  .trust li {
    padding: 0.7rem 0.6rem 0.7rem 0;
    border-bottom: 0;
  }

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

  .final-cta {
    padding: 2.3rem 0;
  }

  .contact-panel {
    padding: 1.15rem 0.95rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

/* Location landing pages */

.loc-breadcrumb {
  padding: 0.85rem 0 0;
}

.loc-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.92rem;
}

.loc-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.55rem;
  color: #9aabbe;
}

.loc-breadcrumb a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

.loc-breadcrumb a:hover {
  text-decoration: underline;
}

.loc-hero .loc-kicker {
  color: #9ec4f5;
}

.loc-service-grid {
  grid-template-columns: 1fr;
}

.loc-why-grid {
  grid-template-columns: 1fr;
}

.loc-services-link {
  font-weight: 600;
}

.loc-services {
  background: var(--mist);
}

.loc-why {
  background: var(--sky);
}

.loc-result-note {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.loc-driveway-result figcaption {
  padding: 0.75rem 0.9rem 0.95rem;
  background: var(--white);
}

.loc-coverage-panel a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.loc-coverage-panel a:hover {
  text-decoration: underline;
}

.loc-cta-actions {
  justify-content: center;
}

.loc-final-cta .btn-ghost {
  border-color: rgba(255, 255, 255, 0.85);
}

.loc-coverage-panel {
  max-width: 46rem;
  padding: 1.5rem 1.35rem 1.6rem;
  border-left: 4px solid var(--blue);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(7, 24, 44, 0.05);
}

.loc-coverage-panel p:last-of-type {
  margin-bottom: 0;
}

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

.loc-nearby a {
  color: var(--blue);
  font-family: var(--display);
  font-weight: 600;
  text-decoration: none;
}

.loc-nearby a:hover {
  text-decoration: underline;
}

.loc-other-places span {
  color: var(--navy);
  font-family: var(--display);
  font-weight: 600;
}

.loc-intro {
  background: var(--paper);
}

.loc-intro-layout {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

.loc-intro-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid #c9d5e3;
  box-shadow: 0 16px 34px rgba(7, 24, 44, 0.12);
  background: #e7edf3;
}

.loc-intro-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 42%;
}

.loc-intro-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.loc-issue-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 0.85rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.loc-issue-list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.1rem;
  border: 0;
  border-left: 0;
  background: transparent;
  box-shadow: none;
  color: var(--navy);
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
}

.loc-issue-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--blue);
  transform: none;
}

.loc-driveway-result {
  margin: 1.25rem 0 0;
  overflow: hidden;
  border: 1px solid #b7cce2;
  box-shadow: 0 16px 34px rgba(7, 24, 44, 0.12);
  background: #e7edf3;
}

.loc-driveway-result img {
  display: block;
  width: 100%;
  height: auto;
}

.loc-home-links {
  color: var(--muted);
}

.loc-contact .contact-panel {
  max-width: none;
}

.loc-footer-actions {
  flex-direction: column;
  align-items: stretch;
}

.loc-footer-actions .btn {
  min-width: 0;
  justify-content: center;
}

.site-footer .btn-primary {
  background: var(--blue-bright);
  color: var(--white);
}

.site-footer .btn-primary:hover {
  background: var(--blue);
  color: var(--white);
}

.area-list a {
  color: inherit;
  text-decoration: none;
}

.area-list a:hover {
  color: var(--blue);
  text-decoration: underline;
}

@media (min-width: 640px) {
  .loc-service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .loc-why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .loc-footer-grid {
    grid-template-columns: 1.4fr 1fr 0.9fr;
  }

  .loc-footer-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .loc-intro-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
  }

  .loc-intro-photo img {
    aspect-ratio: 3 / 4;
  }
}

@media (min-width: 1000px) {
  .location-page .loc-hero {
    display: grid;
    grid-template-columns: minmax(380px, 1.05fr) minmax(300px, 0.95fr);
    align-items: stretch;
    min-height: 620px;
    padding-right: 0;
  }

  .location-page .loc-hero .hero-bg {
    display: block;
    position: relative;
    inset: auto;
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
  }

  .location-page .loc-hero .hero-copy {
    grid-column: 1;
    grid-row: 1;
    width: auto;
    padding: 3rem 2.75rem;
    min-height: 620px;
  }

  .location-page .loc-hero .hero-logo {
    position: static;
    top: auto;
    right: auto;
    height: 118px;
    margin: 0 0 0.9rem;
    transform: none;
  }

  .location-page .loc-hero .hero-copy-inner {
    text-align: left;
  }

  .location-page .loc-hero h1,
  .location-page .loc-hero .lede {
    margin-left: 0;
    margin-right: 0;
  }

  .location-page .loc-hero .actions {
    justify-content: flex-start;
  }

  .loc-service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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