:root {
  --background: #f7f4ef;
  --surface: #ffffff;
  --surface-muted: #efe9df;
  --text: #181818;
  --text-muted: #5f5f5f;
  --primary: #2f5d50;
  --primary-dark: #23463d;
  --secondary: #a66a3f;
  --steel: #47606c;
  --border: #e4ded5;
  --shadow: 0 18px 55px rgba(24, 24, 24, 0.12);
  --radius: 8px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--text);
  color: white;
  padding: .75rem 1rem;
}
.skip-link:focus { top: 1rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: .9rem clamp(1rem, 4vw, 3rem);
  background: rgba(247, 244, 239, .94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  gap: .7rem;
  align-items: center;
  text-decoration: none;
  min-width: 210px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-weight: 900;
}
.brand strong, .brand em { display: block; }
.brand em { color: var(--text-muted); font-style: normal; font-size: .82rem; }
.site-nav { display: flex; justify-content: center; gap: .3rem; }
.site-nav a {
  padding: .6rem .85rem;
  border-radius: 999px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 750;
  font-size: .92rem;
}
.site-nav a:hover, .site-nav a.active { color: var(--primary-dark); background: var(--surface-muted); }
.header-call, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .82rem 1.05rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 850;
}
.header-call, .button.primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 12px 28px rgba(47, 93, 80, .22);
}
.button.secondary {
  background: rgba(255,255,255,.9);
  color: var(--primary-dark);
  border-color: rgba(255,255,255,.65);
}
.nav-toggle { display: none; }
.hero {
  min-height: 74vh;
  display: grid;
  align-items: end;
  padding: clamp(3rem, 9vw, 7rem) clamp(1rem, 4vw, 3rem);
  background:
    linear-gradient(90deg, rgba(10, 16, 14, .88), rgba(10, 16, 14, .62) 48%, rgba(10, 16, 14, .15)),
    var(--hero-image) center / cover no-repeat;
  color: white;
}
.hero-inner { width: min(880px, 100%); padding-bottom: clamp(1rem, 4vw, 3rem); }
.eyebrow {
  margin: 0 0 .8rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  font-weight: 900;
}
.hero .eyebrow, .final-cta .eyebrow { color: #f2c79f; }
h1, h2, h3 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: 0;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
}
h1 { font-size: clamp(2.55rem, 7vw, 6.4rem); max-width: 980px; }
h2 { font-size: clamp(2rem, 4vw, 4rem); }
h3 { font-size: 1.15rem; }
p { color: var(--text-muted); }
.hero p { max-width: 720px; color: rgba(255,255,255,.86); font-size: clamp(1.05rem, 2vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.6rem; }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-strip div { background: var(--surface); padding: 1.25rem clamp(1rem, 2vw, 2rem); }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip span { margin-top: .2rem; color: var(--text-muted); font-size: .92rem; }
.section {
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
}
.muted { background: var(--surface-muted); }
.intro-grid, .why-grid, .proof-band, .contact-layout, .area-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.intro-grid > p { font-size: 1.13rem; margin-top: 0; }
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2rem;
}
.section-heading p { max-width: 680px; }
.section-heading a, .text-link { color: var(--primary-dark); font-weight: 900; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.service-card, .review-card, .feature-list article, .compare-grid article, .area-cards article, .quote-panel, .contact-info, .quote-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(24,24,24,.06);
}
.service-card { overflow: hidden; display: flex; flex-direction: column; min-height: 100%; }
.service-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: center top; }
.service-card div { padding: 1.2rem; display: grid; gap: .7rem; }
.service-card p, .service-card a, .review-card blockquote { margin: 0; }
.service-card a { color: var(--primary-dark); font-weight: 900; }
.proof-band { background: var(--primary-dark); color: white; }
.proof-band p { color: rgba(255,255,255,.78); }
.image-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}
.image-mosaic img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
}
.image-mosaic img:first-child { grid-row: span 2; height: 100%; min-height: 496px; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.review-grid.dense { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.review-card { padding: 1.25rem; display: grid; gap: .9rem; }
.stars { color: #b46d2c; letter-spacing: 0; font-size: .95rem; }
.review-card blockquote { color: var(--text); font-weight: 650; }
.review-card footer { display: grid; gap: .15rem; color: var(--text-muted); font-size: .9rem; }
.review-card footer strong { color: var(--text); }
.review-card footer span:last-child {
  display: inline-flex;
  width: fit-content;
  padding: .2rem .5rem;
  background: var(--surface-muted);
  color: var(--primary-dark);
  border-radius: 999px;
}
.feature-list, .compare-grid, .area-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.feature-list article, .compare-grid article, .area-cards article { padding: 1.25rem; }
.areas-preview {
  background: var(--surface);
  text-align: center;
}
.areas-preview h2 { max-width: 780px; margin: 0 auto; }
.area-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; margin: 1.4rem 0; }
.area-chips span {
  padding: .7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--background);
  font-weight: 850;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}
.steps li {
  counter-increment: step;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.steps li:before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--secondary);
  color: white;
  font-weight: 900;
}
.steps strong, .steps span { display: block; }
.steps span { margin-top: .45rem; color: var(--text-muted); }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  margin-bottom: .8rem;
}
.faq summary { cursor: pointer; font-weight: 900; }
.final-cta {
  margin: clamp(1rem, 4vw, 3rem);
  padding: clamp(3rem, 7vw, 6rem);
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(35, 70, 61, .94), rgba(47, 93, 80, .9)), url('images/commercial-chain-link-fence.jpg') center / cover;
  color: white;
  text-align: center;
}
.final-cta h2 { max-width: 850px; margin: 0 auto 1.3rem; }
.page-hero {
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 4vw, 3rem);
  background: var(--primary-dark);
  color: white;
}
.page-hero p { max-width: 800px; color: rgba(255,255,255,.78); }
.compact-hero h1 { font-size: clamp(2.35rem, 5vw, 5.2rem); }
.service-details { display: grid; gap: 1.1rem; }
.service-detail {
  display: grid;
  grid-template-columns: minmax(220px, .42fr) 1fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-detail img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
.service-detail div { padding: 1.2rem 1.5rem 1.2rem 0; }
.material-guide { background: var(--surface-muted); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.gallery-item {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery-item figcaption { padding: .85rem; color: var(--text-muted); font-size: .92rem; }
.area-layout { align-items: stretch; }
.quote-panel { padding: 1.5rem; position: sticky; top: 102px; }
.contact-layout { align-items: start; }
.contact-info, .quote-form { padding: 1.5rem; }
.quote-form { display: grid; gap: 1rem; }
.quote-form label { display: grid; gap: .35rem; font-weight: 850; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: .85rem .9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  background: #fffdfa;
}
.quote-form textarea { resize: vertical; }
.form-note { margin: 0; font-weight: 800; color: var(--primary-dark); }
.site-footer {
  background: #181818;
  color: white;
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 3rem) 6rem;
}
.site-footer p, .site-footer a, .footer-bottom { color: rgba(255,255,255,.72); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 2rem;
}
.footer-grid h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
.footer-grid h3 { color: white; }
.mobile-cta { display: none; }
.preview-popup {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 60;
  width: min(380px, calc(100vw - 2rem));
  padding: 1.35rem;
  background: rgba(255, 255, 255, .98);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(24, 24, 24, .22);
}
.preview-popup[hidden] { display: none; }
.preview-popup p {
  margin: 0 2.3rem 1rem 0;
  color: var(--text);
  font-weight: 850;
  font-size: 1.05rem;
}
.preview-popup-close {
  position: absolute;
  top: .7rem;
  right: .7rem;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}
.preview-popup-actions {
  display: grid;
  gap: .7rem;
}
.preview-popup-email {
  color: var(--primary-dark);
  font-weight: 850;
  text-align: center;
}
code {
  background: var(--surface-muted);
  border-radius: 4px;
  padding: .08rem .25rem;
}
@media (max-width: 1120px) {
  .service-grid, .gallery-grid, .review-grid.dense { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .site-header { padding-left: 1rem; padding-right: 1rem; }
  .site-header { grid-template-columns: 1fr auto; }
  .nav-toggle {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: .6rem .85rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    font-weight: 900;
  }
  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: start;
    flex-wrap: wrap;
    padding-top: .7rem;
  }
  .site-nav.open { display: flex; }
  .header-call { display: none; }
  .hero { min-height: 70vh; }
  .intro-grid, .why-grid, .proof-band, .contact-layout, .area-layout, .footer-grid { grid-template-columns: 1fr; }
  .service-grid, .review-grid, .review-grid.dense, .gallery-grid, .feature-list, .compare-grid, .area-cards { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail div { padding: 1.2rem; }
  .section-heading { display: block; }
  .image-mosaic img, .image-mosaic img:first-child { min-height: 0; height: auto; aspect-ratio: 4 / 3; }
  .quote-panel { position: static; }
  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #181818;
    border-top: 1px solid rgba(255,255,255,.16);
  }
  .mobile-cta a {
    min-height: 56px;
    display: grid;
    place-items: center;
    color: white;
    text-decoration: none;
    font-weight: 900;
  }
  .mobile-cta a:last-child { background: var(--secondary); }
  .preview-popup {
    left: 1rem;
    right: 1rem;
    bottom: 4.5rem;
    width: auto;
  }
}
@media (max-width: 520px) {
  .brand { min-width: 0; }
  .brand em { display: none; }
  h1 { font-size: clamp(2.25rem, 13vw, 3.6rem); }
  .section, .page-hero { padding-left: 1rem; padding-right: 1rem; }
  .trust-strip, .steps { grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
}

/* EverLine north-star rebuild */
:root {
  --color-light: #f7f1e6;
  --color-medium: #f7f1e6;
  --color-dark: #1c1d1c;
  --color-navy: #1f3a2e;
  --color-accent: #ffaf13;
  --color-white: #ffffff;
  --color-text: #1c1d1c;
  --color-text-muted: rgba(33, 31, 31, 0.58);
  --color-border: rgba(33, 31, 31, 0.2);
  --font-heading: "Passion One", Impact, "Arial Black", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1440px;
  --pad: 46px;
  --section-y: 112px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-light);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
p { margin: 0; color: var(--color-text-muted); }
h1, h2, h3 {
  margin: 0;
  color: inherit;
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1 { max-width: 860px; font-size: 60px; font-weight: 700; }
h2 { font-size: 44px; }
h3 { font-size: 24px; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--color-accent);
  color: var(--color-dark);
  font-weight: 600;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 92px;
  padding: 0 var(--pad);
  background: var(--color-dark);
  color: var(--color-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
  backdrop-filter: none;
}
.brand {
  min-width: 250px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
  text-decoration: none;
}

.logo-brand {
  min-width: 278px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-copy {
  display: block;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 2px;
  background: var(--color-accent);
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.brand strong {
  display: block;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
}
.brand em {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
  font-size: 12px;
  line-height: 1.2;
}
.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-radius: 0;
  color: var(--color-light);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: normal;
  text-transform: none;
  text-decoration: none;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--color-white);
  background: transparent;
}
.header-call,
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 30px;
  border: 1px solid transparent;
  border-radius: 2px;
  background: transparent;
  box-shadow: none;
  color: inherit;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
  transition: opacity 160ms ease;
}
.header-call {
  padding: 8px 36px;
}
.header-call,
.button.primary {
  background: var(--color-accent);
  color: var(--color-dark);
  border-color: var(--color-accent);
  box-shadow: none;
}
.button.secondary {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.78);
  background: transparent;
}
.button:hover,
.header-call:hover { opacity: 0.88; }
.nav-toggle {
  display: none;
  min-height: 44px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  background: transparent;
  color: var(--color-white);
  font: 600 15px/1 var(--font-body);
}

.hero {
  min-height: 820px;
  display: grid;
  align-items: end;
  padding: 160px var(--pad) 118px;
  background:
    linear-gradient(90deg, rgba(28, 29, 28, 0.92), rgba(28, 29, 28, 0.66) 48%, rgba(28, 29, 28, 0.08)),
    var(--hero-image) center / cover no-repeat;
  color: var(--color-white);
}
.hero-inner {
  width: min(820px, 100%);
  padding: 0;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero .eyebrow,
.final-cta .eyebrow { color: var(--color-accent); }
.hero p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 18px;
  color: #fff1cf;
  font-size: 20px;
  line-height: 1.45;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.trust-strip {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--color-dark);
  border: 0;
}
.trust-strip div {
  min-height: 160px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 30px 24px;
  background: var(--color-medium);
  text-align: center;
}
.trust-strip strong {
  display: block;
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.trust-strip span {
  display: block;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 15px;
}

.section,
.page-hero {
  max-width: none;
  padding: var(--section-y) var(--pad);
}
.section > *,
.page-hero > *,
.site-footer > *,
.final-cta > * {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.muted,
.reviews-section,
.blog-preview,
.material-guide,
.areas-preview { background: var(--color-medium); }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(220px, 0.45fr);
  align-items: end;
  gap: 32px;
  margin-bottom: 50px;
}
.section-heading p:not(.eyebrow) {
  max-width: 600px;
  font-size: 18px;
}
.section-heading a,
.text-link,
.service-card a {
  color: var(--color-navy);
  font-weight: 600;
  text-decoration-color: rgba(31, 58, 46, 0.34);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.service-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 16px;
  background: var(--color-white);
  border: 1px solid var(--color-navy);
  border-radius: 4px;
  box-shadow: none;
}
.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}
.service-card div {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px 0 0;
}
.service-card p,
.service-card a { margin: 0; }
.service-card p { font-size: 16px; }

.fence-styles,
.proof-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 50px;
  align-items: center;
  background: var(--color-light);
}
.fence-styles > *,
.proof-band > * {
  max-width: none;
  margin: 0;
}
.fence-styles > div:first-child,
.proof-band > div:first-child { max-width: 520px; }
.fence-styles p:not(.eyebrow),
.proof-band p:not(.eyebrow) {
  margin-top: 18px;
  font-size: 18px;
}
.fence-styles .button,
.proof-band .button { margin-top: 28px; }
.fence-styles .button.secondary,
.proof-band .button.secondary {
  color: var(--color-dark);
  border-color: var(--color-dark);
}
.image-mosaic {
  max-width: none;
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 24px;
}
.image-mosaic img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 4px;
}
.image-mosaic img:first-child {
  grid-row: span 2;
  min-height: 644px;
  height: 100%;
}

