:root{
  --ink:#213246;
  --paper:#ffffff;
  --soft:#f5f8fb;
  --soft-blue:#edf4f8;
  --soft-blue-2:#e4edf5;
  --muted:#5c6470;
  --cta-red:#ff2d2d;
  --cta-orange:#ff7a1f;
  --google-blue:#4285f4;
  --service-gray-1:#b9c7d5;
  --service-gray-2:#9eb0c1;
  --service-gray-3:#8297ab;
  --navy:#30465e;
  --navy-dark:#22364c;
  --shadow-soft:0 10px 24px rgba(0,0,0,.08);
  --shadow-lg:0 18px 44px rgba(0,0,0,.10);
  --radius:22px;
  --rainbow:linear-gradient(90deg,#ff2d2d 0%,#ff7a00 18%,#ffd400 36%,#00c853 54%,#00b0ff 72%,#7c4dff 86%,#ff2ad4 100%);
}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:#18222d;
  background:var(--paper);
  overflow-x:hidden;
}

a{text-decoration:none}
section{padding:68px 0}

.section-title{
  font-weight:900;
  letter-spacing:.2px;
  margin:0;
  color:#18222d;
}

.section-sub{
  color:#5f6672;
  margin-top:10px;
  max-width:68ch;
}

.rainbow-rule{
  height:6px;
  border-radius:999px;
  background:var(--rainbow);
  box-shadow:0 10px 24px rgba(0,0,0,.10);
}

.badge-soft{
  background:rgba(48,70,94,.08);
  color:var(--navy-dark);
  border-radius:999px;
  font-weight:800;
  padding:8px 12px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid rgba(48,70,94,.12);
}

.badge-soft i{color:var(--cta-red)}

/* nav */
.navbar{
  padding:15px 0;
  transition:all .25s ease;
  z-index:50;
}

.navbar-transparent{background:transparent}

.navbar-scrolled,
.page-nav{
  background:rgba(17,17,17,.94);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:0 10px 25px rgba(0,0,0,.22);
}

.navbar .nav-link{
  color:#fff !important;
  font-weight:700;
  opacity:.95;
}

.navbar .nav-link:hover{opacity:1}

.nav-social{
  gap:10px;
  flex-shrink:0;
}

.nav-social-link{
  width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  color:#fff;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  transition:transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.nav-social-link:hover{
  color:#fff;
  transform:translateY(-1px);
  background:rgba(255,255,255,.18);
  border-color:rgba(255,255,255,.30);
  box-shadow:0 10px 22px rgba(0,0,0,.16);
}

.nav-social-link i{
  font-size:1rem;
  line-height:1;
}

/* buttons */
.btn-cta{
  border:1px solid rgba(255,255,255,.10);
  background:var(--cta-red);
  color:#fff !important;
  font-weight:800;
  border-radius:999px;
  padding:12px 18px;
  box-shadow:0 16px 34px rgba(255,45,45,.22);
  transition:transform .12s ease, box-shadow .12s ease, filter .12s ease, background .12s ease, border-color .12s ease;
}

.btn-cta:hover,
.btn-cta:focus{
  background:var(--cta-orange);
  border-color:rgba(255,255,255,.18);
  transform:translateY(-1px);
  box-shadow:0 18px 44px rgba(255,122,31,.30);
  color:#fff !important;
}

.btn-secondary-soft{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:var(--navy);
  color:#fff !important;
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
  padding:12px 18px;
  font-weight:800;
  transition:transform .12s ease, background .12s ease;
}

.btn-secondary-soft:hover{
  background:var(--navy-dark);
  transform:translateY(-1px);
  color:#fff !important;
}

.btn-call{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 20px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--cta-red), #ff5c44);
  color:#fff !important;
  font-weight:900;
  border:0;
  box-shadow:0 14px 30px rgba(255,45,45,.22);
  transition:transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.btn-call:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 36px rgba(255,45,45,.28);
  filter:brightness(1.03);
  color:#fff !important;
}

.glass-button{
  background:rgba(255,255,255,.30);
  border:1px solid rgba(255,255,255,.32);
  color:#18222d !important;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.26), 0 10px 22px rgba(17,24,39,.07);
  transition:transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
}

.glass-button:hover,
.glass-button:focus{
  transform:translateY(-1px);
  background:rgba(255,255,255,.40);
  border-color:rgba(255,255,255,.46);
  color:#18222d !important;
}

