:root {
  --green-950: #071b12;
  --green-900: #0d2a1c;
  --green-800: #173c29;
  --cream: #f4eee3;
  --paper: #fbf9f4;
  --red: #af1e1c;
  --red-dark: #881513;
  --ink: #161a17;
  --muted: #626962;
  --line: rgba(13, 42, 28, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
h1, h2, h3 { font-family: "Libre Baskerville", serif; }

.site-header {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px 40px;
  color: white;
  background: #17402d;
}

.brand {
  width: 276px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.main-nav a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  border-color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: white;
}

.button {
  min-height: 46px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.button-red {
  color: white;
  background: var(--red);
}

.button-red:hover {
  background: var(--red-dark);
}

.button-outline {
  color: white;
  border-color: rgba(255,255,255,.72);
  background: rgba(0,0,0,.12);
}

.full-width { width: 100%; }

.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  background: url("hero-stock.jpg") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 27, 18, 0.46) 0%,
    rgba(6, 27, 18, 0.26) 34%,
    rgba(6, 27, 18, 0.08) 56%,
    rgba(6, 27, 18, 0) 74%
  );
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-left: 88px;
  padding: 42px 44px;
  color: #ffffff;
  background: rgba(6, 27, 18, .36);
  border-left: 3px solid var(--red);
  backdrop-filter: blur(2px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.eyebrow.dark {
  color: var(--red);
}

.hero h1 {
  margin: 0;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.05;
  font-weight: 400;
}

.accent-line {
  width: 58px;
  height: 3px;
  margin: 18px 0;
  background: var(--red);
}

.accent-line.centered {
  margin-left: auto;
  margin-right: auto;
}

.hero-text {
  max-width: 620px;
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.6;
}

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

.quote-card {
  position: relative;
  z-index: 3;
  width: 356px;
  margin-right: 34px;
  padding: 26px 22px;
  color: white;
  background: rgba(6, 27, 18, .96);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 18px 44px rgba(0,0,0,.25);
}

.quote-card h2 {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 21px;
}

.quote-card > p {
  margin: 10px auto 18px;
  max-width: 280px;
  text-align: center;
  color: rgba(255,255,255,.76);
  font-size: 12px;
  line-height: 1.5;
}

.quote-card form {
  display: grid;
  gap: 9px;
}

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

.quote-card input,
.quote-card select,
.quote-card textarea {
  width: 100%;
  padding: 11px 12px;
  color: white;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 0;
  font-size: 12px;
}

.quote-card input::placeholder,
.quote-card textarea::placeholder {
  color: rgba(255,255,255,.72);
}

.quote-card select option {
  color: black;
}

.upload-title {
  font-size: 11px;
  color: rgba(255,255,255,.8);
}

.upload-box {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px dashed rgba(255,255,255,.45);
  cursor: pointer;
  font-size: 12px;
}

.upload-box svg {
  width: 26px;
  fill: none;
  stroke: white;
  stroke-width: 1.5;
}

.upload-box input {
  display: none;
}

.quote-card small {
  color: rgba(255,255,255,.5);
  text-align: center;
  font-size: 8px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.trust-row article {
  min-height: 110px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.trust-row article:last-child {
  border-right: 0;
}

.icon-box {
  width: 46px;
  flex: 0 0 46px;
}

.icon-box svg {
  width: 100%;
  fill: none;
  stroke: var(--green-900);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  margin-bottom: 5px;
  font-size: 12px;
  text-transform: uppercase;
}

.trust-row span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.services-section {
  padding: 70px 42px;
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 12px;
  font-size: 38px;
  font-weight: 400;
}

.section-heading > p:last-child {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 230px;
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
}

.service-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.service-card h3 {
  margin: 30px 0 12px;
  color: var(--green-900);
  font-size: 23px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.content-panel {
  min-height: 320px;
  padding: 42px;
  border-right: 1px solid var(--line);
}

.content-panel:last-child {
  border-right: 0;
}

.content-panel h2 {
  margin: 0 0 20px;
  font-size: 30px;
}

.content-panel ul {
  margin: 0;
  padding-left: 20px;
  line-height: 1.9;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gallery-grid div {
  min-height: 100px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: white;
  border: 1px dashed var(--line);
}

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

  .menu-toggle {
    display: block;
  }

  .main-nav.open {
    position: absolute;
    left: 0;
    right: 0;
    top: 86px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px;
    background: var(--green-950);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 34px;
    background-position: center center;
  }

  .quote-card {
    width: min(100% - 30px, 580px);
    margin: 0 auto;
  }

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

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

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

  .content-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 16px;
  }

  .brand {
    width: 165px;
  }

  .hero-content {
    padding: 72px 18px 40px;
  }

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

  .hero-actions {
    flex-direction: column;
  }

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

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

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

  .services-section {
    padding: 54px 18px;
  }

  .content-panel {
    padding: 34px 18px;
  }
}


.hero-content h1,
.hero-content .eyebrow,
.hero-content .hero-text {
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,.38);
}

.hero-content .button-outline {
  color: #ffffff !important;
  border-color: rgba(255,255,255,.88);
  background: rgba(6,27,18,.36);
}

@media (max-width: 1080px) {
  .hero-content {
    margin: 64px 24px 34px;
    padding: 34px 30px;
  }
}

@media (max-width: 640px) {
  .hero-content {
    margin: 42px 14px 28px;
    padding: 28px 20px;
  }
}




.hero-copy .button-outline {
  color: #ffffff !important;
  border-color: rgba(255,255,255,.88);
  background: rgba(6,27,18,.30);
}

@media (max-width: 1080px) {
  .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 44px 48px;
  margin-left: 88px;
  margin-top: 26px;
  color: #ffffff;
  background: rgba(6, 27, 18, 0.28);
  border-left: 3px solid #af1e1c;
  backdrop-filter: blur(1px);
}
}

@media (max-width: 640px) {
  .hero-copy {
    margin: 40px 14px 28px;
    padding: 28px 20px;
  }
}

.hero-copy,
.hero-copy h1,
.hero-copy .eyebrow,
.hero-copy .hero-text {
  color: #ffffff !important;
}

.hero-copy h1 {
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.62);
}

.hero-copy .hero-text,
.hero-copy .eyebrow {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.52);
}