.signs-section,
.why-grid,
.contact-preview,
.contact-layout,
.area-layout,
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 50px;
  align-items: start;
}
.signs-section {
  background: var(--color-white);
}
.signs-section > *,
.why-grid > *,
.contact-preview > *,
.contact-layout > *,
.area-layout > *,
.intro-grid > * {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.signs-section p:not(.eyebrow),
.why-grid p:not(.eyebrow) {
  margin-top: 18px;
  font-size: 18px;
}
.feature-list,
.compare-grid,
.area-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.feature-list article,
.compare-grid article,
.area-cards article,
.quote-panel,
.contact-info,
.quote-form,
.review-card {
  padding: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-shadow: none;
}
.feature-list article h3,
.compare-grid article h3,
.area-cards article h3 { margin-bottom: 10px; }

.process {
  background: var(--color-navy);
  color: var(--color-dark);
}
.process-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 0.9fr) minmax(260px, 0.58fr);
  gap: 32px;
  align-items: stretch;
  padding: 32px;
  background: var(--color-light);
  border-radius: 6px;
}
.process-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}
.process-copy p:not(.eyebrow) {
  color: var(--color-text-muted);
  font-size: 18px;
}
.process-panel img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 4px;
}
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}
.steps li {
  position: relative;
  counter-increment: step;
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 16px;
  align-content: start;
  padding: 20px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  border-top: 1px solid var(--color-border);
}
.steps li:first-child { border-top: 0; }
.steps li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 0;
  border-radius: 2px;
  background: var(--color-accent);
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1;
}
.steps strong {
  display: block;
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.steps span {
  display: block;
  grid-column: 2;
  margin-top: 8px;
  color: var(--color-text-muted);
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
  gap: 50px;
  background: var(--color-light);
}
.faq > * {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.faq .section-heading {
  display: block;
  margin-bottom: 0;
}
.faq details {
  margin: 0;
  padding: 22px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--color-border);
  border-radius: 0;
}
.faq details:last-child {
  border-bottom: 1px solid var(--color-border);
}
.faq summary {
  position: relative;
  padding-right: 44px;
  cursor: pointer;
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
  list-style: none;
  text-transform: uppercase;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 400;
  transition: transform 160ms ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  max-width: 720px;
  padding-top: 14px;
  font-size: 17px;
}

.blog-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  padding: 32px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
}

