*{ box-sizing:border-box; }

:root{
  --green:#1f3a1d;
  --green2:#264a23;
  --green3:#102110;
  --gold:#d9b24c;
  --gold2:#e7c562;
  --paper:#f4f1e9;
  --shadow:0 12px 30px rgba(0,0,0,.25);
  --softshadow:0 12px 22px rgba(0,0,0,.10);
}

html{
  margin:0;
  padding:0;
  background:#0d1a0d;
  height:100%;
}

body{
  margin:0;
  padding:0;
  font-family:system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.6;
  color:#111;
  background:#0d1a0d;
  min-height:100%;
}

/* Default page background for content area (prevents dark seams) */
main#main{
  background: var(--paper);
}

/* About page: force true white content background */
main#main.about-paper{
  background:#fff;
}

/* Contact page: force true white content background */
main#main.contact-paper{
  background:#fff;
}

a{ color:inherit; text-decoration:none; }
a:visited{ color:inherit; }
a:hover{ text-decoration:none; }
a:active{ color:inherit; }

img{ max-width:100%; display:block; }
strong{ font-weight:900; }

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:12px;
  top:12px;
  width:auto;
  height:auto;
  padding:10px 12px;
  border-radius:12px;
  background:#fff;
  border:2px solid rgba(0,0,0,.15);
  z-index:2000;
}

.site-header{
  position:-webkit-sticky;
  position:sticky;
  top:0;
  left:0;
  right:0;
  z-index:999;
  background:#0d1a0d;
  border-bottom:1px solid rgba(255,255,255,.10);
  isolation:isolate;
  overflow:hidden;
  transform:translate3d(0,0,0);
  -webkit-transform:translate3d(0,0,0);
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  will-change:transform;
}

.site-header::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:rgba(13,26,13,.70);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.site-header__inner{
  position:relative;
  z-index:1;
  max-width:1200px;
  margin:0 auto;
  padding:10px 8%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.nav-toggle{
  appearance:none;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:#fff;
  border-radius:12px;
  width:46px;
  height:44px;
  cursor:pointer;
  display:none;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 18px rgba(0,0,0,.12);
}

.nav-toggle:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px rgba(231,197,98,.20);
  border-color:rgba(231,197,98,.45);
}

.nav-toggle__bars{
  width:18px;
  height:2px;
  background:currentColor;
  border-radius:999px;
  position:relative;
  display:block;
}
.nav-toggle__bars::before,
.nav-toggle__bars::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background:currentColor;
  border-radius:999px;
}
.nav-toggle__bars::before{ top:-6px; }
.nav-toggle__bars::after{ top:6px; }

/* animate to X when open */
body.menu-open .nav-toggle__bars{
  background:transparent;
}
body.menu-open .nav-toggle__bars::before{
  top:0;
  transform:rotate(45deg);
}
body.menu-open .nav-toggle__bars::after{
  top:0;
  transform:rotate(-45deg);
}

.mobile-nav{
  position:fixed;
  inset:0;
  z-index:1500;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .18s ease, visibility .18s ease;
}
.mobile-nav__backdrop{
  position:absolute;
  inset:0;
  border:0;
  background:rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity:0;
  transition:opacity .18s ease;
}
.mobile-nav__panel{
  position:absolute;
  top:0;
  right:0;
  height:100%;
  width:min(84vw, 360px);
  border-radius:0;
  overflow:auto;
  -webkit-overflow-scrolling:touch;
  background:rgba(255,255,255,.98);
  border-left:1px solid rgba(0,0,0,.10);
  box-shadow:-26px 0 60px rgba(0,0,0,.35);
  transform:translateX(102%);
  transition:transform .22s ease;
}

.mobile-nav__links{
  display:grid;
  gap:6px;
  padding:12px;
}
.mobile-nav__link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 12px;
  border-radius:14px;
  font-weight:1000;
  color:#0f2b14;
  background:rgba(0,0,0,.03);
  border:1px solid rgba(0,0,0,.06);
}
.mobile-nav__link.is-active{
  background:rgba(217,178,76,.22);
  border-color:rgba(217,178,76,.45);
}
.mobile-nav__cta{
  padding:12px;
  border-top:1px solid rgba(0,0,0,.08);
  background:linear-gradient(180deg, rgba(31,58,29,.06), rgba(31,58,29,.02));
  display:grid;
  gap:10px;
}
.mobile-nav__row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.mobile-nav__phone{
  flex:1 1 180px;
  text-align:center;
  padding:12px 14px;
  border-radius:12px;
  font-weight:1000;
  color:#1a1a1a;
  background:linear-gradient(180deg, var(--gold2), var(--gold));
  border:1px solid rgba(0,0,0,.10);
}
.mobile-nav__quote{
  flex:1 1 180px;
  text-align:center;
  padding:12px 14px;
  border-radius:12px;
  font-weight:1000;
  color:#fff;
  background:linear-gradient(180deg, var(--green2), var(--green));
}

/* open state */
.mobile-nav.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}
.mobile-nav.is-open .mobile-nav__backdrop{
  opacity:1;
}
.mobile-nav.is-open .mobile-nav__panel{
  transform:translateX(0);
}

/* prevent background scroll when drawer is open */
body.menu-open{
  overflow:hidden;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:240px;
}

.brand__logo{
  width:46px;
  height:46px;
  border-radius:10px;
  object-fit:cover;
  box-shadow:0 10px 18px rgba(0,0,0,.18);
}

.brand__text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.brand__name{
  font-weight:1000;
  color:#fff;
  letter-spacing:.2px;
}

.brand__tag{
  font-size:.78rem;
  color:rgba(255,255,255,.78);
  margin-top:3px;
}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
}

.nav__link,
.nav__link:visited,
.nav__link:active{
  color:#fff !important;
  font-weight:900;
  font-size:.95rem;
  padding:8px 10px;
  border-radius:10px;
  text-decoration:none;
  transition:background .15s ease, transform .15s ease;
  white-space:nowrap;
}

.nav__link:hover{
  background:rgba(255,255,255,.10);
  transform:translateY(-1px);
}

