:root {
  --brand: #d9541f;
  --brand-dark: #9d321d;
  --brand-soft: #fff2ea;
  --neon: #ff6b2a;
  --neon-hot: #ffb14a;
  --ink: #141210;
  --ink-soft: #3a342f;
  --muted: #6f6861;
  --stone: #f5f2ed;
  --stone-deep: #e7dfd5;
  --line: #ded6ca;
  --white: #ffffff;
  --green: #4f6b4b;
  --shadow: 0 18px 45px rgba(20, 18, 16, 0.12);
  --shadow-soft: 0 10px 30px rgba(20, 18, 16, 0.08);
  --radius: 8px;
  --container: 1180px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 99999;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--brand);
  color: var(--white);
  padding: 0.75rem 1rem;
  font-weight: 800;
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.inner-header {
  background: rgba(20, 18, 16, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.nav-wrap,
.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1.25rem;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0;
  min-width: max-content;
}

.brand-logo {
  width: 72px;
  height: 52px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.25rem;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-size: 1rem;
}

.brand-area {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-link,
.services-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.7rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 750;
  transition: color 0.2s ease, background 0.2s ease;
  border-radius: var(--radius);
}

.nav-link:hover,
.services-trigger:hover,
.nav-link.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.services-menu {
  position: relative;
}

.dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 0.5rem);
  min-width: 270px;
  padding: 0.45rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.services-menu:hover .dropdown,
.services-menu:focus-within .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown a {
  display: block;
  border-radius: 6px;
  color: var(--ink-soft);
  padding: 0.72rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 750;
}

.dropdown a:hover {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-phone {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  font-size: 0.92rem;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  content: "";
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  left: 0;
}

.menu-toggle-lines::before {
  top: -6px;
}

.menu-toggle-lines::after {
  top: 6px;
}

.mobile-panel {
  position: fixed;
  inset: 82px 0 auto;
  z-index: 999;
  display: none;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel-inner {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  padding: 1rem 0 1.25rem;
  display: grid;
  gap: 0.35rem;
}

.mobile-panel a {
  color: var(--white);
  padding: 0.85rem;
  border-radius: var(--radius);
  font-weight: 800;
}

.mobile-panel a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: 5.25rem 0;
}

.section-sm {
  padding: 3.25rem 0;
}

.section-alt {
  background: var(--stone);
}

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

.section-brand {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--white);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
}

.hero.compact {
  min-height: 390px;
  padding-top: 82px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--ink);
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(20, 18, 16, 0.82), rgba(20, 18, 16, 0.48)),
    linear-gradient(0deg, rgba(20, 18, 16, 0.55), rgba(20, 18, 16, 0.18));
}

.hero.home-hero .hero-media::after {
  background:
    linear-gradient(90deg, rgba(20, 18, 16, 0.78), rgba(20, 18, 16, 0.38)),
    linear-gradient(0deg, rgba(20, 18, 16, 0.72), rgba(20, 18, 16, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  padding: 8rem 0 5rem;
}

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

.hero-copy {
  max-width: 760px;
}

.home-hero .hero-copy {
  margin-inline: auto;
  text-align: center;
}

.home-hero .btn-row {
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.section .eyebrow,
.section-alt .eyebrow {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.section-dark .eyebrow,
.section-brand .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(2.45rem, 5.2vw, 4.8rem);
  max-width: 930px;
  font-weight: 700;
  text-shadow:
    0 0 18px rgba(255, 107, 42, 0.26),
    0 2px 20px rgba(0, 0, 0, 0.34);
}

.compact h1 {
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  text-shadow:
    0 0 14px rgba(255, 107, 42, 0.36),
    0 0 30px rgba(157, 50, 29, 0.24),
    0 2px 20px rgba(0, 0, 0, 0.42);
}

.home-hero h1 {
  color: #fffdf9;
  animation: hero-neon-pulse 3.5s ease-in-out infinite alternate;
  text-shadow:
    0 0 5px rgba(255, 255, 255, 0.74),
    0 0 12px rgba(255, 177, 74, 0.82),
    0 0 28px rgba(255, 107, 42, 0.76),
    0 0 54px rgba(217, 84, 31, 0.62),
    0 0 86px rgba(157, 50, 29, 0.42),
    0 4px 28px rgba(0, 0, 0, 0.62);
}

h2 {
  margin-top: 0.85rem;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 700;
  text-shadow:
    0 0 16px rgba(255, 107, 42, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.28);
}

h3 {
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 700;
  text-shadow: 0 0 12px rgba(217, 84, 31, 0.16);
}

.hero .eyebrow {
  border: 1px solid rgba(255, 177, 74, 0.34);
  box-shadow:
    0 0 18px rgba(255, 107, 42, 0.2),
    inset 0 0 14px rgba(255, 177, 74, 0.08);
}

.home-hero .eyebrow {
  box-shadow:
    0 0 12px rgba(255, 177, 74, 0.34),
    0 0 28px rgba(255, 107, 42, 0.24),
    inset 0 0 14px rgba(255, 177, 74, 0.1);
}

.section-brand h2,
.section-dark h2,
.map-card h2 {
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.28),
    0 0 30px rgba(255, 177, 74, 0.34),
    0 2px 18px rgba(0, 0, 0, 0.3);
}

@keyframes hero-neon-pulse {
  from {
    text-shadow:
      0 0 4px rgba(255, 255, 255, 0.58),
      0 0 11px rgba(255, 177, 74, 0.74),
      0 0 24px rgba(255, 107, 42, 0.64),
      0 0 46px rgba(217, 84, 31, 0.52),
      0 0 72px rgba(157, 50, 29, 0.36),
      0 4px 28px rgba(0, 0, 0, 0.62);
  }

  to {
    text-shadow:
      0 0 7px rgba(255, 255, 255, 0.86),
      0 0 16px rgba(255, 177, 74, 0.94),
      0 0 34px rgba(255, 107, 42, 0.86),
      0 0 64px rgba(217, 84, 31, 0.7),
      0 0 104px rgba(157, 50, 29, 0.48),
      0 4px 28px rgba(0, 0, 0, 0.62);
  }
}

p {
  margin: 0;
}

.lead {
  margin-top: 1.25rem;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.text-stack {
  display: grid;
  gap: 1rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.section-head {
  max-width: 820px;
  margin-bottom: 2.25rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  padding: 0.82rem 1.18rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

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

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-light {
  background: var(--white);
  color: var(--brand-dark);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.84);
  color: var(--white);
}

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

.btn-outline-dark {
  border-color: var(--ink);
  color: var(--ink);
}

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

.icon {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 720px;
  margin-top: 3.4rem;
  margin-inline: auto;
}

.stat {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  padding-left: 1.1rem;
}

.stat strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.info-strip {
  background: var(--brand);
  color: var(--white);
}

.info-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
}

.info-strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 56px;
  padding: 0.8rem;
  text-align: center;
  font-weight: 600;
}

.info-strip-item + .info-strip-item {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.card-pad {
  padding: 1.35rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--stone);
}

.service-card-img img,
.image-frame img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-body {
  display: grid;
  gap: 0.85rem;
  padding: 1.35rem;
  flex: 1;
}

.service-card-body p,
.feature-card p,
.process-card p,
.faq-answer,
.contact-card p,
.small-muted {
  color: var(--muted);
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  color: var(--brand-dark);
  font-weight: 700;
}

.feature-card,
.process-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.35rem;
}

.feature-card {
  display: grid;
  gap: 0.75rem;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 700;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  background: var(--stone);
}

.image-frame.landscape {
  aspect-ratio: 16 / 11;
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 1rem;
  align-items: end;
}

.image-stack .image-frame:last-child {
  margin-bottom: -2rem;
}

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

.check-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--ink-soft);
  line-height: 1.55;
  font-weight: 700;
}