.blog-card h3 {
  max-width: 820px;
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.blog-card p:not(.eyebrow) {
  max-width: 720px;
  font-size: 18px;
}

.blog-article {
  background: var(--color-light);
}

.blog-article .article-shell {
  max-width: 960px;
}

.blog-article h1 {
  color: var(--color-dark);
  font-size: clamp(46px, 6vw, 76px);
}

.blog-article h2 {
  margin-top: 56px;
}

.blog-article h3 {
  margin-top: 34px;
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.blog-article p,
.blog-article li {
  color: var(--color-text);
  font-size: 19px;
  line-height: 1.65;
}

.blog-article table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

.blog-article th,
.blog-article td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.blog-article th {
  color: var(--color-dark);
  font-weight: 700;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.review-grid.dense {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.review-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 100%;
}
.stars {
  color: var(--color-accent);
  font-size: 15px;
  letter-spacing: 0;
}
.review-card blockquote {
  margin: 0;
  color: var(--color-dark);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
}
.review-card footer {
  display: grid;
  gap: 3px;
  color: var(--color-text-muted);
  font-size: 14px;
}
.review-card footer strong { color: var(--color-dark); font-weight: 600; }
.review-card footer span:last-child {
  width: fit-content;
  padding: 0;
  background: transparent;
  color: var(--color-navy);
  border-radius: 0;
}

.contact-preview {
  background: var(--color-light);
}
.contact-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}
.contact-copy p:not(.eyebrow) {
  font-size: 18px;
}
.area-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin: 10px 0 0;
}
.area-chips span {
  padding: 9px 12px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  background: var(--color-medium);
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 500;
}
.quote-form {
  display: grid;
  gap: 16px;
}
.quote-form h2,
.contact-info h2 {
  font-size: 36px;
}
.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--color-dark);
  font-size: 15px;
  font-weight: 600;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  background: var(--color-light);
  color: var(--color-dark);
  font: 400 16px/1.4 var(--font-body);
}
.quote-form textarea { resize: vertical; }
.form-note {
  margin: 0;
  color: var(--color-navy);
  font-weight: 600;
}

