@charset "utf-8";
/* =========================================================
   THEME / TOKENS
   ========================================================= */ :root {
  --bg: #07080b;
  --panel: #0f1217;
  --panel2: #141a22;
  --text: #f4f6fb;
  --muted: #b1b8c6;
  --line: rgba(255, 255, 255, .10);
  --shadow: 0 24px 70px rgba(0, 0, 0, .55);
  --radius: 18px;
  /* Diversified brand accents */
  --accent: #ff8900;
  --accent2: #fdba22;
  /* Layout + type scale */
  --max: 1180px;
  --h1: clamp(2.3rem, 4.2vw, 4.1rem);
  --h2: clamp(1.5rem, 2.3vw, 2.2rem);
  --h3: clamp(1.05rem, 1.45vw, 1.25rem);
  /* Convenience glows (NO BLUE) */
  --accentGlow: rgba(255, 137, 0, .22);
  --accentGlow2: rgba(253, 186, 34, .14);
}
/* =========================================================
   RESET / BASE
   ========================================================= */
* {
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  background: #06070a;
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  overflow-x: hidden;
}
main {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  overflow-x: hidden;
  /* Scheme A: Cinematic charcoal + warm glow */
  background: /* Top glows (existing) */ radial-gradient(1200px 700px at 18% 8%, rgba(255, 137, 0, .18), transparent 68%), radial-gradient(900px 600px at 88% 14%, rgba(253, 186, 34, .13), transparent 70%), /* Mid-top / lower-top (existing) */ radial-gradient(700px 500px at 55% 110%, rgba(255, 137, 0, .10), transparent 60%), /* NEW: mid-page glows */ radial-gradient(1100px 720px at 20% 145%, rgba(253, 186, 34, .11), transparent 70%), radial-gradient(900px 650px at 85% 160%, rgba(255, 137, 0, .12), transparent 72%), /* NEW: deeper page glows */ radial-gradient(1200px 800px at 35% 205%, rgba(255, 137, 0, .10), transparent 74%), radial-gradient(950px 720px at 78% 230%, rgba(253, 186, 34, .09), transparent 74%), /* NEW: near-bottom glow */ radial-gradient(1200px 900px at 50% 270%, rgba(255, 137, 0, .08), transparent 78%), /* Base gradient (existing) */ linear-gradient(180deg, #06070a 0%, #090b10 40%, #05060a 100%);
}
a {
  color: inherit;
}
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* =========================================================
   HEADER (STACKING FIXES INCLUDED)
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000; /* ✅ ensures header is above hero */
  background: rgba(9, 10, 12, .78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  overflow: visible; /* ✅ prevents dropdown clipping */
}
.site-banner {
  background: var(--accent);
  color: #1a1a1a;
  text-align: center;
  padding: 8px 16px;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between; /* ADD THIS */
  gap: 14px;
  height: 74px;
  overflow: visible;
}
/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 210px;
}
/* Legacy icon logo block (kept if you still use it) */
.logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 12px 30px var(--accentGlow); /* ✅ removed blue */
  position: relative;
  overflow: hidden;
}
.logo:after {
  content: "";
  position: absolute;
  inset: -18px;
  background: conic-gradient(from 210deg, rgba(255, 255, 255, .30), transparent 25%, rgba(255, 255, 255, .10));
  animation: spin 6s linear infinite;
  mix-blend-mode: overlay;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.brand strong {
  font-size: 1.02rem;
  letter-spacing: .2px;
}
.brand span {
  display: block;
  font-size: .80rem;
  color: var(--muted);
  margin-top: 2px;
}
/* Wordmark mode */
.brand--wordmark {
  gap: 0;
  min-width: unset;
}
.wordmark {
  display: block;
  height: 40px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}
/* ===== Navigation Container ===== */
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
/* ===== Navigation Buttons and Links ===== */
.nav > button, .nav > a, .navbtn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text);
  font: inherit;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
  transition:
    background 0.15s ease, transform 0.15s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
