/* =========================================================
   Profound Site Styles
   (Organized formatting only — NO rules removed)
   ========================================================= */

/* ==========================
   Profound — Base + Tokens
   ========================== */

:root{
  --bg: #070A10;
  --surface: rgba(13,27,42,0.55);
  --surface-2: rgba(13,27,42,0.70);
  --border: rgba(255,255,255,0.12);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --gold: #D4AF37;
  --gold-2: #C9A227;
  --shadow: 0 18px 40px rgba(0,0,0,0.35);

  --radius: 18px;
  --radius-lg: 22px;

  --container: 1160px;

  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-serif: "Cinzel", ui-serif, Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html:focus-within{ scroll-behavior: smooth; }

body{
  margin: 0;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button{ font: inherit; }

/* Ensure the HTML `hidden` attribute ALWAYS wins.
   Some component classes (e.g. .overlay.curtain) set display/grid which can
   accidentally override the browser's default [hidden]{display:none !important} rule. */
[hidden]{
  display: none !important;
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce){
  html:focus-within{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ==========================
   Utilities
   ========================== */

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

.muted{ color: var(--muted); }

.skip-link{
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  transform: translateY(-200%);
  background: #111827;
  color: white;
  padding: .75rem 1rem;
  border-radius: 999px;
  z-index: 9999;
}
.skip-link:focus{ transform: translateY(0); outline: 2px solid var(--gold); outline-offset: 2px; }

/* Focus visibility */
:focus-visible{
  outline: 2px solid rgba(215,178,74,0.9);
  outline-offset: 3px;
  border-radius: 10px;
}

/* ==========================
   Header
   ========================== */

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(7,10,16,0.30), rgba(7,10,16,0.10));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.header__inner{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 180px;
}

.brand__mark{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(215,178,74,0.5);
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(215,178,74,0.20), rgba(0,0,0,0));
}
.brand__crest{
  font-family: var(--font-serif);
  font-weight: 600;
  color: rgba(215,178,74,0.95);
  letter-spacing: 0.06em;
}

.brand__text{
  font-family: var(--font-serif);
  letter-spacing: 0.22em;
  font-size: 1.05rem;
}

.nav{
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav--desktop{
  justify-self: center;
}

.nav__link{
  color: rgba(255,255,255,0.86);
  font-size: clamp(0.78rem, 0.85vw, 0.88rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 0.1rem;
  border-radius: 10px;
  transition: color 160ms ease, background 160ms ease;
}
.nav__link:hover{ color: var(--gold); }

.nav__link[aria-current="page"]{
  color: var(--gold);
}

.nav__link--button{
  background: transparent;
  border: 0;
  cursor: pointer;
}

.chev{ opacity: 0.85;
  font-size: 1.15em;
  transform: translateY(1px);
}

.header__actions{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.65rem 1.05rem;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease, background 160ms ease, border-color 160ms ease;
  user-select: none;
}

.btn--primary{
  background: linear-gradient(180deg, rgba(215,178,74,0.95), rgba(202,163,58,0.95));
  color: #111;
  font-weight: 700;
}
.btn--primary:hover{ filter: brightness(1.05); transform: translateY(-1px); }
.btn--full{ width: 100%; margin-top: 0.75rem; }

.icon-btn{
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  cursor: pointer;
}

.icon-btn__bars{
  width: 18px;
  height: 12px;
  position: relative;
}
.icon-btn__bars::before,
.icon-btn__bars::after,
.icon-btn__bars{
  display: block;
  content: "";
  background: rgba(255,255,255,0.9);
  height: 2px;
  border-radius: 999px;
}
.icon-btn__bars::before{ position: absolute; left: 0; right: 0; top: 0; }
.icon-btn__bars{ position: absolute; top: 50%; transform: translateY(-50%); left: 50%; translate: -50% 0; width: 18px; }
.icon-btn__bars::after{ position: absolute; left: 0; right: 0; bottom: 0; }

.icon-btn__x{
  width: 18px;
  height: 18px;
  position: relative;
}
.icon-btn__x::before,
.icon-btn__x::after{
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 999px;
  transform-origin: center;
}
.icon-btn__x::before{ transform: translate(-50%,-50%) rotate(45deg); }
.icon-btn__x::after{ transform: translate(-50%,-50%) rotate(-45deg); }

/* Dropdown */
.dropdown{ position: relative; }
.dropdown__menu{
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 50%;
  translate: -50% 0;
  min-width: 240px;
  background: rgba(13, 18, 28, 0.92);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 0.45rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}
.dropdown[data-open="true"] .dropdown__menu{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown__menu::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px; /* hover bridge to prevent accidental close */
}
.dropdown__item{
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  color: rgba(255,255,255,0.86);
  transition: background 160ms ease, color 160ms ease;
}
.dropdown__item:hover{
  background: rgba(255,255,255,0.06);
  color: var(--gold);
}

/* Hide hamburger on desktop */
.nav-toggle{ display: none; }

/* ==========================
   Hero (Parallax)
   ========================== */

.hero{
  position: relative;
  min-height: clamp(560px, 82vh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(10,14,22,0.55) 0%, rgba(10,14,22,0.35) 45%, rgba(10,14,22,0.15) 100%),
    url("../images/pexels-pixabay-261093.jpg");
background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: background-position;
}


.hero__grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.25rem, 4vw, 3.25rem);
  padding: clamp(2.2rem, 6vw, 4.25rem) 0;
}

.hero__title{
  margin: 0 0 0.85rem;
  font-size: clamp(2.15rem, 4.8vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: rgba(215,178,74,0.95);
  font-weight: 800;
}
.hero__title-line{ display: block; }

.hero__subtitle{
  margin: 0 0 1.4rem;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,0.88);
  font-weight: 600;
}

.checklist{
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.95rem;
  max-width: 520px;
}
.checklist__item{
  position: relative;
  padding-left: 2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
}
.checklist__item::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #35c759;
  font-weight: 900;
}

/* Right cards */
.hero__right{
  display: grid;
  gap: 1.25rem;
  align-content: center;
  justify-items: end;
}

.card-link{
  width: min(520px, 100%);
  background: rgba(255,255,255,0.92);
  color: #111;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 34px rgba(0,0,0,0.28);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.card-link:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.32);
}
.card-link__inner{
  padding: 2.1rem 2.2rem;
  text-align: center;
}
.card-link__title{
  margin: 0;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-weight: 500;
}
.card-link__cta{
  display: inline-block;
  margin-top: 0.55rem;
  color: var(--gold-2);
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* ==========================
   Overlays (Mobile menu + Contact)
   ========================== */

.overlay,
.contact{
  position: fixed;
  inset: 0;
  z-index: 60;
  /* Closed overlays should never block clicks */
  pointer-events: none;
}

.overlay[data-state="open"],
.contact[data-state="open"]{
  pointer-events: auto;
}

.overlay__backdrop,
.contact__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
}

.overlay__panel{
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 92vw);
  height: 100%;
  background: var(--panel-bg);
  border-left: 1px solid rgba(255,255,255,0.12);
  transform: translateX(100%);
  transition: transform 220ms ease;
  padding: 1rem;
  display: grid;
  grid-template-rows: auto 1fr;
}

.overlay[data-state="open"] .overlay__panel{
  transform: translateX(0);
}

.overlay__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.25rem 1rem;
}
.overlay__title{
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
}

.nav--mobile{
  display: grid;
  gap: 0.25rem;
  padding-top: 0.25rem;
}