.glass-button.is-active{
  background:linear-gradient(135deg, #ff5d2a, #ff7a1f);
  color:#fff !important;
  border-color:rgba(255,255,255,.16);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.22), 0 16px 28px rgba(255,106,31,.24);
}

/* hero */
.hero{
  position:relative;
  width:100%;
  min-height:100vh;
  min-height:100svh;
  min-height:100dvh;
  height:100vh;
  height:100svh;
  height:100dvh;
  overflow:hidden;
  background:#cfd8e3;
}

.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  display:block;
  filter:saturate(1.02) contrast(1.02);
}

.hero-video--desktop{display:block}
.hero-video--mobile{display:none}

.hero-ticker{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:3;
  overflow:hidden;
  background:var(--cta-red);
  color:#fff;
  border-top:1px solid rgba(255,255,255,.16);
  box-shadow:0 -8px 24px rgba(0,0,0,.18);
}

.hero-ticker-track{
  display:flex;
  width:max-content;
  animation:heroTickerScroll 38s linear infinite;
}

.hero-ticker-group{
  display:flex;
  align-items:center;
  gap:14px;
  flex-shrink:0;
  padding:14px 0;
  white-space:nowrap;
  font-weight:900;
  font-size:.98rem;
  letter-spacing:.02em;
  text-transform:uppercase;
}

.ticker-dot{opacity:.72}