/* ===== Hover + Focus States ===== */
.nav > button:hover, .nav > a:hover, .navbtn:hover, .navbtn:focus {
  border-color: var(--accent);
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 6px 2px rgba(255, 137, 0, 0.4); /* Orange glow */
  outline: none;
}
/* ===== Active Click Animation ===== */
.nav > button:active, .nav > a:active, .navbtn:active {
  transform: translateY(1px);
}
/* ===== Dropdown Chevrons ===== */
.chev {
  display: inline-block;
  transition: transform 0.2s ease;
  opacity: 0.75;
}
/* Header actions */
.actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  min-width: 220px;
}
.search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: .95rem;
}
/* Buttons */
.btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:focus:not(:focus-visible) {
  outline: none;
}
.btn:hover {
  background: rgba(255, 255, 255, .07);
}
.btn:active {
  transform: translateY(1px);
}
.btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #06101e;
  font-weight: 700;
  box-shadow:
    0 4px 40px var(--accentGlow), 0 8px 20px var(--accentGlow2); /* ✅ no blue */
}
.btn.primary:hover {
  filter: brightness(1.05);
}
.btn-icon {
  width: 38px;
  height: 38px;
  padding: 0;
  justify-content: center;
  border-radius: 14px;
}
.burger {
  display: none;
  font-size: 1.6rem;
  line-height: 1;
  align-self: stretch;
  height: auto;
  padding: 0 14px;
  border: none;
}
.navbtn[aria-expanded="true"] .chev {
  transform: rotate(180deg);
  transition: transform 0.2s ease;
}
/* =========================================================
   MEGA MENU (STACKING FIXES INCLUDED)
   ========================================================= */
.nav-item {
  position: relative; /* anchor dropdowns here */
}
.mega {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1001;
  width: auto; /* allow content to define width */
  min-width: 380px;
  max-width: 500px; /* prevent it from getting too wide on large screens */
  background: rgba(9, 10, 12, 0.92);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 20px;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.mega.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mega-inner {
  display: grid;
  grid-template-columns: 1fr; /* keep one column */
  padding: 20px 28px 24px;
  width: 100%;
  max-width: 460px; /* match or slightly less than .mega */
}
.mega-col {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
  padding: 14px;
  width: 100%;
}
.mega-col h4 {
  margin: 0 0 8px;
  font-size: .95rem;
  letter-spacing: .3px;
  color: rgba(255, 255, 255, .92); /* ✅ removed blue tint */
}
.mega-col p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.35;
}
.mega-links {
  display: grid;
  gap: 6px;
}
.mega-links a {
  text-decoration: none;
  padding: 9px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: var(--text);
  font-size: .94rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mega-links a:hover {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .06);
}
/* =========================================================
   HERO (STACKING FIXES INCLUDED)
   ========================================================= */
.hero {
  position: relative;
  z-index: 0; /* ✅ hero cannot overlay mega */
  padding: 56px 0 30px;
}
.hero-card {
  position: relative;
  z-index: 0; /* ✅ hero cannot overlay mega */
  isolation: isolate; /* ✅ prevents overlay stacking weirdness */
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01));
}
/* HERO TYPOGRAPHY WIDTH FIX */
.hero .container {
  max-width: 1280px; 
}
.hero .container > p {
  max-width: 75ch;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .55;
  filter: saturate(1.1) contrast(1.1);
}
.hero-media video, .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1; /* overlays media but stays inside hero-card */
  background:
    radial-gradient(980px 560px at 18% 30%, rgba(255, 137, 0, .38), transparent 62%), radial-gradient(760px 520px at 78% 22%, rgba(253, 186, 34, .18), transparent 60%), linear-gradient(90deg, rgba(6, 7, 10, .92) 0%, rgba(6, 7, 10, .62) 42%, rgba(6, 7, 10, .22) 70%, rgba(6, 7, 10, .90) 100%), linear-gradient(180deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, .68));
}
/* Hero content container */
.hero-content {
  position: relative;
  z-index: 2; /* above overlay */
  padding: clamp(22px, 4vw, 54px);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: end;
  min-height: 440px;
}
/* Full-width title layout you added */
.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: auto auto;
  gap: 22px 28px;
  align-items: end;
}
.hero-layout .hero-title {
  grid-column: 1 / -1;
  margin: 0;
  max-width: none;
  text-align: left;
  line-height: 1.02;
}
.hero-layout .hero-left {
  grid-column: 1;
  align-self: start;
}
.hero-layout .hero-right {
  grid-column: 2;
  align-self: end;
  display: flex;
  justify-content: flex-end;
}
.hero-quick {
  width: min(100%, 520px);
}
.hero-left p {
  max-width: 60ch;
}
/* Kicker / dot */
.kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05);
  border-radius: 999px;
  color: rgba(255, 255, 255, .90); /* ✅ removed blue tint */
  font-size: .9rem;
  width: fit-content;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 4px rgba(255, 137, 0, .18); /* ✅ removed blue */
}
/* Hero typography */
.hero h1 {
  margin: 14px 0 10px;
  font-size: var(--h1);
  line-height: 1.03;
  letter-spacing: -.02em;
}
.hero p {
  margin: 0;
  color: rgba(255, 255, 255, .74); /* ✅ removed blue-gray */
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 52ch;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
/* Optional legacy stat blocks (kept, no blue) */
.hero-right {
  display: grid;
  gap: 12px;
  align-content: end;
}
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stat {
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05);
  border-radius: 18px;
  padding: 14px;
}
.stat strong {
  display: block;
  font-size: 1.25rem;
  letter-spacing: .2px;
}
.stat span {
  color: var(--muted);
  font-size: .9rem;
}
/* =========================
   CENTERED HERO VARIANT
   ========================= */