.mobile-locations{
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.nav__link--summary{
  list-style: none;
  cursor: pointer;
  padding: 0.75rem 0.85rem;
}
.mobile-locations__items{
  padding: 0.25rem 0.25rem 0.75rem;
  display: grid;
  gap: 0.25rem;
}

/* Contact slide-out: full-screen overlay, panel slides in from right */
.contact__panel{
  position: absolute;
  inset: 0 0 0 auto;
  width: 100%;
  max-width: 100%;
  background: var(--panel-bg);
  transform: translateX(100%);
  transition: transform 260ms ease;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 1.25rem;
}
.contact[data-state="open"] .contact__panel{
  transform: translateX(0);
}

.contact__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  padding-bottom: 1rem;
}
.contact__title{
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact__body{
  padding-top: 1.25rem;
}

/* ==========================
   Pages
   ========================== */

.page{
  padding: 4rem 0 5rem;
}
.page__title{
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.page__lead{
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

/* ==========================
   Footer
   ========================== */

.site-footer{
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);
}
.footer__inner{
  padding: 1.5rem 0;
  font-size: 0.92rem;
}

/* ==========================
   Responsive
   ========================== */

@media (max-width: 1180px){
  .nav--desktop{ display: none; }
  .header__actions .btn{ display: none; }
  .nav-toggle{ display: inline-grid; }

  .brand{ min-width: auto; }
  .header__inner{ justify-content: space-between; }

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

  .hero__right{
    justify-items: stretch;
  }

  .card-link{ width: 100%; }
}

@media (max-width: 560px){
  .brand__text{ font-size: 0.95rem; letter-spacing: 0.18em; }
  .btn--primary{ padding: 0.62rem 0.95rem; }
  .hero__subtitle{ font-weight: 600; }
  .card-link__inner{ padding: 1.6rem 1.25rem; }
}
/* ==========================
   Brand Logo
   ========================== */
.brand{
  min-width: unset;
}
.brand__logo{
  display: block;
  height: 64px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 560px){
  .brand__logo{ height: 46px; }
}
/* ==========================
   Footer (Screenshot Match)
   ========================== */
.site-footer{
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2.25rem, 5vw, 3.25rem) 0;
}

.footer__brand{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer__logo{
  width: min(520px, 100%);
  height: auto;
  object-fit: contain;
}

.footer__contact{
  justify-self: end;
  text-align: left;
  max-width: 560px;
}

.footer__title{
  margin: 0 0 1rem;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 800;
  color: var(--gold);
}

.footer__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.footer__item{
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  color: rgba(255,255,255,0.88);
}

.footer__label{
  font-weight: 800;
}

.footer__link{
  color: rgba(255,255,255,0.88);
  text-decoration: none;
}
.footer__link:hover{
  color: var(--gold);
}

.footer__sep{
  opacity: 0.7;
  margin: 0 0.15rem;
}

.footer__text{
  color: rgba(255,255,255,0.88);
}

.footer__bottom{
  border-top: 1px solid rgba(255,255,255,0.10);
}

.footer__bottom-inner{
  padding: 1rem 0;
  display: flex;
  justify-content: center;
}

.footer__copyright{
  margin: 0;
  color: rgba(255,255,255,0.70);
  font-size: 0.9rem;
  text-align: center;
}

/* Stack vertically on small screens */
@media (max-width: 860px){
  .footer__grid{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__brand{
    justify-content: center;
  }
  .footer__contact{
    justify-self: center;
  }
  .footer__item{
    justify-content: center;
  }
}

/* ==========================
   Hamburger Icon (SVG)
   ========================== */
.nav-toggle .icon-btn__bars{ display:none; }
.nav-toggle__icon{
  width: 20px;
  height: 20px;
  display:block;
}
/* ==========================
   Card Hover FX (Spotlight)
   ========================== */
.card-link{
  position: relative;
  overflow: hidden;
}
.card-link::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(260px 260px at var(--mx, 50%) var(--my, 40%), rgba(212,175,55,0.22), rgba(212,175,55,0.00) 60%);
  opacity: 0;
  transition: opacity 160ms ease;
  pointer-events:none;
}
.card-link::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(212,175,55,0.18) 45%, rgba(255,255,255,0) 70%);
  transform: translateX(-120%);
  opacity: 0;
  pointer-events:none;
}
.card-link:hover::before{ opacity: 1; }
.card-link:hover::after{
  opacity: 0.9;
  animation: cardShimmer 0.9s ease;
}
@keyframes cardShimmer{
  from{ transform: translateX(-120%); }
  to{ transform: translateX(120%); }
}

@media (max-width: 1180px){
  .header__inner{ grid-template-columns: auto auto; justify-content: space-between; }
}
/* ==========================
   Cursor Canvas FX
   ========================== */
.cursor-canvas{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 90;
}
@media (prefers-reduced-motion: reduce){
  .cursor-canvas{ display:none; }
}

/* ==========================
   Curtain Overlays (Slide from right)
   ========================== */
.overlay.curtain{
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  /* Prevent an off-canvas curtain from blocking clicks when it's not open */
  pointer-events: none;
}

.overlay.curtain[data-state="open"]{
  pointer-events: auto;
}

.overlay__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 260ms ease;
}

.curtain__panel{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(1100px, 100%);
  background: rgba(13,27,42,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-left: 1px solid rgba(255,255,255,0.10);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  overflow: auto;
}

.overlay[data-state="open"] .overlay__backdrop{ opacity: 1; }
.overlay[data-state="open"] .curtain__panel{ transform: translateX(0); }

.overlay[data-state="closed"] .overlay__backdrop{ opacity: 0; }
.overlay[data-state="closed"] .curtain__panel{ transform: translateX(100%); }

.curtain__close{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,0.30);
  color: var(--gold);
  font-size: 28px;
  cursor: pointer;
}

.curtain__content{
  padding: clamp(2.5rem, 4vw, 3.25rem);
  padding-top: clamp(3.5rem, 5vw, 4.25rem);
}

/* Contact form layout (match screenshot) */
.analysis-solutions-decision-section{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  color: rgba(255,255,255,0.90);
}

.left-title{
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 800;
}

.large-paragraph{
  max-width: 56ch;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
}

.sub-title{
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
}

.right-side h2{
  margin: 0 0 1rem;
  font-size: 1.6rem;
  font-weight: 800;
}

.contact-form{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}

.contact-form h2{ grid-column: 1 / -1; }

.contact-form textarea{ grid-column: 1 / -1; resize: vertical; min-height: 160px; }

.contact-form button{ grid-column: 1 / -1; justify-self: start; }

.contact-form input,
.contact-form textarea,
.contact-form select{
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding: 0.75rem 0.1rem;
  color: rgba(255,255,255,0.92);
  outline: none;
}

/* Selects need explicit styling (Safari/macOS defaults can force a white UI) */
.contact-form select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2rem; /* room for custom arrow */

  /* subtle gold chevron */
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 55%,
    calc(100% - 12px) 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

/* Keep option list readable when opened */
.contact-form select option{
  background: #0b0b0b;
  color: rgba(255,255,255,0.92);
}

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

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{
  border-bottom-color: var(--gold);
}

/* Stack on small screens */
@media (max-width: 920px){
  .analysis-solutions-decision-section{
    grid-template-columns: 1fr;
  }
  .contact-form{
    grid-template-columns: 1fr;
  }
}


/* ==========================
   Contact Curtain Layout (Overview Left / Form Right)
   ========================== */

.sr-only{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.contact__body{
  overflow: auto;
}

.cta-grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 0.75rem 0 0;
}

.cta-left-title{
  margin: 0 0 0.75rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  letter-spacing: 0.02em;
  color: var(--gold);
}

.cta-left-lead{
  margin: 0 0 1.5rem;
  color: rgba(255,255,255,0.86);
  max-width: 60ch;
}

.cta-left-subtitle{
  margin: 1.25rem 0 0.75rem;
  font-size: 1.1rem;
}

.cta-right{
  padding-top: 0.25rem;
}

.cta-form-title{
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Make sure the form reads well in the curtain */
.contact-form--cta{
  margin-top: 0.25rem;
}

/* Gold line on focus is already handled by your existing:
   .contact-form input:focus { border-bottom-color: var(--gold); }
   This ensures it's very visible even on some browsers. */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{
  outline: none;
  box-shadow: 0 1px 0 0 var(--gold);
}

/* Mobile: stack overview on top, form below */
@media (max-width: 920px){
  .cta-grid{
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}


/* ==========================
   Contact Curtain Bottom Strip
   ========================== */
.cta-bottom{
  margin-top: 2.25rem;
  padding-top: 0.25rem;
}

.cta-bottom__rule{
  height: 1px;
  background: rgba(255,255,255,0.10);
  position: relative;
}

.cta-bottom__rule::after{
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  height: 2px;
  width: 92px;
  background: var(--gold);
  border-radius: 999px;
  opacity: 0.9;
}

.cta-bottom__inner{
  padding-top: 1.25rem;
}

.cta-bottom__lead{
  margin: 0 0 1rem;
  color: rgba(255,255,255,0.86);
}

.cta-bottom__cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 0.9rem;
}

.cta-card{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px 14px 12px;
  backdrop-filter: blur(8px);
}

.cta-card__label{
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: 0.4rem;
}

.cta-card__value{
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.cta-card__value:hover{
  color: var(--gold);
  text-decoration: none;
}

.cta-card__hint{
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.70);
}

.cta-bottom__fineprint{
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  max-width: 85ch;
}

@media (max-width: 920px){
  .cta-bottom__cards{
    grid-template-columns: 1fr;
  }
}


/* ==========================
   Interaction Polish (Cursor + Cards)
   ========================== */

/* Remove sliding gold underline / sweep animations (override) */
.card-link::after,
.nav-link::after,
a.link-sweep::after{
  content: none !important;
  animation: none !important;
}

/* If any links used background-size sweep, neutralize it on hover */
.card-link,
.nav-link{
  background-image: none !important;
}

/* Global cursor spotlight */
:root{
  --mx: 50vw;
  --my: 20vh;
}

body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(420px 420px at var(--mx) var(--my),
    rgba(214,170,74,0.12),
    transparent 60%);
  transition: opacity .18s ease;
}

body > *{
  position: relative;
  z-index: 1;
}

/* Elegant, playful CTA pill for card links */
.card-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.card-cta:hover{
  transform: translateY(-1px);
  border-color: rgba(214,170,74,0.55);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  body::before{ display:none; }
}

/* ==========================
   Typography System
   ========================== */
:root{
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-serif: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
}

body{
  font-family: var(--font-sans);
}

h1, h2, h3, .cta-left-title, .cta-form-title{
  font-family: var(--font-serif);
}

/* ==========================
   Theme: Black + Gold + Forest Green
   ========================== */
:root{
  --bg: #070707;
  --surface: rgba(255,255,255,0.04);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --gold: #D6AA4A;
  --green: #1F3D2B; /* forest */
  --green-2: #2A5A3F;
}

/* Subtle green depth in large dark areas */
body{
  background: radial-gradient(900px 600px at 15% 10%, rgba(31,61,43,0.22), transparent 60%),
              radial-gradient(700px 500px at 85% 0%, rgba(214,170,74,0.12), transparent 60%),
              var(--bg);
  color: var(--text);
}

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


/* ==========================
   Center Service Cards
   ========================== */
.cards,
.cards-grid,
.services-cards,
.service-cards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  justify-items: center;
  text-align: center;
}

.cards > *,
.cards-grid > *,
.services-cards > *,
.service-cards > *{
  max-width: 360px;
}

/* ==========================
   Card CTA – Elegant (no pill)
   ========================== */