@keyframes heroTickerScroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* intro */
.intro-section{
  background:
    radial-gradient(circle at top left, rgba(255,45,45,.08), transparent 28%),
    radial-gradient(circle at top right, rgba(0,176,255,.08), transparent 24%),
    linear-gradient(180deg, #f8fbfd 0%, #eef5fa 100%);
}

.intro-title{
  font-size:clamp(2.1rem,4.8vw,4rem);
  line-height:1.03;
}

.intro-sub{
  font-size:1.05rem;
  line-height:1.75;
  max-width:60ch;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

.intro-card{
  background:rgba(255,255,255,.82);
  border:1px solid rgba(48,70,94,.10);
  border-radius:26px;
  padding:28px;
  box-shadow:var(--shadow-lg);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.intro-card h2{
  color:var(--navy-dark);
  font-weight:900;
}

.intro-card p{
  color:#536172;
  line-height:1.7;
}

.intro-card-icon{
  width:60px;
  height:60px;
  border-radius:20px;
  display:grid;
  place-items:center;
  margin-bottom:16px;
  background:linear-gradient(135deg, rgba(255,45,45,.12), rgba(66,133,244,.10));
  color:var(--cta-red);
  font-size:1.5rem;
}

/* page hero */
.page-hero{
  padding:150px 0 72px;
  background:
    radial-gradient(circle at top left, rgba(255,45,45,.10), transparent 28%),
    radial-gradient(circle at top right, rgba(0,176,255,.10), transparent 26%),
    linear-gradient(180deg, #35506b 0%, #29415a 100%);
  color:#fff;
}

.page-hero .section-title{color:#fff}

.page-hero p{
  color:rgba(255,255,255,.84);
  max-width:66ch;
}

.page-hero .badge-soft{
  background:rgba(255,255,255,.12);
  color:#fff;
  border-color:rgba(255,255,255,.14);
}

.page-hero .badge-soft i{color:#fff}

.gallery-slider-hero{
  position:relative;
  padding:0;
}

.gallery-hero-carousel,
.gallery-hero-carousel .carousel-inner,
.gallery-hero-carousel .carousel-item{
  min-height:100vh;
  min-height:100svh;
  min-height:100dvh;
  height:100vh;
  height:100svh;
  height:100dvh;
}

.gallery-hero-carousel{
  touch-action:pan-y pinch-zoom;
}

.gallery-hero-image{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  filter:saturate(1.02) contrast(1.02);
}

.gallery-hero-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(180deg, rgba(8,12,18,.58) 0%, rgba(8,12,18,.32) 34%, rgba(8,12,18,.56) 100%),
    radial-gradient(circle at 20% 20%, rgba(255,45,45,.18), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(0,176,255,.14), transparent 24%);
}

.gallery-hero-content{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  align-items:center;
}

.gallery-hero-content .container{
  padding-top:88px;
  padding-bottom:42px;
}

.gallery-hero-content .section-title{
  max-width:14ch;
  font-size:clamp(2.5rem, 6vw, 5.5rem);
  line-height:.98;
}

.gallery-hero-content p{
  max-width:62ch;
  color:rgba(255,255,255,.88);
  font-size:1.02rem;
  line-height:1.75;
}

.gallery-hero-content .badge-soft{
  background:rgba(255,255,255,.14);
  color:#fff;
  border-color:rgba(255,255,255,.18);
}

.gallery-hero-content .badge-soft i{
  color:#fff;
}

.gallery-hero-indicators{
  z-index:3;
  margin-bottom:22px;
}

.gallery-hero-indicators [data-bs-target]{
  width:34px;
  height:5px;
  border-radius:999px;
  border:0;
  opacity:.56;
}

.gallery-hero-control{
  z-index:3;
  width:8%;
}

.gallery-hero-control .carousel-control-prev-icon,
.gallery-hero-control .carousel-control-next-icon{
  width:3rem;
  height:3rem;
  border-radius:999px;
  background-color:rgba(255,255,255,.16);
  background-size:44% 44%;
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

@media (hover: none) and (pointer: coarse){
  .gallery-hero-control{
    width:16%;
  }

  .gallery-hero-control .carousel-control-prev-icon,
  .gallery-hero-control .carousel-control-next-icon{
    width:2.85rem;
    height:2.85rem;
  }
}

/* about */
.about{
  background:
    radial-gradient(circle at top left, rgba(255,45,45,.07), transparent 26%),
    radial-gradient(circle at bottom right, rgba(0,176,255,.08), transparent 24%),
    linear-gradient(180deg, #f6fafc 0%, #edf5fa 100%);
}

.about-card{
  height:100%;
  background:#fff;
  border-radius:26px;
  border:1px solid rgba(48,70,94,.08);
  box-shadow:var(--shadow-soft);
  padding:28px;
}

.about-card p{
  color:#4f5c6b;
  line-height:1.8;
}

.about-card-side{
  background:linear-gradient(180deg, #f8fbfd 0%, #eef4f8 100%);
}

.about-list{
  list-style:none;
  padding:0;
  display:grid;
  gap:14px;
}

.about-list li{
  color:#30465e;
  line-height:1.65;
  padding-left:18px;
  position:relative;
}

.about-list li::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  background:var(--cta-red);
  position:absolute;
  left:0;
  top:.68em;
}

/* service area */
.service-area-section{
  position:relative;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.18), transparent 26%),
    radial-gradient(circle at bottom right, rgba(255,255,255,.14), transparent 30%),
    linear-gradient(150deg, var(--service-gray-1) 0%, var(--service-gray-2) 48%, var(--service-gray-3) 100%);
  overflow:hidden;
  padding:50px 0;
}

.service-area-fluid{
  width:100%;
  padding-left:clamp(16px,2vw,30px);
  padding-right:clamp(16px,2vw,30px);
}

.service-area-shell{
  width:100%;
  border-radius:28px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.24);
  box-shadow:0 24px 50px rgba(15,23,42,.12), inset 0 1px 0 rgba(255,255,255,.30);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  overflow:hidden;
}

.service-area-grid{
  display:grid;
  grid-template-columns:minmax(320px,1fr) minmax(340px,.9fr);
  align-items:stretch;
  min-height:400px;
}

.service-area-info,
.service-area-map-panel{
  position:relative;
  min-width:0;
}

.service-area-info{
  padding:28px;
  color:#18222d;
  background:linear-gradient(180deg, rgba(255,255,255,.20), rgba(255,255,255,.10));
  border-right:1px solid rgba(255,255,255,.18);
}

.service-area-copy{
  color:#25303a;
  font-size:1rem;
  line-height:1.72;
  margin:14px 0 0;
  max-width:54ch;
}

.service-area-toolbar{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:22px 0;
}

.service-county{
  border-radius:999px;
  padding:11px 16px;
  font-weight:800;
  line-height:1;
}

.service-link-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin-bottom:16px;
}

.service-link-pill{
  min-height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-align:center;
  padding:12px 10px;
  border-radius:18px;
  font-weight:800;
  background:rgba(255,255,255,.20);
  border:1px solid rgba(255,255,255,.26);
  color:#20262d;
}

.service-area-actions{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}

.service-area-actions .btn-call,
.service-area-actions .btn-cta{
  width:100%;
  justify-content:center;
}

.service-area-map-panel{
  padding:18px;
  display:flex;
  align-items:center;
}

.service-area-map-frame{
  position:relative;
  width:100%;
  min-height:306px;
  border-radius:24px;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.24);
  box-shadow:0 16px 34px rgba(15,23,42,.10), inset 0 1px 0 rgba(255,255,255,.26);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  padding:12px;
}

.service-area-map-stage{
  position:relative;
  width:100%;
  height:100%;
  min-height:278px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.20);
  background:#d4dde6;
  box-shadow:0 12px 24px rgba(15,23,42,.08);
}

.service-area-map-stage iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:block;
  filter:saturate(.90) contrast(.97);
}