.hero.hero--centered {
  display: flex;
  align-items: center;
  text-align: center;
}

.hero.hero--centered .container {
  margin: 0 auto;
  max-width: 160ch;
}

.hero.hero--centered .hero-ctas {
  justify-content: center;
}

/* =========================================================
   SECTIONS / GRID / CARDS
   ========================================================= */
section {
  padding: 44px 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.section-head h2 {
  margin: 0;
  font-size: var(--h2);
  letter-spacing: -.01em;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.5;
}
.grid {
  display: grid;
  gap: 16px;
}
.grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015));
  overflow: hidden;
  position: relative;
}
.card-pad {
  padding: 16px;
}
.card h3 {
  margin: 0 0 8px;
  font-size: var(--h3);
}
.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: .96rem;
}
.card .linkrow {
  margin-top: 12px;
}
.card-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.linkrow a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
}
.linkrow a:hover {
  background: rgba(255, 255, 255, .06);
}
/* =========================================================
   RESPONSIVE CARD MEDIA
   ========================================================= */

/* reset fixed height */
.thumb {
  height: auto;
  position: relative;
  overflow: hidden;
}

/* image behavior */
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== 3 COLUMN SECTIONS ===== */

.grid.cols-3 .thumb {
  aspect-ratio: 16 / 9;
  min-height: 210px;
}

/* ===== 4 COLUMN SECTIONS ===== */

.grid.cols-4 .thumb {
  aspect-ratio: 16 / 10;
  min-height: 165px;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {

  .grid.cols-3 .thumb,
  .grid.cols-4 .thumb {
    min-height: 200px;
  }

}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 520px) {

  .grid.cols-3 .thumb,
  .grid.cols-4 .thumb {
    min-height: 230px;
  }

}
.card:hover .thumb img {
  transform: scale(1.05);
  transition: transform .6s ease;
}
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(0, 0, 0, .25);
  font-size: .82rem;
  color: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
}
.card > .badge + .card-pad {
  padding-top: 56px;
}
/* =========================
   LOGO CAROUSEL
   ========================= */
.logo-carousel {
  padding: 2rem 0;
  text-align: center;
}

.carousel-shell {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

/* Swiper alignment fixes */
.logo-carousel .swiper-wrapper {
  align-items: center;
}

.logo-carousel .swiper-slide {
  width: auto;
  flex-shrink: 0;
}

.logo-carousel .logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.logo-item img {
  max-height: 60px;
  width: auto;
  display: block;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.logo-item img:hover {
  opacity: 1;
}

/* Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 2rem;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
}

.swiper-button-prev {
  left: -30px;
}

.swiper-button-next {
  right: -30px;
}

@media (max-width: 767px) {
  .carousel-arrow {
    display: none;
  }
}


/* =========================================================
   WORK SLIDER
   ========================================================= */
.slider {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01));
}
.slides {
  display: flex;
  transition: transform .35s ease;
}
.slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  align-items: stretch;
}
.slide-media {
  min-height: 320px;
  background: rgba(255, 255, 255, .03); /* ✅ removed blue */
  position: relative;
}
.slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .92;
}
.slide-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.slide-body h3 {
  margin: 0;
  font-size: 1.35rem;
}
.slide-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .02);
}
.dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.dots button {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  border: 0;
  background: rgba(255, 255, 255, .25);
  cursor: pointer;
  padding: 0;
}
.dots button[aria-current="true"] {
  width: 22px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
/* =========================================================
   TESTIMONIALS
   ========================================================= */
.quote {
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, .86); /* ✅ removed blue tint */
}
.who {
  margin-top: 10px;
  color: var(--muted);
  font-size: .92rem;
}