.card-cta{
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  border-radius: 0;
  padding: 8px 0;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.card-cta::before{
  content: "";
  width: 0;
  height: 3px;
  background: var(--green);
  transition: width .25s ease;
}

.card-cta:hover::before{
  width: 18px;
}

/* ==========================
   Green Accent Enhancements
   ========================== */

/* Accent dividers */
hr, .divider{
  border-color: var(--green);
}

/* Card hover edge */
.cards > *:hover,
.services-cards > *:hover{
  box-shadow: inset 0 0 0 1px rgba(31,61,43,0.6);
}

/* Secondary highlights */
::selection{
  background: rgba(31,61,43,0.8);
  color: #fff;
}

/* Buttons secondary */
.btn--secondary{
  background: linear-gradient(180deg, rgba(31,61,43,0.85), rgba(31,61,43,0.65));
  border: 1px solid rgba(31,61,43,0.9);
  color: #fff;
}


/* ==========================
   Header/Hero Seam Fix
   Removes the gap under the fixed header by pulling the hero up
   while keeping hero content safely below the header.
   ========================== */
:root{
  --header-height: 84px; /* adjust if needed */
}

/* Pull hero background up under the header */
.hero,
.hero,
.hero-section,
.home-hero,
.masthead{
  margin-top: calc(var(--header-height) * -1);
  padding-top: var(--header-height);
}

/* Make sure hero inner content has breathing room */
.hero .hero__grid,
.hero .hero-content,
.hero .hero-inner{
  padding-top: 1.25rem;
}


/* ==========================
   Hero Height System (Responsive)
   ========================== */
:root{
  --hero-vh: 90; /* desktop target */
}

.hero.hero--home,
.hero--home{
  height: calc(var(--hero-vh) * 1vh);
  height: calc(var(--hero-vh) * 1svh);
  min-height: 520px;
  max-height: 980px;
}

@media (max-width: 900px){
  :root{
    --hero-vh: 78;
  }

  .hero.hero--home,
  .hero--home{
    height: auto;
    min-height: calc(var(--hero-vh) * 1svh);
    padding-bottom: 2rem;
  }
}


/* ==========================
   FORCE Service Card Opacity (Hero Cards)
   ========================== */
/*
  These cards were translucent due to backdrop-filter
  and overlay layers. This block intentionally overrides them.
*/

.hero .card,
.hero .service-card,
.hero .card-link,
.hero .hero-card{
  background-color: rgba(0, 0, 0, 0.55) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.hero .card::before,
.hero .service-card::before,
.hero .card-link::before,
.hero .hero-card::before{
  content: none !important;
}



/* ==========================
   Services Grid Section (Post-Hero)
   ========================== */
.services-grid-section{
  padding: 4.5rem 1.25rem 5rem;
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(31,61,43,0.20), transparent 65%),
    radial-gradient(700px 450px at 90% 20%, rgba(214,170,74,0.10), transparent 65%);
}

.services-grid-inner{
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow{
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(214,170,74,0.9);
  margin-bottom: 0.5rem;
}

.section-title{
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  line-height: 1.12;
  margin: 0.25rem auto 0.65rem;
  color: rgba(255,255,255,0.95);
  max-width: 900px;
}

.section-subtitle{
  color: rgba(255,255,255,0.72);
  max-width: 760px;
  margin: 0 auto 2.4rem;
  font-size: 1.02rem;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.service-tile{
  text-align: left;
  border-radius: 18px;
  background: rgba(0,0,0,0.52);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 1.35rem 1.35rem 1.2rem;
  box-shadow: 0 14px 40px rgba(0,0,0,0.28);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.service-tile:hover{
  transform: translateY(-2px);
  border-color: rgba(214,170,74,0.34);
  box-shadow: 0 18px 55px rgba(0,0,0,0.34);
}

.tile-icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31,61,43,0.35);
  border: 1px solid rgba(31,61,43,0.55);
  color: rgba(214,170,74,0.95);
  margin-bottom: 1.05rem;
}

.tile-icon svg{
  width: 22px;
  height: 22px;
}

.tile-title{
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
  color: rgba(255,255,255,0.94);
}

.tile-desc{
  margin: 0 0 1.1rem;
  color: rgba(255,255,255,0.70);
  font-size: 0.95rem;
  line-height: 1.55;
  min-height: 2.9em;
}

.tile-cta{
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  color: rgba(214,170,74,0.95);
  text-decoration: none;
  border-bottom: 1px solid rgba(214,170,74,0.45);
  padding-bottom: 0.18rem;
  transition: color .18s ease, border-color .18s ease, transform .18s ease;
}

.tile-cta:hover{
  color: rgba(255,255,255,0.95);
  border-bottom-color: rgba(255,255,255,0.45);
  transform: translateX(1px);
}

.services-grid-cta-row{
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  align-items: center;
  margin-top: 2.1rem;
  flex-wrap: wrap;
}

.btn{
  border-radius: 999px;
  padding: 0.8rem 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}

.btn--primary{
  background: rgba(214,170,74,0.92);
  color: #0b0b0b;
  border-color: rgba(214,170,74,0.95);
  box-shadow: 0 12px 36px rgba(214,170,74,0.18);
}

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

.btn--secondary{
  background: rgba(0,0,0,0.35);
  color: rgba(255,255,255,0.92);
  border-color: rgba(31,61,43,0.55);
}

.btn--secondary:hover{
  border-color: rgba(214,170,74,0.45);
}

/* Responsiveness */
@media (max-width: 980px){
  .services-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px){
  .services-grid-section{
    padding: 3.8rem 1rem 4.2rem;
  }
  .services-grid{
    grid-template-columns: 1fr; /* stack 1 per row */
  }
  .service-tile{
    text-align: left;
  }
  .btn{
    width: 100%;
    min-width: 0;
  }
}




/* ==========================
   Why Profound Section
   ========================== */
.why-profound{
  padding: 4.8rem 1.25rem 5.5rem;
  background:
    radial-gradient(900px 520px at 18% 0%, rgba(214,170,74,0.09), transparent 66%),
    radial-gradient(900px 520px at 86% 15%, rgba(31,61,43,0.18), transparent 66%);
}

.why-inner{
  max-width: 1200px;
  margin: 0 auto;
}

.why-header{
  display: grid;
  gap: 0.65rem;
  max-width: 820px;
}

.why-title{
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.1;
  margin: 0;
  color: rgba(214,170,74,0.95);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.why-seal{
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(214,170,74,0.85);
  border-radius: 999px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(214,170,74,0.28);
  transition: transform .35s ease, color .25s ease, border-color .25s ease;
}

.why-title:hover .why-seal{
  transform: rotate(360deg);
  border-color: rgba(31,61,43,0.55);
  color: rgba(31,61,43,0.95);
}

@media (prefers-reduced-motion: reduce){
  .why-title:hover .why-seal{ transform: none; }
}

.why-subtitle{
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  line-height: 1.55;
}

.why-grid{
  margin-top: 2.4rem;
  display: grid;
  gap: 1.35rem;
}

.why-card{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.35rem;
  align-items: center;
  border-radius: 22px;
  padding: 1.6rem;
  background: rgba(0,0,0,0.50);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 60px rgba(0,0,0,0.30);
}

.why-card--reverse{
  grid-template-columns: 0.9fr 1.1fr;
}

.why-card--reverse .why-copy{ order: 2; }
.why-card--reverse .why-media{ order: 1; }

.why-eyebrow{
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(31,61,43,0.9);
  margin: 0 0 0.55rem;
}

.why-h3{
  margin: 0 0 0.55rem;
  color: rgba(255,255,255,0.95);
  font-size: 1.35rem;
  line-height: 1.25;
}

.why-p{
  margin: 0 0 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

.why-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.why-list li{
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 0.6rem;
  align-items: start;
  color: rgba(255,255,255,0.80);
}

.why-list li::before{
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.35rem;
  border-radius: 3px;
  background: rgba(31,61,43,0.85);
  box-shadow: 0 0 0 3px rgba(31,61,43,0.18);
}

.why-media{
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);
}

.why-media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/10;
  filter: saturate(1.02) contrast(1.02);
}

@media (max-width: 900px){
  .why-card,
  .why-card--reverse{
    grid-template-columns: 1fr;
  }
  .why-card--reverse .why-copy,
  .why-card--reverse .why-media{
    order: initial;
  }
}

@media (max-width: 700px){
  .why-profound{ padding: 4rem 1rem 4.6rem; }
  .why-card{ padding: 1.25rem; }
  .why-title{ gap: 0.6rem; }
  .why-seal{ width: 40px; height: 40px; }
}

/* ==========================
   Why Profound Readability Tweaks
   ========================== */
.why-eyebrow{
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.20em;
  color: rgba(214,170,74,0.9);
}

/* ==========================
   Industries We Service
   ========================== */
.industries{
  padding: 4.8rem 1.25rem 5.6rem;
  background:
    radial-gradient(900px 520px at 12% 0%, rgba(31,61,43,0.22), transparent 66%),
    radial-gradient(900px 520px at 92% 20%, rgba(214,170,74,0.10), transparent 66%);
}

.industries-inner{
  max-width: 1200px;
  margin: 0 auto;
}

.industries-header{
  max-width: 900px;
  margin-bottom: 1.6rem;
}

.industries-title{
  font-family: var(--font-serif);
  color: rgba(214,170,74,0.95);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  margin: 0 0 0.55rem;
  letter-spacing: -0.01em;
}

.industries-subtitle{
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

.industries-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.industry-card{
  border-radius: 22px;
  overflow: hidden;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 60px rgba(0,0,0,0.30);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.industry-card:hover{
  transform: translateY(-2px);
  border-color: rgba(214,170,74,0.34);
  box-shadow: 0 22px 70px rgba(0,0,0,0.34);
}

.industry-media{
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.industry-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform .35s ease, filter .35s ease;
  filter: saturate(1.02) contrast(1.02);
}

.industry-card:hover .industry-media img{
  transform: scale(1.04);
  filter: saturate(1.06) contrast(1.04);
}

.industry-body{
  padding: 1.15rem 1.15rem 1.25rem;
}

.industry-toplink{
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: rgba(255,255,255,0.95);
}

.industry-name{
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.industry-arrow{
  color: rgba(214,170,74,0.95);
  font-size: 1.25rem;
  transform: translateY(-1px);
}

.industry-desc{
  margin: 0.45rem 0 0.85rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.55;
  font-size: 0.98rem;
}

.industry-points{
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
}

.industry-points li{
  margin: 0.22rem 0;
}

@media (max-width: 980px){
  .industries-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px){
  .industries{ padding: 4.1rem 1rem 4.8rem; }
  .industries-grid{
    grid-template-columns: 1fr;
  }
}

/* ==========================
   Coverage Area (Premium)
   ========================== */
.coverage-premium{
  padding: 5.6rem 1.25rem 5.4rem;
  background:
    radial-gradient(900px 520px at 14% 0%, rgba(214,170,74,0.08), transparent 66%),
    radial-gradient(900px 520px at 88% 18%, rgba(31,61,43,0.22), transparent 66%);
}

.coverage-premium-inner{
  max-width: 1200px;
  margin: 0 auto;
}

.coverage-premium-header{
  text-align: center;
  margin-bottom: 2.2rem;
}

.coverage-premium-eyebrow{
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(214,170,74,0.92);
  margin: 0 0 0.6rem;
}

.coverage-premium-title{
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  margin: 0;
  color: rgba(255,255,255,0.96);
  letter-spacing: -0.01em;
}

.coverage-premium-divider{
  width: 120px;
  height: 2px;
  margin: 0.95rem auto 0;
  background: linear-gradient(90deg, rgba(214,170,74,0.72), rgba(46,175,102,0.55));
  border-radius: 999px;
}

.coverage-premium-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.coverage-premium-card{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 60px rgba(0,0,0,0.32);
  transform: translateY(0);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  min-height: 290px;
}

.coverage-premium-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  filter: saturate(1.02) contrast(1.03);
  transition: transform .55s ease, filter .55s ease;
}

.coverage-premium-card::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.10), rgba(0,0,0,0.78));
  pointer-events:none;
}

.coverage-premium-overlay{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.8rem 1.6rem 1.55rem;
  z-index: 2;
}

.coverage-premium-name{
  margin: 0 0 0.45rem;
  color: rgba(255,255,255,0.96);
  font-size: 1.45rem;
  letter-spacing: -0.01em;
}

.coverage-premium-cta{
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(214,170,74,0.95);
  text-shadow: 0 0 16px rgba(46,175,102,0.16);
}

.coverage-premium-card:hover{
  transform: translateY(-4px);
  border-color: rgba(214,170,74,0.34);
  box-shadow:
    0 22px 70px rgba(0,0,0,0.36),
    0 0 60px rgba(46,175,102,0.22);
}

.coverage-premium-card:hover img{
  transform: scale(1.08);
  filter: saturate(1.06) contrast(1.05);
}

.coverage-premium-card:hover .coverage-premium-cta{
  color: rgba(46,175,102,0.95);
}

@media (max-width: 980px){
  .coverage-premium-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px){
  .coverage-premium{ padding: 4.6rem 1rem 4.6rem; }
  .coverage-premium-grid{ grid-template-columns: 1fr; }
  .coverage-premium-card{ min-height: 240px; }
}

/* ==========================
   Services Page
   ========================== */
.services-hero{
  position: relative;
  padding: calc(var(--header-height, 84px) + 4.2rem) 1.25rem 4.2rem;
  overflow: hidden;
}

.services-hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.services-hero-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.02);
}