.service-area-map-label{
  position:absolute;
  top:14px;
  left:14px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.32);
  color:#111;
  border:1px solid rgba(255,255,255,.34);
  box-shadow:0 10px 20px rgba(0,0,0,.08);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  font-weight:900;
}

/* cards */
.cards-section{
  background:
    radial-gradient(circle at top left, rgba(255,45,45,.05), transparent 28%),
    radial-gradient(circle at top right, rgba(0,176,255,.06), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.service-card,
.link-card,
.contact-panel{
  background:#fff;
  border-radius:22px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  border:1px solid rgba(0,0,0,.06);
}

.service-card{
  height:100%;
  padding:24px;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.service-card::before{
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:6px;
  background:var(--rainbow);
}

.service-card:hover,
.link-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 44px rgba(0,0,0,.12);
}

.service-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.service-icon,
.link-card-icon,
.contact-path-icon{
  width:56px;
  height:56px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, rgba(255,45,45,.12), rgba(66,133,244,.10));
  color:var(--cta-red);
  font-size:1.45rem;
}

.service-card h3{
  font-weight:900;
  font-size:1.18rem;
  line-height:1.2;
  margin-bottom:10px;
  color:#121212;
}

.service-copy{
  color:#555;
  margin-bottom:16px;
}

.service-list{
  margin:0;
  padding-left:1.1rem;
  color:#222;
}

.service-list li{
  margin-bottom:8px;
  line-height:1.45;
}

.service-card-spacer{flex-grow:1}

.link-card{
  height:100%;
  padding:26px;
  transition:transform .16s ease, box-shadow .16s ease;
}

.link-card p{
  margin:0;
  color:#606874;
}

/* reviews */
.reviews-embed-section{
  background:linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  padding:46px 0 0;
  overflow:hidden;
}

.reviews-embed-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  width:min(1400px, 100%);
  margin:0 auto;
  padding:0 clamp(16px, 3vw, 40px) 18px;
}

.reviews-embed-title{
  display:flex;
  align-items:center;
  gap:12px;
}

.reviews-embed-icon{
  width:52px;
  height:52px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, rgba(66,133,244,.14), rgba(255,45,45,.10));
  color:var(--google-blue);
  font-size:1.35rem;
}

.reviews-embed-full{
  width:100%;
  background:#fff;
  border-top:1px solid rgba(17,17,17,.08);
  border-bottom:1px solid rgba(17,17,17,.08);
  box-shadow:0 16px 34px rgba(17,17,17,.08);
  padding:18px clamp(16px, 2.5vw, 32px) 24px;
  overflow:visible;
}

.reviews-embed-full .elfsight-app-6a6906cf-e111-40ba-8d75-3be7c69899b4{
  width:100% !important;
  max-width:none !important;
}

/* gallery */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}

.gallery-card{
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
  border:1px solid rgba(0,0,0,.06);
  background:#fff;
  height:100%;
}

.gallery-card img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
}

.gallery-placeholder{
  width:100%;
  height:260px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:20px;
  color:#364152;
  font-weight:800;
  background:linear-gradient(135deg, rgba(255,45,45,.10), rgba(66,133,244,.08)), #eef2f7;
}

.gallery-caption{padding:16px}

.gallery-overview-section{
  padding-top:0;
  margin-top:-38px;
  position:relative;
  z-index:2;
}

.gallery-stat-card{
  height:100%;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(17,17,17,.06);
  border-radius:22px;
  box-shadow:0 12px 34px rgba(17,17,17,.08);
  padding:24px;
}

.gallery-stat-icon{
  width:58px;
  height:58px;
  border-radius:18px;
  display:grid;
  place-items:center;
  margin-bottom:16px;
  background:linear-gradient(135deg, rgba(255,45,45,.12), rgba(66,133,244,.10));
  color:var(--cta-red);
  font-size:1.45rem;
}

.gallery-stat-card strong{
  display:block;
  font-size:1.08rem;
  line-height:1.3;
  color:#121212;
}