.nav__link.is-active{
  background:rgba(217,178,76,.18);
  border:1px solid rgba(217,178,76,.35);
  color:#fff !important;
}

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

.header-social{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 12px;
  border-radius:10px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
  font-weight:1000;
  white-space:nowrap;
  transition:background .15s ease, transform .15s ease, border-color .15s ease;
}

.header-social:hover{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.18);
  transform:translateY(-1px);
}

.header-social:visited,
.header-social:active{
  color:#fff;
}

.header-social svg{
  width:16px;
  height:16px;
  fill:currentColor;
  flex:0 0 auto;
}

.header-phone{
  color:var(--gold);
  font-weight:1000;
  letter-spacing:.4px;
  padding:8px 10px;
  border-radius:10px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  white-space:nowrap;
}

.header-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:10px;
  font-weight:1000;
  color:#1a1a1a;
  background:linear-gradient(180deg, var(--gold2), var(--gold));
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 10px 18px rgba(0,0,0,.15);
  white-space:nowrap;
}

.field{ display:block; margin-top:10px; }

.label{
  display:block;
  font-size:.82rem;
  color:rgba(0,0,0,.62);
  margin-bottom:6px;
}

.input{
  width:100%;
  padding:10px 12px;
  border:1px solid rgba(0,0,0,.15);
  border-radius:10px;
  outline:none;
  font-size:1rem;
  background:#fff;
}

.input:focus{
  border-color:rgba(38,74,35,.55);
  box-shadow:0 0 0 4px rgba(38,74,35,.12);
}

.textarea{ resize:vertical; }

.btn-primary{
  margin-top:14px;
  width:100%;
  padding:12px 14px;
  border:0;
  border-radius:10px;
  cursor:pointer;
  font-weight:1000;
  color:#fff;
  background:linear-gradient(180deg, var(--green2), var(--green));
  box-shadow:0 10px 18px rgba(0,0,0,.15);
}

.btn-call{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.10);
  color:#fff;
  font-weight:1000;
}

.btn-call:visited,
.btn-call:hover,
.btn-call:active{
  color:#fff;
  text-decoration:none;
}

.arrow{
  font-size:1.25rem;
  line-height:0;
}

.hp-field{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  opacity:0 !important;
  pointer-events:none !important;
}

.hero{
  position:relative;
  min-height:90vh;
  background-size:cover;
  background-position:center;
  background-color:#0d1a0d;
}

.hero-trust{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:3;
}

.hero-trust__inner{
  width:100%;
  max-width:none;
  margin:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:14px 8%;
  background:linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.42));
  border-top:0;
}

.hero-trust__stars{
  display:inline-flex;
  gap:4px;
  align-items:center;
}

.hero-trust__stars svg{
  width:22px;
  height:22px;
  fill:var(--gold);
  filter:drop-shadow(0 6px 10px rgba(0,0,0,.25));
}

.hero-trust__text{
  color:rgba(255,255,255,.92);
  font-weight:900;
  font-size:clamp(1.25rem, 1.8vw, 1.65rem);
  letter-spacing:.1px;
  text-shadow:0 10px 22px rgba(0,0,0,.30);
}

.hero-trust__text strong{
  font-weight:1000;
  color:#fff;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.30));
}

.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  grid-template-rows:auto 1fr auto;
  gap:32px;
  padding:clamp(34px, 5vw, 60px) 8%;
  color:#fff;
  align-items:start;
  padding-bottom:calc(clamp(34px, 5vw, 60px) + 70px);
  min-height:90vh;
}

.hero-logo{
  width:min(520px, 100%);
  margin-bottom:14px;
  filter:drop-shadow(0 10px 22px rgba(0,0,0,.38));
}

.hero-h1{
  margin:0 0 12px;
  font-weight:1000;
  font-size:clamp(1.85rem, 3vw, 2.9rem);
  line-height:1.1;
  text-shadow:0 10px 22px rgba(0,0,0,.32);
}

.hero-h1-sub{
  display:block;
  margin-top:10px;
  font-size:.52em;
  font-weight:900;
  opacity:.92;
}

.accent{ color:var(--gold); }

.hero-copy{
  margin:0 0 14px;
  max-width:720px;
  opacity:.95;
  text-shadow:0 10px 22px rgba(0,0,0,.25);
}

.hero-points{
  margin:0;
  padding-left:18px;
  opacity:.95;
}

.hero-points li{
  margin:8px 0;
}

.hero-quick{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}

.hero-quick-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:150px;
  padding:12px 16px;
  border-radius:12px;
  font-weight:1000;
  color:#fff;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 10px 18px rgba(0,0,0,.15);
  transition:transform .15s ease, background .15s ease;
}

.hero-quick-btn:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.16);
}

.hero-quick-btn.is-gold{
  color:#1a1a1a;
  background:linear-gradient(180deg, var(--gold2), var(--gold));
  border:1px solid rgba(0,0,0,.08);
}