.services-hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.78), rgba(0,0,0,0.68)),
    radial-gradient(900px 520px at 18% 0%, rgba(214,170,74,0.12), transparent 66%),
    radial-gradient(900px 520px at 86% 15%, rgba(31,61,43,0.22), transparent 66%);
}

.services-hero-inner{
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.services-hero-title{
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.6vw, 3.25rem);
  margin: 0.45rem auto 0.75rem;
  color: rgba(255,255,255,0.96);
  letter-spacing: -0.01em;
  line-height: 1.08;
}

.services-hero-subtitle{
  max-width: 860px;
  margin: 0 auto 1.7rem;
  color: rgba(255,255,255,0.72);
  font-size: 1.06rem;
  line-height: 1.6;
}

.services-hero-cta{
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 700px){
  .services-hero{ padding: calc(var(--header-height, 84px) + 3.2rem) 1rem 3.6rem; }
  .services-hero-cta .btn{ width: 100%; }
}

/* ==========================
   Section Transitions (Polish)
   ========================== */
/* Add a soft “connector” between major sections so the page flows */
.services-grid-section,
.why-profound,
.industries,
.coverage-premium{
  position: relative;
}

.services-grid-section::before,
.why-profound::before,
.industries::before,
.coverage-premium::before{
  content:"";
  position:absolute;
  top:-1px;
  left:0;
  right:0;
  height: 56px;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.00),
      rgba(0,0,0,0.22),
      rgba(0,0,0,0.00)
    );
  pointer-events:none;
}

/* A subtle gold/green edge line that separates without feeling like a hard rule */
.services-grid-section::after,
.why-profound::after,
.industries::after,
.coverage-premium::after{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform: translateX(-50%);
  width: min(980px, 92vw);
  height: 1px;
  background: linear-gradient(90deg,
    rgba(214,170,74,0.00),
    rgba(214,170,74,0.28),
    rgba(46,175,102,0.20),
    rgba(214,170,74,0.00)
  );
  opacity: 0.9;
  pointer-events:none;
}

/* Slightly tighten “white space jumps” between stacked sections */
.services-grid-section{ padding-top: 4.2rem; }
.why-profound{ padding-top: 4.4rem; }
.industries{ padding-top: 4.4rem; }
.coverage-premium{ padding-top: 4.8rem; }

@media (max-width: 700px){
  .services-grid-section{ padding-top: 3.6rem; }
  .why-profound{ padding-top: 3.8rem; }
  .industries{ padding-top: 3.8rem; }
  .coverage-premium{ padding-top: 4.0rem; }
}

/* ==========================
   Services Hero Height System (Match Home Hero)
   ========================== */
:root{
  --services-hero-vh: 90; /* desktop target */
}

.services-hero{
  min-height: calc(var(--services-hero-vh) * 1vh);
  min-height: calc(var(--services-hero-vh) * 1svh);
  max-height: 980px;
  display: grid;
  align-items: center;
}

@media (max-width: 900px){
  :root{
    --services-hero-vh: 78;
  }
  .services-hero{
    height: auto;
    min-height: calc(var(--services-hero-vh) * 1svh);
    padding-bottom: 2rem; /* keeps it from feeling too tall on mobile */
  }
}

/* ==========================
   Services Hero — Header Seam Fix (Match Home)
   ========================== */
.services-hero{
  position: relative;
  margin-top: calc(var(--header-height) * -1);
  padding-top: var(--header-height);
}

/* Ensure the background truly fills behind the sticky header */
.services-hero .services-hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

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

/* Careers page hero background (keeps same hero sizing; swaps background media) */
.page-careers .services-hero-bg{
  background-image: url("../images/monu-careers.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Sustainability page hero background (reuses Careers hero system/media) */
.page-sustainability .services-hero-bg{
  background-image: url("../images/sustain.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Premium overlay for readability + theme */
.services-hero .services-hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,7,0.55) 0%, rgba(7,7,7,0.35) 40%, rgba(7,7,7,0.70) 100%),
    radial-gradient(900px 520px at 18% 0%, rgba(31,61,43,0.28), transparent 66%),
    radial-gradient(700px 450px at 90% 10%, rgba(214,170,74,0.18), transparent 65%);
}

/* Keep hero content above background */
.services-hero .services-hero-inner{
  position: relative;
  z-index: 1;
  padding-inline: 1rem;
  width: min(1200px, calc(100% - 2rem));
  margin-inline: auto;
  text-align: center;
}

/* Highlights list */
.services-hero-highlights{
  list-style: none;
  padding: 0;
  margin: 1.35rem auto 0;
  display: grid;
  gap: 0.55rem;
  max-width: 720px;
  color: rgba(255,255,255,0.86);
  font-weight: 650;
}

/* ==========================
   One-Stop Shop Section
   ========================== */
.one-stop{
  padding: 4.8rem 1.25rem 5.2rem;
  background:
    radial-gradient(900px 520px at 12% 0%, rgba(31,61,43,0.22), transparent 66%),
    radial-gradient(900px 520px at 92% 20%, rgba(214,170,74,0.12), transparent 66%);
}

.one-stop-inner{
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.one-stop-title{
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.1vw, 2.8rem);
  margin: 0.25rem auto 0.7rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.12;
  max-width: 980px;
}

.one-stop-subtitle{
  margin: 0 auto 2.4rem;
  max-width: 78ch;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

.one-stop-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.one-stop-card{
  text-align: left;
  border-radius: 22px;
  background: rgba(0,0,0,0.52);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 1.35rem 1.35rem 1.2rem;
  box-shadow: 0 18px 60px rgba(0,0,0,0.30);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.one-stop-card:hover{
  transform: translateY(-2px);
  border-color: rgba(214,170,74,0.34);
  box-shadow: 0 22px 70px rgba(0,0,0,0.34);
}

.one-stop-icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31,61,43,0.35);
  border: 1px solid rgba(31,61,43,0.55);
  color: rgba(214,170,74,0.95);
  margin-bottom: 1.0rem;
}

.one-stop-icon svg{
  width: 22px;
  height: 22px;
}

.one-stop-name{
  margin: 0 0 0.65rem;
  color: rgba(214,170,74,0.95);
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.one-stop-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  color: rgba(255,255,255,0.80);
}

.one-stop-list li{
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 0.6rem;
  align-items: start;
}

.one-stop-list li::before{
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  border-radius: 3px;
  background: rgba(31,61,43,0.85);
  box-shadow: 0 0 0 3px rgba(31,61,43,0.18);
}

.one-stop-actions{
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  align-items: center;
  margin-top: 2.1rem;
  flex-wrap: wrap;
}

@media (max-width: 980px){
  .one-stop-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px){
  .one-stop{ padding: 4.0rem 1rem 4.5rem; }
  .one-stop-grid{ grid-template-columns: 1fr; }
  .one-stop-actions .btn{ width: 100%; min-width: 0; }
}

/* ==========================
   Locations Page
   ========================== */

.locations-intro{
  padding: 4.4rem 1.25rem 4.6rem;
  background:
    radial-gradient(900px 520px at 12% 0%, rgba(31,61,43,0.22), transparent 66%),
    radial-gradient(900px 520px at 92% 20%, rgba(214,170,74,0.10), transparent 66%);
}

.locations-intro__grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3.25rem);
  align-items: start;
}