.gallery-stat-card p{
  margin:10px 0 0;
  color:#596473;
  line-height:1.65;
}

.gallery-jump{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.gallery-jump-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius:999px;
  background:#fff;
  color:#203247;
  text-decoration:none;
  font-weight:800;
  border:1px solid rgba(48,70,94,.12);
  box-shadow:0 8px 22px rgba(17,17,17,.06);
  transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease, color .16s ease;
}

.gallery-jump-link:hover{
  color:#111;
  border-color:rgba(255,45,45,.24);
  box-shadow:0 14px 30px rgba(17,17,17,.10);
  transform:translateY(-2px);
}

.project-section{
  background:#fff;
  border-radius:28px;
  padding:28px;
  border:1px solid rgba(17,17,17,.06);
  box-shadow:0 16px 36px rgba(17,17,17,.08);
}

.project-section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:24px;
}

.project-section-head p{
  margin:0;
  max-width:64ch;
  color:#5c6773;
  line-height:1.7;
}

.project-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(255,45,45,.10), rgba(66,133,244,.08));
  color:#203247;
  font-weight:900;
}

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

.project-card{
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(17,17,17,.06);
  box-shadow:0 10px 24px rgba(17,17,17,.08);
  height:100%;
  transition:transform .18s ease, box-shadow .18s ease;
}

.project-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 40px rgba(17,17,17,.12);
}

.project-media{
  width:100%;
  height:280px;
  object-fit:cover;
  display:block;
  background:linear-gradient(180deg, #edf3f7 0%, #dde7ef 100%);
}

.project-card--feature .project-media{
  min-height:420px;
}

.project-media--video{
  object-fit:cover;
}

.project-card-body{
  padding:18px;
}

.project-card-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:12px;
}

.project-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background:#f4f8fb;
  border:1px solid rgba(48,70,94,.08);
  color:#203247;
  font-size:.8rem;
  letter-spacing:.04em;
  text-transform:uppercase;
  font-weight:800;
}

.project-card-title{
  margin:0 0 10px;
  font-size:1.15rem;
  line-height:1.3;
  font-weight:900;
  color:#111;
}

.project-card-copy{
  margin:0;
  color:#5b6570;
  line-height:1.7;
}

.gallery-cta-panel{
  background:linear-gradient(180deg, #35506b 0%, #29415a 100%);
  border-radius:28px;
  padding:28px;
  box-shadow:0 16px 36px rgba(17,17,17,.12);
}

.gallery-cta-panel p{
  margin:0;
  color:rgba(255,255,255,.84);
}

.gallery-cta-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:12px;
}

/* contact */
.section-soft{background:var(--soft)}

.contact-layout{
  display:grid;
  grid-template-columns:minmax(280px,.94fr) minmax(320px,1.06fr);
  gap:22px;
  align-items:stretch;
}

.contact-panel{
  padding:22px;
  height:100%;
}

.contact-panel--info{
  background:linear-gradient(180deg, #35506b 0%, #29415a 100%);
  color:#fff;
  border-color:rgba(255,255,255,.06);
}

.contact-panel--info p,
.contact-panel--info li{
  color:rgba(255,255,255,.84);
}

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

.contact-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.contact-panel .row.g-3{
  --bs-gutter-y:14px;
  --bs-gutter-x:14px;
}

.form-control,
.form-select{
  border-radius:14px;
  padding:12px 12px;
  border:1px solid rgba(0,0,0,.12);
}

.form-control:focus,
.form-select:focus{
  box-shadow:0 0 0 .2rem rgba(255,45,45,.14);
  border-color:rgba(255,45,45,.4);
}

textarea.form-control{
  min-height:116px;
  resize:vertical;
}

.contact-two-way{
  background:
    radial-gradient(circle at top left, rgba(255,45,45,.05), transparent 28%),
    radial-gradient(circle at top right, rgba(0,176,255,.06), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f5f9fc 100%);
}

.contact-path-card{
  height:100%;
  background:#fff;
  border-radius:22px;
  padding:24px;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:var(--shadow-soft);
}

.contact-path-card h3{font-weight:900}
.contact-path-icon{margin-bottom:16px}

#thankyou,
#thankyouBottom{
  border-radius:16px;
  border:1px dashed rgba(0,0,0,.18);
  background:rgba(0,0,0,.02);
  display:none;
}

