:root {
  --forest: #0f2419;
  --forest-2: #183827;
  --sage: #6f805f;
  --gold: #c6a15b;
  --cream: #f8f6ef;
  --paper: #ffffff;
  --ink: #172018;
  --muted: #667064;
  --line: #e3dfd2;
  --soft: #f2efe6;
  --shadow: 0 24px 70px rgba(15, 36, 25, 0.16);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html,
body {
  overflow-x: hidden;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
body.loaded {
    opacity: 1;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.top-bar {
background: var(--forest);
color: #ede8dc;
font-size: 0.9rem;
border-bottom: 1px solid rgba(198,161,91,.24);
}

.top-bar__inner {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 0;
}

.top-bar__links {
display: flex;
width: 100%;
justify-content: space-between;
align-items: center;
}

.top-bar a {
color: #f7f1e5;
font-weight: 600;
}

.top-bar a:hover {
color: var(--gold);
}

@media (max-width: 768px) {
  .top-bar {
    font-size: 0.8rem;
  }

  .top-bar__inner {
    padding: 8px 0;
  }

  .top-bar__links {
    justify-content: space-between;
  }
}

header {
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(10px);
}
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(248, 246, 239, 0.92); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(227,223,210,.9); }
.nav { min-height: 84px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; }
.brand img { width: 120px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; font-weight: 800; font-size: .96rem; }
.nav-links a:not(.btn) { color: #273228; }
.nav-links a:not(.btn):hover { color: var(--forest-2); }
.nav-toggle { display: none; background: none; border: 0; padding: 0; cursor: pointer; }
.nav-toggle span { display: block; width: 27px; height: 3px; background: var(--forest); margin: 5px 0; border-radius: 20px; }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 999px; border: 2px solid var(--forest); background: var(--forest); color: white; font-weight: 900; box-shadow: 0 12px 28px rgba(15,36,25,.22); transition: .18s ease; }
.btn:hover { transform: translateY(-1px); background: var(--forest-2); border-color: var(--forest-2); }
.btn--ghost { background: transparent; color: var(--forest); box-shadow: none; }
.btn--small { min-height: 44px; padding: 0 19px; }

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    overflow: hidden;
    background: #0a1710;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(rgba(0, 0, 0, .58), rgba(0, 0, 0, .58)),
        radial-gradient(circle at center, rgba(198, 161, 91, .14), transparent 42%);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition: opacity 1s ease, transform 7s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-kicker {
    margin: 0 0 18px;
    color: var(--gold) !important;
    text-transform: uppercase;
    font-size: .8rem !important;
    font-weight: 900;
    letter-spacing: .18em;
}

.hero h1 {
    color: #fff;
    font-size: clamp(2.55rem, 6vw, 4.8rem);
    font-weight: 800;
    margin: 0 auto 20px;
    text-shadow: 0 8px 28px rgba(0, 0, 0, .35);
}

.hero p {
    color: rgba(255,255,255,.95);
    font-size: 1.25rem;
    margin: 0 auto 35px;
    max-width: 760px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .72);
    color: #fff;
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: #fff;
    border-color: #fff;
    color: var(--forest);
}

.hero-slider-controls {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .85);
    background: rgba(255, 255, 255, .25);
    cursor: pointer;
    padding: 0;
    transition: .2s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: var(--gold);
    border-color: var(--gold);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 58px; align-items: center; }
