:root{
  --bg: #070b14;
  --navy: #0f1730;
  --navy-2: #131c35;
  --ink: #111111;
  --white: #ffffff;
  --offwhite: #f4f5f7;
  --soft: #dfe3ea;
  --muted: #aab2c2;
  --line: rgba(255,255,255,.10);
  --lime: #c6dd57;
  --lime-2: #a7c23d;
  --lime-deep: #8ea62c;
  --lime-soft: rgba(198,221,87,.18);
  --shadow: 0 20px 45px rgba(0,0,0,.32);
  --radius: 18px;
  --radius-sm: 12px;
  --header-h: 90px;
  --container: 1240px;
}

*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button{
  font: inherit;
}

iframe{
  display: block;
}

.container{
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section-pad{
  padding: 86px 0;
}

.section-heading{
  margin-bottom: 30px;
}

.section-heading.center{
  text-align: center;
}

.section-heading-dark .section-kicker,
.section-heading-dark h2{
  color: #fff;
}

.section-kicker{
  margin: 0 0 10px;
  font-family: "Barlow", sans-serif;
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--navy);
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.section-heading h2{
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: .92;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.section-heading h2 span{
  color: var(--lime);
}

.section-lead{
  max-width: 840px;
  margin: 14px auto 0;
  font-size: 1.05rem;
  color: #435172;
}

.section-lead-light{
  color: rgba(255,255,255,.84);
}

.btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 0;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  transition: .25s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
}

.btn span{
  position: relative;
  z-index: 2;
}

.btn:hover{
  transform: translateY(-2px);
}

.btn-skew{
  transform: skewX(-14deg);
  clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%);
}

.btn-skew span{
  transform: skewX(14deg);
}

.btn-primary{
  background: linear-gradient(180deg, #d7ec6b 0%, #b7cf47 100%);
  color: #162036;
  box-shadow:
    0 14px 28px rgba(167,194,61,.22),
    inset 0 1px 0 rgba(255,255,255,.45);
}

.btn-primary:hover{
  filter: brightness(1.04);
}

.btn-outline{
  border-color: rgba(198,221,87,.72);
  color: var(--white);
  background: rgba(7,11,20,.38);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}

.btn-outline:hover{
  background: rgba(198,221,87,.12);
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background:
    linear-gradient(180deg, rgba(7,11,20,.97), rgba(10,15,27,.92)),
    radial-gradient(circle at top left, rgba(198,221,87,.08), transparent 32%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(198,221,87,.22);
}

.site-header.scrolled{
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
}

.header-inner{
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand{
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img{
  height: 64px;
  width: auto;
  object-fit: contain;
}

.main-nav{
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-link{
  position: relative;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: rgba(255,255,255,.92);
  font-size: .98rem;
  padding: 8px 0;
}

.nav-link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -11px;
  width: 0;
  height: 4px;
  border-radius: 999px;
  background: var(--lime);
  transition: width .25s ease;
}

.nav-link:hover::after,
.nav-link.active::after{
  width: 100%;
}

.header-actions{
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.header-phone{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border: 2px solid rgba(198,221,87,.6);
  border-radius: 12px;
  color: var(--white);
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: 1.18rem;
  background: rgba(255,255,255,.04);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}

.header-phone:hover{
  background: rgba(198,221,87,.12);
}

.nav-toggle{
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span{
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 999px;
  transition: .25s ease;
}

/* =========================
   HERO
========================= */

.hero{
  position: relative;
  min-height: calc(100svh - var(--header-h));
  background: #0b1020;
  overflow: hidden;
}

.hero::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  z-index: 2;
}

.hero-slides,
.hero-overlay{
  position: absolute;
  inset: 0;
}

.hero-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.is-active{
  opacity: 1;
}

.hero-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
}

.hero-overlay{
  background:
    linear-gradient(90deg, rgba(7,11,20,.84) 0%, rgba(8,12,22,.66) 30%, rgba(8,12,22,.28) 62%, rgba(8,12,22,.14) 100%),
    radial-gradient(circle at 16% 26%, rgba(198,221,87,.08), transparent 28%);
}

.hero-inner{
  position: relative;
  z-index: 2;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  grid-template-columns: minmax(0, 720px);
  gap: 0;
  align-items: center;
  padding: 48px 0 34px;
}

.hero-copy{
  color: var(--white);
  padding: 20px 0;
  max-width: 700px;
}

.hero-logo-wrap{
  max-width: 360px;
  margin-bottom: 12px;
}

.hero-logo-wrap img{
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.25));
}

.eyebrow{
  margin: 0 0 16px;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 700;
  font-size: .92rem;
}

.hero-slogan-box{
  margin: 0 0 22px;
  max-width: 640px;
  border-left: 6px solid var(--lime);
  background:
    linear-gradient(90deg, rgba(198,221,87,.18) 0%, rgba(198,221,87,.08) 22%, rgba(255,255,255,.04) 100%);
  box-shadow:
    0 14px 30px rgba(0,0,0,.20),
    inset 0 0 0 1px rgba(255,255,255,.05);
  padding: 18px 22px 16px;
}

.hero-slogan-box p{
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #f4f8df;
  text-shadow: 0 3px 10px rgba(0,0,0,.22);
}

.hero h1{
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: clamp(2.9rem, 6vw, 5.7rem);
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: -.03em;
}

.hero h1 span{
  color: var(--lime);
}

.hero-subtitle{
  margin: 18px 0 8px;
  font-family: "Barlow", sans-serif;
  font-size: clamp(1.08rem, 1.8vw, 1.42rem);
  font-weight: 700;
  text-transform: uppercase;
}

.hero-location{
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 1.06rem;
  max-width: 680px;
}

.hero-buttons{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.hero-service-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-service-tags span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(198,221,87,.18);
  color: #eef8c7;
  font-size: .86rem;
  font-weight: 700;
}

/* =========================
   TRUST BAR
========================= */

.trust-bar{
  position: relative;
  background: linear-gradient(180deg, #111833 0%, #0d1328 100%);
  border-top: 1px solid rgba(198,221,87,.25);
  border-bottom: 1px solid rgba(198,221,87,.25);
}

.trust-bar-inner{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px 0;
}

.trust-item{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Barlow", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.trust-item::before{
  content: "✔";
  margin-right: 10px;
  color: var(--lime);
  font-weight: 900;
}

/* =========================
   SERVICES
========================= */

.services-section{
  position: relative;
  background:
    linear-gradient(180deg, rgba(8,12,22,.95), rgba(8,12,22,.98)),
    url("../images/hero-shop-bg.jpg") center/cover no-repeat;
  overflow: hidden;
  padding-top: 52px;
  padding-bottom: 70px;
}

.services-fade-top{
  position: absolute;
  inset: 0 0 auto 0;
  height: 70px;
  background: linear-gradient(180deg, rgba(13,19,40,.70) 0%, rgba(13,19,40,.18) 55%, rgba(13,19,40,0) 100%);
  pointer-events: none;
  z-index: 1;
}

.services-fade-bottom{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70px;
  background: linear-gradient(180deg, rgba(8,12,22,0) 0%, rgba(36,34,31,.10) 58%, rgba(255,255,255,.14) 100%);
  pointer-events: none;
  z-index: 1;
}

.services-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(198,221,87,.07), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  pointer-events: none;
}

.section-top-button{
  display: flex;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 34px;
  position: relative;
  z-index: 4;
}

.services-top-btn{
  min-width: 250px;
}

.services-heading{
  position: relative;
  z-index: 3;
  margin-bottom: 34px;
}

.services-heading .section-kicker{
  color: rgba(255,255,255,.96);
}

.services-heading h2{
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  letter-spacing: -.03em;
  color: #f5f7fb;
  text-shadow: 0 6px 18px rgba(0,0,0,.28);
}

.services-heading h2 span{
  color: var(--lime);
  text-shadow: 0 6px 18px rgba(0,0,0,.26);
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  z-index: 3;
}

.service-card{
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  background: #12192e;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  cursor: pointer;
  text-align: left;
}

.service-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0,0,0,.28);
  border-color: rgba(198,221,87,.4);
}

.service-card:focus-visible{
  outline: 3px solid rgba(198,221,87,.7);
  outline-offset: 3px;
}

.service-image{
  aspect-ratio: 2.15 / 1;
  overflow: hidden;
  background: #0d1325;
}

.service-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.service-card:hover .service-image img{
  transform: scale(1.05);
}

.service-title{
  padding: 13px 12px 14px;
  text-align: center;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 1.32rem;
  font-weight: 700;
  line-height: 1.05;
  border-top: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, #18213c 0%, #0f1730 100%);
}

.service-title.highlight{
  color: #fff;
}

.services-grid .service-card:nth-child(1) .service-title,
.services-grid .service-card:nth-child(4) .service-title,
.services-grid .service-card:nth-child(5) .service-title,
.services-grid .service-card:nth-child(8) .service-title,
.services-grid .service-card:nth-child(9) .service-title,
.services-grid .service-card:nth-child(12) .service-title{
  color: var(--lime);
}