/* footer */
footer{
  background:linear-gradient(180deg, #30465e 0%, #23384f 100%);
  color:rgba(255,255,255,.82);
  padding:40px 0 34px;
}

footer a{
  color:#fff;
  opacity:.94;
}

footer a:hover{
  text-decoration:underline;
  opacity:1;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px 16px;
}

.footer-links a{font-size:.95rem}
.footer-bbb{margin-top:16px}
.footer-rule{opacity:.85;border-top:1px solid rgba(255,255,255,.10)}

/* responsive */
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .hero-ticker-track{animation:none}
}

@media (max-width: 991.98px){
  .navbar .container{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
  }

  .nav-social{order:1}
  .navbar-toggler{order:2;margin-left:auto}
  .navbar-collapse{
    order:3;
    width:100%;
    background:rgba(17,17,17,.88);
    margin-top:12px;
    padding:12px 14px;
    border-radius:18px;
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
  }

  .nav-social-link{
    width:38px;
    height:38px;
  }

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

  .service-area-info{
    padding:24px;
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.20);
  }

  .service-area-map-panel{padding:16px}
  .service-area-map-frame{min-height:292px}
  .service-area-map-stage{min-height:260px}
  .contact-layout{grid-template-columns:1fr}
  .gallery-hero-content .container{padding-top:104px}
  .gallery-hero-control{width:11%}
  .gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .project-gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .project-card--feature .project-media{min-height:320px}
}

@media (max-width: 768px){
  .hero{
    min-height:100svh;
    min-height:100dvh;
    height:100svh;
    height:100dvh;
  }

  .hero-video--desktop{display:none}
  .hero-video--mobile{
    display:block;
    object-position:50% 18%;
  }

  .hero-ticker-group{
    font-size:.84rem;
    padding:12px 0;
    gap:12px;
  }

  .intro-section{padding-top:56px}
  .page-hero{padding:132px 0 56px}
  .gallery-hero-content{align-items:flex-end}
  .gallery-hero-content .container{padding-top:120px;padding-bottom:78px}
  .gallery-hero-content .section-title{max-width:12ch;font-size:clamp(2.15rem, 11vw, 3.4rem)}
  .gallery-hero-control{width:14%}
  .gallery-hero-control .carousel-control-prev-icon,
  .gallery-hero-control .carousel-control-next-icon{width:2.5rem;height:2.5rem}
  .gallery-hero-indicators{margin-bottom:16px}
  .service-area-section{padding:40px 0}
  .service-area-fluid{padding-left:14px;padding-right:14px}
  .service-area-shell{border-radius:24px}
  .service-area-info{padding:22px}
  .service-area-toolbar{gap:10px}
  .service-county{padding:10px 14px;font-size:.95rem}
  .service-link-grid{grid-template-columns:1fr}
  .service-area-actions{grid-template-columns:1fr}
  .service-area-map-panel{padding:14px}
  .service-area-map-frame{padding:10px;border-radius:20px;min-height:264px}
  .service-area-map-stage{min-height:232px;border-radius:16px}
  .service-area-map-label{
    top:12px;
    left:12px;
    right:12px;
    width:auto;
    justify-content:center;
    font-size:.95rem;
  }

  .service-card,
  .link-card,
  .contact-panel,
  .contact-path-card,
  .about-card,
  .intro-card,
  .project-section,
  .gallery-cta-panel,
  .gallery-stat-card{
    border-radius:18px;
    padding:20px;
  }

  .service-card-top{
    align-items:flex-start;
    flex-direction:column;
  }

  .reviews-embed-section{padding:38px 0 0}
  .reviews-embed-head{padding:0 14px 14px}
  .reviews-embed-full{padding:14px 14px 18px}
  .gallery-overview-section{margin-top:0;padding-top:28px}
  .gallery-jump-link{width:100%}
  .project-gallery-grid{grid-template-columns:1fr}
  .project-media{height:240px}
  .project-card--feature .project-media{min-height:260px}
  .gallery-cta-actions{justify-content:stretch}
  .gallery-cta-actions .btn{width:100%}
  .gallery-grid{grid-template-columns:1fr}
  .gallery-card img,.gallery-placeholder{height:220px}
}

@media (max-width: 576px){
  section{padding:56px 0}
}

@media (max-width: 420px){
  .hero-video--mobile{object-position:50% 14%}
  .service-area-map-frame{min-height:242px}
  .service-area-map-stage{min-height:214px}
}