.hero-copy .button-outline {
  color: #ffffff !important;
  border-color: rgba(255,255,255,.88);
  background: rgba(6,27,18,.30);
}

@media (max-width: 1080px) {
  .hero-copy {
    margin: 54px 24px 34px;
    padding: 34px 30px;
  }
}

@media (max-width: 640px) {
  .hero-copy {
    margin: 40px 14px 28px;
    padding: 28px 20px;
  }
}


.gallery-grid{
 display:grid;
 grid-template-columns:repeat(3,1fr);
 gap:14px;
}
.gallery-grid img{
 width:100%;
 aspect-ratio:1/1;
 object-fit:cover;
 border-radius:8px;
 border:1px solid rgba(0,0,0,.08);
 box-shadow:0 6px 18px rgba(0,0,0,.08);
}
@media(max-width:768px){
 .gallery-grid{grid-template-columns:1fr 1fr;}
}
@media(max-width:520px){
 .gallery-grid{grid-template-columns:1fr;}
}


.gallery-item {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-item img {
  transition: transform .25s ease, filter .25s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
  filter: brightness(.95);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px 72px;
  background: rgba(0, 0, 0, .88);
}

.lightbox.open {
  display: flex;
}

.lightbox-image {
  max-width: min(92vw, 1400px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .45);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: rgba(0,0,0,.28);
  color: white;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 68px;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(0,0,0,.28);
  color: white;
  font-size: 48px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(175, 30, 28, .86);
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .lightbox {
    padding: 24px 48px;
  }

  .lightbox-nav {
    width: 40px;
    height: 56px;
    font-size: 38px;
  }

  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
  .lightbox-close { top: 10px; right: 10px; }
}


.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