.service-lightbox{
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

.service-lightbox.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.service-lightbox-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(6,10,18,.84);
  backdrop-filter: blur(6px);
}

.service-lightbox-dialog{
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  max-height: 90vh;
  background: #0f1730;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  overflow: hidden;
}

.service-lightbox-media{
  background: #0a1020;
}

.service-lightbox-media img{
  display: block;
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
}

.service-lightbox-caption{
  padding: 16px 18px 18px;
  background: linear-gradient(180deg, #18213c 0%, #0f1730 100%);
  border-top: 1px solid rgba(255,255,255,.08);
}

.service-lightbox-caption p{
  margin: 0;
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.service-lightbox-close{
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(7,11,20,.72);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-lightbox-close:hover{
  background: rgba(198,221,87,.16);
}

.services-copy{
  max-width: 980px;
  margin: 24px auto 0;
  text-align: center;
  color: rgba(255,255,255,.86);
  position: relative;
  z-index: 3;
  font-size: 1.02rem;
}

.section-button{
  display: flex;
  justify-content: center;
  margin-top: 28px;
  position: relative;
  z-index: 3;
}

/* =========================
   ABOUT
========================= */

.about-section{
  position: relative;
  background: #ffffff;
  padding: 0 0 30px;
  overflow: hidden;
  margin-top: -10px;
}

.about-fade-top{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 38px;
  background: linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.48) 45%, rgba(255,255,255,.92) 100%);
  z-index: 1;
  pointer-events: none;
}

.about-fade-bottom{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(12,17,33,.04) 62%, rgba(12,17,33,.08) 100%);
  z-index: 1;
  pointer-events: none;
}

.about-shell{
  position: relative;
  z-index: 2;
  margin-top: 0;
}

.about-grid{
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(18,25,46,.10);
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(0,0,0,.10);
  background: #ffffff;
  min-height: 0;
}

.about-media{
  display: grid;
  grid-template-rows: minmax(300px, 1fr) auto;
  background: #0c1121;
  border-right: 1px solid rgba(15,23,48,.08);
}

.about-image{
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #0c1121;
}

.about-image::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 16%, rgba(0,0,0,.16) 100%);
  pointer-events:none;
  z-index: 2;
}

.about-image::after{
  content:"";
  position:absolute;
  inset:0;
  box-shadow:
    inset 0 0 40px rgba(0,0,0,.24),
    inset 0 0 0 1px rgba(255,255,255,.05);
  pointer-events:none;
  z-index: 2;
}

.about-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.94) contrast(1.02) brightness(.97);
  transform: scale(1.025);
}

.about-image-caption{
  padding: 16px 22px 18px;
  background:
    linear-gradient(180deg, rgba(13,19,40,.98), rgba(9,13,24,.98));
  border-top: 1px solid rgba(198,221,87,.16);
  color: rgba(255,255,255,.9);
}

.about-image-label{
  display: inline-block;
  margin-bottom: 8px;
  font-family: "Barlow", sans-serif;
  font-size: .95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--lime);
}

.about-image-caption p{
  margin: 0;
  font-size: .96rem;
  line-height: 1.55;
  color: rgba(255,255,255,.82);
  max-width: 540px;
}

.about-side{
  display: grid;
  grid-template-rows: auto auto;
  min-width: 0;
  background: #ffffff;
  position: relative;
}

.about-side::before{
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, rgba(198,221,87,0), rgba(198,221,87,.8) 18%, rgba(198,221,87,.45) 82%, rgba(198,221,87,0));
  opacity: .8;
}

.about-content{
  padding: 22px 30px 18px;
  color: #0f1730;
  border-bottom: 1px solid rgba(15,23,48,.08);
  position: relative;
  background: #ffffff;
}

.about-heading{
  margin-bottom: 12px;
}

.about-heading .section-kicker,
.about-heading h2{
  color: #0f1730;
}

.about-heading .section-kicker{
  font-size: .96rem;
  margin-bottom: 8px;
}

.about-heading h2{
  font-size: clamp(1.65rem, 2.55vw, 2.45rem);
  line-height: .95;
  max-width: 540px;
}

.about-subhead{
  margin: 0 0 14px;
  font-family: "Barlow", sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
  color: #7b9026;
  max-width: 460px;
}

.about-body{
  margin: 0 0 14px;
  font-size: 1rem;
  color: #34415f;
}

.about-list{
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  max-width: 520px;
}

.about-list li{
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: .98rem;
  font-weight: 600;
  color: #1c2642;
}

.about-list li::before{
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--lime-deep);
  font-weight: 900;
}

.about-side-panel{
  padding: 16px 30px 22px;
  background: #ffffff;
}

.about-side-card{
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15,23,48,.08);
  box-shadow: 0 14px 30px rgba(15,23,48,.08);
}

.about-side-label{
  display: inline-block;
  font-family: "Barlow", sans-serif;
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #7b9026;
}

.about-side-card h3{
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 800;
  line-height: .98;
  text-transform: uppercase;
  color: #0f1730;
}

.about-side-card p{
  margin: 0;
  color: #435172;
  font-size: .97rem;
  line-height: 1.65;
}

.about-side-points{
  display: grid;
  gap: 10px;
}

.about-side-point{
  padding: 12px 14px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(15,23,48,.06);
}

.about-side-point strong{
  display: block;
  margin-bottom: 4px;
  font-family: "Barlow", sans-serif;
  font-size: .98rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #0f1730;
}

.about-side-point span{
  display: block;
  color: #4c5a78;
  font-size: .94rem;
  line-height: 1.5;
}

.about-side-actions{
  display: flex;
  justify-content: flex-start;
}

.about-side-actions .btn-outline{
  background: rgba(15,23,48,.90);
  color: #fff;
  border-color: rgba(198,221,87,.55);
}

/* =========================
   FULL WIDTH LOCATOR
========================= */

.locator-section{
  position: relative;
  background: #ffffff;
  padding: 0 0 24px;
}

.locator-map-wrap{
  position: relative;
  width: 100%;
  border-top: 1px solid rgba(15,23,48,.08);
  border-bottom: 1px solid rgba(15,23,48,.08);
  box-shadow: 0 14px 30px rgba(15,23,48,.06);
  overflow: hidden;
  background: #ffffff;
}

.locator-map-heading{
  background: linear-gradient(180deg, #131c35 0%, #0c1121 100%);
  border-bottom: 1px solid rgba(15,23,48,.08);
}

.locator-map-head-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.locator-map-copy h2{
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: .95;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.locator-map-copy h2 span{
  color: var(--lime-deep);
}

.locator-map-copy p{
  margin: 10px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  font-weight: 600;
}

.locator-map-actions{
  flex: 0 0 auto;
}

.locator-map-frame{
  position: relative;
  width: 100%;
  height: clamp(420px, 50vw, 680px);
  background: #ffffff;
}

.locator-map-frame iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================
   CTA
========================= */

.cta-section{
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #0c1121;
  margin-top: -8px;
}

.cta-bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,15,27,.94), rgba(10,15,27,.96)),
    radial-gradient(circle at center, rgba(198,221,87,.14), transparent 30%),
    url("../images/hero-shop-bg.jpg") center/cover no-repeat;
}

.cta-inner{
  position: relative;
  z-index: 2;
  padding: 52px 0 28px;
  text-align: center;
}