.hero-quick-btn.is-gold:hover{
  background:linear-gradient(180deg, #efd27b, #d9b24c);
}

.quote-card{
  background:#fff;
  color:#111;
  border-radius:16px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.quote-title{
  margin:0;
  padding:18px 18px 10px;
  font-size:1.55rem;
  font-weight:1000;
  color:#203820;
}

.quote-form{
  padding:0 18px 16px;
}

.quote-phone{
  background:linear-gradient(180deg, var(--green2), var(--green));
  padding:14px 18px 18px;
  text-align:center;
  color:#fff;
}

.quote-number{
  font-size:1.65rem;
  font-weight:1000;
  color:var(--gold);
  letter-spacing:.5px;
  margin-bottom:10px;
}

.welcome{
  background:var(--paper);
  padding:clamp(38px, 5vw, 58px) 10%;
  text-align:center;
  position:relative;
}

.welcome-inner{
  max-width:1100px;
  margin:0 auto;
}

.welcome-title{
  margin:0 0 10px;
  font-size:clamp(1.55rem, 2.3vw, 2.35rem);
  font-weight:1000;
  color:#203820;
}

.welcome-text{
  margin:0 auto 22px;
  max-width:980px;
  color:rgba(0,0,0,.68);
  line-height:1.7;
}

.welcome-tabs{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin-top:10px;
}

.tab{
  display:flex;
  align-items:flex-start;
  gap:12px;
  background:linear-gradient(180deg, var(--gold2), var(--gold));
  border-radius:14px;
  padding:14px 14px;
  box-shadow:0 10px 18px rgba(0,0,0,.10);
}

.tab-icon{
  width:34px;
  height:34px;
  border-radius:10px;
  display:grid;
  place-items:center;
  background:rgba(0,0,0,.12);
  font-weight:1000;
  color:#1a1a1a;
  flex:0 0 auto;
}

.tab-title{
  font-weight:1000;
  color:#1f2e1f;
}

.tab-sub{
  font-size:.92rem;
  color:rgba(0,0,0,.70);
  margin-top:2px;
}

/* MATCHED SERVICES + AREAS SECTION */
.services-section,
.service-areas-section{
  background:var(--green3);
  padding:clamp(40px, 5vw, 58px) 10%;
}

.services-section{
  position:relative;
  color:#fff;
  /* pull section up so the wavy cutout overlays the section above */
  margin-top:-40px;
  padding-top:calc(clamp(40px, 5vw, 58px) + 40px);

  /* Make the actual top edge wavy (no straight seam) */
  -webkit-mask-repeat:no-repeat;
  -webkit-mask-size:100% 100%;
  -webkit-mask-position:top center;
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000' preserveAspectRatio='none'%3E%3Cpath d='M0 40 Q41.6667 0 83.3333 40 T166.6667 40 T250 40 T333.3333 40 T416.6667 40 T500 40 T583.3333 40 T666.6667 40 T750 40 T833.3333 40 T916.6667 40 T1000 40 L1000 1000 L0 1000 Z' fill='black'/%3E%3C/svg%3E");
  mask-repeat:no-repeat;
  mask-size:100% 100%;
  mask-position:top center;
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000' preserveAspectRatio='none'%3E%3Cpath d='M0 40 Q41.6667 0 83.3333 40 T166.6667 40 T250 40 T333.3333 40 T416.6667 40 T500 40 T583.3333 40 T666.6667 40 T750 40 T833.3333 40 T916.6667 40 T1000 40 L1000 1000 L0 1000 Z' fill='black'/%3E%3C/svg%3E");
}

/* Wave edge tuning for tablet/mobile so content isn't clipped */
@media (max-width: 1024px){
  .services-section{
    margin-top:-32px;
    padding-top:calc(clamp(40px, 5vw, 58px) + 32px);

    -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000' preserveAspectRatio='none'%3E%3Cpath d='M0 32 Q41.6667 0 83.3333 32 T166.6667 32 T250 32 T333.3333 32 T416.6667 32 T500 32 T583.3333 32 T666.6667 32 T750 32 T833.3333 32 T916.6667 32 T1000 32 L1000 1000 L0 1000 Z' fill='black'/%3E%3C/svg%3E");
    mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000' preserveAspectRatio='none'%3E%3Cpath d='M0 32 Q41.6667 0 83.3333 32 T166.6667 32 T250 32 T333.3333 32 T416.6667 32 T500 32 T583.3333 32 T666.6667 32 T750 32 T833.3333 32 T916.6667 32 T1000 32 L1000 1000 L0 1000 Z' fill='black'/%3E%3C/svg%3E");
  }
}

@media (max-width: 640px){
  .services-section{
    margin-top:-26px;
    padding-top:calc(clamp(40px, 5vw, 58px) + 26px);

    -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000' preserveAspectRatio='none'%3E%3Cpath d='M0 26 Q41.6667 0 83.3333 26 T166.6667 26 T250 26 T333.3333 26 T416.6667 26 T500 26 T583.3333 26 T666.6667 26 T750 26 T833.3333 26 T916.6667 26 T1000 26 L1000 1000 L0 1000 Z' fill='black'/%3E%3C/svg%3E");
    mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000' preserveAspectRatio='none'%3E%3Cpath d='M0 26 Q41.6667 0 83.3333 26 T166.6667 26 T250 26 T333.3333 26 T416.6667 26 T500 26 T583.3333 26 T666.6667 26 T750 26 T833.3333 26 T916.6667 26 T1000 26 L1000 1000 L0 1000 Z' fill='black'/%3E%3C/svg%3E");
  }
}


.services-overlay{
  display:none;
}

.services-inner,
.service-areas-inner{
  position:relative;
  max-width:1200px;
  margin:0 auto;
}

.services-title{
  margin:0 0 18px;
  text-align:center;
  font-size:clamp(1.55rem, 2.2vw, 2.2rem);
  font-weight:1000;
  color:#fff;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
  align-items:stretch;
  grid-auto-rows:1fr;
}

.service-card{
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  display:flex;
  flex-direction:column;
  height:100%;
  min-height:0;
}

.service-card img{
  width:100%;
  height:190px;
  object-fit:cover;
  flex:0 0 auto;
}

.service-card-body{
  padding:14px;
  background:rgba(0,0,0,.28);
  flex:1;
  display:flex;
  flex-direction:column;
  min-height:0;
}

.service-card-body h3{
  margin:0 0 6px;
  font-weight:1000;
  color:#fff;
}

.service-sub{
  margin:0 0 10px;
  color:rgba(255,255,255,.86);
  font-size:.95rem;
}

.learn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:10px;
  background:linear-gradient(180deg, var(--gold2), var(--gold));
  color:#1a1a1a;
  font-weight:1000;
  margin-top:auto;
}

.service-areas-copy{
  text-align:center;
  margin-bottom:22px;
}

.service-areas-copy .welcome-title{
  color:#fff;
}

.service-areas-copy .welcome-text{
  color:rgba(255,255,255,.82);
}

.service-areas-text{
  max-width:900px;
}

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

.service-area-card{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:6px;
  min-height:130px;
  padding:18px 18px;
  border-radius:16px;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--softshadow);
}

.service-area-card--link{
  transition:transform .15s ease, border-color .15s ease, background .15s ease;
}