.page-hero {
  min-height: 460px;
  display: grid;
  align-content: end;
  background: var(--color-navy);
  color: var(--color-white);
}
.page-hero h1 {
  max-width: 940px;
  font-size: 60px;
}
.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 20px;
}
.service-details {
  display: grid;
  gap: 24px;
  background: var(--color-light);
}
.service-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-shadow: none;
}
.service-detail img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.service-detail div {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 34px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  background: var(--color-light);
}
.gallery-item {
  margin: 0;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-shadow: none;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.gallery-item figcaption {
  padding: 14px 16px;
  color: var(--color-text-muted);
  font-size: 15px;
}
.quote-panel {
  position: sticky;
  top: 116px;
}
.final-cta {
  margin: 0;
  padding: var(--section-y) var(--pad);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(31, 58, 46, 0.96), rgba(31, 58, 46, 0.88)),
    url("images/commercial-chain-link-fence.jpg") center / cover no-repeat;
  color: var(--color-white);
  text-align: center;
}
.final-cta h2 {
  max-width: 850px;
  margin: 0 auto 30px;
}

.site-footer {
  padding: 82px var(--pad) 88px;
  background: var(--color-dark);
  color: var(--color-white);
}
.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.68);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr) minmax(180px, 0.45fr);
  gap: 48px;
}
.footer-grid h2 {
  max-width: 640px;
  color: var(--color-white);
  font-size: 44px;
}
.footer-grid h3 {
  margin: 0 0 14px;
  color: var(--color-white);
  font-size: 24px;
}

