:root {
  --bg: #0f1712;
  --bg-elev: #152119;
  --surface: #1d2b21;
  --surface-soft: #223327;
  --text: #f5f3ee;
  --muted: #b8c2b9;
  --primary: #2f8f4e;
  --primary-strong: #1f6b39;
  --accent: #d4b483;
  --line: #2c3d30;
  --warm: #f7f2e7;
  --danger: #c24129;
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.35);
  --shadow-sm: 0 10px 20px rgba(0, 0, 0, 0.2);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1200px;
  --header-h: 74px;
  --gold-1: #f3dfba;
  --gold-2: #d4b483;
  --gold-3: #b99661;
  --gold-glow: rgba(212, 180, 131, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 88% -4%, rgba(185, 150, 97, 0.2) 0%, rgba(185, 150, 97, 0) 34%),
    radial-gradient(circle at 20% -10%, #20372b 0%, var(--bg) 34%),
    var(--bg);
  line-height: 1.55;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #9fd2ad;
  outline-offset: 2px;
}

.container {
  width: min(var(--container), 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #fff;
  color: #111;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 9999;
}

.skip-link:focus {
  left: 8px;
}

.utility-bar {
  background: linear-gradient(90deg, #203126, #1a281f 65%, #2d2a1f);
  border-bottom: 1px solid #4c4835;
  color: #d5ddcf;
  font-size: 0.88rem;
}

.utility-inner {
  min-height: 42px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.utility-inner strong {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: linear-gradient(180deg, rgba(10, 16, 13, 0.94), rgba(10, 16, 13, 0.9));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #3a3a2d;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-wrap {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 6px;
  background: linear-gradient(155deg, #faf5ea, #e6d3b0);
  padding: 4px;
}

.brand-text {
  font-family: "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
}

.brand-text span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

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

.nav-list a {
  font-family: "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  color: #dfe6dc;
  position: relative;
  transition: color 0.2s ease;
}

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

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-btn {
  display: none;
  border: 1px solid #5a5a45;
  background: #162118;
  color: var(--gold-1);
  border-radius: 10px;
  padding: 8px 11px;
}

.cta-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.btn-primary {
  background: linear-gradient(180deg, #3aaa61 0%, #2f8f4e 70%, #2b6f42 100%);
  color: #fff;
  border-color: rgba(243, 223, 186, 0.28);
  box-shadow: 0 14px 26px rgba(24, 77, 42, 0.38), 0 0 0 1px rgba(212, 180, 131, 0.16);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #40bb6a 0%, #2f8f4e 72%, #2b6f42 100%);
}

.btn-secondary {
  border-color: #5b6247;
  color: #efe4cf;
  background: linear-gradient(180deg, rgba(212, 180, 131, 0.14), rgba(255, 255, 255, 0.04));
}

.btn-secondary:hover {
  background: linear-gradient(180deg, rgba(212, 180, 131, 0.22), rgba(255, 255, 255, 0.06));
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid #25382b;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(7, 12, 9, 0.82) 15%, rgba(12, 18, 14, 0.62) 55%, rgba(12, 18, 14, 0.28) 100%);
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212, 180, 131, 0.16) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.24;
  pointer-events: none;
  z-index: -1;
}

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

.hero-content {
  max-width: none;
  padding: 90px 0 72px;
}

.hero-content .breadcrumbs,
.hero-content .kicker,
.hero-content h1,
.hero-content p,
.hero-content .cta-row,
.hero-content .hero-bullets,
.core-page .hero-content .breadcrumbs,
.core-page .hero-content .kicker,
.core-page .hero-content h1,
.core-page .hero-content p,
.core-page .hero-content .cta-row,
.core-page .hero-content .hero-bullets {
  max-width: 760px;
}

.hero-content .cta-row,
.core-page .hero-content .cta-row {
  justify-content: flex-start;
}

/* Core page heroes: shorter height with left-aligned copy. */
.core-page .hero {
  min-height: clamp(340px, 52vh, 520px);
}

.core-page .hero-content {
  text-align: left;
  padding: clamp(56px, 9vh, 86px) 0 clamp(34px, 6vh, 56px);
}

.kicker {
  text-transform: uppercase;
  font-family: "Barlow Condensed", Impact, sans-serif;
  letter-spacing: 0.09em;
  color: #d9c39e;
  margin: 0 0 14px;
}

h1,
h2,
h3 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  margin: 0;
  letter-spacing: 0.02em;
  line-height: 1.06;
}

h1 {
  font-size: clamp(2.2rem, 5.3vw, 4.6rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.2rem, 2.1vw, 1.7rem);
}

.hero p {
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  color: #e4ebe0;
  margin: 20px 0 26px;
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 30px;
  padding: 0;
  list-style: none;
}

.hero-bullets li {
  background: linear-gradient(180deg, rgba(31, 49, 37, 0.9), rgba(31, 49, 37, 0.78));
  border: 1px solid #5a5743;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.92rem;
  color: #e5ede2;
}

section {
  padding: 74px 0;
}

.service-stats {
  padding: 26px 0;
  background: linear-gradient(90deg, #f7f2e7, #eadcc2);
  color: #18231c;
  border-top: 1px solid #e1d1b6;
  border-bottom: 1px solid #d5c19d;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #d8c5a5;
  border-radius: var(--radius-md);
  background: #d8c5a5;
}

.stat {
  min-height: 116px;
  padding: 18px;
  background: #fbf7ef;
}

.stat strong {
  display: block;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
  text-transform: uppercase;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: #4b554c;
  font-weight: 700;
}

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

.feature-card {
  display: grid;
  gap: 12px;
  min-height: 230px;
  padding: 22px;
  border: 1px solid #43523a;
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, #17251b, #101a13 72%, rgba(212, 180, 131, 0.1));
  box-shadow: var(--shadow-sm);
}

.feature-card:hover,
.service-proof:hover,
.signal-item:hover {
  border-color: #726246;
  box-shadow: var(--shadow-sm), 0 0 0 1px var(--gold-glow);
}

.feature-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #6a6249;
  border-radius: var(--radius-sm);
  background: rgba(212, 180, 131, 0.12);
  color: var(--gold-1);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.35rem;
}

.feature-card p {
  margin: 0;
  color: #d1dcd1;
}

.service-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 26px;
  align-items: center;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid #43523a;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #132016, #0f1913 68%, rgba(185, 150, 97, 0.14));
  box-shadow: var(--shadow-lg);
}

.proof-media {
  min-height: 360px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #4c543f;
}

.proof-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  padding: 14px 0;
  border-top: 1px solid #334432;
  color: #d7e1d7;
}

.proof-list strong {
  display: block;
  margin-bottom: 4px;
  color: #f7e6c8;
}

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

.signal-item {
  border: 1px solid #43523a;
  border-radius: var(--radius-md);
  padding: 18px;
  background: #152219;
}

.signal-item h3 {
  font-size: 1.35rem;
}

.signal-item p {
  margin: 10px 0 0;
  color: #ccd8cc;
}

.section-head {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 28px;
}

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

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

.card {
  background: linear-gradient(160deg, var(--surface), #16251b 70%, rgba(185, 150, 97, 0.12));
  border: 1px solid #3d4a39;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.card:hover,
.project-card:hover,
.blog-card:hover,
.area-card:hover,
.faq-item:hover,
.review:hover,
.step:hover {
  border-color: #726246;
  box-shadow: var(--shadow-sm), 0 0 0 1px var(--gold-glow);
}

.card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* Keep homepage service thumbnails from feeling overly tall. */
#services .card img {
  aspect-ratio: auto;
  height: clamp(170px, 16vw, 230px);
}

/* Keep services page card thumbnails from feeling overly tall. */
#service-cards .card img {
  aspect-ratio: auto;
  height: clamp(170px, 16vw, 230px);
}

/* Keep about page focus thumbnails from feeling overly tall. */
#about-focus .card img {
  aspect-ratio: auto;
  height: clamp(170px, 16vw, 230px);
}

