/*
Theme Name: Bloomdale Construction
Theme URI: https://bloomdaleconstruction.com/
Author: Bloomdale Construction
Description: A modern, responsive theme for Bloomdale Construction, plant and tool hire, landscaping, and ground works.
Version: 1.0.0
Requires at least: 6.2
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: bloomdale-construction
*/

:root {
  --ink: #171917;
  --ink-soft: #242824;
  --paper: #f4f1e9;
  --paper-bright: #fffdf8;
  --stone: #d9d4c9;
  --muted: #656961;
  --amber: #efb62f;
  --amber-dark: #d59b12;
  --green: #435749;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(18, 20, 18, 0.12);
  --container: 1200px;
  --heading: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--amber-dark);
}

button,
input,
select,
textarea {
  font: inherit;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--heading);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.8rem);
}

h2 {
  font-size: clamp(2.35rem, 4.5vw, 4.35rem);
}

h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 790px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 12px 18px;
  background: var(--amber);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 40px;
  height: 3px;
  background: var(--amber);
  content: "";
}

.eyebrow--light {
  color: var(--paper);
}

.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.6;
}

.lead--on-dark {
  color: #b8bcb5;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 2px solid var(--amber);
  background: var(--amber);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--paper-bright);
  background: var(--paper-bright);
  color: var(--ink);
  transform: translateY(-2px);
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
  color: var(--white);
}

