:root {
  --navy: #061725;
  --navy-2: #0b2032;
  --ink: #071523;
  --gold: #c8933c;
  --gold-light: #daa54b;
  --paper: #fbfaf7;
  --muted: #4d5961;
  --line: rgba(255, 255, 255, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.35;
}

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

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.site-header {
  min-height: 550px;
  background: var(--navy);
  color: #fff;
  position: relative;
}

.nav-shell {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  height: 110px;
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 30px 0;
  display: grid;
  grid-template-columns: 120px 1fr 246px;
  align-items: start;
  gap: 28px;
}

.brand {
  width: 104px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8);
}

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

.nav-links {
  display: flex;
  justify-content: center;
  gap: 34px;
  padding-top: 35px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  white-space: nowrap;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--gold-light);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: -7px;
  right: -7px;
  bottom: -18px;
  height: 2px;
  background: var(--gold-light);
}

.call-card {
  min-height: 76px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-transform: uppercase;
  font-weight: 900;
}

.call-card-top {
  margin-top: 11px;
  background: linear-gradient(135deg, #d9a54d, #c28735);
  color: #061523;
}

.call-card small,
.btn small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.03em;
}

.call-card strong {
  display: block;
  font-size: 20px;
  letter-spacing: 0.04em;
}

.phone-icon svg {
  width: 31px;
  height: 31px;
  stroke-width: 3;
}

.hero {
  min-height: 550px;
  display: flex;
  align-items: flex-end;
  background-image:
    linear-gradient(90deg, rgba(5, 18, 30, 0.99) 0%, rgba(5, 18, 30, 0.96) 37%, rgba(5, 18, 30, 0.34) 58%, rgba(5, 18, 30, 0.05) 100%),
    url("assets/hero-fence.png");
  background-size: cover;
  background-position: center top;
  padding: 135px 30px 30px;
}

.hero-copy {
  width: min(100%, 1160px);
  margin: 0 auto;
}

.hero h1 {
  max-width: 430px;
  margin: 0 0 16px;
  font-family: Impact, "Arial Black", "Arial Narrow", sans-serif;
  font-size: clamp(52px, 7vw, 78px);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--gold-light);
}