.card-body {
  padding: 18px;
}

.card p {
  margin: 10px 0 14px;
  color: #d2ddd1;
}

.card-link {
  font-weight: 700;
  color: var(--gold-1);
}

.trust-strip {
  background: var(--warm);
  color: #1c241f;
  border-top: 1px solid #ddd2bc;
  border-bottom: 1px solid #ddd2bc;
}

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

.trust-item {
  background: #f9f6ef;
  border: 1px solid #dfd2b8;
  border-radius: var(--radius-sm);
  padding: 16px;
  color: #1c241f;
}

.trust-item strong {
  display: block;
  font-family: "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.split-media img,
.gallery-grid img,
.project-grid img,
.article-hero img {
  border-radius: var(--radius-md);
  border: 1px solid #4c543f;
}

.split-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Keep homepage portfolio preview images from becoming overly tall. */
#portfolio-preview .gallery-grid img {
  width: 100%;
  height: clamp(210px, 24vw, 360px);
  object-fit: cover;
}

/* Keep portfolio page project thumbnails from becoming overly tall. */
#portfolio-projects .project-card img {
  width: 100%;
  height: clamp(220px, 24vw, 360px);
  object-fit: cover;
}

/* Keep blog listing thumbnails from becoming overly tall. */
#blog-articles .blog-card img {
  width: 100%;
  height: clamp(220px, 24vw, 360px);
  object-fit: cover;
}