.button--dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button--dark:hover,
.button--dark:focus-visible {
  border-color: var(--amber);
  background: var(--amber);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: "\2192";
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.topbar {
  background: #101210;
  color: #d7d8d3;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 39px;
}

.topbar p {
  margin: 0;
}

.topbar a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.topbar__location {
  display: flex;
  align-items: center;
  gap: 9px;
}

.topbar__location::before {
  width: 8px;
  height: 8px;
  background: var(--amber);
  content: "";
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(23, 25, 23, 0.1);
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(12px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(18, 20, 18, 0.08);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand__mark {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: var(--heading);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.brand__mark::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 15px;
  height: 15px;
  background: var(--amber);
  content: "";
}

.brand__name {
  display: grid;
  font-family: var(--heading);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.02;
  text-transform: uppercase;
}

.brand__name span:last-child {
  color: var(--muted);
  font-size: 0.68em;
  letter-spacing: 0.18em;
}

.custom-logo-link img {
  width: auto;
  max-height: 58px;
}

.primary-nav {
  justify-self: end;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  position: relative;
  display: block;
  padding-block: 8px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a::after {
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--amber);
  content: "";
  transition: width 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after,
.primary-nav .current_page_item > a::after {
  width: 100%;
}

.header-cta {
  min-height: 48px;
  padding-inline: 19px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle__lines,
.menu-toggle__lines::before,
.menu-toggle__lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle__lines::before {
  transform: translateY(-6px);
}

.menu-toggle__lines::after {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines::before {
  background: var(--white);
  transform: translateY(0) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines::after {
  background: var(--white);
  transform: translateY(-2px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(790px, calc(100vh - 127px));
  align-items: end;
  overflow: hidden;
  background-color: #313733;
  background-image: linear-gradient(90deg, rgba(10, 13, 11, 0.9) 0%, rgba(10, 13, 11, 0.69) 42%, rgba(10, 13, 11, 0.16) 72%, rgba(10, 13, 11, 0.1) 100%), url("assets/images/hero.jpg");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(20px, calc((100vw - var(--container)) / 2));
  width: 1px;
  background: rgba(255, 255, 255, 0.19);
  content: "";
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(100px, 14vw, 175px) 86px;
}

.hero__content {
  max-width: 820px;
  padding-left: clamp(22px, 4vw, 58px);
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 26px;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--amber);
  font-style: normal;
}

.hero__copy {
  max-width: 660px;
  margin-bottom: 38px;
  color: #e3e5e1;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero__tag {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: min(320px, 34vw);
  min-height: 108px;
  align-content: center;
  padding: 24px 32px;
  background: var(--amber);
  color: var(--ink);
}

.hero__tag strong {
  font-family: var(--heading);
  font-size: 1.16rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero__tag span {
  font-size: 0.8rem;
  font-weight: 700;
}

.trust-strip {
  border-bottom: 1px solid var(--stone);
  background: var(--paper-bright);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  min-height: 132px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 30px 38px;
  border-left: 1px solid var(--stone);
}

.trust-item:last-child {
  border-right: 1px solid var(--stone);
}

.trust-item__number {
  color: var(--amber-dark);
  font-family: var(--heading);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.trust-item p {
  margin: 0;
  font-size: 0.87rem;
  font-weight: 800;
  line-height: 1.35;
}

.section {
  padding-block: clamp(82px, 10vw, 138px);
}

.section--tight {
  padding-block: clamp(62px, 8vw, 96px);
}

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

.section--dark {
  background: var(--ink);
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  text-wrap: balance;
}

.section-heading .lead {
  margin-bottom: 5px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(60px, 10vw, 130px);
  align-items: center;
}

.intro-panel {
  position: relative;
  min-height: 470px;
  padding: 52px;
  overflow: hidden;
  background: var(--green);
  color: var(--white);
}

.intro-panel::before {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 230px;
  height: 230px;
  border: 42px solid rgba(239, 182, 47, 0.96);
  content: "";
  transform: rotate(12deg);
}

.intro-panel::after {
  position: absolute;
  right: 42px;
  bottom: 42px;
  left: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  content: "";
}

.intro-panel__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 350px;
  flex-direction: column;
  justify-content: flex-end;
}

.intro-panel__kicker {
  margin-bottom: auto;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro-panel h3 {
  max-width: 390px;
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.intro-copy h2 {
  margin-bottom: 26px;
}

.intro-copy p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  display: grid;
  min-height: 520px;
  align-items: end;
  overflow: hidden;
  background: var(--ink-soft);
  color: var(--white);
  isolation: isolate;
}

.service-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 10, 0.04) 25%, rgba(10, 12, 10, 0.9) 95%);
  content: "";
}

.service-card::after {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
  border-top: 12px solid var(--amber);
  border-right: 12px solid var(--amber);
  content: "";
}

.service-card__image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-card:hover .service-card__image {
  transform: scale(1.04);
}

.service-card__content {
  padding: 42px;
}

.service-card__index {
  display: block;
  margin-bottom: 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.5vw, 3.15rem);
}

.service-card p {
  max-width: 510px;
  margin-bottom: 0;
  color: #e4e5e1;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  border-top: 1px solid #42463f;
  border-bottom: 1px solid #42463f;
}

.process-step {
  min-height: 270px;
  padding: 40px;
  border-left: 1px solid #42463f;
}

.process-step:last-child {
  border-right: 1px solid #42463f;
}

.process-step__number {
  display: block;
  margin-bottom: 52px;
  color: var(--amber);
  font-family: var(--heading);
  font-size: 1.6rem;
  font-weight: 900;
}

.process-step h3 {
  margin-bottom: 14px;
}

.process-step p {
  margin-bottom: 0;
  color: #b8bcb5;
  font-size: 0.95rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--amber);
  color: var(--ink);
}

.cta-band::after {
  position: absolute;
  top: -130px;
  right: -80px;
  width: 360px;
  height: 360px;
  border: 70px solid rgba(23, 25, 23, 0.1);
  content: "";
  transform: rotate(20deg);
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  min-height: 300px;
  padding-block: 54px;
}

.cta-band h2 {
  max-width: 780px;
  margin-bottom: 12px;
}

.cta-band p {
  max-width: 700px;
  margin-bottom: 0;
  font-weight: 650;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.page-hero::after {
  position: absolute;
  right: -100px;
  bottom: -180px;
  width: 450px;
  height: 450px;
  border: 82px solid var(--amber);
  content: "";
  opacity: 0.9;
  transform: rotate(18deg);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 80px;
  align-items: end;
  min-height: 500px;
  padding-block: 110px 80px;
}

.page-hero h1 {
  margin-bottom: 0;
  font-size: clamp(3.5rem, 7vw, 6.6rem);
}

.page-hero__copy {
  max-width: 550px;
  margin-bottom: 11px;
  color: #d6d9d3;
  font-size: 1.15rem;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 600px;
}

.service-detail:nth-child(even) .service-detail__media {
  order: 2;
}

.service-detail__media {
  min-height: 560px;
  overflow: hidden;
}

.service-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail__content {
  display: grid;
  align-content: center;
  padding: clamp(58px, 8vw, 112px);
  background: var(--paper-bright);
}

.service-detail:nth-child(even) .service-detail__content {
  background: var(--paper);
}

.service-detail__content h2 {
  margin-bottom: 24px;
}

.service-detail__content > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin: 24px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--stone);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  font-size: 0.91rem;
  font-weight: 750;
}

.check-list li::before {
  position: absolute;
  top: 0.22em;
  left: 0;
  color: var(--amber-dark);
  content: "\2713";
  font-weight: 900;
}

.hire-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  padding: 56px;
  background: var(--green);
  color: var(--white);
}

.hire-callout h2 {
  margin-bottom: 12px;
}

.hire-callout p {
  max-width: 730px;
  margin-bottom: 0;
  color: #d7ded8;
}

.faq-list {
  margin-top: 50px;
  border-top: 1px solid var(--stone);
}

.faq-list details {
  border-bottom: 1px solid var(--stone);
}

.faq-list summary {
  position: relative;
  padding: 25px 50px 25px 0;
  cursor: pointer;
  font-family: var(--heading);
  font-size: 1.25rem;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 6px;
  color: var(--amber-dark);
  content: "+";
  font-family: var(--body);
  font-size: 1.5rem;
}

.faq-list details[open] summary::after {
  content: "\2212";
}

.faq-list details p {
  max-width: 760px;
  padding-bottom: 26px;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.contact-form-wrap h2 {
  margin-bottom: 18px;
}

.contact-form-wrap > p {
  max-width: 680px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 20px;
  margin-top: 42px;
}

.field {
  display: grid;
  gap: 8px;
}

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

.field label,
.field-label {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 56px;
  padding: 13px 15px;
  border: 1px solid #bbb8af;
  border-radius: 0;
  background: var(--paper-bright);
  color: var(--ink);
  outline: none;
}

.field textarea {
  min-height: 170px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(239, 182, 47, 0.4);
}

.field--consent {
  display: flex;
  grid-column: 1 / -1;
  align-items: flex-start;
  gap: 11px;
}

.field--consent input {
  width: 19px;
  min-height: 19px;
  margin-top: 4px;
  accent-color: var(--amber-dark);
}

.field--consent label {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.form-notice {
  grid-column: 1 / -1;
  margin: 0;
  padding: 16px 18px;
  border-left: 5px solid var(--green);
  background: #e6eee8;
  color: #26392d;
  font-weight: 750;
}

.form-notice--error {
  border-color: #a63e32;
  background: #f8e7e3;
  color: #6f2d25;
}

.contact-sidebar {
  padding: 38px;
  background: var(--ink);
  color: var(--white);
}

.contact-sidebar h2 {
  margin-bottom: 34px;
  font-size: 2.2rem;
}

.contact-detail {
  padding-block: 24px;
  border-top: 1px solid #3d423d;
}

.contact-detail:last-of-type {
  border-bottom: 1px solid #3d423d;
}

.contact-detail__label {
  display: block;
  margin-bottom: 7px;
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail address {
  color: var(--white);
  font-style: normal;
  font-weight: 750;
  text-decoration: none;
}

.contact-detail address {
  font-weight: 500;
}

.contact-sidebar .button {
  width: 100%;
  margin-top: 30px;
}

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

.contact-prep h2 {
  margin-bottom: 0;
}

.prep-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  counter-reset: prep;
  list-style: none;
}

.prep-list li {
  position: relative;
  padding: 20px 0 20px 54px;
  border-top: 1px solid var(--stone);
  color: var(--muted);
  counter-increment: prep;
}

.prep-list li:last-child {
  border-bottom: 1px solid var(--stone);
}

.prep-list li::before {
  position: absolute;
  top: 18px;
  left: 0;
  color: var(--amber-dark);
  content: "0" counter(prep);
  font-family: var(--heading);
  font-size: 1.1rem;
  font-weight: 900;
}

.content-page {
  min-height: 55vh;
  padding-block: 90px 120px;
}

.content-page__header {
  margin-bottom: 40px;
}

.content-page__header h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.entry-content > * {
  max-width: 790px;
}

.entry-content > .alignwide {
  max-width: var(--container);
}

.entry-content > .alignfull {
  max-width: none;
}

.site-footer {
  background: #101210;
  color: #b8bcb7;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr 0.8fr;
  gap: 70px;
  padding-block: 80px 66px;
}

.footer-brand .brand {
  margin-bottom: 24px;
  color: var(--white);
}

.footer-brand .brand__name span:last-child {
  color: #aeb2ac;
}

.footer-brand p {
  max-width: 390px;
  margin-bottom: 0;
  font-size: 0.92rem;
}

.footer-heading {
  margin-bottom: 20px;
  color: var(--white);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-nav ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a,
.footer-contact a {
  color: #dfe1dd;
  text-decoration: none;
}

.footer-contact p {
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 25px;
  border-top: 1px solid #343834;
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

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

@media (max-width: 980px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    min-height: calc(100vh - 88px);
    padding: 34px 20px;
    overflow-y: auto;
    background: var(--paper-bright);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav ul {
    display: grid;
    gap: 0;
  }

  .primary-nav li {
    border-bottom: 1px solid var(--stone);
  }

  .primary-nav a {
    padding: 19px 4px;
    font-size: 1.05rem;
  }

  .section-heading,
  .page-hero__inner,
  .contact-prep {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro-grid {
    gap: 52px;
  }

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

  .service-detail:nth-child(even) .service-detail__media {
    order: 0;
  }

  .service-detail__media {
    min-height: 450px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 32px;
  }

  .contact-sidebar h2,
  .contact-sidebar .button {
    grid-column: 1 / -1;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .topbar__location {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .site-header__inner {
    min-height: 76px;
  }

  .primary-nav {
    min-height: calc(100vh - 76px);
  }

  .brand__mark {
    width: 43px;
    height: 43px;
  }

  .brand__name {
    font-size: 0.91rem;
  }

  .hero {
    min-height: 700px;
    background-image: linear-gradient(90deg, rgba(10, 13, 11, 0.9) 0%, rgba(10, 13, 11, 0.71) 68%, rgba(10, 13, 11, 0.38) 100%), url("assets/images/hero.jpg");
    background-position: 62% center;
  }

  .hero__inner {
    padding-block: 100px 138px;
  }

  .hero__content {
    padding-left: 14px;
  }

  .hero__actions,
  .hero__actions .button {
    width: 100%;
  }

  .hero__tag {
    width: calc(100% - 28px);
    min-height: 92px;
    padding: 19px 23px;
  }

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

  .trust-item,
  .trust-item:last-child {
    padding: 22px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--stone);
    border-left: 0;
  }

  .intro-grid,
  .service-grid,
  .process-grid,
  .cta-band__inner,
  .hire-callout,
  .footer-main,
  .contact-form,
  .contact-sidebar {
    grid-template-columns: 1fr;
  }

  .intro-panel {
    min-height: 420px;
    padding: 35px;
  }

  .service-card {
    min-height: 450px;
  }

  .service-card__content {
    padding: 30px;
  }

  .process-grid {
    border-bottom: 0;
  }

  .process-step,
  .process-step:last-child {
    min-height: auto;
    padding: 32px 12px;
    border-right: 0;
    border-bottom: 1px solid #42463f;
    border-left: 0;
  }

  .process-step__number {
    margin-bottom: 20px;
  }

  .cta-band__inner {
    gap: 30px;
  }

  .page-hero__inner {
    min-height: 440px;
    padding-block: 80px 64px;
  }

  .service-detail__media {
    min-height: 330px;
  }

  .service-detail__content {
    padding: 55px 22px;
  }

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

  .hire-callout {
    padding: 38px 26px;
  }

  .contact-form .field,
  .contact-sidebar h2,
  .contact-sidebar .button {
    grid-column: 1;
  }

  .contact-sidebar {
    padding: 30px;
  }

  .footer-brand {
    grid-column: 1;
  }

  .footer-main {
    gap: 38px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