.mobile-cta { display: none; }
.preview-popup {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  width: min(380px, calc(100vw - 32px));
  padding: 22px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  box-shadow: 0 18px 60px rgba(28, 29, 28, 0.18);
}
.preview-popup[hidden] { display: none; }
.preview-popup p {
  margin: 0 50px 18px 0;
  color: var(--color-dark);
  font-size: 18px;
  font-weight: 600;
}
.preview-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  background: var(--color-light);
  color: var(--color-dark);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.preview-popup-actions {
  display: grid;
  gap: 10px;
}
.preview-popup-email {
  color: var(--color-navy);
  font-weight: 600;
  text-align: center;
}

@media (max-width: 1180px) {
  :root {
    --pad: 32px;
  }
  .service-grid,
  .gallery-grid,
  .review-grid.dense {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .process-panel {
    grid-template-columns: 1fr;
  }
  .process-panel img {
    min-height: 360px;
    max-height: 420px;
  }
}

@media (max-width: 900px) {
  :root {
    --pad: 16px;
    --section-y: 60px;
  }
  h1,
  .page-hero h1 {
    font-size: 42px;
  }
  h2 {
    font-size: 32px;
  }
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 72px;
    gap: 12px;
  }
  .brand {
    min-width: 0;
  }
  .logo-brand {
    min-width: 0;
  }
  .brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 8px;
  }
  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 21px;
  }
  .brand em {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }
  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: start;
    flex-wrap: wrap;
    gap: 18px;
    padding: 6px 0 18px;
  }
  .site-nav.open { display: flex; }
  .site-nav.open a {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    padding: 6px 0;
  }
  .header-call {
    display: none;
  }
  .hero {
    min-height: 720px;
    padding: 110px var(--pad) 72px;
  }
  .hero p:not(.eyebrow),
  .page-hero p:not(.eyebrow) {
    font-size: 17px;
  }
  .hero-actions {
    display: grid;
  }
  .button {
    width: 100%;
    font-size: 18px;
  }
  .trust-strip,
  .service-grid,
  .review-grid,
  .review-grid.dense,
  .gallery-grid,
  .feature-list,
  .compare-grid,
  .area-cards,
  .section-heading,
  .fence-styles,
  .proof-band,
  .signs-section,
  .why-grid,
  .contact-preview,
  .contact-layout,
  .area-layout,
  .intro-grid,
  .faq,
  .service-detail,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .trust-strip div {
    min-height: 126px;
  }
  .section-heading {
    align-items: start;
    gap: 18px;
    margin-bottom: 32px;
  }
  .image-mosaic {
    grid-template-columns: 1fr;
  }
  .image-mosaic img,
  .image-mosaic img:first-child {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .faq .section-heading {
    margin-bottom: 8px;
  }
  .faq summary {
    font-size: 23px;
  }
  .service-detail img {
    min-height: 260px;
  }
  .service-detail div {
    padding: 24px;
  }
  .quote-panel {
    position: static;
  }
  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--color-dark);
  }
  .mobile-cta a {
    min-height: 58px;
    display: grid;
    place-items: center;
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
  }
  .mobile-cta a:last-child {
    background: var(--color-accent);
    color: var(--color-dark);
  }
  .preview-popup {
    right: 16px;
    bottom: 74px;
    left: 16px;
    width: auto;
  }
}