.eyebrow { margin: 0 0 13px; color: var(--sage); text-transform: uppercase; font-weight: 900; letter-spacing: .14em; font-size: .77rem; }
h1, h2, h3 { margin: 0; line-height: 1.08; }
h1 { font-size: clamp(2.65rem, 6vw, 5.35rem); letter-spacing: -0.06em; max-width: 850px; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); letter-spacing: -0.045em; }
h3 { font-size: 1.13rem; }
.hero__text, .section-heading p, .muted { color: var(--muted); font-size: 1.08rem; }
.hero__text { max-width: 650px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 24px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-row span { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.62); color: #3d473d; font-weight: 800; font-size: .92rem; }

.hero__panel { position: relative; min-height: 470px; }
.hero-card { position: absolute; border-radius: 32px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.45); }
.hero-card--main { inset: 0 0 76px 34px; padding: 38px; color: white; background: linear-gradient(145deg, rgba(15,36,25,.96), rgba(24,56,39,.94)), radial-gradient(circle at 85% 15%, rgba(198,161,91,.45), transparent 28%); overflow: hidden; }
.hero-card--main:after { content: ""; position: absolute; right: -80px; bottom: -80px; width: 260px; height: 260px; border-radius: 50%; border: 38px solid rgba(198,161,91,.16); }
.hero-card--main h2 { position: relative; font-size: clamp(2rem, 4vw, 3.15rem); max-width: 420px; }
.hero-card--main p { position: relative; color: #ded7c8; max-width: 360px; }
.tag { position: relative; display: inline-flex; padding: 9px 13px; border-radius: 999px; background: rgba(198,161,91,.18); color: #f6e8c8; font-weight: 900; margin-bottom: 24px; }
.hero-card--accent { left: 0; right: 42px; bottom: 0; padding: 22px 26px; background: var(--paper); }
.hero-card--accent strong, .hero-card--accent span { display: block; }
.hero-card--accent strong { color: var(--forest); }
.hero-card--accent span { color: var(--muted); margin-top: 3px; }

.section { padding: 92px 0; }
.intro { background: var(--forest); color: white; }
.intro .eyebrow { color: var(--gold); }
.intro__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 52px; align-items: start; }
.feature-list { display: grid; gap: 14px; }
.feature-list div { padding: 22px; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; background: rgba(255,255,255,.06); }
.feature-list p { margin: 7px 0 0; color: #d7d3c7; }

.section--light { background: var(--paper); }
.section-heading { max-width: 760px; margin-bottom: 36px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: #fffdf8; transition: .2s ease; min-height: 218px; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(15,36,25,.09); border-color: rgba(198,161,91,.55); }
.service-card span { color: var(--gold); font-weight: 900; }
.service-card p { color: var(--muted); margin-bottom: 0; }

.split__grid, .contact__grid, .about-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 56px; align-items: start; }
.steps { display: grid; gap: 16px; }
.step { display: flex; gap: 18px; padding: 23px; border-radius: 22px; background: var(--paper); border: 1px solid var(--line); box-shadow: 0 10px 28px rgba(15,36,25,.05); }
.step strong { flex: 0 0 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--forest); color: white; }
.step p { margin: 6px 0 0; color: var(--muted); }

.section--dark { background: linear-gradient(135deg, var(--forest), #0a1710); color: white; }
.section--dark .eyebrow { color: var(--gold); }
.about-grid p:last-child { color: #ded8ca; font-size: 1.13rem; margin-top: 0; }


.firstresponderdiscount { 
  
    background:
        linear-gradient(
          rgba(10, 23, 16, 0.86),
          rgba(10, 23, 16, 0.845)
        ),
        url('assets/military.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; 
    color: white; 

}
.firstresponderdiscount .eyebrow { color: var(--gold); }

.contact { background: linear-gradient(180deg, var(--cream), #ffffff); }
.contact-cards { display: grid; gap: 12px; margin-top: 25px; }
.contact-cards a { padding: 18px; background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 10px 26px rgba(15,36,25,.05); }
.contact-cards strong, .contact-cards span { display: block; }
.contact-cards span { color: var(--muted); overflow-wrap: anywhere; }
.jobber-card { background: white; border: 1px solid var(--line); border-radius: 30px; padding: 24px; box-shadow: var(--shadow); min-height: 420px; }
.jobber-card iframe, .jobber-card form { max-width: 100%; }


.thank-you-page {
position: relative;
min-height: 78vh;
display: flex;
align-items: center;
padding: 140px 0 90px;
background:
linear-gradient(rgba(10, 18, 12, 0.72), rgba(10, 18, 12, 0.72)),
url("assets/bg2.png");
background-size: cover;
background-position: center;
}

.thank-you-content {
position: relative;
z-index: 2;
}

.thank-you-card {
max-width: 760px;
background: rgba(255, 255, 255, 0.96);
padding: 48px;
border-radius: 24px;
box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

.thank-you-card h1 {
font-size: clamp(2.3rem, 5vw, 4.5rem);
line-height: 1;
margin: 14px 0 20px;
color: var(--dark);
}

.thank-you-card p {
color: var(--muted);
font-size: 1.05rem;
line-height: 1.7;
}

.thank-you-steps {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 14px;
margin: 32px 0;
}

.thank-you-steps div {
background: #f4f6f1;
border: 1px solid rgba(29, 55, 33, 0.12);
border-radius: 16px;
padding: 18px;
}

.thank-you-steps strong {
display: block;
color: var(--green);
font-size: 1.4rem;
margin-bottom: 6px;
}

.thank-you-steps span {
font-weight: 700;
color: var(--dark);
font-size: 0.95rem;
}

.thank-you-note {
background: rgba(79, 111, 82, 0.1);
border-left: 4px solid var(--green);
padding: 16px 18px;
border-radius: 12px;
}

.thank-you-actions {
display: flex;
gap: 14px;
flex-wrap: wrap;
margin-top: 30px;
}

@media (max-width: 700px) {
.thank-you-page {
padding: 120px 0 70px;
}

.thank-you-card {
    padding: 32px 24px;
}

.thank-you-steps {
    grid-template-columns: 1fr;
}
}

.footer {
background: #0a1710;
color: white;
padding: 50px 0 24px;
overflow-x: hidden;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.footer__grid > div {
  min-width: 0;
}

.footer-logo {
max-width: 180px;
margin-bottom: 1rem;
}

.footer a,
.footer p {
display: block;
color: #d2ccbd;
margin: 8px 0;
overflow-wrap: anywhere;
word-break: break-word;
}

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

.footer__bottom {
margin-top: 34px;
padding-top: 20px;
border-top: 1px solid rgba(255,255,255,.12);
color: #a9a291;
font-size: .92rem;
}

@media (max-width: 900px) {
  .top-bar__inner { flex-direction: column; gap: 5px; }
  .nav-toggle { display: block; }
  .nav-links { position: absolute; top: 84px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; padding: 20px; background: var(--cream); border-bottom: 1px solid var(--line); }
  .nav-links.is-open { display: flex; }
  .hero { padding-top: 58px; }
  .hero__grid, .intro__grid, .split__grid, .contact__grid, .about-grid { grid-template-columns: 1fr; }
  .hero__panel { min-height: 400px; }
  .hero-card--main { inset: 0 0 70px 0; }
  .hero-card--accent { right: 18px; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .container { width: min(100% - 28px, 1160px); }
  .brand img { width: 126px; }
  h1 { font-size: 2.45rem; }
  .hero__actions .btn, .hero-buttons .btn { width: 100%; }
  .hero-card--main { padding: 27px; }
  .jobber-card { padding: 14px; border-radius: 22px; }
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__grid > div {
    width: 100%;
  }

  .footer-logo {
    max-width: 180px;
  }

  .footer a,
  .footer p {
    overflow-wrap: anywhere;
    word-break: normal;
    font-size: 1rem;
  }

  .footer__bottom {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

.gallery-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(10, 23, 16, 0.72), rgba(10, 23, 16, 0.72)),
    url("/assets/bg6.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 0 90px;
}

.gallery-hero .eyebrow {
  color: var(--gold);
}

.gallery-hero__content {
  max-width: 850px;
}

.gallery-hero h1 {
  color: white;
  font-size: clamp(2.7rem, 6vw, 5rem);
  max-width: 850px;
  text-shadow: 0 8px 28px rgba(0, 0, 0, .35);
}

.gallery-hero p {
  color: rgba(255,255,255,.9);
  font-size: 1.18rem;
  max-width: 700px;
  margin-top: 22px;
}

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

.gallery-card {
  position: relative;
  display: block;
  height: 310px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(15,36,25,.12);
  background: var(--forest);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .35s ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, rgba(0,0,0,.72));
}

.gallery-card span {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 2;
  color: white;
  font-weight: 900;
  font-size: 1.05rem;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-cta {
  background:
    linear-gradient(rgba(10, 23, 16, 0.88), rgba(10, 23, 16, 0.88)),
    url("/assets/bg5.png");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.gallery-cta .eyebrow {
  color: var(--gold);
}

.gallery-cta__content {
  max-width: 850px;
}

.gallery-cta h2 {
  color: white;
}

.gallery-cta p {
  color: rgba(255,255,255,.88);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 22px auto 30px;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-card {
    height: 260px;
  }
}

@media (max-width: 600px) {
  .gallery-hero {
    min-height: 52vh;
    padding: 100px 0 70px;
  }

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

  .gallery-card {
    height: 250px;
  }
}

#site-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #f8f6ef;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}

#site-loader img {
  width: 260px;
  max-width: 70vw;
  height: auto;
  animation: loaderFade 1.2s ease forwards;
}

#site-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes loaderFade {
  0% {
    opacity: 0;
    transform: scale(.92);
  }

  35% {
    opacity: 1;
    transform: scale(1);
  }

  75% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}

main {
  opacity: 1;
  transform: none;
}

body.has-loader main {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease, transform .7s ease;
}

body.has-loader main.page-loaded {
    opacity: 1;
    transform: translateY(0);
}