.service-area-card--link:hover{
  transform:translateY(-2px);
  border-color:rgba(217,178,76,.45);
  background:linear-gradient(180deg, rgba(217,178,76,.18), rgba(255,255,255,.05));
}

.service-area-card__title{
  font-size:1.1rem;
  font-weight:1000;
  color:#fff;
}

.service-area-card__sub{
  color:rgba(255,255,255,.82);
  line-height:1.5;
  font-size:.95rem;
}

.map-section{
  background:var(--paper);
  padding:clamp(40px, 5vw, 58px) 10%;
}

.map-section__inner{
  max-width:1150px;
  margin:0 auto;
}

.map-section__content{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:24px;
  align-items:stretch;
}

.map-section__text{
  background:#fff;
  border-radius:18px;
  padding:24px 24px;
  box-shadow:var(--softshadow);
}

.map-section__copy{
  margin-bottom:18px;
}

.map-section__points{
  display:grid;
  gap:10px;
}

.map-point{
  padding:12px 14px;
  border-radius:12px;
  background:linear-gradient(180deg, var(--gold2), var(--gold));
  color:#1a1a1a;
  font-weight:900;
  box-shadow:0 10px 18px rgba(0,0,0,.08);
}

.map-shell{
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow);
  min-height:100%;
  background:#d8d8d8;
}

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

.faq-item{
  background:#fff;
  border-radius:14px;
  margin-bottom:12px;
  box-shadow:var(--softshadow);
  border:1px solid rgba(0,0,0,.06);
  overflow:hidden;
}

.faq-wrap{
  max-width:980px;
  margin:0 auto;
  text-align:left;
}

.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:16px 18px;
  font-weight:1000;
  color:#203820;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item summary::after{
  content:"";
  width:10px;
  height:10px;
  flex:0 0 auto;
  border-right:2px solid rgba(31,58,29,.70);
  border-bottom:2px solid rgba(31,58,29,.70);
  transform:rotate(45deg);
  transition:transform .18s ease;
  margin-left:10px;
}

.faq-item[open] summary::after{
  transform:rotate(-135deg);
}

.faq-item summary:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px rgba(38,74,35,.14);
}

.faq-body{
  padding:0 18px 16px;
  color:rgba(0,0,0,.74);
  line-height:1.65;
}

.cta-strip{
  background:var(--paper);
  padding:clamp(32px, 4.5vw, 44px) 10%;
}

.cta-inner{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.cta-left h2{
  margin:0 0 8px;
  font-size:clamp(1.35rem, 2vw, 2.05rem);
  font-weight:1000;
  color:#203820;
}

.cta-subhead{
  margin:0 0 8px;
  font-size:clamp(1.05rem, 1.35vw, 1.25rem);
  font-weight:1000;
  color:#203820;
}

.cta-seohead{
  margin:0;
  font-size:clamp(1rem, 1.25vw, 1.15rem);
  font-weight:900;
  color:rgba(0,0,0,.70);
  line-height:1.5;
}

.cta-left p,
.cta-copy{
  margin:0;
  color:rgba(0,0,0,.68);
}

.cta-right{
  text-align:center;
  background:linear-gradient(180deg, var(--green2), var(--green));
  padding:16px 18px;
  border-radius:16px;
  color:#fff;
  box-shadow:0 12px 22px rgba(0,0,0,.12);
  min-width:260px;
}

.cta-phone{
  font-weight:1000;
  font-size:1.6rem;
  color:var(--gold);
  margin-bottom:10px;
}

.cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.10);
  font-weight:1000;
  color:#fff;
}

.cta-btn:visited,
.cta-btn:hover,
.cta-btn:active{
  color:#fff;
  text-decoration:none;
}

/* (footer styles consolidated further below) */

.form-success-popup{
  display:none;
}

.form-success-title{
  font-size:1.35rem;
  font-weight:1000;
  color:#203820;
  margin-bottom:8px;
}

.form-success-text{
  margin:0 0 16px;
  color:rgba(0,0,0,.72);
}

.form-success-close{
  appearance:none;
  border:0;
}

body.modal-open{
  overflow:hidden;
}

@media (max-width:1100px){
  .site-header__inner{
    gap:10px;
    padding:10px 4%;
  }

  .brand{
    min-width:unset;
  }

  .hero-inner{
    grid-template-columns:1fr;
  }

  /* Tablet stacking: keep quote form centered and roomy */
  .quote-card{
    width:100%;
    max-width:620px;
    justify-self:center;
    margin:8px auto 0;
  }

  .map-section__content{
    grid-template-columns:1fr;
  }
}

@media (max-width:900px){
  .site-header__inner{
    flex-wrap:wrap;
    justify-content:center;
  }

  .nav{
    order:3;
    width:100%;
    justify-content:center;
    flex-wrap:wrap;
  }

  .header-cta{
    flex-wrap:wrap;
    justify-content:center;
  }

  .welcome-tabs{
    grid-template-columns:1fr 1fr;
  }

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

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

  .cta-inner{
    flex-direction:column;
    align-items:stretch;
  }

  .cta-right{
    min-width:unset;
  }
}

/* Mobile header: collapse into hamburger + drawer */
@media (max-width:900px){
  .site-header__inner{
    flex-wrap:nowrap;
    justify-content:space-between;
  }
  .nav,
  .header-cta{
    display:none;
  }
  .nav-toggle{
    display:inline-flex;
  }
}

@media (max-width:640px){
  .brand__tag{
    display:none;
  }

  .header-social span{
    display:none;
  }

  .header-social{
    padding:10px 10px;
  }

  .welcome-tabs{
    grid-template-columns:1fr;
  }

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

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

  .hero-quick-btn{
    width:100%;
  }

  .map-section__text{
    padding:18px 18px;
  }

  .map-shell iframe{
    min-height:340px;
  }
}