/* Section-composition rebuild guardrails */
.map-link {
  color: inherit;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.eyebrow .map-link,
h1 .map-link,
h2 .map-link,
h3 .map-link,
.brand .map-link,
.trust-strip .map-link {
  color: inherit;
}
.section-copy {
  display: grid;
  align-content: start;
  gap: 16px;
  max-width: 660px;
}
.section-copy p:not(.eyebrow) {
  font-size: 18px;
}
.section-head {
  max-width: var(--container);
  margin-bottom: 50px;
}
.section-head h2,
.section-head p:not(.eyebrow) {
  max-width: 760px;
}
.section-head a:not(.button) {
  width: fit-content;
  color: var(--color-navy);
  font-weight: 600;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  justify-items: start;
  gap: 16px;
}
.fence-styles,
.proof-band,
.signs-section,
.why-grid,
.contact-preview,
.contact-layout,
.area-layout,
.intro-grid {
  align-items: start;
}
.process-panel {
  align-items: start;
}
.process-copy,
.service-detail div {
  align-content: start;
}
.faq {
  align-items: start;
}
.faq-list {
  display: grid;
  align-content: start;
}
.faq .section-copy {
  position: sticky;
  top: 116px;
}
.review-actions {
  max-width: var(--container);
  margin: 34px auto 0;
  display: flex;
  justify-content: flex-start;
}
.button.secondary.dark {
  color: var(--color-dark);
  border-color: var(--color-dark);
}

/* Standard bottom-of-homepage FAQ */
.classic-faq {
  display: block;
  background: var(--color-white);
}

.classic-faq .section-copy {
  position: static;
  top: auto;
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.classic-faq .faq-list {
  max-width: 940px;
  margin: 0 auto;
  display: block;
}

.classic-faq details {
  padding: 24px 0;
}

.classic-faq summary {
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: none;
}

.classic-faq details p {
  max-width: 780px;
  color: var(--color-text-muted);
  font-size: 17px;
  line-height: 1.55;
}
.button.secondary.dark:hover {
  opacity: 0.88;
}
.area-chips {
  align-items: flex-start;
}
.area-chip {
  display: inline-flex;
  padding: 9px 12px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  background: var(--color-medium);
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.page-hero {
  min-height: 360px;
  align-content: start;
  padding-top: 112px;
}
.site-header {
  min-height: 0;
  height: 92px;
  grid-template-rows: 92px;
}
.brand em {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .section-head {
    margin-bottom: 32px;
  }
  .faq .section-copy {
    position: static;
  }
  .review-actions {
    margin-top: 24px;
  }
  .page-hero {
    min-height: auto;
    padding-top: 80px;
  }
  .site-header {
    height: 72px;
    min-height: 0;
    grid-template-rows: 72px auto;
  }
  .site-header.nav-open {
    height: auto;
  }
}

/* Final production preview rules */
:root {
  --color-light: #f7f1e6;
  --color-medium: #f7f1e6;
  --color-accent: #ffaf13;
  --color-eyebrow: #df9300;
}

body {
  background: var(--color-light);
}

.eyebrow,
.hero .eyebrow,
.final-cta .eyebrow,
.section-head a:not(.button) {
  color: var(--color-eyebrow);
}

.header-call,
.button.primary,
.brand-mark,
.mobile-cta a:last-child {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.site-nav a {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--color-white);
}

.site-nav a:hover {
  opacity: 0.82;
}

.site-nav a.active {
  opacity: 1;
}

.hero {
  align-items: center;
  padding: 92px var(--pad);
}

.page-hero:not(.not-found-hero) {
  display: none;
}

.subpage-intro {
  max-width: 780px;
  margin: 0 0 44px;
}

.subpage-intro h1 {
  max-width: 900px;
  color: var(--color-dark);
  font-size: clamp(44px, 5vw, 68px);
}

.subpage-intro p:not(.eyebrow) {
  max-width: 760px;
  color: var(--color-text-muted);
  font-size: 20px;
  line-height: 1.45;
}

.service-page-section,
.gallery-page-section,
.service-area-page-section,
.policy-page,
.quote-page-layout {
  background: var(--color-light);
}

.gallery-page-section .gallery-grid {
  max-width: var(--container);
  margin: 0 auto;
}

.service-area-page-section {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
}

.policy-page {
  min-height: 64vh;
}

.policy-copy {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.policy-copy p {
  color: var(--color-text-muted);
  font-size: 19px;
  line-height: 1.6;
}

.policy-copy a {
  color: var(--color-navy);
  font-weight: 600;
}

.quote-page-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  grid-template-areas:
    "copy form"
    "details form";
  gap: 64px;
  align-items: start;
  padding-top: 96px;
}

.quote-copy {
  grid-area: copy;
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}

.contact-details-panel {
  grid-area: details;
}

.everline-quote-form {
  grid-area: form;
}

.quote-copy h1 {
  max-width: 650px;
  color: var(--color-navy);
  font-size: clamp(50px, 5vw, 72px);
}

.quote-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 32px;
  color: var(--color-text);
  font-size: 20px;
  line-height: 1.45;
}

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

.contact-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 18px;
  color: var(--color-text);
  font-size: 18px;
}

.contact-list a {
  color: var(--color-text);
  text-decoration: none;
}

.contact-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--color-navy);
  font-size: 12px;
  font-weight: 700;
}

.contact-facts {
  display: grid;
  gap: 8px;
  margin-top: 34px;
  max-width: 620px;
}

.contact-facts p {
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.45;
}

.everline-quote-form {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 34px;
  box-shadow: none;
}

.everline-quote-form .form-grid.two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.everline-quote-form label {
  display: grid;
  gap: 10px;
  color: var(--color-text);
  font-size: 17px;
  font-weight: 500;
}

.everline-quote-form input,
.everline-quote-form select,
.everline-quote-form textarea {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--color-border);
  border-radius: 0;
  background: #f6f7f9;
  color: var(--color-text);
  font: 400 18px/1.35 var(--font-body);
  padding: 14px 16px;
}

.everline-quote-form textarea {
  min-height: 132px;
  resize: vertical;
}

.everline-quote-form .button {
  width: min(320px, 100%);
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-white);
}

.file-drop {
  position: relative;
  min-height: 138px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-border);
  background: #f6f7f9;
  color: var(--color-text-muted);
  text-align: center;
}

.file-drop input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.terms-check {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
}

.terms-check input {
  width: 16px;
  min-height: 16px;
}