/* =========================
   WORK MODAL
   ========================= */
.work-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;

  align-items: center;
  justify-content: center;
}

.work-modal.open {
  display: flex;
}

.work-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);

  opacity: 0;
  transition: opacity 0.25s ease;
}

.work-modal.open .work-modal-overlay {
  opacity: 1;
}

.work-modal-content {
  position: relative;
  z-index: 1;

  max-width: 900px;
  width: calc(100% - 2rem);
  max-height: 90vh;
  overflow: auto;

  background: var(--panel);
  box-shadow: var(--shadow);

  /* animation start */
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.work-modal.open .work-modal-content {
  opacity: 1;
  transform: translateY(0) scale(1);
}



.work-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background .15s ease;
}

.work-modal-close:hover {
  background: rgba(0, 0, 0, .8);
}

.work-modal-main {
  position: relative;
}

.work-modal-media img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
  background: #000;
}

.work-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(0, 0, 0, .55);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, transform .15s ease;
}

.work-modal-nav:hover {
  background: rgba(0, 0, 0, .8);
}

.work-modal-nav.prev { left: 12px; }
.work-modal-nav.next { right: 12px; }

.work-modal-nav[hidden] { display: none; }

.work-modal-thumbs {
  display: flex;
  gap: 8px;
  padding: 10px;
}

.modal-specs {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.modal-specs h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--text);
}
.modal-specs ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.5;
}
.modal-specs li {
  margin: 2px 0;
}
.modal-specs ul.sub {
  list-style-type: "\2013\00a0\00a0";
  margin: 4px 0 8px;
  padding-left: 18px;
}

.work-modal-thumbs img {
  height: 60px;
  cursor: pointer;
  opacity: 0.7;
}

.work-modal-thumbs img:hover {
  opacity: 1;
}

/* =========================================================
   LOCATIONS
   ========================================================= */
.loc {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.loc strong {
  display: block;
  margin-bottom: 6px;
}
.loc small {
  color: var(--muted);
  line-height: 1.35;
}
/* =========================================================
   FOOTER
   ========================================================= */
footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 44px;
  background: rgba(255, 255, 255, .02);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 18px;
}
.footer-grid h4 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: rgba(255, 255, 255, .90); /* ✅ removed blue tint */
}
.footer-grid a {
  display: block;
  text-decoration: none;
  padding: 6px 0;
  color: var(--muted);
}
.footer-grid a:hover {
  color: var(--text);
}
.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .86rem;
}
.footer-links a:hover {
  color: var(--text);
}
.fineprint {
  margin-top: 18px;
  color: rgba(255, 255, 255, .45);
  font-size: .86rem;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
/* =========================
   QUOTE FORM – LAYOUT
   ========================= */
.quote-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}
.quote-full {
  grid-column: 1 / -1;
}
.quote-col-heading {
  margin: 0 0 16px;
}
.field-group {
  margin-bottom: 16px;
}
.field-group:last-child {
  margin-bottom: 0;
}
.quote-form .grid {
  align-items: start;
}
.quote-form label {
  display: block;
  margin: 0 0 6px;
}
/* force form controls to fill their grid cell */
.quote-form input, .quote-form select, .quote-form textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.quote-form textarea {
  resize: vertical;
  min-height: 180px;
}
@media (max-width: 768px) {
  .quote-form-layout {
    grid-template-columns: 1fr;
  }
  .quote-full {
    grid-column: 1;
  }
}
/* =========================
   FORMS: SELECT (FIXED)
   ========================= */