/* =========================
   ✅ ABOUT PAGE
========================= */
.about-top{
  position: relative;
  background-size: cover;
  background-position: center;
  padding: clamp(22px, 4vw, 34px) 10%;
  min-height: 220px;
  display: grid;
  place-items: center;
}
.about-top__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.30), rgba(0,0,0,.40));
}
.about-top__inner{
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 10px;
}
.about-top__logo{
  width: min(520px, 92%);
  filter: drop-shadow(0 16px 28px rgba(0,0,0,.35));
}
.about-breadcrumbs{
  font-weight: 900;
  color: rgba(255,255,255,.88);
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px 12px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.about-breadcrumbs a{ color: rgba(255,255,255,.92); }
.crumb-dot{ opacity:.85; margin: 0 6px; }

.about-paper{
  background: #ffffff;
  position: relative;
  padding: clamp(28px, 4vw, 46px) 10% clamp(36px, 4.5vw, 54px);
}
.about-paper::before{
  content:"";
  position:absolute;
  inset:0;
  background: transparent;
  pointer-events:none;
}
.about-paper__inner{
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.about-title{
  margin: 0 0 18px;
  text-align: center;
  font-weight: 1000;
  color: #203820;
  font-size: clamp(1.7rem, 2.7vw, 2.7rem);
  line-height: 1.12;
}

.about-collage{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: clamp(14px, 2vw, 18px);
  box-shadow: var(--softshadow);
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items: start;
}

.collage-left{
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  position: relative;
}
.collage-photo{ position: relative; background:#ddd; }
.collage-img{
  width: 100%;
  height: clamp(240px, 34vw, 320px);
  object-fit: cover;
  display: block;
}
.ribbon{
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color: #1a1a1a;
  font-weight: 1000;
  text-align: center;
  padding: 12px 12px;
  border-radius: 12px;
  box-shadow: 0 14px 26px rgba(0,0,0,.18);
  border: 1px solid rgba(0,0,0,.10);
  line-height: 1.1;
  z-index: 2;
}
.about-checks{
  list-style: none;
  margin: 0;
  padding: 14px 14px 16px;
  background: rgba(255,255,255,.92);
  border-top: 1px solid rgba(0,0,0,.08);
}
.about-checks li{
  position: relative;
  padding-left: 30px;
  font-weight: 900;
  color: rgba(0,0,0,.76);
  margin: 10px 0;
}
.about-checks li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(31,58,29,.10);
  border: 1px solid rgba(31,58,29,.25);
  color: var(--green2);
  font-weight: 1000;
}

.collage-right{
  display: grid;
  gap: 14px;
}
.circle-photo{
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid rgba(217,178,76,.70);
  background: #ddd;
}
.circle-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.callout{
  background: linear-gradient(180deg, var(--green2), var(--green));
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  color: #fff;
  box-shadow: 0 12px 22px rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.12);
  display: grid;
  gap: 10px;
}
.callout-title{
  font-weight: 1000;
  opacity: .92;
}
.callout-phone{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 1000;
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  color: var(--gold);
  letter-spacing: .5px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
}
.callout-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 1000;
  color:#1a1a1a;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 10px 18px rgba(0,0,0,.15);
}

.about-two{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-block{
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--softshadow);
}
.about-block h2{
  margin: 0 0 8px;
  font-weight: 1000;
  color: #203820;
  font-size: 1.45rem;
}
.about-block p{
  margin: 0 0 12px;
  color: rgba(0,0,0,.72);
  line-height: 1.75;
}

.mini-points{
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.mini-point{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 12px;
}
.mini-icon{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color: #1a1a1a;
  font-weight: 1000;
  flex: 0 0 auto;
}
.mini-title{ font-weight: 1000; color: #1f2e1f; }
.mini-sub{
  font-size: .92rem;
  color: rgba(0,0,0,.70);
  margin-top: 2px;
}

.about-features{
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature-tile{
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--softshadow);
}
.feature-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--green2), var(--green));
  color: #fff;
  font-weight: 1000;
  flex: 0 0 auto;
}
.feature-title{ font-weight: 1000; color: #203820; }
.feature-sub{
  font-size: .92rem;
  color: rgba(0,0,0,.70);
  margin-top: 2px;
}

.about-gallery{
  margin-top: 16px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--softshadow);
}

.gallery-head{
  text-align: center;
  margin-bottom: 12px;
}
.gallery-title{
  margin: 0 0 6px;
  font-weight: 1000;
  color: #203820;
  font-size: 1.45rem;
}
.gallery-sub{
  margin: 0 auto;
  max-width: 920px;
  color: rgba(0,0,0,.70);
  line-height: 1.7;
}

.gallery-scroller{
  margin-top: 14px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(320px, 78vw);
  gap: 14px;

  overflow-x: auto;
  padding: 6px 4px 14px;

  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;

  border-radius: 14px;
  background: rgba(0,0,0,.02);
  border: 1px solid rgba(0,0,0,.06);
}

/* nicer scrollbar (webkit) */
.gallery-scroller::-webkit-scrollbar{ height: 10px; }
.gallery-scroller::-webkit-scrollbar-track{
  background: rgba(0,0,0,.06);
  border-radius: 999px;
}
.gallery-scroller::-webkit-scrollbar-thumb{
  background: rgba(31,58,29,.35);
  border-radius: 999px;
}

/* keyboard focus */
.gallery-scroller:focus{
  outline: none;
  box-shadow: 0 0 0 4px rgba(38,74,35,.14);
  border-color: rgba(38,74,35,.35);
}

.gallery-card{
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  position: relative;
}

.gallery-card img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .18s ease;
}
.gallery-card:hover img{
  transform: scale(1.03);
}

/* Optional CTA card at the end */
.gallery-card--cta{
  background: linear-gradient(180deg, var(--green2), var(--green));
  color:#fff;
  display: grid;
  place-items: center;
}
.gallery-cta{
  padding: 16px;
  text-align: center;
  display: grid;
  gap: 10px;
}
.gallery-cta__title{
  font-weight: 1000;
  font-size: 1.1rem;
  opacity: .95;
}
.gallery-cta__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 1000;
  color:#1a1a1a;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 10px 18px rgba(0,0,0,.15);
}
.gallery-cta__phone{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight: 1000;
  color: var(--gold);
  letter-spacing: .5px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
}