.locations-jumps{
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.jump-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.35);
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.jump-pill:hover{
  transform: translateY(-1px);
  border-color: rgba(214,170,74,0.45);
  background: rgba(0,0,0,0.48);
  color: rgba(255,255,255,0.95);
}

.locations-mini{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.mini-card{
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 16px 16px 14px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.30);
}

.mini-card__label{
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(214,170,74,0.9);
}

.mini-card__value{
  margin-top: 0.25rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: rgba(255,255,255,0.95);
}

.mini-card__hint{
  margin-top: 0.25rem;
  color: rgba(255,255,255,0.70);
}

.state{
  padding: 5.0rem 1.25rem 5.2rem;
  position: relative;
  scroll-margin-top: calc(var(--header-height, 84px) + 18px);
  background:
    radial-gradient(900px 520px at 18% 0%, rgba(214,170,74,0.08), transparent 66%),
    radial-gradient(900px 520px at 86% 15%, rgba(31,61,43,0.18), transparent 66%);
}

.state__header{
  max-width: 980px;
  margin: 0 auto 2.1rem;
  text-align: center;
}

.state__title{
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.1vw, 2.8rem);
  line-height: 1.12;
  margin: 0.25rem auto 0.6rem;
  color: rgba(255,255,255,0.95);
}

.state__lead{
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  max-width: 78ch;
  margin-inline: auto;
}

.state__grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.2rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.state__grid--reverse{
  grid-template-columns: 0.95fr 1.05fr;
}

.state__grid--reverse .state__media{ order: 2; }
.state__grid--reverse .state__content{ order: 1; }

.state__media{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.55);
  box-shadow: 0 18px 60px rgba(0,0,0,0.30);
}

.state__media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/10;
  transform: scale(1.01);
  filter: saturate(1.03) contrast(1.02);
}

.state__stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 1.35rem;
}

.stat-card{
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 14px 14px 12px;
  box-shadow: 0 18px 55px rgba(0,0,0,0.22);
}

.stat-card__num{
  font-family: var(--font-serif);
  font-size: 1.55rem;
  line-height: 1.1;
  color: rgba(214,170,74,0.95);
}

.stat-card__label{
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.74);
  line-height: 1.35;
}

.state__h3{
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
}

.state__list{
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
}

.state__cta{
  display: flex;
  gap: 0.9rem;
  margin-top: 1.35rem;
  flex-wrap: wrap;
}

.locations-final{
  padding: 4.6rem 1.25rem 5.2rem;
  background:
    radial-gradient(900px 520px at 14% 0%, rgba(31,61,43,0.22), transparent 66%),
    radial-gradient(900px 520px at 88% 18%, rgba(214,170,74,0.10), transparent 66%);
}

.locations-final__box{
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  background: rgba(0,0,0,0.52);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  padding: clamp(1.6rem, 4vw, 2.35rem);
  box-shadow: 0 18px 60px rgba(0,0,0,0.30);
}

@media (max-width: 980px){
  .locations-intro__grid{ grid-template-columns: 1fr; }
  .state__grid,
  .state__grid--reverse{ grid-template-columns: 1fr; }
  .state__grid--reverse .state__media,
  .state__grid--reverse .state__content{ order: initial; }
  .state__stats{ grid-template-columns: 1fr; }
}

/* ==========================
   Services Overview Section
   ========================== */
.services-overview{
  padding: 4.6rem 1.25rem 5.2rem;
  background:
    radial-gradient(900px 520px at 18% 0%, rgba(214,170,74,0.09), transparent 66%),
    radial-gradient(900px 520px at 86% 15%, rgba(31,61,43,0.18), transparent 66%);
}

.services-overview-inner{
  max-width: 1200px;
  margin: 0 auto;
}

.services-overview-header{
  max-width: 920px;
  margin: 0 auto 2.1rem;
  text-align: center;
}

.services-overview-title{
  font-family: var(--font-serif);
  color: rgba(214,170,74,0.95);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  margin: 0 0 0.55rem;
}

.services-overview-subtitle{
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

.services-overview-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.services-overview-card{
  border-radius: 22px;
  background: rgba(0,0,0,0.52);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 1.6rem;
  box-shadow: 0 18px 60px rgba(0,0,0,0.30);
}

.services-overview-card--accent{
  border-color: rgba(31,61,43,0.55);
  background:
    radial-gradient(520px 260px at 20% 0%, rgba(31,61,43,0.30), transparent 65%),
    rgba(0,0,0,0.55);
}

.services-overview-h3{
  margin: 0 0 0.8rem;
  color: rgba(255,255,255,0.95);
  font-family: var(--font-serif);
  font-size: 1.35rem;
}

.services-overview-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  color: rgba(255,255,255,0.80);
}

.services-overview-list li{
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 0.65rem;
}

.services-overview-list li::before{
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 3px;
  background: rgba(214,170,74,0.85);
  box-shadow: 0 0 0 3px rgba(214,170,74,0.15);
}

.services-overview-cta{
  margin-top: 1.25rem;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

@media (max-width: 900px){
  .services-overview-grid{ grid-template-columns: 1fr; }
  .services-overview-cta .btn{ width: 100%; min-width: 0; }
}

/* ==========================
   FAQ (Theme-Matched Accordion)
   ========================== */
.faq{
  padding: 4.8rem 1.25rem 5.6rem;
  background:
    radial-gradient(900px 520px at 12% 0%, rgba(31,61,43,0.20), transparent 66%),
    radial-gradient(900px 520px at 92% 25%, rgba(214,170,74,0.10), transparent 66%);
}

.faq-inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.faq-title{
  margin: 0.25rem 0 0.65rem;
  font-family: var(--font-serif);
  color: rgba(255,255,255,0.95);
  font-size: clamp(1.85rem, 3.2vw, 2.85rem);
  line-height: 1.12;
}

.faq-subtitle{
  margin: 0 0 1.35rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  max-width: 52ch;
}

.faq-right{
  display: grid;
  gap: 0.75rem;
}

.faq-item{
  border-radius: 18px;
  background: rgba(0,0,0,0.52);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 60px rgba(0,0,0,0.26);
  overflow: hidden;
}

.faq-q{
  cursor: pointer;
  padding: 1.05rem 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(214,170,74,0.95);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-item .faq-q::after{
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  border: 1px solid rgba(31,61,43,0.55);
  background: rgba(31,61,43,0.22);
  color: rgba(255,255,255,0.92);
  flex: none;
}

.faq-item[open] .faq-q::after{
  content: "–";
  border-color: rgba(214,170,74,0.34);
  background: rgba(214,170,74,0.12);
}



/* ==========================
   FAQ Smooth Accordion (JS-assisted)
   ========================== */

/* ==========================
   FAQ Smooth Accordion (JS-assisted, stable)
   ========================== */


/* ==========================
   Services Overview v2 (Layout + Cards)
   ========================== */
.services-overview--v2{
  padding: 5.2rem 1.25rem 5.2rem;
  background:
    radial-gradient(900px 520px at 14% 0%, rgba(214,170,74,0.09), transparent 66%),
    radial-gradient(900px 520px at 86% 15%, rgba(31,61,43,0.22), transparent 66%);
}

.services-overview--v2 .services-overview-inner{
  max-width: 1200px;
  margin: 0 auto;
}

.services-overview--v2 .services-overview-top{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.25rem, 3.2vw, 2.4rem);
  align-items: start;
  margin-bottom: 2.2rem;
}

.services-overview--v2 .services-overview-title{
  color: rgba(255,255,255,0.95);
  margin: 0.25rem 0 0.6rem;
  font-size: clamp(2.1rem, 3.4vw, 3.1rem);
  line-height: 1.08;
  text-shadow: 0 10px 40px rgba(0,0,0,0.45);
}

.services-overview--v2 .services-overview-subtitle{
  margin: 0 0 1.4rem;
  max-width: 70ch;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}

.services-overview--v2 .services-overview-cta{
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.services-overview-proof{
  display: grid;
  gap: 0.85rem;
}

.proof-card{
  border-radius: 20px;
  background: rgba(0,0,0,0.52);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 1.15rem 1.15rem 1.1rem;
  box-shadow: 0 18px 60px rgba(0,0,0,0.28);
}

.proof-kicker{
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  font-weight: 900;
  color: rgba(214,170,74,0.85);
  text-transform: uppercase;
}

.proof-value{
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: rgba(255,255,255,0.95);
}

.proof-sub{
  display: block;
  margin-top: 0.25rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

.services-overview-steps{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.step{
  border-radius: 22px;
  background: rgba(0,0,0,0.52);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 1.4rem 1.4rem 1.3rem;
  box-shadow: 0 18px 60px rgba(0,0,0,0.26);
}

.step-num{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(31,61,43,0.35);
  border: 1px solid rgba(31,61,43,0.55);
  color: rgba(214,170,74,0.95);
  font-weight: 950;
  margin-bottom: 0.9rem;
}

.step h3{
  margin: 0 0 0.45rem;
  font-family: var(--font-serif);
  color: rgba(214,170,74,0.95);
  font-size: 1.25rem;
}

.step p{
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}

@media (max-width: 980px){
  .services-overview--v2 .services-overview-top{ grid-template-columns: 1fr; }
  .services-overview-steps{ grid-template-columns: 1fr; }
  .services-overview--v2 .services-overview-cta .btn{ width: 100%; }
}

/* ==========================
   FAQ (Redesign + Smooth Slide)
   ========================== */
.faq-section{
  padding: 5.2rem 1.25rem;
  background:
    radial-gradient(900px 520px at 12% 0%, rgba(31,61,43,0.18), transparent 66%),
    radial-gradient(900px 520px at 92% 25%, rgba(214,170,74,0.10), transparent 66%);
}

.faq-inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.4rem, 3.5vw, 3rem);
  align-items: start;
}

.faq-title{
  margin: 0.35rem 0 0.65rem;
  font-family: var(--font-serif);
  color: rgba(255,255,255,0.95);
  font-size: clamp(2.05rem, 3.2vw, 3.0rem);
  line-height: 1.08;
  text-shadow: 0 10px 40px rgba(0,0,0,0.45);
}

.faq-lead{
  margin: 0 0 1.4rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 60ch;
}

.faq-right{
  display: grid;
  gap: 0.85rem;
}

.faq-item2{
  border-radius: 18px;
  background: rgba(0,0,0,0.52);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 60px rgba(0,0,0,0.24);
  overflow: hidden;
}

.faq-q{
  width: 100%;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.1rem;
  cursor: pointer;
  text-align: left;
}

.faq-q-text{
  font-weight: 850;
  letter-spacing: 0.01em;
}

.faq-q-icon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214,170,74,0.25);
  background: rgba(214,170,74,0.10);
  position: relative;
  flex: 0 0 auto;
}