.list-check {
  padding-left: 18px;
  margin: 18px 0;
}

.list-check li {
  margin-bottom: 10px;
}

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

.step {
  border-radius: var(--radius-md);
  background: #132016;
  border: 1px solid #43523a;
  padding: 18px;
}

.step-number {
  color: #d3b585;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.2rem;
}

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

.review {
  border: 1px solid #44533d;
  border-radius: var(--radius-md);
  padding: 20px;
  background: #16241a;
}

.review p {
  margin: 0 0 10px;
}

.review .name {
  font-weight: 700;
  color: #f4e3c5;
}

.gallery-grid,
.project-grid,
.article-grid,
.faq-grid,
.area-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.project-card,
.blog-card,
.area-card,
.faq-item {
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #17251b, #152118 72%, rgba(185, 150, 97, 0.08));
  border: 1px solid #42523d;
  overflow: hidden;
}

.project-card h3,
.blog-card h3,
.area-card h3,
.faq-item h3 {
  padding: 16px 16px 0;
}

.project-card p,
.blog-card p,
.area-card p,
.faq-item p {
  margin: 10px 0 0;
  padding: 0 16px 16px;
  color: #cedacd;
}

.faq-item {
  padding: 6px 0;
}

.faq-item h3 {
  font-size: 1.25rem;
}