/* little hint pill */
.gallery-hint{
  margin-top: 10px;
  display:flex;
  justify-content:center;
}
.hint-pill{
  font-weight: 900;
  font-size: .9rem;
  color: rgba(0,0,0,.62);
  background: rgba(217,178,76,.18);
  border: 1px solid rgba(217,178,76,.35);
  padding: 8px 12px;
  border-radius: 999px;
}


/* Top banner */
.contact-top{
  position: relative;
  background-size: cover;
  background-position: center;
  padding: clamp(22px, 4vw, 34px) 10%;
  min-height: 220px;
  display: grid;
  place-items: center;
}
.contact-top__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.30), rgba(0,0,0,.42));
}
.contact-top__inner{
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 10px;
}
.contact-top__logo{
  width: min(520px, 92%);
  filter: drop-shadow(0 16px 28px rgba(0,0,0,.35));
}

/* Breadcrumbs reuse styling */
.contact-breadcrumbs{
  font-weight: 900;
  color: rgba(255,255,255,.88);
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px 12px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.contact-breadcrumbs a{ color: rgba(255,255,255,.92); }

.contact-paper{
  background: #ffffff;
  position: relative;
  padding: clamp(28px, 4vw, 46px) 10% clamp(36px, 4.5vw, 54px);
}
.contact-paper::before{
  content:"";
  position:absolute;
  inset:0;
  background: transparent;
  pointer-events:none;
}
.contact-paper__inner{
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-header{
  text-align: center;
  margin-bottom: 18px;
}
.contact-title{
  margin: 0 0 10px;
  font-weight: 1000;
  color: #203820;
  font-size: clamp(1.7rem, 2.7vw, 2.7rem);
  line-height: 1.12;
}
.contact-subtitle{
  margin: 0 auto;
  max-width: 950px;
  color: rgba(0,0,0,.70);
  line-height: 1.75;
  font-size: clamp(1rem, 1.3vw, 1.08rem);
}

/* Main grid */
.contact-grid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
  align-items: start;
}

/* Card styling */
.contact-card{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--softshadow);
}

.contact-card__title{
  margin: 0 0 6px;
  font-weight: 1000;
  color: #203820;
  font-size: 1.45rem;
}
.contact-card__sub{
  margin: 0 0 12px;
  color: rgba(0,0,0,.70);
  line-height: 1.7;
}