.faq-q-icon::before,
.faq-q-icon::after{
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  background: rgba(214,170,74,0.9);
  border-radius: 2px;
}

.faq-q-icon::after{
  transform: rotate(90deg);
  transition: transform 360ms cubic-bezier(.2,.8,.2,1);
}

.faq-item2.is-open .faq-q-icon::after{
  transform: rotate(0deg);
}

.faq-a2{
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: height 420ms cubic-bezier(.2,.8,.2,1), opacity 220ms ease, transform 220ms ease;
  will-change: height;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.faq-item2.is-open .faq-a2{
  opacity: 1;
  transform: translateY(0);
}

.faq-a2-inner{
  padding: 0.95rem 1.1rem 1.15rem;
  color: rgba(255,255,255,0.74);
  line-height: 1.65;
}

.faq-a2-inner p{
  margin: 0;
}

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

@media (prefers-reduced-motion: reduce){
  .faq-a2{ transition: none; transform: none; }
  .faq-q-icon::after{ transition: none; }
}

/* ==========================
   Our Services (Catalog Redesign)
   ========================== */
.services-catalog{
  padding: 5.0rem 1.25rem 5.2rem;
  background:
    radial-gradient(900px 520px at 12% 0%, rgba(31,61,43,0.18), transparent 66%),
    radial-gradient(900px 520px at 92% 20%, rgba(214,170,74,0.10), transparent 66%);
}

.services-catalog-inner{
  max-width: 1200px;
  margin: 0 auto;
}

.services-catalog-head{
  text-align: center;
  max-width: 980px;
  margin: 0 auto 2.2rem;
}

.services-catalog-title{
  margin: 0.35rem 0 0.65rem;
  font-family: var(--font-serif);
  color: rgba(255,255,255,0.95);
  font-size: clamp(2.0rem, 3.3vw, 3.05rem);
  line-height: 1.08;
  text-shadow: 0 10px 40px rgba(0,0,0,0.45);
}

.services-catalog-subtitle{
  margin: 0 auto;
  max-width: 82ch;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}

.services-catalog-actions{
  margin-top: 1.35rem;
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

.services-catalog-grid{
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.svc-card{
  border-radius: 22px;
  background: rgba(0,0,0,0.52);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 60px rgba(0,0,0,0.28);
  padding: 1.5rem 1.5rem 1.35rem;
  text-align: left;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.svc-card:hover{
  transform: translateY(-2px);
  border-color: rgba(214,170,74,0.34);
  box-shadow: 0 22px 70px rgba(0,0,0,0.34);
}

.svc-card--accent{
  border-color: rgba(31,61,43,0.55);
  background:
    radial-gradient(520px 260px at 20% 0%, rgba(31,61,43,0.30), transparent 65%),
    rgba(0,0,0,0.55);
}

.svc-icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31,61,43,0.35);
  border: 1px solid rgba(31,61,43,0.55);
  color: rgba(214,170,74,0.95);
  margin-bottom: 1.0rem;
}

.svc-icon svg{ width: 22px; height: 22px; }

.svc-title{
  margin: 0 0 0.55rem;
  font-family: var(--font-serif);
  color: rgba(214,170,74,0.95);
  font-size: 1.35rem;
}

.svc-desc{
  margin: 0 0 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.svc-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  color: rgba(255,255,255,0.82);
}

.svc-list li{
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 0.65rem;
}

.svc-list li::before{
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 3px;
  background: rgba(31,61,43,0.85);
  box-shadow: 0 0 0 3px rgba(31,61,43,0.15);
}

.svc-mini-cta{ margin-top: 1.1rem; }

@media (max-width: 980px){
  .services-catalog-grid{ grid-template-columns: 1fr; }
  .services-catalog-actions .btn{ width: 100%; min-width: 0; }
}

.faq-section{ margin-top: 0; }


/* --- services hero height: match home hero --- */
.services-hero{
  min-height: clamp(560px, 82vh, 760px);
  display: grid;
  align-items: center;
}


/* ==========================
   Tailored to Your Needs (Services)
   ========================== */
.tailored-section{
  padding: 5rem 1.25rem;
}
.tailored-section .container{
  max-width: 1200px;
  margin: 0 auto;
}
.tailored-head{
  text-align: center;
  max-width: 980px;
  margin: 0 auto 1.6rem;
}
.tailored-title{
  font-family: var(--font-serif);
  font-size: clamp(2.0rem, 3vw, 2.75rem);
  line-height: 1.08;
  margin: .35rem 0 .6rem;
}
.tailored-subtitle{
  color: rgba(255,255,255,0.74);
  line-height: 1.65;
  margin: 0 auto;
  max-width: 85ch;
}
.tailored-tabs{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap: .65rem;
  margin: 1.5rem auto 1.25rem;
}
.tailored-tab{
  border-radius: 999px;
  padding: .6rem 1rem;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.38);
  color: rgba(255,255,255,0.88);
  cursor:pointer;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.tailored-tab:hover{
  transform: translateY(-1px);
  border-color: rgba(214,170,74,0.32);
}
.tailored-tab.is-active{
  border-color: rgba(214,170,74,0.55);
  background: rgba(214,170,74,0.10);
}
.tailored-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}
.tailored-card{
  border-radius: 22px;
  padding: 1.35rem 1.45rem;
  background: rgba(0,0,0,0.52);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 60px rgba(0,0,0,0.28);
  text-align:left;
}
.tailored-card h3{
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0 0 .65rem;
  color: rgba(214,170,74,0.95);
}
.tailored-card ul{
  margin:0;
  padding-left: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
}
.svc-tailor{
  display:inline-flex;
  margin-top: .95rem;
  color: rgba(214,170,74,0.92);
  font-weight: 750;
  text-decoration:none;
}
.svc-tailor:hover{ text-decoration: underline; }
@media (max-width: 980px){
  .tailored-grid{ grid-template-columns: 1fr; }
}


/* === FIX: Match Services hero height to Index hero (90svh) === */
.services-hero{
  margin-top: calc(var(--header-height, 84px) * -1) !important;
  padding: calc(var(--header-height, 84px) + 2.5rem) 1.25rem 4.2rem !important;
  height: calc(var(--hero-vh, 90) * 1svh) !important;
  min-height: 540px !important;
  max-height: 900px !important;
  display: grid !important;
  align-items: center !important;
  overflow: hidden !important;
  position: relative !important;
}
@media (max-width: 720px){
  .services-hero{
    padding: calc(var(--header-height, 84px) + 2rem) 1rem 3.25rem !important;
    min-height: 520px !important;
    max-height: none !important;
  }
}

/* ==========================
   Careers Page
   ========================== */
.page-careers .careers-inner{
  max-width: 1200px;
  margin: 0 auto;
}

.page-careers .careers-value,
.page-careers .careers-process,
.page-careers .careers-roles{
  padding: 5.2rem 1.25rem;
}

.page-careers .careers-value{
  background:
    radial-gradient(900px 520px at 12% 0%, rgba(31,61,43,0.18), transparent 66%),
    radial-gradient(900px 520px at 92% 20%, rgba(214,170,74,0.10), transparent 66%);
}

.page-careers .careers-head{
  text-align: center;
  max-width: 980px;
  margin: 0 auto 2.2rem;
}

.page-careers .careers-head--split{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  text-align: left;
  align-items: end;
}

.page-careers .careers-head--split .careers-lead{
  margin-bottom: 0;
}

.page-careers .careers-lead{
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 82ch;
  margin: 0 auto;
}

.page-careers .careers-cards{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.05rem;
}

.page-careers .careers-card{
  border-radius: 22px;
  background: rgba(0,0,0,0.52);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 60px rgba(0,0,0,0.24);
  padding: 1.35rem;
}

.page-careers .careers-card h3{
  margin: 0 0 0.45rem;
  font-family: var(--font-serif);
  color: rgba(214,170,74,0.95);
  font-size: 1.2rem;
}

.page-careers .careers-card p{
  margin: 0;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.page-careers .careers-process{
  background:
    radial-gradient(900px 520px at 14% 0%, rgba(214,170,74,0.08), transparent 66%),
    radial-gradient(900px 520px at 86% 15%, rgba(31,61,43,0.16), transparent 66%);
}

.page-careers .careers-steps{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.page-careers .careers-roles{
  background: rgba(0,0,0,0.18);
}

.page-careers .role-filters{
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.page-careers .filter-chip{
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.40);
  color: rgba(214,170,74,0.92);
  padding: 0.45rem 0.75rem;
  font-weight: 850;
  cursor: pointer;
}

.page-careers .filter-chip.is-active{
  border-color: rgba(214,170,74,0.40);
  background: rgba(214,170,74,0.12);
}

.page-careers .role-grid{
  display: grid;
  gap: 0.95rem;
  margin-top: 1.25rem;
}

.page-careers .role-card{
  border-radius: 18px;
  background: rgba(0,0,0,0.52);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 60px rgba(0,0,0,0.22);
  overflow: hidden;
}

.page-careers .role-top{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 1.1rem 1.1rem;
  align-items: center;
}

.page-careers .role-top h3{
  margin: 0 0 0.25rem;
  font-family: var(--font-serif);
  color: rgba(255,255,255,0.95);
  font-size: 1.25rem;
}

.page-careers .role-meta{
  margin: 0;
  color: rgba(255,255,255,0.70);
  line-height: 1.5;
}

.page-careers .role-actions{
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn--sm{
  padding: 0.55rem 0.8rem;
  font-size: 0.95rem;
}

.page-careers .role-details{
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: height 420ms cubic-bezier(.2,.8,.2,1), opacity 220ms ease, transform 220ms ease;
  will-change: height;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.page-careers .role-card.is-open .role-details{
  opacity: 1;
  transform: translateY(0);
}

.page-careers .role-details-inner{
  padding: 0.95rem 1.1rem 1.15rem;
  color: rgba(255,255,255,0.74);
  line-height: 1.65;
}

.page-careers .role-details-inner ul{
  margin: 0.65rem 0 0;
  padding-left: 1.05rem;
}

.page-careers .role-details-inner li{
  margin: 0.25rem 0;
}

.page-careers .role-card.is-hidden{
  display: none;
}

.page-careers .careers-apply{
  margin-top: 2.0rem;
  display: grid;
  place-items: center;
}

.page-careers .careers-apply-card{
  width: 100%;
  max-width: 900px;
  border-radius: 22px;
  background:
    radial-gradient(520px 260px at 20% 0%, rgba(31,61,43,0.30), transparent 65%),
    rgba(0,0,0,0.55);
  border: 1px solid rgba(31,61,43,0.55);
  box-shadow: 0 18px 60px rgba(0,0,0,0.26);
  padding: 1.65rem;
  text-align: center;
}

.page-careers .careers-apply-card h3{
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  color: rgba(214,170,74,0.95);
  font-size: 1.45rem;
}

.page-careers .careers-apply-card p{
  margin: 0 0 1.1rem;
  color: rgba(255,255,255,0.76);
  line-height: 1.65;
}

@media (max-width: 980px){
  .page-careers .careers-cards{ grid-template-columns: 1fr; }
  .page-careers .careers-steps{ grid-template-columns: 1fr; }
  .page-careers .role-top{ grid-template-columns: 1fr; }
  .page-careers .role-actions{ justify-content: flex-start; }
  .page-careers .careers-head--split{ text-align: left; }
}


/* Ensure primary buttons used as links keep dark text on hover */
a.btn.btn--primary:hover,
a.btn.btn--primary:focus-visible{
  color: #0b0b0b;
}



/* ==========================
   Locations Redesign v12
   Separate top-level state sections + simplified copy (no "best fit", no weird metrics)
   ========================== */
.hero--locations{ background-image: url("assets/images/hero-building.webp"); }

/* Sticky header offset for anchors */
#virginia, #maryland, #washington-dc { scroll-margin-top: 110px; }

/* Jump */
.loc12-jump{ padding: 2.75rem 0 1.5rem; }
.loc12-head{ max-width: 92ch; }
.loc12-title{ margin: 0.35rem 0 0.6rem; font-size: clamp(1.8rem, 3.2vw, 2.55rem); }
.loc12-sub{ margin:0; }

.loc12-jumpGrid{
  margin-top: 1.15rem;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(0.95rem, 2vw, 1.2rem);
}
.loc12-jumpCard{
  border-radius: var(--radius-xl);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  text-decoration:none;
  box-shadow: 0 18px 44px rgba(0,0,0,0.32);
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
  display:grid;
}
.loc12-jumpCard:hover{
  transform: translateY(-3px);
  border-color: rgba(215,178,74,0.32);
  box-shadow: 0 28px 72px rgba(0,0,0,0.40);
}
.loc12-jumpMedia{ height: 175px; position:relative; }

/* Fix: remove hairline gap between jump image overlay and card body (subpixel seam) */
.loc12-jumpMedia{ background:#000; line-height:0; }
.loc12-jumpMedia img{ position:absolute; inset:0; }
.loc12-jumpMedia img{
  width:100%; height:100%; object-fit:cover; display:block;
  transform: translate3d(calc(var(--mx,0px) * 0.02), calc(var(--my,0px) * 0.02), 0) scale(1.05);
  transition: transform 120ms ease;
  filter: saturate(1.05) contrast(1.03);
}
.loc12-jumpMedia::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.78));
}
.loc12-jumpBody{ padding: 1.05rem 1.1rem 1.15rem; display:grid; gap:0.65rem; }
.loc12-pill{
  width: fit-content;
  display:inline-flex;
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.18);
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.92);
}
.loc12-jumpTitle{ font-weight: 950; font-size: 1.18rem; line-height: 1.25; color: rgba(255,255,255,0.95); }
.loc12-jumpDesc{ color: rgba(255,255,255,0.84); line-height:1.6; }
.loc12-jumpFoot{
  display:flex; align-items:center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 0.75rem; margin-top: 0.35rem;
}
.loc12-jumpLink{ font-weight: 950; color: rgba(255,255,255,0.9); }
.loc12-arrow{ color: rgba(215,178,74,0.95); font-weight: 950; transform: translateX(0); transition: transform 160ms ease; }
.loc12-jumpCard:hover .loc12-arrow{ transform: translateX(4px); }
.loc12-actions{ margin-top: 1.1rem; display:flex; flex-wrap:wrap; gap:0.75rem; }

/* State section (top-level) */
.loc12-stateSection{ padding: 2.35rem 0; }
.loc12-stateSection:nth-of-type(odd){ background: rgba(255,255,255,0.01); }
.loc12-stateCard{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-xl);
  overflow:hidden;
  box-shadow: 0 18px 44px rgba(0,0,0,0.30);
}
.loc12-stateBar{
  display:flex; align-items:flex-start; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.2rem;
  background: rgba(0,0,0,0.22);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.loc12-pill--bar{ margin-bottom: 0.65rem; }
.loc12-stateH2{ margin: 0; font-size: clamp(1.35rem, 2.3vw, 1.75rem); }
.loc12-stateSub{ margin: 0.55rem 0 0; max-width: 78ch; }
.loc12-stateBarRight{ display:flex; align-items:center; gap:0.85rem; flex-wrap:wrap; justify-content:flex-end; }
.loc12-back{
  color: rgba(255,255,255,0.84);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,0.28);
  padding-bottom: 2px;
}
.loc12-back:hover{ color: var(--gold); border-bottom-color: rgba(215,178,74,0.55); }
.btn--sm{ padding: 0.65rem 0.95rem; border-radius: 999px; }