.quote-form select {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 14px 46px 14px 16px;
  border-radius: 18px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, .12);
  outline: none;
  cursor: pointer;
  /* ✅ NEVER use shorthand background here (prevents losing sub-properties) */
  background-color: rgba(255, 255, 255, .03);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 10l5 5 5-5' stroke='%23fdba22' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat; /* ✅ key */
  background-position: 0 0, right 14px center; /* ✅ key */
  background-size: 100% 100%, 18px 18px; /* ✅ key */
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .06), 0 12px 34px rgba(0, 0, 0, .35);
}
.quote-form select:hover {
  border-color: rgba(255, 255, 255, .18);
  background-color: rgba(255, 255, 255, .04);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 10l5 5 5-5' stroke='%23fdba22' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  /* ✅ keep repeat/pos/size inherited from base rule */
}
.quote-form select:focus, .quote-form select:focus-visible {
  border-color: rgba(255, 137, 0, .55);
  box-shadow:
    0 0 0 4px rgba(255, 137, 0, .16), inset 0 1px 0 rgba(255, 255, 255, .06), 0 12px 34px rgba(0, 0, 0, .35);
}
.quote-form select option {
  background: #0b0d12;
  color: #fff;
}
/* =========================
   FORMS: CHECKBOX (FIXED)
   ========================= */
/* Row layout */
.quote-form .checkrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}
/* Label */
.quote-form .checkrow label {
  margin: 0;
  color: var(--muted);
  line-height: 1.25;
  cursor: pointer;
  user-select: none;
}
/* Hide native checkbox visuals but keep it accessible */
.quote-form .checkrow input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin: 0;
  padding: 0;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .04);
  display: inline-grid;
  place-content: center;
  cursor: pointer;
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .06), 0 10px 26px rgba(0, 0, 0, .30);
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease, transform .1s ease;
}
/* Hover */
.quote-form .checkrow input[type="checkbox"]:hover {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .06);
}
/* Checked state */
.quote-form .checkrow input[type="checkbox"]:checked {
  border-color: rgba(255, 137, 0, .70);
  background: linear-gradient(180deg, var(--accent2), var(--accent));
  box-shadow:
    0 0 0 4px rgba(255, 137, 0, .14), inset 0 1px 0 rgba(255, 255, 255, .22), 0 12px 30px rgba(0, 0, 0, .34);
}
/* Crisp checkmark (no fonts, no emojis) */
.quote-form .checkrow input[type="checkbox"]::before {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #0b0d12;
  border-bottom: 2px solid #0b0d12;
  transform: rotate(-45deg) scale(0);
  transform-origin: center;
  transition: transform .12s ease;
}
.quote-form .checkrow input[type="checkbox"]:checked::before {
  transform: rotate(-45deg) scale(1);
}
/* Keyboard focus */
.quote-form .checkrow input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(255, 137, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .08), 0 12px 30px rgba(0, 0, 0, .34);
}
/* Disabled */
.quote-form .checkrow input[type="checkbox"]:disabled {
  opacity: .55;
  cursor: not-allowed;
}
/* Optional: make the whole row clickable without JS */
.quote-form .checkrow label {
  padding: 2px 0;
}
/* =========================
   DATE INPUT – FORCE WHITE ICON (CHROME/EDGE)
   ========================= */