/* Form layout */
.contact-form__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-note{
  margin: 12px 0 0;
  font-size: .95rem;
  color: rgba(0,0,0,.62);
  line-height: 1.6;
}
.inline-link{
  font-weight: 1000;
  color: var(--green2);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* Info side */
.contact-info{
  display: grid;
  gap: 12px;
  margin-top: 12px;
}
.info-row{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 12px;
}
.info-icon{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color:#1a1a1a;
  font-weight: 1000;
  flex: 0 0 auto;
}
.info-label{
  font-weight: 1000;
  color: rgba(0,0,0,.78);
}
.info-value{
  margin-top: 2px;
  font-weight: 900;
  color: #203820;
  display: inline-block;
}

.contact-callout{
  margin-top: 14px;
  background: linear-gradient(180deg, var(--green2), var(--green));
  border-radius: 16px;
  padding: 16px;
  color:#fff;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 22px rgba(0,0,0,.12);
  display: grid;
  gap: 10px;
}
.contact-callout__title{
  font-weight: 1000;
}
.contact-callout__sub{
  opacity: .92;
  margin-top: -6px;
}

/* Trust badges */
.contact-badges{
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.badge{
  display:flex;
  gap:10px;
  align-items:flex-start;
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 12px;
}
.badge-icon{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(31,58,29,.10);
  border: 1px solid rgba(31,58,29,.25);
  color: var(--green2);
  font-weight: 1000;
  flex: 0 0 auto;
}
.badge-title{ font-weight: 1000; color: #203820; }
.badge-sub{ font-size: .92rem; color: rgba(0,0,0,.70); margin-top: 2px; }

/* SEO content block */
.contact-seo{
  margin-top: 16px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--softshadow);
}
.contact-seo h2{
  margin: 0 0 8px;
  font-weight: 1000;
  color: #203820;
  font-size: 1.35rem;
}
.contact-seo p{
  margin: 0 0 12px;
  color: rgba(0,0,0,.72);
  line-height: 1.75;
}

.contact-mini-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.mini-box{
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 12px;
}
.mini-box__title{
  font-weight: 1000;
  color: #203820;
}
.mini-box__sub{
  margin-top: 4px;
  font-size: .92rem;
  color: rgba(0,0,0,.70);
}

/* Footer */
.footer{
  padding:24px 10%;
  text-align:center;
  background:#0c120c;
  color:rgba(255,255,255,.88);
  border-top:1px solid rgba(255,255,255,.08);
}

.footer p{ margin:6px 0; }
.footer a{ color:var(--gold); }


@media (max-width: 1024px){
  .site-header__inner{ padding: 10px 6%; }

  /* Landing */
  .hero-inner{
    grid-template-columns: 1fr;
    padding: 40px 6%;
    gap: 18px;
  }
  .quote-card{
    max-width: 560px;
    margin: 0 auto;
  }
  .welcome{ padding: 46px 6%; }
  /* Keep wave math from base rules; only adjust side/bottom padding here */
  .services-section{
    padding-left: 6%;
    padding-right: 6%;
    padding-bottom: 46px;
  }
  .cta-strip{ padding: 38px 6%; }
  .welcome-tabs{ grid-template-columns: 1fr; }
  .services-grid{ grid-template-columns: 1fr; }
  .cta-inner{
    flex-direction: column;
    text-align: center;
  }
  .cta-right{
    width: 100%;
    max-width: 520px;
  }

  /* About */
  .about-top{ padding: 28px 6%; }
  .about-paper{ padding: 34px 6% 44px; }
  .about-collage{ grid-template-columns: 1fr; gap: 16px; }
  .collage-right{
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 14px;
  }
  .circle-photo{ max-width: 320px; margin: 0 auto; }
  .about-two{ grid-template-columns: 1fr; }
  .about-features{ grid-template-columns: 1fr; }

  /* About gallery */
  .gallery-scroller{
    grid-auto-columns: min(340px, 82vw);
  }

  /* Contact */
  .contact-top{ padding: 28px 6%; }
  .contact-paper{ padding: 34px 6% 44px; }
  .contact-grid{ grid-template-columns: 1fr; }
  .contact-mini-grid{ grid-template-columns: 1fr; }
}


@media (max-width: 640px){
  .site-header__inner{
    padding: 10px 5%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .brand{ min-width: unset; }
  .brand__tag{ display:none; }

  .nav{
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .header-cta{
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .header-phone,
  .header-btn{
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Landing */
  .hero-inner{ padding: 34px 5%; }
  .hero-trust__inner{
    border-radius:16px;
    flex-direction:column;
    text-align:center;
    gap:8px;
  }
  .quote-card{
    width:100%;
    max-width:unset;
    margin:0;
    border-radius:18px;
  }
  .quote-title{
    padding:20px 18px 12px;
    font-size:1.65rem;
  }
  .quote-form{
    padding:0 18px 18px;
  }
  .input{
    padding:12px 12px;
    font-size:1.05rem;
  }
  .btn-primary{
    padding:14px 14px;
    border-radius:12px;
  }
  .quote-phone{
    padding:16px 18px 18px;
  }
  .quote-number{
    font-size:1.8rem;
  }
  .welcome{ padding: 40px 5%; }
  /* Keep wave math from base rules; only adjust side/bottom padding here */
  .services-section{
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 40px;
  }
  .cta-strip{ padding: 34px 5%; }
  .service-card img{ height: 170px; }

  /* About */
  .about-top{ padding: 22px 5%; min-height: 190px; }
  .about-paper{ padding: 28px 5% 40px; }
  .ribbon{
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px 10px;
    font-size: .98rem;
  }
  .about-checks{ padding: 12px 12px 14px; }
  .about-checks li{ font-size: .98rem; }
  .collage-right{ grid-template-columns: 1fr; }
  .circle-photo{ max-width: 320px; margin: 0 auto; }
  .callout{ padding: 14px; }

  /* About gallery */
  .about-gallery{ padding: 14px; }
  .gallery-card img{ height: 200px; }

  /* Contact */
  .contact-top{ padding: 22px 5%; min-height: 190px; }
  .contact-paper{ padding: 28px 5% 40px; }
  .contact-form__row{ grid-template-columns: 1fr; }
}


.gallery-open{
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
}
.gallery-open:focus{
  outline: none;
}
.gallery-open:focus-visible{
  box-shadow: 0 0 0 4px rgba(38,74,35,.18);
  border-radius: 16px;
}

.lightbox{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2000;
}
.lightbox.is-open{
  display: grid;
  place-items: center;
}

.lightbox__backdrop{
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0,0,0,.70);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: zoom-out;
}

.lightbox__panel{
  position: relative;
  width: min(980px, 92vw);
  max-height: 88vh;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 26px 60px rgba(0,0,0,.35);
  z-index: 1;
}

.lightbox__close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.90);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 22px rgba(0,0,0,.12);
}

.lightbox__figure{
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
}

.lightbox__img{
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  background: #0c120c;
}

.lightbox__cap{
  padding: 12px 14px;
  font-weight: 900;
  color: rgba(0,0,0,.72);
  background: linear-gradient(180deg, rgba(231,197,98,.35), rgba(217,178,76,.18));
  border-top: 1px solid rgba(0,0,0,.08);
}

/* =========================
   ✅ FORM SUCCESS POPUP (Desktop + Mobile)
   - MUST NOT be commented out.
========================= */
body.modal-open{
  overflow: hidden !important;
}

#formSuccessPopup.form-success-popup{
  position: fixed !important;
  inset: 0 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 18px !important;

  background: rgba(0,0,0,.72) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;

  z-index: 99999 !important;
}

#formSuccessPopup.is-open{
  display: flex !important;
}

#formSuccessPopup .form-success-box{
  width: min(560px, 100%) !important;
  background: #fff !important;
  border-radius: 18px !important;
  padding: 26px 22px !important;
  box-shadow: 0 18px 60px rgba(0,0,0,.45) !important;
  text-align: center !important;
  position: relative !important;
}

#formSuccessPopup .form-success-close{
  position: absolute !important;
  top: 10px !important;
  right: 12px !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 999px !important;
  border: 0 !important;
  background: rgba(0,0,0,.06) !important;
  cursor: pointer !important;
  font-size: 26px !important;
  line-height: 42px !important;
}

#formSuccessPopup .form-success-icon{
  width: 74px !important;
  height: 74px !important;
  margin: 4px auto 14px !important;
  border-radius: 999px !important;
  display: grid !important;
  place-items: center !important;
  font-size: 40px !important;
  font-weight: 900 !important;
  background: #0f2b14 !important;
  color: #f3c74e !important;
}

#formSuccessPopup .form-success-title{
  margin: 0 0 8px !important;
  font-size: clamp(26px, 4vw, 34px) !important;
  line-height: 1.15 !important;
  font-weight: 900 !important;
  color: #0f2b14 !important;
}

#formSuccessPopup .form-success-text{
  margin: 0 auto 14px !important;
  max-width: 46ch !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
  color: #222 !important;
}

#formSuccessPopup .form-success-phone{
  display: inline-block !important;
  font-weight: 900 !important;
  font-size: clamp(22px, 4.8vw, 28px) !important;
  letter-spacing: .5px !important;
  color: #0f2b14 !important;
  background: #f3c74e !important;
  padding: 12px 16px !important;
  border-radius: 14px !important;
  text-decoration: none !important;
}

#formSuccessPopup .form-success-actions{
  margin-top: 18px !important;
}

#formSuccessPopup .form-success-btn{
  border: 0 !important;
  cursor: pointer !important;
  padding: 12px 16px !important;
  border-radius: 12px !important;
  background: #0f2b14 !important;
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 16px !important;
}

/* =========================
   OUR SERVICES PAGE (NEW)
   Safe add-on: does not modify existing classes
========================= */