.check-mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 0.1rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.service-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-auto-rows: 210px;
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--stone-deep);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: process;
}

.process-card {
  position: relative;
  display: grid;
  gap: 0.75rem;
}

.process-card::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  color: var(--brand-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 1.5rem;
  align-items: start;
}

.quote-frame {
  min-height: 681px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.quote-frame iframe {
  width: 100%;
  min-height: 681px;
}

.contact-card {
  display: grid;
  gap: 1rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.35rem;
  box-shadow: var(--shadow-soft);
}

.contact-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.8rem;
  align-items: start;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 700;
}

.contact-label {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-value {
  font-weight: 700;
  line-height: 1.45;
}

.map-card {
  min-height: 240px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(217, 84, 31, 0.9), rgba(157, 50, 29, 0.92)),
    url("/assets/images/paver-patio-installation-ashland-pa-kdi-hardscapes.webp") center / cover;
  color: var(--white);
  text-align: center;
  padding: 2rem;
}

.faq-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

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

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  padding: 1.15rem 1.25rem;
  color: var(--ink);
  text-align: left;
  font-weight: 700;
}

.faq-button span:first-child {
  flex: 1;
}

.faq-button span:last-child {
  color: var(--brand-dark);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.2rem;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open .faq-button span:last-child {
  transform: rotate(45deg);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 600;
}

.reviews-widget-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.reviews-widget {
  min-height: 540px;
  border: 0;
  background: var(--white);
}

.areas-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 1.5rem;
  align-items: stretch;
}

.area-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.area-button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink-soft);
  padding: 0.8rem 0.9rem;
  text-align: left;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.area-button:hover,
.area-button.is-active {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--white);
  transform: translateY(-1px);
}

.area-map-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.area-map-frame {
  width: 100%;
  height: 430px;
  border: 0;
}

.area-map-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding: 1rem;
}

.area-map-caption strong {
  font-weight: 700;
}

.area-map-caption span {
  color: var(--muted);
  font-size: 0.94rem;
}

.breadcrumb a:hover {
  color: var(--white);
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.2fr;
  gap: 2.25rem;
  padding: 4rem 0;
}

.footer-title {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-list {
  display: grid;
  gap: 0.7rem;
}

.footer-list a,
.footer-copy,
.footer-small {
  color: rgba(255, 255, 255, 0.72);
}

.footer-list a:hover {
  color: var(--white);
}

.footer-copy {
  margin-top: 1rem;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem 0;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
  font-size: 0.88rem;
}

.brand-footer .brand-logo {
  background: var(--white);
}

@media (max-width: 1040px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .grid-3,
  .grid-4,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cta-panel {
    grid-template-columns: 1fr;
  }
}

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

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 7rem;
  }

  .hero-stats,
  .info-strip-grid,
  .grid-2,
  .service-list,
  .areas-grid,
  .quote-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .info-strip-item + .info-strip-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack .image-frame:last-child {
    margin-bottom: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .nav-wrap,
  .container,
  .hero-content,
  .mobile-panel-inner {
    width: min(100% - 1.25rem, var(--container));
  }

  .brand-logo {
    width: 58px;
    height: 44px;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .brand-area {
    font-size: 0.66rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero.compact {
    min-height: 420px;
  }

  .btn-row {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .grid-3,
  .grid-4,
  .process-grid,
  .area-buttons {
    grid-template-columns: 1fr;
  }

  .quote-frame,
  .quote-frame iframe {
    min-height: 720px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero h1 {
    animation: none;
  }
}