.contact-widget {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 70;
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.contact-widget-card {
  display: grid;
  gap: 10px;
  min-width: 286px;
  padding: 15px 18px;
  border-radius: 6px;
  background: var(--color-navy);
  color: var(--color-white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.contact-widget-card a {
  color: var(--color-white);
  font-size: 17px;
  line-height: 1.25;
  text-decoration: none;
}

.contact-widget-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 14px;
}

.contact-widget-icon {
  color: var(--color-accent);
  font-size: 14px;
  line-height: 1;
}

.contact-widget-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-widget-button {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--color-navy);
  box-shadow: none;
  padding: 0;
  cursor: pointer;
}

.contact-widget-bubble {
  width: 76px;
  height: 76px;
  display: block;
  object-fit: contain;
}

.contact-widget.is-collapsed .contact-widget-card {
  display: none;
}

@media (max-width: 1100px) {
  .quote-page-layout,
  .service-area-page-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .quote-page-layout {
    grid-template-areas:
      "copy"
      "form"
      "details";
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 720px;
    padding: 88px var(--pad) 76px;
  }

  .subpage-intro h1,
  .quote-copy h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .everline-quote-form .form-grid.two-up {
    grid-template-columns: 1fr;
  }

  .contact-widget {
    display: none;
  }
}

/* Hero hierarchy guardrails */
.hero h1 {
  max-width: 850px;
  color: var(--color-white);
  margin-bottom: 6px;
  transform: translateY(-6px);
  text-wrap: balance;
}

.hero p.hero-kicker {
  max-width: 900px;
  margin: 14px 0 0;
  color: var(--color-eyebrow);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero p.hero-copy {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .86);
}

@media (max-width: 900px) {
  .hero {
    min-height: calc(100svh - 72px);
    padding: 56px 16px 92px;
    background-position: center;
  }

  .hero-inner {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(40px, 12vw, 56px);
    line-height: 0.98;
    margin-bottom: 2px;
    transform: translateY(-4px);
  }

  .hero p.hero-kicker {
    max-width: 100%;
    margin-top: 12px;
    font-size: clamp(30px, 8.8vw, 42px);
    line-height: 1;
  }

  .hero p.hero-copy {
    max-width: 100%;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.42;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 50px;
  }

  .blog-card {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 22px;
  }

  .blog-card .button {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 38px;
  }

  .hero p.hero-kicker {
    font-size: 28px;
  }
}

/* Professional article layout */
body[data-page="blog"] {
  background: #f7f1e6;
}

body[data-page="blog"] .blog-article {
  padding: 76px 16px 96px;
  background: #f7f1e6;
}

body[data-page="blog"] .article-shell {
  max-width: 780px;
  margin: 0 auto;
}

body[data-page="blog"] .blog-index-hero {
  padding-bottom: 42px;
  background: #f7f1e6;
}

body[data-page="blog"] .blog-index-hero .section-copy {
  max-width: 860px;
}

body[data-page="blog"] .blog-index-hero h1 {
  max-width: 760px;
  color: #1c1d1c;
  font-family: var(--font-heading);
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 700;
  line-height: 0.96;
  text-transform: uppercase;
}

body[data-page="blog"] .blog-index-hero p:not(.eyebrow) {
  max-width: 690px;
  margin-top: 22px;
  color: #3f3f3f;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.4;
}

body[data-page="blog"] .blog-index-section {
  padding-top: 28px;
  background: #f7f1e6;
}

body[data-page="blog"] .blog-index-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}

body[data-page="blog"] .blog-index-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(28, 29, 28, 0.18);
  border-radius: 4px;
}

body[data-page="blog"] .blog-card-image {
  display: block;
  overflow: hidden;
  background: #1c1d1c;
}

body[data-page="blog"] .blog-card-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 220ms ease;
}

body[data-page="blog"] .blog-index-card:hover .blog-card-image img {
  transform: scale(1.025);
}

body[data-page="blog"] .blog-card-body {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(24px, 3vw, 36px);
}

body[data-page="blog"] .blog-card-body h2 {
  margin: 0;
  color: #1c1d1c;
  font-family: var(--font-heading);
  font-size: clamp(34px, 3.2vw, 54px);
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
}

body[data-page="blog"] .blog-card-body h2 a {
  color: inherit;
  text-decoration: none;
}

body[data-page="blog"] .blog-card-body p:not(.eyebrow) {
  margin: 0;
  color: #5d5d5d;
  font-size: 18px;
  line-height: 1.55;
}