.cta-inner h2{
  margin: 0 0 12px;
  font-family: "Barlow", sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.cta-inner h2 span{
  color: var(--lime);
}

.cta-tagline{
  margin: 0 0 18px;
  color: rgba(255,255,255,.84);
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.cta-phone{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  padding: 0 28px;
  border: 2px solid rgba(198,221,87,.62);
  border-radius: 14px;
  color: var(--white);
  font-family: "Barlow", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 800;
  background: rgba(255,255,255,.04);
  margin-bottom: 18px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.04) inset;
}

.cta-phone:hover{
  background: rgba(198,221,87,.10);
}

.cta-mini-list{
  list-style: none;
  padding: 0;
  margin: 10px 0 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  color: rgba(255,255,255,.88);
  font-weight: 600;
}

.cta-mini-list li{
  position: relative;
}

.cta-mini-list li::before{
  content: "•";
  color: var(--lime);
  margin-right: 8px;
}

.cta-bottom-line{
  margin: 0;
  font-size: 1.12rem;
  font-weight: 700;
  color: rgba(255,255,255,.92);
}

.cta-bottom-line span{
  color: var(--lime);
}

.cta-fade-bottom{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42px;
  background: linear-gradient(180deg, rgba(12,17,33,0) 0%, rgba(126,132,143,.10) 55%, rgba(246,247,249,.42) 100%);
  z-index: 1;
  pointer-events: none;
}

/* =========================
   AREAS
========================= */

.areas-section{
  position: relative;
  z-index: 2;
  margin-top: -8px;
  background: #ffffff;
  padding-top: 54px;
}

.areas-section::before{
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 62px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.96) 0%,
    rgba(255,255,255,.58) 44%,
    rgba(255,255,255,0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.areas-section::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0) 0%,
    rgba(243,246,250,.18) 62%,
    rgba(14,20,39,.06) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.areas-section .container{
  position: relative;
  z-index: 2;
}

.areas-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.area-box{
  padding: 18px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(16,22,42,.08);
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
  text-align: center;
  font-weight: 800;
  color: var(--navy);
  backdrop-filter: blur(4px);
}

.areas-copy{
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  color: #32405e;
  font-size: 1.04rem;
}

/* =========================
   CONTACT
========================= */

.contact-section{
  position: relative;
  background: #0e1427;
  color: #fff;
  margin-top: -6px;
}

.contact-section::before{
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 56px;
  background: linear-gradient(
    180deg,
    rgba(14,20,39,0) 0%,
    rgba(14,20,39,.22) 26%,
    rgba(14,20,39,.62) 74%,
    rgba(14,20,39,.96) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.contact-grid{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 28px;
  align-items: start;
}

.contact-section .section-kicker,
.contact-section .section-heading h2{
  color: #fff;
}

.contact-copy{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-copy p{
  color: rgba(255,255,255,.86);
  font-size: 1.05rem;
}

.contact-intro{
  margin: 0 0 18px;
}

.contact-info-list{
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-info-list a{
  color: var(--lime);
  font-weight: 800;
  font-size: 1.35rem;
}

.contact-card{
  background: linear-gradient(180deg, #171f39 0%, #11182c 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-card h3{
  margin-top: 0;
  font-family: "Barlow", sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.contact-feature-box{
  display: grid;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 18px;
}

.contact-feature{
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}

.contact-feature strong{
  display: block;
  margin-bottom: 6px;
  font-family: "Barlow", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--lime);
  letter-spacing: .03em;
}

.contact-feature span{
  display: block;
  color: rgba(255,255,255,.82);
  font-size: .98rem;
  line-height: 1.55;
}

.contact-service-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.contact-service-tags span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(198,221,87,.10);
  border: 1px solid rgba(198,221,87,.22);
  color: #eef8c7;
  font-size: .9rem;
  font-weight: 700;
}

/* =========================
   FAQ
========================= */

.faq-section{
  position: relative;
  background: #ffffff;
  padding-top: 82px;
  padding-bottom: 44px;
  overflow: hidden;
}

.faq-section::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 76px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.58) 58%,
    rgba(255,255,255,.96) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.faq-wrap{
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.faq-list{
  display: grid;
  gap: 14px;
}

.faq-item{
  border: 1px solid rgba(15,23,48,.10);
  border-radius: 16px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
  overflow: hidden;
}

.faq-item summary{
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 20px 56px 20px 22px;
  font-family: "Barlow", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: #0f1730;
}

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

.faq-item summary::after{
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--lime-deep);
}

.faq-item[open] summary::after{
  content: "–";
}

.faq-answer{
  padding: 0 22px 20px;
}

.faq-answer p{
  margin: 0;
  color: #33405f;
  font-size: 1rem;
  line-height: 1.7;
}

.faq-answer a{
  color: #1f2e52;
  font-weight: 700;
}

/* =========================
   FOOTER
========================= */

.site-footer{
  background: #090d18;
  color: rgba(255,255,255,.82);
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
}

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

.footer-left img{
  width: 72px;
  height: auto;
}

.footer-left p,
.footer-right p{
  margin: 0;
}

.footer-right{
  text-align: right;
}

.footer-right a{
  color: var(--lime);
  font-weight: 700;
}

/* =========================
   FORM
========================= */

.form-status{
  display: none;
  margin-bottom: 18px;
}

.form-status.show{
  display: block;
}

.form-alert{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  line-height: 1.55;
  box-shadow:
    0 14px 28px rgba(0,0,0,.18),
    inset 0 0 0 1px rgba(255,255,255,.02);
}

.form-alert-success{
  background: rgba(198,221,87,.14);
  border-color: rgba(198,221,87,.38);
  color: #edf8c5;
}

.form-alert-error{
  background: rgba(255,93,93,.10);
  border-color: rgba(255,93,93,.28);
  color: #ffd1d1;
}

.form-alert-content{
  min-width: 0;
}

.form-alert-content strong{
  display: block;
  margin: 0 0 5px;
  font-family: "Barlow", sans-serif;
  font-size: 1.04rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.form-alert-content p{
  margin: 0;
  font-size: .98rem;
  font-weight: 600;
  color: inherit;
}

.form-alert-close{
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  color: inherit;
  font-size: 1.35rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

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

.quote-form{
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

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

.form-field{
  display: grid;
  gap: 8px;
}

.form-field label{
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #fff;
}

.form-field label span{
  color: var(--lime);
}

.quote-form input,
.quote-form select,
.quote-form textarea{
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  color: #fff;
  font: inherit;
  padding: 14px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.quote-form select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.quote-form option{
  color: #111;
}

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

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus{
  border-color: rgba(198,221,87,.6);
  box-shadow: 0 0 0 3px rgba(198,221,87,.12);
  background: rgba(255,255,255,.06);
}

.quote-form input.input-error,
.quote-form select.input-error,
.quote-form textarea.input-error{
  border-color: rgba(255,93,93,.55);
  box-shadow: 0 0 0 3px rgba(255,93,93,.10);
}

.field-error{
  min-height: 18px;
  font-size: .88rem;
  color: #ffb7b7;
  font-weight: 600;
}

.form-submit{
  width: fit-content;
  min-width: 220px;
  margin-top: 4px;
}

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

/* =========================
   BBB SECTION
========================= */

.bbb-section{
  position: relative;
  background:
    linear-gradient(180deg, #10182f 0%, #0d1328 100%);
  border-top: 1px solid rgba(198,221,87,.18);
  border-bottom: 1px solid rgba(198,221,87,.18);
  overflow: hidden;
}

.bbb-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(198,221,87,.10), transparent 22%),
    radial-gradient(circle at 90% 50%, rgba(198,221,87,.07), transparent 18%);
  pointer-events: none;
}

.bbb-banner{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 26px 0;
  color: #fff;
  transition: transform .22s ease;
}

.bbb-banner:hover{
  transform: translateY(-2px);
}

.bbb-media{
  position: relative;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 18px 40px rgba(0,0,0,.22),
    0 0 0 1px rgba(255,255,255,.04) inset;
  overflow: hidden;
}

.bbb-media::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow:
    inset 0 0 0 1px rgba(15,23,48,.05),
    inset 0 0 24px rgba(255,255,255,.12);
  pointer-events: none;
}

.bbb-media img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: contain;
  animation: bbbFloat 3.2s ease-in-out infinite;
}

.bbb-copy{
  min-width: 0;
}

.bbb-kicker{
  margin: 0 0 8px;
  font-family: "Barlow", sans-serif;
  font-size: .92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--lime);
}

.bbb-copy h2{
  margin: 0 0 10px;
  font-family: "Barlow", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 800;
  line-height: .94;
  text-transform: uppercase;
  color: #fff;
}

.bbb-text{
  margin: 0;
  max-width: 760px;
  color: rgba(255,255,255,.84);
  font-size: 1rem;
  line-height: 1.6;
}

.bbb-cta{
  justify-self: end;
}

.bbb-cta .btn{
  min-height: 56px;
  padding: 0 24px;
}

@keyframes bbbFloat{
  0%, 100%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(-4px);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (min-width: 981px){
  .services-grid{
    gap: 12px;
  }

  .service-title{
    font-size: 1.2rem;
    padding: 12px 10px 13px;
  }
}

@media (max-width: 1200px){
  .hero-inner{
    grid-template-columns: 1fr;
  }

  .services-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-grid{
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-media{
    grid-template-rows: minmax(320px, 1fr) auto;
    border-right: 0;
    border-bottom: 1px solid rgba(15,23,48,.08);
  }

  .about-side::before{
    display: none;
  }

  .about-side-panel{
    padding: 20px 24px 24px;
  }

  .areas-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1100px){
  .bbb-banner{
    grid-template-columns: 240px 1fr;
  }

  .bbb-cta{
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 980px){
  :root{
    --header-h: 82px;
  }

  .nav-toggle{
    display: inline-block;
  }

  .main-nav{
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    margin-left: 0;
    display: grid;
    gap: 0;
    background: rgba(9,13,25,.98);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 20px 45px rgba(0,0,0,.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: .25s ease;
  }

  .main-nav.open{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-link{
    padding: 14px 12px;
    border-radius: 12px;
  }

  .nav-link:hover{
    background: rgba(255,255,255,.04);
  }

  .nav-link::after{
    display: none;
  }

  .header-phone{
    display: none;
  }

  .hero{
    min-height: auto;
  }

  .hero-inner{
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 38px 0 22px;
  }

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

  .services-section{
    padding-top: 42px;
    padding-bottom: 58px;
  }

  .services-fade-bottom{
    height: 48px;
  }

  .section-top-button{
    margin-bottom: 26px;
  }

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

  .service-image{
    aspect-ratio: 1.95 / 1;
  }

  .about-section{
    margin-top: -6px;
  }

  .faq-section{
    padding-top: 70px;
    padding-bottom: 40px;
  }

  .faq-section::after{
    height: 62px;
  }

  .areas-section{
    padding-top: 48px;
  }

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

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

  .footer-inner{
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right{
    text-align: left;
  }

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

  .locator-map-head-inner{
    flex-direction: column;
    align-items: flex-start;
  }

  .locator-map-frame{
    height: clamp(340px, 58vw, 560px);
  }
}

@media (max-width: 780px){
  .bbb-banner{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
    padding: 24px 0;
  }

  .bbb-media{
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }

  .bbb-text{
    margin-inline: auto;
  }

  .bbb-cta{
    justify-self: center;
    width: 100%;
  }
}

@media (max-width: 640px){
  .container{
    width: min(calc(100% - 24px), var(--container));
  }

  .section-pad{
    padding: 58px 0;
  }

  .brand img{
    height: 52px;
  }

  .site-header{
    height: 76px;
  }

  .hero{
    min-height: auto;
  }

  .hero-slide img{
    object-position: 72% center;
  }

  .hero-overlay{
    background:
      linear-gradient(180deg, rgba(7,11,20,.70) 0%, rgba(8,12,22,.54) 42%, rgba(8,12,22,.34) 100%),
      linear-gradient(90deg, rgba(7,11,20,.72) 0%, rgba(8,12,22,.38) 55%, rgba(8,12,22,.12) 100%);
  }

  .hero-inner{
    padding: 28px 0 18px;
  }

  .hero-logo-wrap{
    max-width: 265px;
    margin-bottom: 8px;
  }

  .hero-slogan-box{
    margin-bottom: 18px;
    padding: 14px 16px 13px;
    border-left-width: 4px;
  }

  .hero-slogan-box p{
    font-size: .98rem;
    line-height: 1.2;
    letter-spacing: .03em;
  }

  .hero h1{
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }

  .hero-subtitle{
    font-size: 1rem;
  }

  .hero-location{
    font-size: .98rem;
  }

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

  .btn,
  .btn-primary,
  .btn-outline{
    width: 100%;
  }

  .btn-skew{
    transform: none;
    clip-path: none;
    border-radius: 12px;
  }

  .btn-skew span{
    transform: none;
  }

  .hero-service-tags{
    gap: 8px;
  }

  .hero-service-tags span{
    min-height: 34px;
    font-size: .82rem;
    padding: 0 12px;
  }

  .services-section{
    padding-top: 34px;
    padding-bottom: 46px;
  }

  .section-top-button{
    margin-bottom: 22px;
  }

  .services-heading h2{
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

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

  .service-image{
    aspect-ratio: 2 / 1;
  }

  .service-title{
    font-size: 1.3rem;
  }

  .service-lightbox{
    padding: 14px;
  }

  .service-lightbox-dialog{
    width: 100%;
  }

  .service-lightbox-caption p{
    font-size: 1rem;
  }

  .service-lightbox-close{
    width: 42px;
    height: 42px;
    font-size: 1.7rem;
  }

  .about-media{
    grid-template-rows: 260px auto;
  }

  .about-content{
    padding: 24px 22px 18px;
  }

  .about-heading h2{
    font-size: clamp(2rem, 9vw, 2.35rem);
  }

  .about-subhead{
    font-size: 1rem;
  }

  .about-image-caption{
    padding: 14px 18px 16px;
  }

  .about-side-panel{
    padding: 16px 22px 20px;
  }

  .about-side-card{
    padding: 14px;
    border-radius: 16px;
  }

  .faq-item summary{
    padding: 18px 50px 18px 18px;
    font-size: 1.04rem;
  }

  .faq-answer{
    padding: 0 18px 18px;
  }

  .areas-section{
    padding-top: 42px;
  }

  .cta-tagline{
    font-size: .88rem;
    line-height: 1.5;
  }

  .cta-phone{
    width: 100%;
    padding: 0 16px;
    font-size: 1.45rem;
  }

  .cta-mini-list{
    gap: 6px 14px;
    font-size: .95rem;
  }

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

  .contact-card{
    padding: 22px;
  }

  .contact-feature{
    padding: 14px 16px;
  }

  .contact-service-tags{
    gap: 8px;
  }

  .contact-service-tags span{
    min-height: 36px;
    font-size: .86rem;
    padding: 0 12px;
  }

  .form-submit{
    width: 100%;
  }

  .form-alert{
    padding: 14px 14px;
    gap: 10px;
  }

  .form-alert-content strong{
    font-size: .98rem;
  }

  .form-alert-content p{
    font-size: .92rem;
  }

  .form-alert-close{
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .quote-form input,
  .quote-form select,
  .quote-form textarea{
    padding: 13px 13px;
  }

  .footer-left{
    align-items: flex-start;
  }

  .footer-left img{
    width: 58px;
  }

  .bbb-copy h2{
    font-size: clamp(1.55rem, 8vw, 2.05rem);
  }

  .bbb-cta .btn{
    width: 100%;
    min-height: 52px;
  }

  .locator-map-head-inner{
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .locator-map-frame{
    height: 320px;
  }
}
/* =========================
   SERVICES PAGE
========================= */

.services-hero{
  position: relative;
  overflow: hidden;
  min-height: calc(84svh - var(--header-h));
  background: #09101f;
}

.services-hero-bg,
.services-hero-bg img,
.services-hero-overlay{
  position: absolute;
  inset: 0;
}

.services-hero-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-hero-overlay{
  background:
    linear-gradient(90deg, rgba(7,11,20,.92) 0%, rgba(8,12,22,.78) 42%, rgba(8,12,22,.44) 72%, rgba(8,12,22,.26) 100%),
    radial-gradient(circle at 18% 20%, rgba(198,221,87,.12), transparent 30%);
}

.services-hero-inner{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .75fr);
  gap: 34px;
  align-items: center;
  min-height: calc(84svh - var(--header-h));
  padding: 56px 0 42px;
}

.services-hero-copy{
  color: #fff;
  max-width: 760px;
}

.services-hero-kicker{
  margin: 0 0 14px;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 800;
  font-size: .96rem;
}

.services-hero-copy h1{
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: -.03em;
  color: #fff;
}

.services-hero-copy h1 span{
  color: var(--lime);
}

.services-hero-text{
  margin: 18px 0 0;
  max-width: 760px;
  color: rgba(255,255,255,.9);
  font-size: 1.08rem;
}

.services-hero-buttons{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.services-hero-panel{
  background: linear-gradient(180deg, rgba(20,29,53,.94), rgba(12,18,33,.94));
  border: 1px solid rgba(198,221,87,.24);
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(0,0,0,.28);
  overflow: hidden;
}

.services-hero-panel-head{
  padding: 18px 22px;
  font-family: "Barlow", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: #13203a;
  background: linear-gradient(180deg, #d8ec6f 0%, #b8cf48 100%);
}

.services-hero-list{
  list-style: none;
  margin: 0;
  padding: 18px 22px 20px;
  display: grid;
  gap: 12px;
}

.services-hero-list li{
  position: relative;
  padding-left: 24px;
  color: rgba(255,255,255,.9);
  font-weight: 700;
}

.services-hero-list li::before{
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--lime);
  font-weight: 900;
}

.services-intro-band{
  position: relative;
  background: linear-gradient(180deg, #121b34 0%, #0c1327 100%);
  border-top: 1px solid rgba(198,221,87,.22);
  border-bottom: 1px solid rgba(198,221,87,.18);
}

.services-intro-band-inner{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 22px 0;
}

.services-intro-stat{
  text-align: center;
  color: rgba(255,255,255,.88);
}

.services-intro-stat strong{
  display: block;
  margin-bottom: 6px;
  font-family: "Barlow", sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
}

.services-intro-stat span{
  font-size: .98rem;
}

.services-categories{
  background: #ffffff;
}

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

.service-category-card{
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(15,23,48,.08);
  box-shadow: 0 14px 30px rgba(0,0,0,.07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-category-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 22px 42px rgba(0,0,0,.10);
  border-color: rgba(198,221,87,.24);
}

.service-category-media{
  position: relative;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background: #0d1325;
}

.service-category-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,11,20,.04) 0%, rgba(7,11,20,.14) 100%),
    linear-gradient(0deg, rgba(7,11,20,.28), rgba(7,11,20,0));
  pointer-events: none;
}

.service-category-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.service-category-card:hover .service-category-media img{
  transform: scale(1.05);
}

.service-category-number{
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15,23,48,.84);
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .04em;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 8px 18px rgba(0,0,0,.22);
}

.service-category-content{
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 20px 20px 22px;
}

.service-category-content h3{
  margin: 0 0 10px;
  font-family: "Barlow", sans-serif;
  font-size: 1.48rem;
  line-height: 1;
  text-transform: uppercase;
  color: #0f1730;
}

.service-category-content p{
  margin: 0;
  color: #40506f;
  font-size: .98rem;
  line-height: 1.65;
}

.service-category-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  font-weight: 800;
  color: var(--navy);
}

.service-category-link::after{
  content: "→";
  transition: transform .2s ease;
}

.service-category-card:hover .service-category-link::after{
  transform: translateX(4px);
}

/* =========================
   SERVICE CARD COLOR SYSTEM
   Pattern: Dark / White / Lime / White
========================= */

/* DARK CARDS */
.service-category-card:nth-child(1),
.service-category-card:nth-child(5),
.service-category-card:nth-child(9),
.service-category-card.featured{
  background: linear-gradient(180deg, #15203a 0%, #0f1730 100%);
  border-color: rgba(198,221,87,.20);
}

.service-category-card:nth-child(1) .service-category-content h3,
.service-category-card:nth-child(1) .service-category-content p,
.service-category-card:nth-child(1) .service-category-link,
.service-category-card:nth-child(5) .service-category-content h3,
.service-category-card:nth-child(5) .service-category-content p,
.service-category-card:nth-child(5) .service-category-link,
.service-category-card:nth-child(9) .service-category-content h3,
.service-category-card:nth-child(9) .service-category-content p,
.service-category-card:nth-child(9) .service-category-link,
.service-category-card.featured .service-category-content h3,
.service-category-card.featured .service-category-content p,
.service-category-card.featured .service-category-link{
  color: #fff;
}

.service-category-card:nth-child(1) .service-category-number,
.service-category-card:nth-child(5) .service-category-number,
.service-category-card:nth-child(9) .service-category-number,
.service-category-card.featured .service-category-number{
  background: rgba(198,221,87,.92);
  color: #13203a;
}

/* WHITE CARDS */
.service-category-card:nth-child(2),
.service-category-card:nth-child(4),
.service-category-card:nth-child(6),
.service-category-card:nth-child(8),
.service-category-card:nth-child(10),
.service-category-card:nth-child(12){
  background: rgba(255,255,255,.98);
  border-color: rgba(15,23,48,.08);
}

.service-category-card:nth-child(2) .service-category-content h3,
.service-category-card:nth-child(4) .service-category-content h3,
.service-category-card:nth-child(6) .service-category-content h3,
.service-category-card:nth-child(8) .service-category-content h3,
.service-category-card:nth-child(10) .service-category-content h3,
.service-category-card:nth-child(12) .service-category-content h3{
  color: #0f1730;
}

.service-category-card:nth-child(2) .service-category-content p,
.service-category-card:nth-child(4) .service-category-content p,
.service-category-card:nth-child(6) .service-category-content p,
.service-category-card:nth-child(8) .service-category-content p,
.service-category-card:nth-child(10) .service-category-content p,
.service-category-card:nth-child(12) .service-category-content p{
  color: #40506f;
}

.service-category-card:nth-child(2) .service-category-link,
.service-category-card:nth-child(4) .service-category-link,
.service-category-card:nth-child(6) .service-category-link,
.service-category-card:nth-child(8) .service-category-link,
.service-category-card:nth-child(10) .service-category-link,
.service-category-card:nth-child(12) .service-category-link{
  color: var(--navy);
}

.service-category-card:nth-child(2) .service-category-number,
.service-category-card:nth-child(4) .service-category-number,
.service-category-card:nth-child(6) .service-category-number,
.service-category-card:nth-child(8) .service-category-number,
.service-category-card:nth-child(10) .service-category-number,
.service-category-card:nth-child(12) .service-category-number{
  background: rgba(15,23,48,.84);
  color: #fff;
}

/* LIME CARDS */
.service-category-card:nth-child(3),
.service-category-card:nth-child(7),
.service-category-card:nth-child(11),
.service-category-card.accent-card{
  background: linear-gradient(180deg, #d8ec70 0%, #b7cf47 100%);
  border-color: rgba(142,166,44,.26);
}

.service-category-card:nth-child(3) .service-category-content h3,
.service-category-card:nth-child(3) .service-category-content p,
.service-category-card:nth-child(3) .service-category-link,
.service-category-card:nth-child(7) .service-category-content h3,
.service-category-card:nth-child(7) .service-category-content p,
.service-category-card:nth-child(7) .service-category-link,
.service-category-card:nth-child(11) .service-category-content h3,
.service-category-card:nth-child(11) .service-category-content p,
.service-category-card:nth-child(11) .service-category-link,
.service-category-card.accent-card .service-category-content h3,
.service-category-card.accent-card .service-category-content p,
.service-category-card.accent-card .service-category-link{
  color: #13203a;
}

.service-category-card:nth-child(3) .service-category-number,
.service-category-card:nth-child(7) .service-category-number,
.service-category-card:nth-child(11) .service-category-number,
.service-category-card.accent-card .service-category-number{
  background: rgba(19,32,58,.90);
  color: #fff;
}

/* FORCE CARD 12 WHITE */
.service-category-card:nth-child(12){
  background: rgba(255,255,255,.98);
  border-color: rgba(15,23,48,.08);
}

.service-category-card:nth-child(12) .service-category-content h3{
  color: #0f1730;
}

.service-category-card:nth-child(12) .service-category-content p{
  color: #40506f;
}

.service-category-card:nth-child(12) .service-category-link{
  color: var(--navy);
}

.service-category-card:nth-child(12) .service-category-number{
  background: rgba(15,23,48,.84);
  color: #fff;
}

.machines-section{
  position: relative;
  background:
    linear-gradient(180deg, rgba(8,12,22,.96), rgba(8,12,22,.98)),
    url("../images/hero-shop-bg.jpg") center/cover no-repeat;
  overflow: hidden;
  color: #fff;
}

.machines-grid{
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 28px;
  align-items: center;
  padding: 72px 0;
}

.machines-copy h2{
  margin: 0 0 16px;
  font-family: "Barlow", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: .94;
  text-transform: uppercase;
}

.machines-copy h2 span{
  color: var(--lime);
}

.machines-copy p{
  margin: 0 0 16px;
  color: rgba(255,255,255,.88);
  font-size: 1.03rem;
}

.machines-panel{
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(20,29,53,.88), rgba(10,15,27,.88));
  border: 1px solid rgba(198,221,87,.18);
  box-shadow: 0 20px 42px rgba(0,0,0,.28);
}

.machines-chip-wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.machines-chip-wrap span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(198,221,87,.18);
  color: #eef8c7;
  font-size: .9rem;
  font-weight: 700;
}

.services-why{
  background: #ffffff;
}

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

.services-why-card{
  padding: 26px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15,23,48,.08);
  box-shadow: 0 12px 28px rgba(0,0,0,.05);
}

.services-why-card h3{
  margin: 0 0 12px;
  font-family: "Barlow", sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--navy);
}

.services-why-card p{
  margin: 0;
  color: #445474;
}

.services-cta-strip{
  background: linear-gradient(180deg, #111833 0%, #0b1122 100%);
  border-top: 1px solid rgba(198,221,87,.20);
  border-bottom: 1px solid rgba(198,221,87,.20);
}

.services-cta-strip-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
}

.services-cta-kicker{
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--lime);
  font-weight: 800;
  font-size: .92rem;
}

.services-cta-strip-inner h2{
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: .95;
  text-transform: uppercase;
  color: #fff;
}

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

.services-faq{
  background: #ffffff;
}

@media (max-width: 1200px){
  .services-hero-inner{
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 980px){
  .services-intro-band-inner{
    grid-template-columns: 1fr;
  }

  .services-cta-strip-inner{
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 640px){
  .services-hero-inner{
    padding: 34px 0 28px;
  }

  .services-hero-copy h1{
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .services-hero-buttons{
    flex-direction: column;
  }

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

  .service-category-content{
    padding: 18px 18px 20px;
  }

  .service-category-content h3{
    font-size: 1.28rem;
  }

  .machines-grid{
    padding: 56px 0;
  }

  .machines-panel{
    padding: 18px;
  }

  .services-cta-actions{
    width: 100%;
    flex-direction: column;
  }

  .services-cta-actions .btn{
    width: 100%;
  }
}
/* =========================
   ABOUT PAGE - REBUILT
========================= */

.about-intro{
  position: relative;
  background:
    linear-gradient(180deg, rgba(8,12,22,.95), rgba(8,12,22,.97)),
    radial-gradient(circle at top left, rgba(198,221,87,.10), transparent 28%);
  color: #fff;
  padding: 54px 0 46px;
  border-bottom: 1px solid rgba(198,221,87,.18);
}

.about-intro-inner{
  max-width: 980px;
}

.about-intro-kicker{
  margin: 0 0 10px;
  font-family: "Barlow", sans-serif;
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--lime);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.about-intro h1{
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: .94;
  text-transform: uppercase;
  letter-spacing: -.03em;
}

.about-intro-text{
  margin: 16px 0 0;
  max-width: 860px;
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
}

.about-story-block{
  background: linear-gradient(180deg, #f6f1e7 0%, #efe8dc 100%);
}

.about-story-grid{
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: center;
}

.about-story-photo{
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(0,0,0,.12);
  background: #10182e;
}

.about-story-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.about-story-content p{
  margin: 0 0 16px;
  color: #39496a;
  font-size: 1.03rem;
}

.about-difference-strip{
  background: linear-gradient(180deg, #111833 0%, #0c1327 100%);
  border-top: 1px solid rgba(198,221,87,.20);
  border-bottom: 1px solid rgba(198,221,87,.20);
}

.about-difference-inner{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 28px 0;
}

.about-difference-item{
  color: rgba(255,255,255,.84);
}

.about-difference-item strong{
  display: block;
  margin-bottom: 8px;
  font-family: "Barlow", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.about-difference-item span{
  display: block;
  font-size: .98rem;
  line-height: 1.6;
}

.about-work-types{
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

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

.about-work-card{
  padding: 24px 22px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,.06);
  border: 1px solid rgba(15,23,48,.08);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.about-work-card h3{
  margin: 0 0 14px;
  font-family: "Barlow", sans-serif;
  font-size: 1.45rem;
  line-height: .96;
  text-transform: uppercase;
}

.about-work-card ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.about-work-card li{
  position: relative;
  padding-left: 22px;
  font-weight: 700;
  line-height: 1.5;
}

.about-work-card li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
}

.panel-dark{
  background: linear-gradient(180deg, #16213d 0%, #0f1730 100%);
  color: #fff;
}

.panel-dark li{
  color: rgba(255,255,255,.88);
}

.panel-dark li::before{
  color: var(--lime);
}

.panel-light{
  background: rgba(255,255,255,.94);
  color: var(--navy);
}

.panel-light li{
  color: #32405e;
}

.panel-light li::before{
  color: var(--lime-deep);
}

.panel-lime{
  background: linear-gradient(180deg, #d9ed72 0%, #b9d14a 100%);
  color: #13203a;
}

.panel-lime li{
  color: #13203a;
}

.panel-lime li::before{
  color: #0f1730;
}

.about-work-bottom-copy{
  max-width: 980px;
  margin: 22px auto 0;
  text-align: center;
  color: #40506f;
  font-size: 1.03rem;
}

.about-local-section{
  background:
    linear-gradient(180deg, rgba(8,12,22,.96), rgba(8,12,22,.98)),
    url("../images/hero-shop-bg.jpg") center/cover no-repeat;
  color: #fff;
  padding: 70px 0;
}

.about-local-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .95fr);
  gap: 28px;
  align-items: center;
}

.about-local-copy h2{
  margin: 0 0 16px;
  font-family: "Barlow", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: .94;
  text-transform: uppercase;
  color: #fff;
}

.about-local-copy h2 span{
  color: var(--lime);
}

.about-local-copy p{
  margin: 0 0 16px;
  color: rgba(255,255,255,.86);
  font-size: 1.03rem;
}

.about-local-boxes{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-local-boxes span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(198,221,87,.18);
  color: #eef8c7;
  font-weight: 800;
}

.about-faq-lite{
  background: linear-gradient(180deg, #f7f4ee 0%, #f0e8dc 100%);
}

.about-simple-cta{
  background: #0b1122;
  border-top: 1px solid rgba(198,221,87,.20);
}

.about-simple-cta-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0;
}

.about-simple-cta-inner h2{
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: .96;
  text-transform: uppercase;
  color: #fff;
}

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

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

@media (max-width: 980px){
  .about-difference-inner{
    grid-template-columns: 1fr;
  }

  .about-simple-cta-inner{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px){
  .about-intro{
    padding: 36px 0 32px;
  }

  .about-intro h1{
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .about-story-photo img{
    min-height: 280px;
  }

  .about-work-grid{
    grid-template-columns: 1fr;
  }

  .about-local-section{
    padding: 54px 0;
  }

  .about-simple-cta-inner{
    align-items: stretch;
  }

  .about-simple-cta-inner .btn{
    width: 100%;
  }
}

/* =========================
   ABOUT TRUST + LOCATION
========================= */
.about-trust-location{
  position: relative;
  background:
    linear-gradient(180deg, #0f1730 0%, #121b34 100%);
  color: #fff;
  overflow: hidden;
}

.about-trust-location::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 24%, rgba(198,221,87,.09), transparent 24%),
    radial-gradient(circle at 88% 74%, rgba(198,221,87,.08), transparent 22%);
  pointer-events: none;
}

.about-trust-location .container{
  position: relative;
  z-index: 2;
}

.about-trust-location .section-kicker,
.about-trust-location .section-heading h2{
  color: #fff;
}

.about-trust-location .section-heading h2 span{
  color: var(--lime);
}

.about-trust-location .section-lead{
  color: rgba(255,255,255,.82);
}

.about-trust-grid{
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.about-bbb-card,
.about-location-card{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 24px 54px rgba(0,0,0,.24);
}

.about-bbb-card{
  display: grid;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.about-bbb-card:hover{
  transform: translateY(-4px);
  border-color: rgba(198,221,87,.30);
  box-shadow: 0 28px 62px rgba(0,0,0,.28);
}

.about-bbb-image-wrap{
  position: relative;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(250,252,255,.98));
}

.about-bbb-image-wrap::after{
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(15,23,48,.04);
  pointer-events: none;
}

.about-bbb-image-wrap img{
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  object-fit: contain;
  background: #fff;
}

.about-bbb-copy{
  padding: 22px 22px 24px;
}

.about-bbb-kicker{
  margin: 0 0 8px;
  font-family: "Barlow", sans-serif;
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--lime);
}

.about-bbb-copy h3{
  margin: 0 0 10px;
  font-family: "Barlow", sans-serif;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  line-height: .95;
  text-transform: uppercase;
  color: #fff;
}

.about-bbb-copy p{
  margin: 0 0 16px;
  color: rgba(255,255,255,.84);
  line-height: 1.65;
}

.about-bbb-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d7ec6b 0%, #b7cf47 100%);
  color: #162036;
  font-family: "Barlow", sans-serif;
  font-size: .95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  box-shadow:
    0 14px 28px rgba(167,194,61,.18),
    inset 0 1px 0 rgba(255,255,255,.45);
}

.about-location-card{
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
}

.about-location-head{
  padding: 22px 22px 18px;
}

.about-location-kicker{
  margin: 0 0 8px;
  font-family: "Barlow", sans-serif;
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--lime);
}

.about-location-head h3{
  margin: 0 0 10px;
  font-family: "Barlow", sans-serif;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  line-height: .96;
  text-transform: uppercase;
  color: #fff;
}

.about-location-head p{
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
}

.about-location-map{
  position: relative;
  min-height: 460px;
  background: #0b1120;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.about-location-map iframe{
  width: 100%;
  height: 100%;
  min-height: 460px;
  display: block;
  border: 0;
  filter: saturate(.92) contrast(.98) brightness(.99);
}

.about-location-meta{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 18px 22px 22px;
}

.about-location-meta-item{
  padding: 16px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}

.about-location-meta-item strong{
  display: block;
  margin-bottom: 6px;
  font-family: "Barlow", sans-serif;
  font-size: .95rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #eef8c7;
  letter-spacing: .04em;
}

.about-location-meta-item span,
.about-location-meta-item a{
  color: #fff;
  font-weight: 700;
}

@media (max-width: 1200px){
  .about-trust-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .about-bbb-copy,
  .about-location-head{
    padding: 20px 18px 18px;
  }

  .about-location-meta{
    grid-template-columns: 1fr;
    padding: 16px 18px 20px;
  }

  .about-location-map,
  .about-location-map iframe{
    min-height: 340px;
  }
}
/* =========================
   CONTACT PAGE
========================= */
.contactpage-topbar{
  background: linear-gradient(180deg, #121b34 0%, #0c1327 100%);
  border-top: 1px solid rgba(198,221,87,.22);
  border-bottom: 1px solid rgba(198,221,87,.18);
}

.contactpage-topbar-inner{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 18px 0;
}

.contactpage-topbar-item{
  text-align: center;
  color: rgba(255,255,255,.88);
}

.contactpage-topbar-item strong{
  display: block;
  margin-bottom: 6px;
  font-family: "Barlow", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.contactpage-topbar-item a{
  color: var(--lime);
  font-weight: 800;
}

.contactpage-intro{
  background: linear-gradient(180deg, #f4efe5 0%, #efe7da 100%);
  padding: 56px 0 50px;
}

.contactpage-intro-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .78fr);
  gap: 28px;
  align-items: stretch;
}

.contactpage-intro-copy{
  color: var(--navy);
}

.contactpage-kicker{
  margin: 0 0 14px;
  color: var(--lime-deep);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 800;
  font-size: .96rem;
}

.contactpage-intro-copy h1{
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: -.03em;
  color: #0f1730;
}

.contactpage-intro-copy h1 span{
  color: var(--lime-deep);
}

.contactpage-hero-text{
  margin: 18px 0 0;
  color: #435172;
  font-size: 1.08rem;
  max-width: 720px;
}

.contactpage-hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.contactpage-intro-panel{
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, #18233f 0%, #0f1730 100%);
  border: 1px solid rgba(198,221,87,.18);
  box-shadow: 0 22px 46px rgba(0,0,0,.16);
  color: #fff;
}

.contactpage-intro-panel h2{
  margin: 0 0 16px;
  font-family: "Barlow", sans-serif;
  font-size: 1.7rem;
  text-transform: uppercase;
  line-height: .96;
  color: #fff;
}

.contactpage-intro-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.contactpage-intro-list li{
  position: relative;
  padding-left: 24px;
  color: rgba(255,255,255,.88);
  font-weight: 700;
}

.contactpage-intro-list li::before{
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--lime);
  font-weight: 900;
}

.contactpage-process{
  background: #fff;
  padding: 68px 0 20px;
}

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

.contactpage-process-step{
  position: relative;
  padding: 26px 22px 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  border: 1px solid rgba(15,23,48,.08);
  box-shadow: 0 12px 28px rgba(0,0,0,.05);
}

.contactpage-step-number{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 40px;
  margin-bottom: 14px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d8ec70 0%, #b7cf47 100%);
  color: #13203a;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
}

.contactpage-process-step h3{
  margin: 0 0 10px;
  font-family: "Barlow", sans-serif;
  font-size: 1.34rem;
  text-transform: uppercase;
  color: var(--navy);
}

.contactpage-process-step p{
  margin: 0;
  color: #445474;
}

.contactpage-main{
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.contactpage-main-grid{
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: 28px;
  align-items: start;
}

.contactpage-lead{
  margin: 0 0 22px;
  color: #3d4b6b;
  font-size: 1.04rem;
}

.contactpage-checklist{
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.contactpage-checklist-card{
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,48,.08);
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
}

.contactpage-checklist-card strong{
  display: block;
  margin-bottom: 6px;
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #0f1730;
}

.contactpage-checklist-card span{
  display: block;
  color: #445474;
}

.contactpage-service-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contactpage-service-tags span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(15,23,48,.06);
  border: 1px solid rgba(15,23,48,.10);
  color: #1d2948;
  font-size: .9rem;
  font-weight: 700;
}

.contactpage-card{
  background: linear-gradient(180deg, #171f39 0%, #11182c 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 24px 48px rgba(0,0,0,.18);
  color: #fff;
}

.contactpage-card h3{
  margin-top: 0;
  color: #fff;
}

.contactpage-card > p{
  color: rgba(255,255,255,.86);
}

.contactpage-card .quote-form label,
.contactpage-card .quote-form strong{
  color: #fff;
}

.contactpage-card .field-error{
  color: #ffb7b7;
}

.contactpage-types{
  background: linear-gradient(180deg, #f4efe6 0%, #efe7da 100%);
  padding: 70px 0;
}

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

.contactpage-types-card{
  padding: 24px 22px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,.06);
  border: 1px solid rgba(15,23,48,.08);
}

.contactpage-types-card h3{
  margin: 0 0 12px;
  font-family: "Barlow", sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.contactpage-types-card p{
  margin: 0;
  line-height: 1.65;
}

.contactpage-types-card.dark{
  background: linear-gradient(180deg, #15203a 0%, #0f1730 100%);
  color: #fff;
  border-color: rgba(198,221,87,.18);
}

.contactpage-types-card.dark h3{
  color: #fff;
}

.contactpage-types-card.dark p{
  color: rgba(255,255,255,.86);
}

.contactpage-types-card.lime{
  background: linear-gradient(180deg, #d8ec70 0%, #b7cf47 100%);
  color: #13203a;
}

.contactpage-types-card.lime h3,
.contactpage-types-card.lime p{
  color: #13203a;
}

.contactpage-types-card.light{
  background: rgba(255,255,255,.94);
}

.contactpage-types-card.light h3{
  color: #0f1730;
}

.contactpage-types-card.light p{
  color: #445474;
}

.contactpage-local{
  background:
    linear-gradient(180deg, rgba(8,12,22,.96), rgba(8,12,22,.98)),
    url("../images/hero-shop-bg.jpg") center/cover no-repeat;
  color: #fff;
  padding: 72px 0;
}

.contactpage-local-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .92fr);
  gap: 28px;
  align-items: center;
}

.contactpage-local-copy h2{
  margin: 0 0 16px;
  font-family: "Barlow", sans-serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: .94;
  text-transform: uppercase;
  color: #fff;
}

.contactpage-local-copy h2 span{
  color: var(--lime);
}

.contactpage-local-copy p{
  margin: 0 0 16px;
  color: rgba(255,255,255,.86);
  font-size: 1.03rem;
}

.contactpage-local-stack{
  display: grid;
  gap: 16px;
}

.contactpage-local-callout{
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(198,221,87,.18);
}

.contactpage-local-callout strong{
  display: block;
  margin-bottom: 8px;
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #eef8c7;
}

.contactpage-local-callout a{
  font-family: "Barlow", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.contactpage-local-boxes{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contactpage-local-boxes span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(198,221,87,.18);
  color: #eef8c7;
  font-weight: 800;
}

.contactpage-faq{
  background: linear-gradient(180deg, #f6f1e7 0%, #efe7da 100%);
}

@media (max-width: 1200px){
  .contactpage-intro-grid,
  .contactpage-main-grid,
  .contactpage-local-grid{
    grid-template-columns: 1fr;
  }

  .contactpage-types-grid,
  .contactpage-process-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px){
  .contactpage-topbar-inner{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .contactpage-intro{
    padding: 40px 0 36px;
  }

  .contactpage-intro-copy h1{
    font-size: clamp(2.15rem, 10vw, 3.35rem);
  }

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

  .contactpage-types{
    padding: 56px 0;
  }

  .contactpage-types-grid,
  .contactpage-process-grid{
    grid-template-columns: 1fr;
  }

  .contactpage-local{
    padding: 54px 0;
  }

  .contactpage-local-callout a{
    font-size: 1.6rem;
  }
}
/* =========================
   SHOP WORK PAGE
========================= */

.shop-work-hero{
  position: relative;
  overflow: hidden;
  min-height: calc(92svh - var(--header-h));
  background: #09101f;
}

.shop-work-hero-bg,
.shop-work-hero-bg img,
.shop-work-hero-overlay{
  position: absolute;
  inset: 0;
}

.shop-work-hero-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.shop-work-hero-overlay{
  background:
    linear-gradient(180deg, rgba(7,11,20,.70) 0%, rgba(8,12,22,.52) 32%, rgba(8,12,22,.68) 100%),
    radial-gradient(circle at 18% 20%, rgba(198,221,87,.12), transparent 28%);
}

.shop-work-hero::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  z-index: 2;
}

.shop-work-hero-inner{
  position: relative;
  z-index: 2;
  min-height: calc(92svh - var(--header-h));
  display: grid;
  align-content: center;
  gap: 26px;
  padding: 56px 0 44px;
}

.shop-work-hero-top{
  color: #fff;
  max-width: 860px;
}

.shop-work-kicker{
  margin: 0 0 14px;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 800;
  font-size: .96rem;
}

.shop-work-hero-top h1{
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: -.03em;
  color: #fff;
}

.shop-work-hero-top h1 span{
  color: var(--lime);
}

.shop-work-hero-text{
  margin: 18px 0 0;
  max-width: 780px;
  color: rgba(255,255,255,.90);
  font-size: 1.06rem;
}

.shop-work-slogan{
  margin: 22px 0 0;
  max-width: 680px;
  padding: 16px 18px;
  border-left: 5px solid var(--lime);
  background:
    linear-gradient(90deg, rgba(198,221,87,.16) 0%, rgba(198,221,87,.07) 24%, rgba(255,255,255,.04) 100%);
  box-shadow:
    0 14px 30px rgba(0,0,0,.18),
    inset 0 0 0 1px rgba(255,255,255,.05);
}

.shop-work-slogan p{
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.08;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #f2f7dd;
}

.shop-work-hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.shop-work-hero-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.shop-work-hero-card{
  padding: 18px 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(18,27,50,.82), rgba(10,16,30,.82));
  border: 1px solid rgba(198,221,87,.18);
  box-shadow: 0 18px 36px rgba(0,0,0,.22);
  color: #fff;
  backdrop-filter: blur(6px);
}

.shop-work-hero-label{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(198,221,87,.12);
  color: #eef8c7;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 12px;
}

.shop-work-hero-card strong{
  display: block;
  margin-bottom: 8px;
  font-family: "Barlow", sans-serif;
  font-size: 1.2rem;
  line-height: .98;
  text-transform: uppercase;
  color: #fff;
}

.shop-work-hero-card p{
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: .95rem;
  line-height: 1.55;
}

.shop-work-strip{
  position: relative;
  background: linear-gradient(180deg, #111833 0%, #0d1328 100%);
  border-top: 1px solid rgba(198,221,87,.24);
  border-bottom: 1px solid rgba(198,221,87,.20);
}

.shop-work-strip-inner{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 22px 0;
}

.shop-work-stat{
  text-align: center;
  color: rgba(255,255,255,.88);
}

.shop-work-stat strong{
  display: block;
  margin-bottom: 6px;
  font-family: "Barlow", sans-serif;
  font-size: 1.16rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.shop-work-stat span{
  display: block;
  font-size: .96rem;
  line-height: 1.45;
}

.shop-work-gallery-section{
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7f4ee 0%, #f0eadf 42%, #ece5d8 100%);
}

.shop-work-gallery-shell{
  position: relative;
  z-index: 2;
}

.shop-work-toolbar{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.shop-work-filter-wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-work-filter{
  appearance: none;
  border: 1px solid rgba(15,23,48,.12);
  background: rgba(255,255,255,.78);
  color: #13203a;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: .96rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  cursor: pointer;
  transition: .22s ease;
}

.shop-work-filter:hover{
  transform: translateY(-1px);
  border-color: rgba(198,221,87,.38);
}

.shop-work-filter.is-active{
  background: linear-gradient(180deg, #d8ec70 0%, #b7cf47 100%);
  color: #13203a;
  border-color: rgba(142,166,44,.34);
  box-shadow: 0 10px 20px rgba(167,194,61,.18);
}

.shop-work-toolbar-note{
  color: #445474;
  font-size: .98rem;
  font-weight: 600;
}

.shop-work-carousel{
  position: relative;
}

.shop-work-track-wrap{
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  border-radius: 22px;
}

.shop-work-track-wrap.is-dragging{
  cursor: grabbing;
}

.shop-work-track{
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 2px 14px;
}

.shop-work-track::-webkit-scrollbar{
  display: none;
}

.shop-work-card{
  flex: 0 0 clamp(280px, 31vw, 390px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,48,.08);
  box-shadow: 0 16px 34px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, opacity .2s ease;
}

.shop-work-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 22px 42px rgba(0,0,0,.10);
  border-color: rgba(198,221,87,.24);
}

.shop-work-card.is-hidden{
  display: none;
}

.shop-work-card-media{
  position: relative;
  aspect-ratio: 1.65 / 1;
  overflow: hidden;
  background: #0d1325;
}

.shop-work-card-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,11,20,.04) 0%, rgba(7,11,20,.14) 100%),
    linear-gradient(0deg, rgba(7,11,20,.30), rgba(7,11,20,0));
  pointer-events: none;
}

.shop-work-card-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.shop-work-card:hover .shop-work-card-media img{
  transform: scale(1.04);
}

.shop-work-badge{
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15,23,48,.84);
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 8px 18px rgba(0,0,0,.22);
}

.shop-work-card-content{
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 18px 18px 20px;
}

.shop-work-card-content h3{
  margin: 0 0 8px;
  font-family: "Barlow", sans-serif;
  font-size: 1.38rem;
  line-height: .98;
  text-transform: uppercase;
  color: #0f1730;
}

.shop-work-card-content p{
  margin: 0;
  color: #40506f;
  font-size: .97rem;
  line-height: 1.62;
}

.shop-work-card-actions{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.shop-work-card-tag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(198,221,87,.12);
  color: #52661b;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.shop-work-card-button{
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: .95rem;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
}

.shop-work-card-button:hover{
  color: #51641c;
}

.shop-work-carousel-controls{
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}

.shop-work-arrow{
  appearance: none;
  border: 1px solid rgba(15,23,48,.12);
  background: rgba(255,255,255,.82);
  color: #13203a;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}

.shop-work-arrow:hover{
  transform: translateY(-2px);
  border-color: rgba(198,221,87,.34);
  background: #fff;
}

.shop-work-masonry{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.shop-work-feature{
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(0,0,0,.10);
  border: 1px solid rgba(15,23,48,.08);
  min-height: 260px;
}

.shop-work-feature.large{
  grid-column: span 7;
}

.shop-work-feature.tall{
  grid-column: span 5;
}

.shop-work-feature img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-work-feature::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,11,20,.04) 0%, rgba(7,11,20,.18) 36%, rgba(7,11,20,.74) 100%);
}

.shop-work-feature-copy{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding: 22px;
  color: #fff;
}

.shop-work-feature-copy h3{
  margin: 0 0 8px;
  font-family: "Barlow", sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: .95;
  text-transform: uppercase;
}

.shop-work-feature-copy p{
  margin: 0;
  max-width: 520px;
  color: rgba(255,255,255,.90);
}

.shop-work-story{
  position: relative;
  background: linear-gradient(180deg, #efe8dc 0%, #f6f1e7 100%);
}

.shop-work-story-grid{
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 26px;
  align-items: center;
}

.shop-work-story-copy h2{
  margin: 0 0 14px;
  font-family: "Barlow", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: .94;
  text-transform: uppercase;
  color: var(--navy);
}

.shop-work-story-copy h2 span{
  color: var(--lime-deep);
}

.shop-work-story-copy p{
  margin: 0 0 16px;
  color: #3f4f6f;
  font-size: 1.02rem;
}

.shop-work-story-panel{
  padding: 24px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.50), rgba(255,255,255,.24)),
    linear-gradient(180deg, #f5efe3 0%, #eee6d9 100%);
  border: 1px solid rgba(15,23,48,.08);
  box-shadow: 0 16px 32px rgba(0,0,0,.06);
}

.shop-work-story-panel h3{
  margin: 0 0 14px;
  font-family: "Barlow", sans-serif;
  font-size: 1.3rem;
  line-height: .98;
  text-transform: uppercase;
  color: var(--navy);
}

.shop-work-story-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.shop-work-story-list li{
  position: relative;
  padding-left: 24px;
  color: #2e3c5a;
  font-weight: 700;
}

.shop-work-story-list li::before{
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--lime-deep);
  font-weight: 900;
}

.shop-work-cta-band{
  background: linear-gradient(180deg, #111833 0%, #0b1122 100%);
  border-top: 1px solid rgba(198,221,87,.20);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.shop-work-cta-band-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0;
}

.shop-work-cta-band-copy p{
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--lime);
  font-weight: 800;
  font-size: .92rem;
}

.shop-work-cta-band-copy h2{
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: .95;
  text-transform: uppercase;
  color: #fff;
}

.shop-work-cta-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.shop-lightbox{
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(6,9,18,.88);
  backdrop-filter: blur(8px);
}

.shop-lightbox.is-open{
  display: flex;
}

.shop-lightbox-dialog{
  position: relative;
  width: min(1120px, 100%);
  max-height: 92vh;
  overflow: hidden;
  border-radius: 24px;
  background: #0c1121;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 30px 60px rgba(0,0,0,.34);
}

.shop-lightbox-close{
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(7,11,20,.72);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.shop-lightbox-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  max-height: 92vh;
}

.shop-lightbox-media{
  min-height: 420px;
  background: #0a0f1d;
}

.shop-lightbox-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-lightbox-content{
  padding: 32px 28px 28px;
  overflow-y: auto;
  color: #fff;
  background: linear-gradient(180deg, #131d37 0%, #0d1427 100%);
}

.shop-lightbox-label{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(198,221,87,.12);
  color: #eef8c7;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 14px;
}

.shop-lightbox-content h3{
  margin: 0 0 10px;
  font-family: "Barlow", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: .95;
  text-transform: uppercase;
}

.shop-lightbox-content p{
  margin: 0 0 14px;
  color: rgba(255,255,255,.88);
  line-height: 1.7;
}

.shop-lightbox-meta{
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.shop-lightbox-meta div{
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.88);
  font-weight: 600;
}

@media (max-width: 1200px){
  .shop-work-hero-grid,
  .shop-work-strip-inner{
    grid-template-columns: 1fr;
  }

  .shop-work-masonry{
    grid-template-columns: 1fr;
  }

  .shop-work-feature.large,
  .shop-work-feature.tall{
    grid-column: auto;
  }

  .shop-work-story-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px){
  .shop-work-toolbar{
    align-items: flex-start;
  }

  .shop-work-cta-band-inner{
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-lightbox-grid{
    grid-template-columns: 1fr;
  }

  .shop-lightbox-media{
    min-height: 280px;
    max-height: 42vh;
  }
}

@media (max-width: 640px){
  .shop-work-hero{
    min-height: auto;
  }

  .shop-work-hero-bg img{
    object-position: 64% center;
  }

  .shop-work-hero-overlay{
    background:
      linear-gradient(180deg, rgba(7,11,20,.70) 0%, rgba(8,12,22,.48) 36%, rgba(8,12,22,.72) 100%),
      linear-gradient(90deg, rgba(7,11,20,.64) 0%, rgba(8,12,22,.18) 100%);
  }

  .shop-work-hero-inner{
    min-height: auto;
    padding: 34px 0 28px;
  }

  .shop-work-hero-top h1{
    font-size: clamp(2.15rem, 10vw, 3.35rem);
  }

  .shop-work-slogan{
    padding: 14px 16px;
    border-left-width: 4px;
  }

  .shop-work-slogan p{
    font-size: .98rem;
    line-height: 1.2;
  }

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

  .shop-work-filter-wrap{
    gap: 8px;
  }

  .shop-work-filter{
    min-height: 40px;
    padding: 0 12px;
    font-size: .86rem;
  }

  .shop-work-card{
    flex-basis: 86vw;
  }

  .shop-work-cta-actions{
    width: 100%;
    flex-direction: column;
  }

  .shop-work-cta-actions .btn{
    width: 100%;
  }

  .shop-lightbox{
    padding: 14px;
  }

  .shop-lightbox-content{
    padding: 24px 18px 20px;
  }
}