.loc12-stateGrid{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1rem, 2.6vw, 1.75rem);
  padding: 1.15rem;
  align-items: start;
}
.loc12-stateMedia img{
  width:100%;
  height: 320px;
  object-fit: cover;
  border-radius: 1.1rem;
  border: 1px solid rgba(255,255,255,0.10);
  display:block;
}
.loc12-stateContent{ display:grid; gap: 0.95rem; }

.loc12-featureGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 0.9rem;
}
.loc12-feature{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.14);
  border-radius: 1rem;
  padding: 0.95rem 1rem;
}
.loc12-feature h3{
  margin:0 0 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.loc12-feature p{ margin:0; line-height: 1.6; }
.loc12-feature--accent{
  background: rgba(215,178,74,0.08);
  border-color: rgba(215,178,74,0.25);
}

.loc12-tagBlock{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.10);
  border-radius: 1rem;
  padding: 0.95rem 1rem;
}
.loc12-miniTitle{
  margin:0 0 0.65rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.loc12-tags{ display:flex; flex-wrap:wrap; gap:0.5rem; }
.loc12-note{ margin: 0.75rem 0 0; }

.loc12-cta{ display:flex; flex-wrap:wrap; gap:0.75rem; }

/* Final */
.loc12-final{ padding: 0 0 5rem; }
.loc12-finalCard{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 1.85rem);
  display:grid;
  gap:0.85rem;
}
.loc12-finalTitle{ margin:0; font-size: clamp(1.3rem, 2.3vw, 1.7rem); }
.loc12-finalSub{ margin:0; max-width: 72ch; }