.services-top{
  position: relative;
  background-size: cover;
  background-position: center;
  padding: clamp(26px, 4.5vw, 44px) 10%;
  min-height: 320px;
  display: grid;
  place-items: center;
  color: #fff;
}

.services-top__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.42), rgba(0,0,0,.58));
}

.services-top__inner{
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 12px;
  place-items: center;
}

.services-top__logo{
  width: min(520px, 92%);
  filter: drop-shadow(0 16px 28px rgba(0,0,0,.35));
}

.services-breadcrumbs{
  font-weight: 900;
  color: rgba(255,255,255,.90);
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px 12px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.services-breadcrumbs a{ color: rgba(255,255,255,.92); }

.services-h1{
  margin: 6px 0 0;
  font-weight: 1000;
  font-size: clamp(1.7rem, 2.7vw, 2.65rem);
  line-height: 1.12;
  text-shadow: 0 10px 22px rgba(0,0,0,.30);
}
.services-h1-sub{
  display:block;
  margin-top: 8px;
  font-size: .55em;
  font-weight: 900;
  opacity: .92;
}

.services-lead{
  margin: 0 auto;
  max-width: 980px;
  opacity: .95;
  line-height: 1.75;
  text-shadow: 0 10px 22px rgba(0,0,0,.25);
}

.services-cta{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}
.services-cta__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 1000;
  color:#1a1a1a;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 10px 18px rgba(0,0,0,.15);
}
.services-cta__btn.is-ghost{
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}

.services-paper{
  background: #ffffff;
  position: relative;
  padding: clamp(28px, 4vw, 46px) 10% clamp(36px, 4.5vw, 54px);
}
.services-paper::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 12% 22%, rgba(0,0,0,.04), transparent 46%),
    radial-gradient(circle at 84% 52%, rgba(0,0,0,.04), transparent 50%),
    radial-gradient(circle at 50% 92%, rgba(0,0,0,.03), transparent 52%);
  pointer-events:none;
}
.services-paper__inner{
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.services-intro{
  text-align:center;
  margin-bottom: 14px;
}
.services-paper .services-title{
  margin: 0 0 10px;
  font-weight: 1000;
  color: #203820;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
}
.services-sub{
  margin: 0 auto;
  max-width: 980px;
  color: rgba(0,0,0,.70);
  line-height: 1.75;
}

.services-grid2{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}

.svc-card{
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--softshadow);
  display:flex;
  flex-direction: column;
  min-height: 0;
}

.svc-icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: linear-gradient(180deg, var(--green2), var(--green));
  color:#fff;
  font-weight: 1000;
  margin-bottom: 10px;
}

.svc-card h3{
  margin: 0 0 8px;
  font-weight: 1000;
  color: #203820;
  font-size: 1.15rem;
}
.svc-card p{
  margin: 0 0 10px;
  color: rgba(0,0,0,.72);
  line-height: 1.7;
}

.svc-bullets{
  margin: 0 0 12px;
  padding-left: 18px;
  color: rgba(0,0,0,.70);
}
.svc-bullets li{ margin: 6px 0; }

.svc-link{
  margin-top: auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 1000;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color:#1a1a1a;
  border: 1px solid rgba(0,0,0,.10);
}

.services-areas{
  margin-top: 18px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--softshadow);
}
.services-areas h2{
  margin: 0 0 8px;
  font-weight: 1000;
  color:#203820;
  font-size: 1.35rem;
}
.services-areas p{
  margin: 0 0 10px;
  color: rgba(0,0,0,.72);
  line-height: 1.75;
}
.areas-grid{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 6px;
}
.area-pill{
  font-weight: 1000;
  color: #1f2e1f;
  background: rgba(217,178,76,.18);
  border: 1px solid rgba(217,178,76,.35);
  padding: 8px 12px;
  border-radius: 999px;
}
.areas-note{
  margin-top: 8px !important;
}
.areas-link{
  font-weight: 1000;
  color: var(--green2);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.services-process{
  margin-top: 18px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--softshadow);
}
.services-process h2{
  margin: 0 0 12px;
  font-weight: 1000;
  color:#203820;
  font-size: 1.35rem;
}

.process-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.process-step{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 12px;
}
.process-num{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color:#1a1a1a;
  font-weight: 1000;
  flex: 0 0 auto;
}
.process-title{ font-weight: 1000; color:#203820; }
.process-sub{
  margin-top: 2px;
  color: rgba(0,0,0,.70);
  font-weight: 700;
  font-size: .94rem;
  line-height: 1.6;
}

.services-faq{
  margin-top: 18px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--softshadow);
}
.services-faq h2{
  margin: 0 0 12px;
  font-weight: 1000;
  color:#203820;
  font-size: 1.35rem;
}

.faq-item{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  background: rgba(0,0,0,.02);
  padding: 10px 12px;
  margin: 10px 0;
}
.faq-item summary{
  cursor: pointer;
  font-weight: 1000;
  color: #203820;
  list-style: none;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-body{
  margin-top: 8px;
  color: rgba(0,0,0,.72);
  line-height: 1.7;
  font-weight: 700;
}

.services-final{
  margin-top: 18px;
}
.final-card{
  background: linear-gradient(180deg, var(--green2), var(--green));
  border-radius: 16px;
  padding: 18px;
  color:#fff;
  box-shadow: 0 12px 22px rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.final-card h2{
  margin: 0 0 6px;
  font-weight: 1000;
}
.final-card p{
  margin: 0;
  opacity: .92;
}
.final-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.final-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 1000;
  color:#1a1a1a;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 10px 18px rgba(0,0,0,.15);
  white-space: nowrap;
}
.final-btn.is-ghost{
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}

/* Responsive */
@media (max-width: 1024px){
  .services-top{ padding: 28px 6%; }
  .services-paper{ padding: 34px 6% 44px; }
  .services-grid2{ grid-template-columns: 1fr; }
  .process-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .services-top{ padding: 22px 5%; min-height: 260px; }
  .services-paper{ padding: 28px 5% 40px; }
  .services-cta__btn{ width: 100%; }
  .final-actions{ width: 100%; }
  .final-btn{ width: 100%; }
}