body[data-page="blog"] .blog-card-body .text-link {
  margin-top: 4px;
  color: #1f3a2e;
  font-size: 18px;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

body[data-page="blog"] .article-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: #1f3a2e;
  font-size: 16px;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

body[data-page="blog"] .article-hero-image {
  margin: 0 0 34px;
  overflow: hidden;
  border: 1px solid rgba(28, 29, 28, 0.16);
  border-radius: 4px;
}

body[data-page="blog"] .article-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

body[data-page="blog"] .article-shell > .eyebrow {
  margin-bottom: 14px;
  color: var(--color-eyebrow);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

body[data-page="blog"] .blog-article h1 {
  max-width: 760px;
  margin: 0 0 22px;
  color: #1c1d1c;
  font-family: var(--font-body);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

body[data-page="blog"] .blog-article h2 {
  margin: 58px 0 16px;
  color: #1c1d1c;
  font-family: var(--font-body);
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: none;
}

body[data-page="blog"] .blog-article h3 {
  margin: 32px 0 10px;
  color: #1c1d1c;
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
}

body[data-page="blog"] .blog-article p,
body[data-page="blog"] .blog-article li {
  max-width: 760px;
  margin: 0 0 18px;
  color: #3f3f3f;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}

body[data-page="blog"] .blog-article ul {
  margin: 0 0 24px;
  padding-left: 24px;
}

body[data-page="blog"] .blog-article li {
  margin-bottom: 10px;
}

body[data-page="blog"] .blog-article table {
  width: 100%;
  margin: 24px 0 28px;
  border-collapse: collapse;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(28, 29, 28, 0.16);
  border-radius: 4px;
}

body[data-page="blog"] .blog-article th,
body[data-page="blog"] .blog-article td {
  padding: 15px 18px;
  color: #252525;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.45;
  text-align: left;
  border-bottom: 1px solid rgba(28, 29, 28, 0.12);
}

body[data-page="blog"] .blog-article th {
  background: rgba(255, 175, 19, 0.16);
  font-weight: 700;
}

body[data-page="blog"] .blog-article tr:last-child td {
  border-bottom: 0;
}

body[data-page="blog"] .article-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 56px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid rgba(28, 29, 28, 0.16);
  border-radius: 4px;
}

body[data-page="blog"] .article-cta p {
  margin: 0;
}

body[data-page="blog"] .article-cta .button {
  white-space: nowrap;
}

@media (max-width: 700px) {
  body[data-page="blog"] .blog-article {
    padding: 52px 16px 84px;
  }

  body[data-page="blog"] .blog-index-hero {
    padding-top: 52px;
    padding-bottom: 24px;
  }

  body[data-page="blog"] .blog-index-section {
    padding-top: 20px;
  }

  body[data-page="blog"] .blog-index-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body[data-page="blog"] .blog-index-hero h1 {
    font-size: clamp(44px, 14vw, 62px);
  }

  body[data-page="blog"] .blog-card-body {
    padding: 22px;
  }

  body[data-page="blog"] .blog-card-body h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  body[data-page="blog"] .blog-card-body p:not(.eyebrow) {
    font-size: 16px;
  }

  body[data-page="blog"] .blog-article p,
  body[data-page="blog"] .blog-article li {
    font-size: 16px;
    line-height: 1.65;
  }

  body[data-page="blog"] .blog-article table {
    display: block;
    overflow-x: auto;
  }

  body[data-page="blog"] .article-cta {
    grid-template-columns: 1fr;
    padding: 22px;
  }

body[data-page="blog"] .article-cta .button {
    width: 100%;
    white-space: normal;
  }
}

/* About page */
body[data-page="about"] {
  background: var(--color-light);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
  background: var(--color-light);
}

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

.about-hero h1 {
  max-width: 720px;
  color: var(--color-dark);
  font-size: clamp(58px, 7vw, 104px);
  line-height: 0.95;
}

.about-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 28px;
  color: var(--color-text);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.36;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 34px;
}

.about-proof-card {
  padding: clamp(28px, 4vw, 44px);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
}

.about-proof-card h2 {
  color: var(--color-dark);
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1;
}

.about-proof-card ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.about-proof-card li {
  padding: 0 0 14px;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  border-bottom: 1px solid var(--color-border);
}

.about-proof-card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

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

.about-card-grid article {
  min-height: 245px;
  padding: 28px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
}

.about-card-grid h3 {
  color: var(--color-dark);
  font-size: 30px;
  line-height: 1;
}

.about-card-grid p {
  margin-top: 16px;
  color: var(--color-text-muted);
  font-size: 17px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.about-story h2 {
  max-width: 620px;
  color: var(--color-dark);
}

.about-story p {
  color: var(--color-text);
  font-size: 20px;
  line-height: 1.6;
}

.about-story p + p {
  margin-top: 22px;
}

.about-story a {
  color: var(--color-navy);
  font-weight: 700;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--color-dark);
  border-bottom: 1px solid var(--color-dark);
  background: var(--color-light);
}

.about-stats div {
  min-height: 145px;
  padding: 34px 24px;
  text-align: center;
  border-right: 1px solid var(--color-dark);
}

.about-stats div:last-child {
  border-right: 0;
}

.about-stats strong,
.about-stats span {
  display: block;
}

.about-stats strong {
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.about-stats span {
  margin-top: 12px;
  color: var(--color-text-muted);
  font-size: 16px;
}

.about-questions .faq-list {
  max-width: 920px;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .about-hero,
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-card-grid,
  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-stats div:nth-child(2) {
    border-right: 0;
  }

  .about-stats div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--color-dark);
  }
}

@media (max-width: 700px) {
  .about-hero h1 {
    font-size: clamp(46px, 15vw, 62px);
  }

  .about-hero-copy > p:not(.eyebrow) {
    font-size: 18px;
  }

  .about-actions {
    display: grid;
    gap: 16px;
  }

  .about-actions .button {
    width: 100%;
  }

  .about-proof-card,
  .about-card-grid article {
    padding: 22px;
  }

  .about-card-grid,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--color-dark);
  }

  .about-stats div:last-child {
    border-bottom: 0;
  }

  .about-story p {
    font-size: 17px;
  }
}