/* Hide the native icon */
.quote-form input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0 !important;
  cursor: pointer;
}
/* Wrap date input in .date-wrap and add a custom icon */
.date-wrap {
  position: relative;
}
.date-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 2v2M17 2v2M3 9h18M6 6h12a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V9a3 3 0 0 1 3-3Z' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
  opacity: .9;
}
#startDate, #endDate {
  color-scheme: dark;
}
/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (min-width: 980px) {
  .search {
    display: flex;
  }
}
@media (max-width: 980px) {
  .brand {
    min-width: unset;
  }
  .nav {
    display: none;
  }
  .burger {
    display: inline-flex;
  }
  .hero-content {
    grid-template-columns: 1fr;
    min-height: 480px;
  }
  .slide {
    grid-template-columns: 1fr;
  }
  .grid.cols-4 {
    grid-template-columns: 1fr 1fr;
  }
  .grid.cols-3 {
    grid-template-columns: 1fr;
  }
  .grid.cols-2 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .wordmark {
    height: 30px;
    max-width: 200px;
  }
  /* Your full-width title hero layout stacking */
  .hero-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .hero-layout .hero-title {
    grid-column: 1;
  }
  .hero-layout .hero-left {
    grid-column: 1;
  }
  .hero-layout .hero-right {
    grid-column: 1;
    justify-content: flex-start;
  }
  .hero-quick {
    width: 100%;
  }
}
@media (max-width: 520px) {
  .grid.cols-4 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
/* Mobile Request a Quote adjustment */
@media (max-width: 768px) {
  .actions .btn.primary {
    white-space: normal; /* allow text to wrap */
    text-align: center; /* center the text */
    padding: 10px 14px; /* larger tap area */
    font-size: 1rem; /* slightly larger text on mobile */
  }
  .actions .btn.primary span {
    display: block; /* force wrapping if needed */
  }
}
@media (max-width: 422px) {
  .actions .btn.primary {
    display: none;
  }
}
/* Hide drawer by default on desktop */
.drawer {
  display: none !important;
}
@media (min-width: 993px) {
  .mobile-drawer {
    display: none !important;
  }
}

/* =========================================================
   MOBILE DRAWER (FINAL)
   - Scrollable menu area
   - Sticky footer CTA
   - Connected accordion header + body
   - Matches desktop mega style
   ========================================================= */

/* Prevent background scroll when the mobile drawer is open */
body.no-scroll {
  overflow: hidden;
  height: 100dvh;
  touch-action: none;
}

.mobile-drawer{
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 92vw);
  height: 100dvh;
  max-height: 100dvh;

  background: rgba(9, 10, 12, 0.92);
  backdrop-filter: blur(12px);
  border-left: 1px solid var(--line);
  box-shadow: -30px 0 70px rgba(0,0,0,.55);

  transform: translateX(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform .25s ease, opacity .25s ease;
  z-index: 9999;

  overflow-y: auto;
  -webkit-overflow-scrolling: touch;

  display: block;
}

.mobile-drawer.open{
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-header{
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
}

.mobile-nav{
  padding: 14px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav a,
.mobile-accordion-body a{
  text-decoration: none !important;
  color: var(--text);
}

/* accordion header */
.mobile-accordion-header{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;

  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;

  transition:
    background .15s ease,
    transform .15s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

.mobile-accordion-header:hover,
.mobile-accordion-header:focus-visible{
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 6px 2px rgba(255, 137, 0, 0.28);
  outline: none;
}

.mobile-accordion-header:active{
  transform: translateY(1px);
}

.mobile-accordion-header::after{
  content: "▾";
  opacity: 0.75;
  transition: transform .2s ease;
}

.mobile-accordion-header.active::after{
  transform: rotate(180deg);
}

/* visually connect open header + body */
.mobile-accordion-header.active{
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
}

/* accordion body */
.mobile-accordion-body{
  margin-top: -12px; /* cancel the .mobile-nav flex gap so body sits flush under header */
  border: 1px solid transparent;
  border-top: 0;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;

  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  padding: 0; /* padding is NOT transitioned — must be instant so scrollHeight reads correctly */

  display: grid;
  gap: 6px;

  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease, border-color .25s ease;
}

.mobile-accordion-body.open{
  border-color: var(--line);
  padding: 8px;
}

.mobile-accordion-body a{
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: .95rem;
}

.mobile-accordion-body a:hover,
.mobile-accordion-body a:focus-visible{
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .06);
  outline: none;
}

/* static links */
.mobile-nav > a{
  display: block;
  padding: 12px 14px;
  border-radius: 12px;

  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);

  color: var(--text);
  font: inherit;
  font-weight: 700;

  transition:
    background .15s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

.mobile-nav > a:hover,
.mobile-nav > a:focus-visible{
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 6px 2px rgba(255, 137, 0, 0.28);
  outline: none;
}

.mobile-drawer-footer{
  padding: 16px 20px 20px;
  background: rgba(9,10,12,0.92);
  border-top: 1px solid var(--line);
}
.mobile-drawer-footer .btn{
  width: 100%;
  justify-content: center;
}
/* =========================================================
   FORMS
   ========================================================= */
input, textarea {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  color: var(--text);
  outline: none;
  font-size: .95rem;
}
textarea {
  resize: vertical;
}
#formMsg {
  color: var(--muted);
  font-size: .92rem;
}