.hero p {
  max-width: 390px;
  margin: 0 0 22px;
  font-size: 17px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  min-height: 55px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 13px 22px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.btn svg {
  width: 28px;
  height: 28px;
  stroke-width: 3;
}

.btn-gold {
  min-width: 238px;
  background: linear-gradient(135deg, #e2ab50, #c68a34);
  color: #061523;
}

.btn-gold span {
  font-size: 18px;
  line-height: 1.05;
}

.btn-outline {
  min-width: 202px;
  border: 2px solid var(--gold);
  color: #fff;
}

.btn-dark {
  background: var(--navy);
  color: #fff;
  margin-top: 8px;
  min-width: 282px;
}

.proof-strip {
  background: linear-gradient(90deg, #061725, #0a2437);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 20px max(20px, calc((100vw - 1160px) / 2));
}

.proof-strip article {
  min-height: 90px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: start;
  padding: 0 20px;
  border-left: 1px solid var(--line);
}

.proof-strip article:first-child {
  border-left: 0;
}

.line-icon {
  color: var(--gold-light);
}

.line-icon svg {
  width: 40px;
  height: 40px;
}

.proof-strip h2 {
  margin: 0 0 9px;
  font-family: Impact, "Arial Black", "Arial Narrow", sans-serif;
  font-size: 17px;
  line-height: 1.05;
  text-transform: uppercase;
}

.proof-strip p {
  margin: 0;
  font-size: 12px;
}

.section-pad {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 30px 0;
}

.specialty {
  display: grid;
  grid-template-columns: 31% 1fr;
  gap: 52px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  display: inline-block;
  width: 52px;
  height: 2px;
  margin: 0 0 4px 12px;
  background: var(--gold);
}

.specialty h2,
.services h2 {
  margin: 0;
  font-family: Impact, "Arial Black", "Arial Narrow", sans-serif;
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.specialty h2 {
  font-size: 36px;
  line-height: 1;
}

.specialty h3 {
  margin: 1px 0 14px;
  color: var(--gold);
  font-size: 21px;
  line-height: 1;
  text-transform: uppercase;
}

.specialty-copy > p:not(.eyebrow) {
  margin: 0 0 13px;
  color: #1c2730;
  font-size: 15px;
  line-height: 1.42;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.check-list li {
  position: relative;
  margin: 0 0 9px;
  padding-left: 28px;
  font-size: 15px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 17px;
  height: 17px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.work-gallery {
  display: grid;
  gap: 10px;
}

.gallery-main,
.gallery-row img,
.service-card img {
  width: 100%;
  object-fit: cover;
}

.gallery-main {
  height: 210px;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.gallery-row img {
  height: 108px;
}

.services {
  padding-top: 10px;
  padding-bottom: 8px;
  text-align: center;
}

.eyebrow.center {
  margin-bottom: 0;
  font-size: 14px;
}

.eyebrow.center::after {
  display: none;
}

.services h2 {
  margin-bottom: 10px;
  font-size: 29px;
  line-height: 1.05;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  text-align: left;
}

.service-card {
  position: relative;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 2px;
  overflow: hidden;
  min-height: 218px;
}

.service-card img {
  height: 98px;
}

.badge {
  position: absolute;
  left: 14px;
  top: 78px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  border: 3px solid var(--gold-light);
  color: var(--gold-light);
  font-size: 23px;
  font-weight: 900;
}

.service-card h3 {
  margin: 34px 12px 4px;
  font-size: 16px;
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 900;
}

.service-card p {
  margin: 0 12px 10px;
  font-size: 12px;
  line-height: 1.24;
}

.cta-band {
  margin-top: 0;
  background:
    linear-gradient(rgba(202, 144, 57, 0.92), rgba(202, 144, 57, 0.92)),
    linear-gradient(135deg, transparent 0 35%, rgba(255, 255, 255, 0.15) 35% 37%, transparent 37% 100%);
  color: var(--ink);
}

.cta-inner {
  max-width: 1160px;
  margin: 0 auto;
  min-height: 84px;
  padding: 12px 30px;
  display: grid;
  grid-template-columns: 90px 1fr 270px;
  align-items: center;
  gap: 24px;
}

.cta-phone {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
}

.cta-phone svg {
  width: 32px;
  height: 32px;
  stroke-width: 3;
}

.cta-band h2 {
  margin: 0 0 4px;
  font-family: Impact, "Arial Black", "Arial Narrow", sans-serif;
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
}

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

.call-card-dark {
  min-height: 64px;
  background: var(--navy);
  color: #fff;
}

.call-card-dark .phone-icon {
  color: var(--gold-light);
}

.footer {
  background: linear-gradient(90deg, #061725, #082336);
  color: #fff;
  padding: 15px 30px 10px;
}

.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.45fr;
  gap: 34px;
}

.footer section {
  min-height: 112px;
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.footer section:last-child {
  border-right: 0;
  padding-right: 0;
}

.footer-brand img {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(218, 165, 75, 0.75);
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.15));
}

.footer h2 {
  margin: 0 0 9px;
  color: var(--gold-light);
  font-size: 13px;
  text-transform: uppercase;
}

.footer p,
.footer a {
  display: block;
  margin: 0 0 4px;
  font-size: 12px;
}

.footer-brand p {
  max-width: 280px;
  margin-top: 8px;
  line-height: 1.28;
}

.socials {
  display: flex;
  gap: 24px;
  margin-top: 10px;
}

.socials a {
  color: var(--gold-light);
  font-size: 22px;
  font-weight: 900;
}

.copyright {
  max-width: 1160px;
  margin: 5px auto 0;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .nav-shell {
    grid-template-columns: 120px 1fr 205px;
    gap: 18px;
  }

  .nav-links {
    gap: 26px;
    font-size: 13px;
  }

  .call-card-top {
    min-height: 64px;
  }

  .call-card strong {
    font-size: 18px;
  }
}

@media (max-width: 980px) {
  .site-header,
  .hero {
    min-height: 760px;
  }

  .nav-shell {
    position: relative;
    height: auto;
    grid-template-columns: 120px 1fr;
    background: var(--navy);
    padding: 14px 20px;
  }

  .brand {
    width: 90px;
  }

  .nav-links {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 15px 22px;
    padding-top: 18px;
    font-size: 12px;
  }

  .call-card-top {
    display: none;
  }

  .hero {
    padding-top: 58px;
    background-position: 58% top;
  }

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

  .proof-strip article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 20px;
  }

  .proof-strip article:nth-child(-n + 2) {
    border-top: 0;
  }

  .specialty {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .cta-inner {
    grid-template-columns: 70px 1fr;
  }

  .call-card-dark {
    grid-column: 2;
    justify-self: start;
    width: 270px;
  }

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

@media (max-width: 640px) {
  .nav-shell {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .nav-links {
    justify-content: center;
    padding-top: 8px;
  }

  .hero {
    min-height: 680px;
    padding: 45px 20px 34px;
    background-image:
      linear-gradient(90deg, rgba(5, 18, 30, 0.99) 0%, rgba(5, 18, 30, 0.88) 64%, rgba(5, 18, 30, 0.3) 100%),
      url("assets/hero-fence.png");
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero p {
    font-size: 16px;
  }

  .btn,
  .btn-gold,
  .btn-outline,
  .btn-dark {
    width: 100%;
    min-width: 0;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .proof-strip article,
  .proof-strip article:nth-child(-n + 2) {
    border-top: 1px solid var(--line);
  }

  .proof-strip article:first-child {
    border-top: 0;
  }

  .section-pad {
    padding-left: 20px;
    padding-right: 20px;
  }

  .specialty h2 {
    font-size: 37px;
  }

  .gallery-main {
    height: 210px;
  }

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

  .gallery-row img {
    height: 155px;
  }

  .services h2 {
    font-size: 28px;
  }

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

  .cta-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .call-card-dark {
    grid-column: auto;
    width: 100%;
  }

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

  .footer section {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0 0 18px;
  }

  .footer section:last-child {
    border-bottom: 0;
  }
}