@media (max-width: 980px){
  .loc12-jumpGrid{ grid-template-columns: 1fr; }
  .loc12-stateGrid{ grid-template-columns: 1fr; }
  .loc12-stateMedia img{ height: 240px; }
  .loc12-featureGrid{ grid-template-columns: 1fr; }
  .loc12-stateBar{ flex-direction: column; }
  .loc12-stateBarRight{ justify-content:flex-start; }
}


/* Locations v14: remove jump-card image motion + kill subpixel seam */
.loc12-jumpMedia{ position:relative; overflow:hidden; background:#000; }
.loc12-jumpMedia img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:none !important;
  transition:none !important;
}
.loc12-jumpMedia::after{ inset:-1px; }




/* ==========================
   Industry Pages (Healthcare / Education / Commercial)
   ========================== */
.hero--healthcare{ background-image: url("assets/images/hero-building.webp"); }
.hero--education{ background-image: url("assets/images/hero-building.webp"); }
.hero--commercial{ background-image: url("assets/images/hero-building.webp"); }

.ind12-intro{ padding: 3rem 0 1.75rem; }
.ind12-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items:start;
}
.ind12-h2{ margin:0.35rem 0 0.65rem; font-size: clamp(1.6rem, 2.8vw, 2.15rem); }
.ind12-sub{ margin:0; max-width: 78ch; }
.ind12-actions{ margin-top: 1.1rem; display:flex; flex-wrap:wrap; gap:0.75rem; }

.ind12-right{
  display:grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}
.ind12-card{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-lg);
  padding: 1rem 1.05rem;
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
}
.ind12-cardTitle{
  margin:0 0 0.55rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ind12-scope{ padding: 2.25rem 0 2.25rem; }
.ind12-head{ max-width: 92ch; }
.ind12-tags{ display:flex; flex-wrap:wrap; gap:0.55rem; margin-top: 0.85rem; }

.ind12-switch{
  margin-top: 1.25rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.14);
  border-radius: var(--radius-xl);
  padding: 1.1rem 1.15rem;
}
.ind12-switchHead{ display:grid; gap:0.25rem; }
.ind12-mini{
  margin:0;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ind12-pills{
  margin-top: 0.85rem;
  display:flex;
  flex-wrap:wrap;
  gap: 0.6rem;
}
.ind12-pillBtn{
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.92);
  padding: 0.65rem 0.85rem;
  font-weight: 900;
  cursor:pointer;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}
.ind12-pillBtn:hover{ transform: translateY(-1px); border-color: rgba(215,178,74,0.32); }
.ind12-pillBtn.is-on{
  background: rgba(215,178,74,0.12);
  border-color: rgba(215,178,74,0.35);
}

.ind12-scopeOut{
  margin-top: 0.9rem;
  display:flex;
  gap: 0.6rem;
  flex-wrap:wrap;
  align-items:center;
}
.ind12-selected{ font-weight: 950; color: rgba(215,178,74,0.98); }
.ind12-clear{
  margin-left: auto;
  border:none;
  background: transparent;
  color: rgba(255,255,255,0.78);
  font-weight: 900;
  cursor:pointer;
  text-decoration: underline;
}
.ind12-clear:hover{ color: rgba(255,255,255,0.92); }

.ind12-faq{ padding: 2.25rem 0 4.25rem; }
.ind12-qaList{ margin-top: 1.05rem; display:grid; gap:0.75rem; }
.ind12-qa{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-lg);
  padding: 0.2rem 0.9rem;
}
.ind12-qa summary{
  list-style:none;
  cursor:pointer;
  padding: 0.95rem 0.2rem;
  font-weight: 950;
}
.ind12-qa summary::-webkit-details-marker{ display:none; }
.ind12-answer{ padding: 0 0.2rem 1rem; }
.ind12-qa[open]{ border-color: rgba(215,178,74,0.25); background: rgba(215,178,74,0.06); }

.ind12-ctaBar{
  margin-top: 1.15rem;
  display:flex;
  gap: 1rem;
  align-items:center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.16);
  border-radius: var(--radius-xl);
  padding: 1rem 1.1rem;
}
.ind12-ctaBar p{ margin: 0.25rem 0 0; }

/* Services page industries section */
.ind12-industries{ padding: 2.5rem 0 4rem; }
.ind12-industryGrid{
  margin-top: 1.2rem;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.95rem, 2vw, 1.2rem);
}
.ind12-industryCard{
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  padding: 1.05rem 1.1rem 1.15rem;
  text-decoration:none;
  box-shadow: 0 18px 44px rgba(0,0,0,0.28);
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
  display:grid;
  gap: 0.6rem;
}
.ind12-industryCard:hover{
  transform: translateY(-3px);
  border-color: rgba(215,178,74,0.32);
  box-shadow: 0 28px 72px rgba(0,0,0,0.40);
}
.ind12-industryTop{ display:flex; align-items:center; justify-content: space-between; gap:0.75rem; }
.ind12-industryCard h3{ margin:0; font-size: 1.12rem; color: rgba(255,255,255,0.95); }
.ind12-industryCard .ind12-arrow{ color: rgba(215,178,74,0.95); font-weight: 950; }
@media (max-width: 980px){
  .ind12-grid{ grid-template-columns: 1fr; }
  .ind12-industryGrid{ grid-template-columns: 1fr; }
  .ind12-ctaBar{ flex-direction: column; align-items:flex-start; }
}



/* ==========================
   Industry v2: smooth accordion + highlight bands
   ========================== */
.ind12-scope{ display:none !important; }

.ind12-accordion{ margin-top: 1.05rem; display:grid; gap:0.75rem; }
.ind12-accItem{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-lg);
  overflow:hidden;
}
.ind12-accBtn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 1rem 1.05rem;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.95);
  cursor:pointer;
  font-weight: 950;
  text-align:left;
}
.ind12-accIcon{
  width: 34px; height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  display:flex; align-items:center; justify-content:center;
  color: rgba(215,178,74,0.95);
  flex: 0 0 auto;
  transition: transform 180ms ease;
}
.ind12-accPanel{
  height: 0;
  overflow:hidden;
  transition: height 260ms ease;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.ind12-accInner{ padding: 0.95rem 1.05rem 1.05rem; }
.ind12-accItem.is-open{
  border-color: rgba(215,178,74,0.25);
  background: rgba(215,178,74,0.06);
}
.ind12-accItem.is-open .ind12-accIcon{ transform: rotate(45deg); }

/* Highlight bands (like reference) */
.ind12-bands{ padding: 0 0 2rem; }
.ind12-band{
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.ind12-band:last-child{ border-bottom: 1px solid rgba(255,255,255,0.08); }
.ind12-bandInner{
  padding: clamp(2rem, 4vw, 3.2rem) 0;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 3vw, 2.3rem);
  align-items:center;
}
.ind12-band--flip .ind12-bandMedia{ order: 2; }
.ind12-bandMedia img{
  width:100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.12);
  display:block;
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
}
.ind12-bandH2{
  margin:0 0 0.8rem;
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  letter-spacing: -0.02em;
}
.ind12-bandKicker{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.ind12-bandIcon{
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  display:flex; align-items:center; justify-content:center;
  color: rgba(215,178,74,0.95);
  background: rgba(0,0,0,0.12);
  font-size: 1.1rem;
}
.ind12-bandKickerText{ font-weight: 950; color: rgba(255,255,255,0.90); }
.ind12-bandStat{
  font-weight: 950;
  color: rgba(255,255,255,0.88);
}
.ind12-bandStat strong{
  color: rgba(215,178,74,0.98);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.88rem;
}
.ind12-bandP{ margin:0; max-width: 74ch; line-height: 1.7; }
.ind12-bandTop{
  margin-top: 1.1rem;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.78);
  font-weight: 900;
  cursor:pointer;
  text-decoration: underline;
}
.ind12-bandTop:hover{ color: rgba(255,255,255,0.92); }

@media (max-width: 980px){
  .ind12-bandInner{ grid-template-columns: 1fr; }
  .ind12-bandMedia img{ height: 280px; }
}


/* ==========================
   FINAL POLISH: Mobile hero visibility + consistent section spacing + dark-green drawers
   ========================== */
:root{
  --panel-bg: #05251f; /* deep green */
  --section-space: clamp(3.25rem, 5vw, 4.75rem);
}

/* Consistent spacing between sections (excluding heroes) */
main > section:not(.hero):not(.services-hero){
  padding-block: var(--section-space);
}

/* Real mobile Safari can cut off hero content due to dynamic toolbars + fixed heights.
   Force heroes to be content-driven on small screens. */
@media (max-width: 520px){
  .hero,
  .services-hero{
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
    align-items: flex-start !important;
    padding-bottom: calc(3.25rem + env(safe-area-inset-bottom, 0px)) !important;
  }

  /* Give the hero headline block room under the sticky header */
  .hero .hero-inner,
  .services-hero .services-hero-inner{
    padding-top: clamp(1.25rem, 5vw, 2rem) !important;
  }
}

/* Drawer panels (mobile nav + contact) use the same deep green */
.overlay__panel,
.contact__panel{
  background: var(--panel-bg);
}


/* Panel background override */
.menu-panel, .menu__panel, .nav-panel, .contact__panel, .contact_panel, .contact-panel{
  background: var(--panel-bg) !important;
}