.cta-panel {
  background: linear-gradient(130deg, #223628, #17291d 70%, rgba(185, 150, 97, 0.2));
  border: 1px solid #5f5d43;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}

.cta-panel p {
  color: #d6dfd7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
}

.coverage-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 20px;
  align-items: stretch;
}

.area-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.coverage-map-grid .area-card {
  min-height: 150px;
}

.map-embed {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid #42523d;
  border-radius: var(--radius-md);
  background: #152118;
  box-shadow: var(--shadow-sm);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 316px;
}

.contact-card {
  background: linear-gradient(180deg, #17261c, #142118 74%, rgba(185, 150, 97, 0.1));
  border: 1px solid #4a5640;
  border-radius: var(--radius-md);
  padding: 20px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #5c6147;
  background: #0f1913;
  color: #eff5ef;
  padding: 12px 13px;
  font: inherit;
}

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

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

.form-note {
  font-size: 0.92rem;
  color: #b8c4b9;
}

.form-feedback {
  margin-top: 10px;
  min-height: 24px;
  font-weight: 600;
}

.form-feedback.error {
  color: #ffb3a5;
}

.form-feedback.success {
  color: #9bd4aa;
}

.breadcrumbs {
  font-size: 0.9rem;
  color: #bfcabf;
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: #d5c195;
}

.blog-card .meta,
.article-meta {
  color: #b6c5b7;
  font-size: 0.9rem;
  padding: 0 16px;
}

.article-wrap {
  max-width: 820px;
}

.article-wrap h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  margin-top: 30px;
}

.article-wrap p,
.article-wrap li {
  color: #d4dfd2;
}

.article-wrap ul {
  padding-left: 18px;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 24px;
  align-items: start;
}

.article-main {
  background: linear-gradient(180deg, #15231a, #121d15 75%, rgba(185, 150, 97, 0.08));
  border: 1px solid #42523d;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(20px, 3.2vw, 34px);
}

.article-main h2 {
  font-size: clamp(1.5rem, 2.2vw, 2.05rem);
  margin-top: 34px;
}

.article-main h3 {
  margin-top: 22px;
  color: #f1ddb8;
}

.article-main p,
.article-main li {
  color: #d8e2d7;
}

.article-main ul,
.article-main ol {
  padding-left: 20px;
}

.article-main li {
  margin-bottom: 8px;
}

.article-lead {
  margin-top: 0;
  font-size: clamp(1.08rem, 1.7vw, 1.24rem);
  color: #ebf2ea;
}

.article-summary {
  margin: 24px 0;
  padding: 18px;
  background: linear-gradient(160deg, rgba(212, 180, 131, 0.12), rgba(20, 33, 24, 0.9));
  border: 1px solid #63573e;
  border-radius: var(--radius-md);
}

.article-summary h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.article-summary ul {
  margin: 0;
}

.article-callout {
  margin: 24px 0;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid #54654b;
  background: linear-gradient(150deg, rgba(31, 49, 37, 0.95), rgba(18, 30, 22, 0.9));
}

.article-callout strong {
  display: block;
  margin-bottom: 8px;
  color: #f3dfba;
  font-family: "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-divider {
  border: 0;
  height: 1px;
  margin: 30px 0;
  background: linear-gradient(90deg, transparent, #6f664b, transparent);
}

.article-side {
  display: grid;
  gap: 14px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

.article-card {
  border-radius: var(--radius-md);
  border: 1px solid #41523b;
  background: linear-gradient(180deg, #142218, #121d15 75%, rgba(185, 150, 97, 0.06));
  padding: 16px;
}

.article-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.article-card p {
  margin: 0;
  color: #d0dbcf;
}

.article-card-cta {
  margin-top: 12px;
}

.article-toc {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.article-toc a {
  color: #e8dcc3;
  font-size: 0.95rem;
}

.article-toc a:hover {
  color: var(--gold-1);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-faq {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.article-faq-item {
  border-radius: var(--radius-sm);
  border: 1px solid #45563f;
  background: #132016;
  padding: 14px;
}

.article-faq-item h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.article-faq-item p {
  margin: 0;
}

.related-posts {
  margin-top: 38px;
}

.site-footer {
  border-top: 1px solid #4a4a37;
  background: linear-gradient(180deg, #0c130e, #0b120d 68%, #1d1a12);
  padding: 48px 0 86px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 18px;
}

.footer-links {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #e1dbc8;
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid #213025;
  margin-top: 28px;
  padding-top: 18px;
  color: #93a494;
  font-size: 0.88rem;
}

.copyright a {
  color: var(--gold-1);
  font-weight: 700;
}

.copyright a:hover {
  color: #fff;
}

.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: rgba(10, 15, 12, 0.97);
  border-top: 1px solid #2f4534;
  padding: 10px;
  display: none;
  gap: 8px;
}

.mobile-cta .btn {
  flex: 1;
  padding: 11px 10px;
  font-size: 0.93rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .cards,
  .trust-grid,
  .process,
  .stat-grid,
  .feature-grid,
  .reviews,
  .gallery-grid,
  .project-grid,
  .article-grid,
  .faq-grid,
  .area-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid,
  .coverage-map-grid,
  .split,
  .service-proof {
    grid-template-columns: 1fr;
  }

  .area-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-media {
    min-height: 280px;
  }

  .article-shell {
    grid-template-columns: 1fr;
  }

  .article-side {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-list {
    position: absolute;
    top: calc(var(--header-h) + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: #0f1812;
    border-bottom: 1px solid #2d4131;
    padding: 18px 4vw 20px;
    display: none;
  }

  .nav-list.open {
    display: flex;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border-radius: var(--radius-sm);
    font-size: 0;
    line-height: 0;
  }

  .menu-btn::before,
  .menu-btn::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .menu-btn::before {
    transform: translateY(-5px);
    box-shadow: 0 10px 0 var(--gold-1);
  }

  .menu-btn::after {
    transform: translateY(5px);
  }

  .menu-btn[aria-expanded="true"]::before {
    transform: rotate(45deg);
    box-shadow: none;
  }

  .menu-btn[aria-expanded="true"]::after {
    transform: rotate(-45deg);
  }

  .nav-wrap .btn.btn-primary {
    display: none;
  }
}

@media (max-width: 680px) {
  section {
    padding: 56px 0;
  }

  .utility-bar {
    display: none;
  }

  .nav-wrap {
    min-height: 74px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-text {
    font-size: 0.98rem;
  }

  .brand-text span {
    font-size: 0.72rem;
  }

  .cards,
  .trust-grid,
  .process,
  .reviews,
  .gallery-grid,
  .project-grid,
  .article-grid,
  .faq-grid,
  .area-grid,
  .blog-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 64vh;
  }

  .hero-content {
    padding: 70px 0 54px;
  }

  .core-page .hero {
    min-height: clamp(300px, 46vh, 420px);
  }

  .core-page .hero-content {
    padding: 52px 0 34px;
  }

  .article-side {
    grid-template-columns: 1fr;
  }

  .area-grid-compact {
    grid-template-columns: 1fr;
  }

  .article-main {
    padding: 20px;
  }

  .mobile-cta {
    display: flex;
  }

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
