/* ============================================================
   ALPHA+V3 — global.css
   v3.3 — 2026-04-01
   All CSS lives here, including documented page-specific sections.
   ============================================================ */

/* ── Gotham Font Face Declarations ────────────────────────── */
@font-face { font-family:'Gotham'; src:url('/fonts/Gotham-Light.woff2') format('woff2'); font-weight:300; font-style:normal; font-display:swap; }
@font-face { font-family:'Gotham'; src:url('/fonts/Gotham-LightItalic.woff2') format('woff2'); font-weight:300; font-style:italic; font-display:swap; }
@font-face { font-family:'Gotham'; src:url('/fonts/Gotham-Book.woff2') format('woff2'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Gotham'; src:url('/fonts/Gotham-BookItalic.woff2') format('woff2'); font-weight:400; font-style:italic; font-display:swap; }
@font-face { font-family:'Gotham'; src:url('/fonts/Gotham-Medium.woff2') format('woff2'); font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:'Gotham'; src:url('/fonts/Gotham-MediumItalic.woff2') format('woff2'); font-weight:500; font-style:italic; font-display:swap; }
@font-face { font-family:'Gotham'; src:url('/fonts/Gotham-Bold.woff2') format('woff2'); font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:'Gotham'; src:url('/fonts/Gotham-BoldItalic.woff2') format('woff2'); font-weight:700; font-style:italic; font-display:swap; }
@font-face { font-family:'Gotham'; src:url('/fonts/Gotham-Black.woff2') format('woff2'); font-weight:800; font-style:normal; font-display:swap; }
@font-face { font-family:'Gotham'; src:url('/fonts/Gotham-Ultra.woff2') format('woff2'); font-weight:900; font-style:normal; font-display:swap; }
@font-face { font-family:'Gotham'; src:url('/fonts/Gotham-XLight.woff2') format('woff2'); font-weight:200; font-style:normal; font-display:swap; }
@font-face { font-family:'Gotham'; src:url('/fonts/Gotham-Thin.woff2') format('woff2'); font-weight:100; font-style:normal; font-display:swap; }

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --bg:              #171717;
  --bg-deep:         #0f0f0f;
  --bg-surface:      #1f1f1f;
  --orange:          #F19D4B;
  --orange-hover:    #d4873a;
  --white:           #ffffff;
  --text-muted:      #ffffff;               /* Body/content text — full white on dark */
  --text-secondary:  rgba(255,255,255,0.7); /* UI chrome: footer, nav, cookie banner */
  --text-faint:      rgba(255,255,255,0.45);
  --border:          rgba(255,255,255,0.12);
  --radius:          8px;
  --nav-glass-bg:    rgba(20,20,20,0.72);
  --nav-glass-border: rgba(255,255,255,0.10);
  --dropdown-border: rgba(241,157,75,0.65);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: #ffffff;
  font-family: 'Gotham', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-hover); }

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

/* ── Width System ─────────────────────────────────────────── */
.nav-wrap,
.footer-inner,
.footer-bottom-inner {
  width: 95%;
  max-width: 2200px;
  margin-left: auto;
  margin-right: auto;
}

.section-inner,
.container,
.content-page,
.post-header,
.post-body {
  width: 80%;
  max-width: 2200px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Gotham', sans-serif;
  line-height: 1.25;
}

h1 { font-size: 46px; color: var(--white); font-weight: 700; }
h2 { font-size: 30px; color: var(--orange); font-weight: 700; }
h3 { font-size: 23px; color: var(--orange); font-weight: 500; }
h4 { font-size: 22px; color: var(--orange); font-weight: 500; }
h5 { font-size: 18px; color: var(--orange); font-weight: 500; }
h6 { font-size: 16px; color: var(--orange); font-weight: 500; }

p { margin-bottom: 1em; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Gotham', sans-serif;
  font-size: 19px;
  font-weight: 500;
  border-radius: var(--radius);
  padding: 12px 28px;
  line-height: 1.2;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  cursor: pointer;
  text-decoration: none;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
}
.btn--primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  color: var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn--outline:hover {
  background: var(--orange);
  color: var(--white);
}
.btn--dark {
  background: var(--bg-deep);
  color: var(--white);
  border: 2px solid var(--bg-deep);
}
.btn--dark:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
}

/* ── Navigation — Sticky Floating Island ──────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 2.5% 16px;
}

/* Desktop nav island */
.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(45,45,45,0.82);
  backdrop-filter: blur(17px);
  -webkit-backdrop-filter: blur(17px);
  border-radius: 12px;
  height: 122px;
  padding: 0 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.55);
  max-width: 2200px;
  margin: 0 auto;
}

/* Logo — left edge, above absolute menu */
.nav-logo {
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
  z-index: 2;
  position: relative;
}
.nav-logo img {
  max-width: 180px;
  width: auto;
  height: auto;
  display: block;
}
.nav-logo .nav-tagline { display: none; }

/* Menu list — absolutely centred to full nav-wrap width */
.nav-menu {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
  white-space: nowrap;
  z-index: 1;
}

.nav-menu > li { position: relative; }

/* Nav links — exact Divi values: 14px bold uppercase, line-height:40px */
.nav-menu > li > a,
.nav-menu > li > button {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Gotham', sans-serif;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;        /* Divi source has no letter-spacing on nav items */
  color: #ffffff;
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  padding: 0 10px;
  height: 40px;
  line-height: 40px;
  text-transform: uppercase;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
  text-decoration: none;
}

.nav-menu > li > a:hover,
.nav-menu > li > button:hover { color: var(--orange); }
.nav-menu > li.active > a   { color: var(--orange); }

/* Open state: orange text only — border is on the dropdown, not the button */
.nav-menu > li.open > button {
  color: var(--orange);
}

/* Dropdown arrow */
.nav-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-top: 1px;
}
.nav-menu > li.open .nav-arrow { transform: rotate(180deg); }

/* ── Services dropdown ───────────────────────────────────── */
/* Matches .mega-sub-menu flyout: background #2d2d2d, orange border */
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #2d2d2d;
  border: 1px solid #f19d4b;
  border-radius: 8px;
  padding: 10px 0;
  min-width: 260px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  z-index: 200;
  list-style: none;
}
.nav-menu > li.open .nav-dropdown { display: block; }

.nav-dropdown a {
  display: block;
  width: 100%;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
  transition: color 0.14s;
  white-space: nowrap;
  text-decoration: none;
}
.nav-dropdown a:hover { color: var(--orange); }

/* ── More mega menu ──────────────────────────────────────── */
.nav-megamenu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #2d2d2d;
  border: 1px solid #f19d4b;
  border-radius: 10px;
  padding: 5px;
  min-width: 480px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  z-index: 200;
}
.nav-menu > li.open .nav-megamenu { display: block; }

.nav-mega-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 10px 0;
}

.nav-mega-col { padding: 0 15px; }
.nav-mega-col + .nav-mega-col { border-left: 1px solid var(--border); }

/* Group label — orange uppercase bold, matches mega column title */
.nav-mega-label {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: var(--orange);
  text-transform: uppercase;
  padding: 10px 0;
  margin-bottom: 4px;
  border-bottom: none;
}

.nav-megamenu a {
  display: block;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
  padding-bottom: 4px;
  transition: color 0.14s;
  text-decoration: none;
}
.nav-megamenu a:hover { color: var(--orange); }

/* CTA button — pushed to right edge */
.nav-cta {
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
  z-index: 2;
  font-size: 17px !important;
  padding: 10px 22px !important;
}

/* ── Hamburger (shown ≤980px) ────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  flex-shrink: 0;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 3px;               /* thicker to match Divi 4px bars */
  background: var(--orange); /* orange bars — matches Divi mobile hamburger */
  border-radius: 4px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ── Footer ───────────────────────────────────────────────── */
#site-footer {
  background: var(--bg);          /* #171717 — matches page bg, not deep black */
  padding: 60px 0 0;
  margin-top: 80px;
  border-top: 1px solid var(--orange);
}

.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr 320px;
  gap: 48px;
  padding-bottom: 52px;
}

/* Footer Col 1 */
.footer-col1 {}
.footer-logo img { height: 48px; width: auto; margin-bottom: 12px; }
.footer-tagline {
  font-size: 13px;
  color: var(--text-faint);
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}
.footer-social a svg {
  width: 20px;
  height: 20px;
  fill: var(--orange);            /* ochre by default, matches screenshot */
  transition: fill 0.15s;
}
.footer-social a:hover svg { fill: var(--orange-hover); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--text-secondary);
}
.footer-contact-item img { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: var(--text-secondary); }
.footer-contact-item a:hover { color: var(--orange); }

.footer-locations-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--orange);
}
.footer-locations-link:hover { color: var(--orange-hover); }

/* Footer Col 2 */
.footer-col2 {}
.footer-col2-intro {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.65;
}
.footer-col2 h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 14px;
  text-transform: none;
}

.footer-locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 16px;
}
.footer-locations-grid a,
.footer-locations-grid span {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.9;
  display: block;
}
.footer-locations-grid a:hover { color: var(--orange); }

/* Footer Col 3 */
.footer-col3 {}
.footer-col3 h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 16px;
}
.footer-col3 .footer-region {
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.footer-col3 .footer-region strong {
  color: var(--white);
  font-weight: 700;
}
.footer-col3 .footer-region a {
  color: var(--text-secondary);
}
.footer-col3 .footer-region a:hover {
  color: var(--orange);
}
.footer-col3 hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 16px 0;
}
.footer-col3-note {
  font-size: 12.5px;
  color: var(--text-faint);
  margin-top: 12px;
  line-height: 1.6;
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid var(--orange);
  padding: 18px 0;
  background: var(--bg);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--text-faint);
}
.footer-bottom-inner a { color: var(--text-faint); }
.footer-bottom-inner a:hover { color: var(--orange); }

/* ── Body padding for fixed nav ───────────────────────────── */
body { padding-top: 158px; } /* nav island plus reduced top/bottom breathing room */

/* Hero pages get no top padding since hero covers the nav area */
body.has-hero { padding-top: 0; }

/* ── Sections ─────────────────────────────────────────────── */
.section { padding: 72px 0; }
.section--dark    { background: var(--bg-deep); }
.section--surface { background: var(--bg-surface); }
.section--grey    { background: var(--bg-surface); }
.section__title   { text-align: center; margin-bottom: 36px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: 260px 1fr 280px;
    gap: 32px;
  }
}

@media (max-width: 980px) {
  h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  h3 { font-size: 23px; }
  h4 { font-size: 22px; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col3 { grid-column: 1 / -1; }

  /* Reset desktop absolute nav */
  .nav-menu {
    position: static;
    transform: none;
    display: none;       /* hidden until hamburger opens */
  }
  .nav-cta { display: none; }

  /* Mobile nav wrap */
  .nav-wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 20px 20px 12px;
    border: 1px solid #F19D4B;
    border-radius: 8px;
    gap: 0;
  }

  /* Logo centred */
  .nav-logo {
    position: static;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 14px;
    z-index: auto;
  }
  .nav-logo img { max-width: 220px; margin: 0 auto; }

  /* CTA hidden on mobile bar */
  .nav-cta { display: none !important; }

  /* Hamburger centred below logo */
  .nav-hamburger {
    display: flex;
    margin: 0 auto;
    padding-bottom: 6px;
  }
}

@media (max-width: 767px) {
  h1 { font-size: 25px; }
  h2 { font-size: 22px; }
  h3 { font-size: 20px; }
  h4 { font-size: 21px; }

  .section-inner,
  .container,
  .content-page,
  .post-header,
  .post-body { width: 92%; }

  .nav-wrap { padding: 10px 18px; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ── Mobile nav overlay ───────────────────────────────────── */
.nav-mobile-close {
  display: none !important;
}

body.nav-mobile-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  body.nav-mobile-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.72);
    z-index: 998;
  }

  body.nav-mobile-open #site-header {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
  }

  body.nav-mobile-open .nav-wrap {
    position: fixed;
    top: 10px;
    left: 20px;
    right: 20px;
    width: auto;
    max-width: none;
    height: calc(100vh - 20px);
    max-height: calc(100vh - 20px);
    padding: 0;
    border-radius: 28px;
    border: 1px solid rgba(241,157,75,0.7);
    background:
      radial-gradient(circle at 28% 32%, rgba(163, 88, 18, 0.26) 0, rgba(163, 88, 18, 0) 34%),
      radial-gradient(circle at 72% 82%, rgba(163, 88, 18, 0.20) 0, rgba(163, 88, 18, 0) 36%),
      rgba(8, 8, 10, 0.97);
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
    display: grid;
    grid-template-columns: 1fr auto auto;
    grid-template-areas:
      "logo cta close"
      "menu menu menu";
    align-items: center;
    justify-content: stretch;
    gap: 0;
    overflow: hidden;
    pointer-events: auto;
  }

  body.nav-mobile-open .nav-logo {
    grid-area: logo;
    justify-content: flex-start;
    width: auto;
    margin: 0;
    padding: 12px 20px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  body.nav-mobile-open .nav-logo img {
    max-width: 210px;
    margin: 0;
  }

  body.nav-mobile-open nav[aria-label="Main navigation"] {
    grid-area: menu;
    min-height: 0;
    height: 100%;
    overflow: hidden;
    width: 100%;
  }

  .nav-mobile-open .nav-menu {
    display: flex !important;
    flex-direction: column;
    position: static;
    width: 100%;
    height: 100%;
    min-height: 0;
    list-style: none;
    padding: 10px 20px 14px;
    overflow-x: hidden;
    margin: 0;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: none !important;
    background: transparent;
    justify-content: flex-start;
    align-items: stretch;
  }

  .nav-mobile-open .nav-menu > li {
    width: 100%;
    text-align: left;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .nav-mobile-open .nav-menu > li:first-child {
    border-top: none;
  }

  .nav-mobile-open .nav-menu > li > a,
  .nav-mobile-open .nav-menu > li > button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 62px;
    font-size: 18px;
    font-weight: 500;
    padding: 0;
    line-height: 1.3;
    border: none;
    color: var(--white);
    text-align: left;
    background: transparent;
  }

  .nav-mobile-open .nav-menu > li > a:hover,
  .nav-mobile-open .nav-menu > li > button:hover,
  .nav-mobile-open .nav-menu > li.open > button {
    color: var(--orange);
  }

  .nav-mobile-open .nav-arrow {
    margin-left: 12px;
  }

  /* Mobile dropdowns appear inline below trigger */
  .nav-mobile-open .nav-dropdown,
  .nav-mobile-open .nav-megamenu {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0 0 8px;
    margin-top: -2px;
  }

  .nav-mobile-open .nav-menu > li.open .nav-dropdown,
  .nav-mobile-open .nav-menu > li.open .nav-megamenu {
    display: block;
  }

  .nav-mobile-open .nav-dropdown a,
  .nav-mobile-open .nav-megamenu a {
    font-size: 15px;
    padding: 14px 0 14px 26px;
    text-align: left;
    color: rgba(255,255,255,0.76);
    border-top: 1px solid rgba(255,255,255,0.06);
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    max-width: 100%;
  }

  .nav-mobile-open .nav-dropdown li:first-child a {
    border-top: none;
  }

  .nav-mobile-open .nav-mega-cols {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .nav-mobile-open .nav-mega-col + .nav-mega-col {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 6px;
    padding-top: 6px;
  }

  .nav-mobile-open .nav-mega-label {
    text-align: left;
    padding: 10px 0 8px 26px;
    color: rgba(255,255,255,0.96);
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .nav-mobile-open .nav-cta {
    grid-area: cta;
    display: inline-flex !important;
    margin: 0 10px 0 0;
    align-self: center;
    justify-self: end;
    padding: 11px 16px;
    min-height: 0;
    font-size: 15px;
    border-radius: 16px;
    z-index: 2;
  }

  .nav-mobile-open .nav-hamburger {
    display: none !important;
  }

  .nav-mobile-close {
    position: static;
    grid-area: close;
    z-index: 2;
    font-size: 32px;
    color: rgba(255,255,255,0.9);
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    line-height: 1;
    align-self: center;
    justify-self: end;
    padding: 0 20px 0 0;
    margin: 0;
  }

  .nav-mobile-open .nav-mobile-close {
    display: block;
  }
}

@media (max-width: 640px) {
  body.nav-mobile-open .nav-wrap {
    top: 10px;
    left: 14px;
    right: 14px;
    height: calc(100vh - 20px);
    max-height: calc(100vh - 20px);
    border-radius: 24px;
    grid-template-columns: 1fr auto auto;
  }

  body.nav-mobile-open .nav-logo {
    padding: 12px 14px 10px;
  }

  body.nav-mobile-open .nav-logo img {
    max-width: 170px;
  }

  .nav-mobile-open .nav-cta {
    font-size: 13px;
    padding: 11px 14px;
    margin-right: 8px;
    border-radius: 14px;
  }

  .nav-mobile-close {
    padding-right: 14px;
    font-size: 28px;
  }

  .nav-mobile-open .nav-menu {
    padding: 8px 14px 12px;
  }

  .nav-mobile-open .nav-menu > li > a,
  .nav-mobile-open .nav-menu > li > button {
    min-height: 56px;
    font-size: 17px;
  }

  .nav-mobile-open .nav-dropdown a,
  .nav-mobile-open .nav-megamenu a,
  .nav-mobile-open .nav-mega-label {
    padding-left: 18px;
  }
}

/* ── Utility ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--text-secondary); }
.text-faint  { color: var(--text-faint); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ── Cookie Banner ────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  border-top: 1px solid var(--border);
  padding: 16px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 2000;
  font-size: 13.5px;
  color: var(--text-secondary);
}
#cookie-banner p { margin: 0; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btns button {
  font-family: 'Gotham', sans-serif;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 500;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  transition: background 0.15s, color 0.15s;
}
.cookie-btns button.accept {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.cookie-btns button.accept:hover { background: var(--orange-hover); border-color: var(--orange-hover); }
.cookie-btns button.decline:hover { background: var(--bg-surface); }

/* ── Breadcrumbs (.bcn) ──────────────────────────────────────────────── */
.bcn {
  background: transparent;
  padding: 10px 0 18px;
}
.bcn-in {
  width: 80%;
  max-width: 2200px;
  margin: 0 auto;
  font-size: 0.85rem;
  color: var(--text-faint);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}
.bcn-in a {
  color: var(--text-faint);
  text-decoration: none;
}
.bcn-in a:hover {
  color: var(--orange);
}
.bcn-sep {
  color: var(--text-faint);
  font-size: 1rem;
  line-height: 1;
}
.bcn-in span[aria-current="page"] {
  color: var(--orange);
}

/* ── FAQ Accordion (.faq-) ───────────────────────────────────────────── */
/*
  Shared accordion component used on any page with a FAQ section.
  Built on native <details>/<summary> with shared JavaScript auto-close
  behaviour so only one item stays open per FAQ list.
  Use .faq-section as the <section> wrapper; place inside .section-inner.
  FAQPage JSON-LD schema must be provided in $extra_schema on every page
  that uses this component.
*/
.faq-section { border-top: 1px solid var(--border); }
.faq-section h2 { margin-bottom: 32px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.4;
  flex: 1;
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item[open] summary      { border-bottom: 1px solid var(--border); }

.faq-body { padding: 20px 24px; }
.faq-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 10px;
}
.faq-body p:last-child { margin-bottom: 0; }
.faq-body a { color: var(--orange); }
.faq-body a:hover { text-decoration: underline; }

@media (max-width: 767px) {
  .faq-item summary { padding: 16px 18px; }
  .faq-item summary h3 { font-size: 15px; }
  .faq-body { padding: 16px 18px; }
  .faq-body p { font-size: 14px; }
}

/* ── Forms ───────────────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.form-row .form-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 0;
}
@media (max-width: 834px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
.form-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.form-input,
.form-select,
.form-textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-family: inherit;
  padding: 10px 14px;
  width: 100%;
  transition: border-color 0.15s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; }
.form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
}
.form-checkbox-group input[type="checkbox"],
.form-checkbox-group input[type="radio"] {
  accent-color: var(--orange);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.form-message {
  margin-bottom: 12px;
  font-size: 0.9rem;
  min-height: 1.2em;
}
.form-message.success { color: #4caf50; }
.form-message.error   { color: #f44336; }


/* ── Contact page (.ct-) ─────────────────────────────────── */
/*
  Page-specific CSS belongs in global.css only.
  Use global tokens, typography, buttons, form controls, and shared layout classes first.
  Keep .ct-* rules limited to contact-page composition, overlap, and visual treatments that are unique
  to /contact/ and would not be reused elsewhere.
*/
.ct-hero {
  text-align: center;
  padding: 10px 0 14px;
}
.ct-hero h1 {
  margin-bottom: 6px;
}
.ct-hero-title-accent,
.ct-hero-title-accent .ct-brand-sup { color: var(--orange); }
.ct-brand-sup {
  font-size: 0.5em;
  vertical-align: super;
}
.ct-hero-sub-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}
.ct-hero-rule {
  width: 95px;
  height: 1px;
  background: rgba(241,157,75,0.8);
  flex-shrink: 0;
}
.ct-hero-subtitle {
  margin: 0;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
}

.ct-cards-zone {
  position: relative;
  padding: 10px 0 0;
}
.ct-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  position: relative;
  z-index: 3;
}
.ct-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #111111;
  border: 1px solid var(--orange);
  border-radius: 8px;
  padding: 34px 44px 90px;
  overflow: visible;
}
.ct-card-icon {
  width: 86px;
  height: 86px;
  color: var(--orange);
  margin-bottom: 16px;
}
.ct-card h2 {
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ct-card-sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--white);
  opacity: 0.85;
  margin-bottom: 14px;
}
.ct-card-divider {
  width: 100%;
  border-top: 1px solid rgba(241,157,75,0.65);
  margin: 12px 0 18px;
}
.ct-card-list {
  list-style: none;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  text-align: left;
}
.ct-card-list li {
  position: relative;
  padding: 4px 0 4px 28px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
}
.ct-card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--orange);
  font-weight: 700;
}
.ct-card-btn {
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  min-width: 158px;
  text-align: center;
  box-shadow: 0 12px 22px rgba(0,0,0,0.45), 0 2px 8px rgba(0,0,0,0.18);
  z-index: 5;
}
.ct-card-note {
  position: absolute;
  left: 50%;
  bottom: -62px;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  white-space: nowrap;
}

.ct-trust-strip {
  position: relative;
  z-index: 1;
  margin-top: -18px;
  background: linear-gradient(180deg, #2d2d2d 0%, #262626 100%);
  padding: 72px 0 26px;
}
.ct-trust-strip::before,
.ct-trust-strip::after {
  content: '';
  display: block;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.28);
}
.ct-trust-strip::before { margin-bottom: 24px; }
.ct-trust-strip::after { margin-top: 24px; }
.ct-trust-row {
  width: 95%;
  max-width: 2200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 26px;
  align-items: center;
}
.ct-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  color: var(--white);
  font-size: 16px;
  line-height: 1.4;
}
.ct-trust-item svg {
  width: 34px;
  height: 34px;
  color: var(--orange);
  flex-shrink: 0;
}
.ct-trust-item em {
  font-style: italic;
  font-weight: 500;
}

.ct-contact-band {
  background: radial-gradient(circle at top center, #4b4b4b 0%, #2b2b2b 34%, #171717 84%);
  padding: 34px 0 52px;
}
.ct-contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.92fr;
  gap: 36px;
  align-items: start;
}
.ct-contact-col-title {
  text-align: center;
  color: var(--orange);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.ct-contact-col-sub {
  text-align: center;
  font-size: 14px;
  line-height: 1.3;
  color: rgba(255,255,255,0.78);
  margin-bottom: 18px;
}
.ct-contact-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}
.ct-contact-icon,
.ct-office-pin,
.ct-sidebar-clock,
.ct-serve-list svg {
  color: var(--orange);
}
.ct-contact-icon {
  width: 30px;
  height: 30px;
  margin-top: 2px;
}
.ct-contact-label {
  display: block;
  color: var(--white);
  font-size: 15px;
  line-height: 1.35;
  margin-bottom: 3px;
}
.ct-contact-link,
.ct-phone-num {
  color: var(--orange);
  line-height: 1.45;
  font-weight: 500;
}
.ct-phone-hours {
  display: block;
  margin-top: 2px;
  color: var(--orange);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}
.ct-callback {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 300px;
  margin-top: 16px;
  padding: 10px 16px;
  border: 1px solid rgba(241,157,75,0.8);
  border-radius: 6px;
  color: var(--white);
  font-size: 14px;
  line-height: 1.3;
}
.ct-callback:hover { color: var(--white); border-color: var(--orange); }
.ct-callback svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
}
.ct-office-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  background: rgba(0,0,0,0.26);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 14px 18px;
  margin-bottom: 14px;
}
.ct-office-pin {
  width: 28px;
  height: 28px;
}
.ct-office-card h3 {
  color: var(--orange);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.ct-office-card p {
  margin: 0;
  color: var(--white);
  font-size: 15px;
  line-height: 1.45;
}
.ct-serve-panel {
  background: #0f0f0f url('/images/North-America-service.webp') center center / cover no-repeat;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 4px;
  overflow: hidden;
}
.ct-serve-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.54) 0%, rgba(0,0,0,0.72) 100%);
  padding: 18px 18px 16px;
}
.ct-serve-list {
  list-style: none;
}
.ct-serve-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--white);
  font-size: 15px;
  line-height: 1.55;
  padding: 10px 0 11px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.ct-serve-list li:last-child { border-bottom: none; }
.ct-serve-list svg {
  width: 20px;
  height: 20px;
}

.ct-contact-divider {
  border-top: 1px solid rgba(255,255,255,0.16);
  margin-top: 34px;
}

.ct-form-section {
  padding: 44px 0 64px;
}
.ct-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 40px;
  align-items: start;
}
.ct-form-card {
  background: #101010;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px 18px 20px;
}
.ct-form-card .form-group { margin-bottom: 14px; }
.ct-form-card .form-label {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 700;
}
.ct-form-card .form-label span { color: #ff8e79; }
.ct-form-card .form-input,
.ct-form-card .form-textarea {
  background: var(--bg);
  border-color: var(--border);
  color: var(--text-muted);
  font-size: 0.9375rem;
  padding: 10px 14px;
}
.ct-form-card .form-input::placeholder,
.ct-form-card .form-textarea::placeholder { color: rgba(255,255,255,0.3); }
.ct-form-card .form-checkbox-group {
  gap: 6px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ct-form-card .form-checkbox-group.form-checkbox-group--single {
  grid-template-columns: 1fr;
}
.ct-form-card .form-checkbox-group label {
  color: var(--white);
  font-size: 0.9375rem;
  gap: 8px;
}
.ct-form-card .form-checkbox-group input[type="checkbox"],
.ct-form-card .form-checkbox-group input[type="radio"] {
  width: 14px;
  height: 14px;
}
.ct-form-card .btn {
  min-width: 100px;
  font-size: 16px;
  padding: 10px 18px;
}
.ct-form-actions {
  text-align: center;
  margin-top: 16px;
}
.ct-sidebar {
  padding-top: 6px;
}
.ct-sidebar-hours {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 18px 16px;
  background: rgba(19,19,19,0.72);
}
.ct-sidebar-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.ct-sidebar-clock {
  width: 30px;
  height: 30px;
}
.ct-sidebar-title {
  margin: 0;
}
.ct-sidebar-hours p {
  margin: 0 0 2px;
  color: var(--white);
  font-size: 14px;
  line-height: 1.5;
}
.ct-sidebar-hours hr {
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.16);
  margin: 12px 0 10px;
}
.ct-sidebar-closed {
  color: rgba(255,255,255,0.72) !important;
}
.ct-sidebar-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin: 18px 0 16px;
  padding: 13px 18px;
  border: 1px solid rgba(241,157,75,0.88);
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(110,60,24,0.92) 0%, rgba(138,83,38,0.94) 100%);
  color: var(--white);
  font-size: 15px;
  line-height: 1.2;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.ct-sidebar-email:hover {
  color: var(--white);
  background: linear-gradient(90deg, rgba(121,67,28,0.96) 0%, rgba(150,93,46,0.98) 100%);
}
.ct-sidebar-email svg {
  width: 17px;
  height: 17px;
  color: var(--orange);
  flex-shrink: 0;
}
.ct-social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.ct-social-row a {
  color: var(--orange);
}
.ct-social-row svg {
  width: 13px;
  height: 13px;
  display: block;
}



@media (max-width: 1100px) {
  .ct-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ct-contact-grid .ct-contact-col--serve {
    grid-column: 1 / -1;
    max-width: 420px;
    justify-self: center;
    width: 100%;
  }
}

@media (max-width: 980px) {
  .ct-hero h1 { font-size: 40px; }
  .ct-cards-grid,
  .ct-trust-row,
  .ct-contact-grid,
  .ct-form-layout {
    grid-template-columns: 1fr;
  }
  .ct-trust-item { justify-content: flex-start; text-align: left; }
  .ct-trust-strip {
    margin-top: 10px;
    padding-top: 28px;
  }
  .ct-cards-zone { padding-bottom: 0; }
  .ct-card {
    padding-left: 28px;
    padding-right: 28px;
  }
  .ct-contact-col--serve {
    max-width: 420px;
    width: 100%;
  }
  .ct-sidebar {
    max-width: 320px;
  }
}

@media (max-width: 767px) {
  .ct-hero {
    padding-top: 18px;
    padding-bottom: 22px;
  }
  .ct-hero h1 { font-size: 32px; }
  .ct-hero-sub-row { gap: 12px; }
  .ct-hero-rule { width: 42px; }
  .ct-hero-subtitle { font-size: 18px; }
  .ct-card { padding: 28px 20px 90px; }
  .ct-card h2 { font-size: 16px; }
  .ct-card-sub,
  .ct-card-list li,
  .ct-trust-item,
  .ct-contact-label,
  .ct-contact-link,
  .ct-phone-num,
  .ct-office-card p,
  .ct-serve-list li,
  .ct-form-card .form-checkbox-group label { font-size: 0.875rem; }
  .ct-form-card .form-checkbox-group {
    grid-template-columns: 1fr;
  }
  .ct-card-note {
    font-size: 12px;
    bottom: -56px;
  }
  .ct-trust-strip { padding-bottom: 20px; }
  .ct-contact-band { padding-top: 24px; }
  .ct-contact-grid { gap: 28px; }
  .ct-form-card {
    padding: 16px 14px 18px;
  }
}



/* ── Shared page headers (.ph-) ─────────────────────────── */
/* Standard page-header system for interior pages that sit below the
   floating nav island with visible spacing above the hero area. Use
   .ph-hero for the bordered hero shell and .ph-hero--video when the
   page header uses a background video. Height should be content-led. */
.ph-hero {
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  background: linear-gradient(90deg, rgba(23,23,23,0.96) 0%, rgba(31,31,31,0.92) 100%);
}
.ph-hero--video {
  background: var(--bg-surface);
}

.ph-hero::before,
.ph-hero::after {
  content: "";
  position: absolute;
  inset: -12%;
  pointer-events: none;
}
.ph-hero:not(.ph-hero--video)::before {
  background:
    radial-gradient(circle at 18% 28%, rgba(241,157,75,0.16) 0, rgba(241,157,75,0.08) 14%, transparent 38%),
    radial-gradient(circle at 82% 24%, rgba(95,115,160,0.16) 0, rgba(95,115,160,0.08) 15%, transparent 40%),
    radial-gradient(circle at 54% 74%, rgba(241,157,75,0.10) 0, rgba(241,157,75,0.04) 12%, transparent 34%);
  filter: blur(10px);
  animation: phGlowDrift 18s ease-in-out infinite alternate;
}
.ph-hero:not(.ph-hero--video)::after {
  background:
    linear-gradient(125deg, rgba(255,255,255,0.03) 0%, transparent 34%, rgba(241,157,75,0.05) 51%, transparent 68%),
    linear-gradient(90deg, rgba(23,23,23,0.28) 0%, rgba(23,23,23,0.08) 100%);
  mix-blend-mode: screen;
  opacity: 0.78;
  animation: phSheenDrift 24s linear infinite;
}
@keyframes phGlowDrift {
  0% { transform: translate3d(-1.5%, 0, 0) scale(1); }
  50% { transform: translate3d(1%, -1.5%, 0) scale(1.03); }
  100% { transform: translate3d(2%, 1%, 0) scale(1.05); }
}
@keyframes phSheenDrift {
  0% { transform: translate3d(-3%, 0, 0); }
  50% { transform: translate3d(2%, -1%, 0); }
  100% { transform: translate3d(-3%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .ph-hero:not(.ph-hero--video)::before,
  .ph-hero:not(.ph-hero--video)::after {
    animation: none;
  }
}
.ph-hero__video,
.ph-hero__overlay {
  position: absolute;
  inset: 0;
}
.ph-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ph-hero__overlay {
  background: linear-gradient(90deg, rgba(23,23,23,0.92) 0%, rgba(23,23,23,0.76) 48%, rgba(23,23,23,0.62) 100%);
}
.ph-hero__inner {
  position: relative;
  z-index: 1;
  padding: 72px 0 64px;
}
.ph-hero h1 {
  margin-bottom: 22px;
}
.ph-hero__copy {
  max-width: 780px;
}
.ph-hero__copy p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 0;
}



/* ── Website design page (.wd-) ────────────────────────── */
/* Page-specific layout for /website-design/. Uses the shared .ph-
   header system and the shared .faq- accordion component. */
.wd-section__title {
  margin-bottom: 22px;
}
.wd-intro {
  max-width: 940px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0;
}
.wd-intro + .wd-intro {
  margin-top: 16px;
}
.wd-hero-link {
  margin-top: 22px;
}
.wd-hero-link a {
  color: var(--orange);
  text-decoration: none;
}
.wd-hero-link a:hover {
  color: var(--orange-hover);
}
.wd-hero-actions {
  margin-top: 24px;
}
.wd-grid {
  display: grid;
  gap: 24px;
}
.wd-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.wd-grid--process {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}
.wd-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 26px;
}
.wd-card h3 {
  font-size: 24px;
  color: var(--orange);
  margin-bottom: 14px;
}
.wd-card p {
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}
.wd-card--process h3 {
  font-size: 20px;
}
.wd-subhead {
  margin: 24px 0 14px;
  font-size: 24px;
}
.wd-list-grid {
  margin-top: 24px;
}
.wd-columns-gap {
  margin-top: 28px;
  gap: 48px;
}
.wd-list {
  list-style: disc;
  padding-left: 22px;
  margin: 0;
}
.wd-list li {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}
.wd-note {
  margin-top: 20px;
  max-width: 960px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── Service locations page (.sl-) ─────────────────────── */
/* Service locations overview page. Use the shared .ph- hero system
   for the page header and keep .sl- rules limited to the intro,
   region grids, and page-specific card treatments. */
.sl-intro { padding: 72px 0 48px; }
.sl-intro-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 56px;
  align-items: center;
}
.sl-intro-text p { line-height: 1.8; margin: 0 0 1.1em; }
.sl-intro-text p:last-child { margin-bottom: 0; }
.sl-intro-media {
  border: 2px solid var(--orange);
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
}
.sl-intro-media video {
  width: 100%;
  height: auto;
  display: block;
}

.sl-regions { padding: 0 0 80px; }
.sl-region { margin-bottom: 56px; }
.sl-region h2 { margin-bottom: 10px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.sl-region-desc { font-size: 0.95rem; color: var(--text-muted); margin: 0 0 24px; line-height: 1.6; max-width: 720px; }

.sl-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.sl-card {
  display: block;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  color: var(--text-muted);
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.sl-card:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(241,157,75,0.05);
}
.sl-card span {
  display: block;
  font-size: 11.5px;
  color: var(--text-faint);
  font-weight: 400;
  margin-top: 3px;
}

.sl-cta {
  background: #131313;
  border: 1px solid var(--orange);
  border-radius: 10px;
  text-align: center;
  padding: 56px 32px;
  margin-bottom: 80px;
}
.sl-cta h2 { margin-bottom: 10px; }
.sl-cta p { max-width: 540px; margin: 0 auto 28px; line-height: 1.7; }

/* ── Services page (.sv-) ───────────────────────────────── */
/* Live /services/ layout: breadcrumb before hero, video hero, then
   simple two-column service text blocks with divider rules. Reuse the
   global typography and width system; keep these rules limited to the
   page-specific hero and service-list layout. */
.sv-hero {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  display: flex;
  align-items: center;
  background: #111;
}
.sv-hero__video,
.sv-hero__overlay {
  position: absolute;
  inset: 0;
}
.sv-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sv-hero__overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.56) 45%, rgba(0, 0, 0, 0.28) 100%);
}
.sv-hero__inner {
  position: relative;
  z-index: 1;
  padding: 92px 0 88px;
}
.sv-hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  line-height: 1.08;
}
.sv-hero__copy {
  max-width: 1120px;
}
.sv-hero__copy p {
  max-width: 1110px;
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.45;
  color: var(--white);
}
.sv-hero__copy p:last-child {
  margin-bottom: 0;
}

.sv-section {
  padding-top: 58px;
  padding-bottom: 34px;
}
.sv-section--divided {
  border-top: 1px solid var(--orange);
}
.sv-section__title {
  margin: 0 0 34px;
  text-align: left;
}
.sv-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 8.5%;
  row-gap: 34px;
}
.sv-grid--two {
  row-gap: 12px;
}
.sv-item {
  min-height: 132px;
}
.sv-item h3 {
  margin: 0 0 14px;
  padding: 0;
  font-size: 22px;
  line-height: 1.2;
  color: var(--orange);
}
.sv-item p {
  margin: 0 0 18px;
  padding: 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--white);
}
.sv-item p:last-child {
  margin-bottom: 0;
}
.sv-item a {
  color: var(--orange);
  text-decoration: none;
}
.sv-item a:hover {
  color: var(--orange-hover);
}
.sv-item--empty {
  min-height: 1px;
}

.sv-section--intro {
  padding-bottom: 20px;
}
.sv-pillar-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.95fr);
  gap: 36px;
  align-items: start;
}
.sv-pillar-panel,
.sv-support-card,
.sv-decision-card {
  border: 1px solid rgba(203, 137, 52, 0.42);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}
.sv-pillar-panel {
  padding: 24px 24px 22px;
}
.sv-pillar-panel h3,
.sv-support-card h3,
.sv-decision-card h3 {
  margin: 0 0 14px;
  color: var(--orange);
}
.sv-pillar-panel ul {
  margin: 0;
  padding-left: 22px;
}
.sv-pillar-panel li {
  margin: 0 0 12px;
  color: var(--white);
  line-height: 1.5;
}
.sv-pillar-panel li:last-child {
  margin-bottom: 0;
}
.sv-support-grid,
.sv-decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.sv-decision-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.sv-support-card,
.sv-decision-card {
  padding: 24px 24px 22px;
}
.sv-support-card p,
.sv-decision-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--white);
}
.sv-support-card a,
.sv-decision-card a,
.sv-pillar-panel a {
  color: var(--orange);
  text-decoration: none;
}
.sv-support-card a:hover,
.sv-decision-card a:hover,
.sv-pillar-panel a:hover {
  color: var(--orange-hover);
}

@media (max-width: 980px) {
  .ph-hero__inner { padding: 60px 0 54px; }
  .wd-grid--process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sl-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sl-intro-inner { grid-template-columns: 1fr; gap: 36px; }
  .sl-intro-media { max-width: 560px; }
}

@media (max-width: 767px) {
  .ph-hero__inner { padding: 48px 0 42px; }
  .ph-hero__copy p { font-size: 16px; }
  .wd-grid--two,
  .wd-grid--process { grid-template-columns: 1fr; }
  .wd-card { padding: 22px 20px; }
  .wd-card h3,
  .wd-subhead { font-size: 20px; }
  .sl-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sl-intro { padding-top: 56px; }
}

@media (max-width: 980px) {
  .sv-hero {
    min-height: 420px;
  }
  .sv-hero__inner {
    padding: 84px 0 76px;
  }
  .sv-grid {
    column-gap: 6%;
  }
  .sv-item h3 {
    font-size: 23px;
  }
  .sv-pillar-intro,
  .sv-support-grid,
  .sv-decision-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .sv-hero {
    min-height: 360px;
  }
  .sv-hero__inner {
    padding: 62px 0 54px;
  }
  .sv-hero__copy p,
  .sv-item p,
  .sv-support-card p,
  .sv-decision-card p,
  .sv-pillar-panel li {
    font-size: 16px;
  }
  .sv-grid {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }
  .sv-item--empty {
    display: none;
  }
  .sv-section {
    padding-top: 44px;
    padding-bottom: 24px;
  }
  .sv-section__title {
    margin-bottom: 28px;
  }
  .sv-pillar-panel,
  .sv-support-card,
  .sv-decision-card {
    padding: 20px 18px 18px;
  }
}
/* ── Service page refinements (.svcx-) ───────────────────── */
.ph-hero__overlay {
  background: linear-gradient(90deg, rgba(8,8,8,0.58) 0%, rgba(8,8,8,0.34) 45%, rgba(8,8,8,0.12) 100%);
}
.ph-hero__copy .hero-ctas,
.ph-hero__copy .btn,
.ph-hero__copy .wd-hero-actions { margin-top: 24px; }
.ph-hero__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--orange);
  font-weight: 700;
}
.ph-hero__copy ul {
  list-style: disc;
  padding-left: 22px;
  margin: 18px 0 0;
}
.ph-hero__copy li {
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 4px;
}

.svcx-section-title {
  margin: 0 0 18px;
}
.svcx-intro {
  max-width: 1080px;
  color: var(--text-muted);
  line-height: 1.8;
}
.svcx-intro + .svcx-intro { margin-top: 14px; }
.svcx-rule {
  border-top: 1px solid var(--border);
  padding-top: 34px;
}
.svcx-grid-2,
.svcx-grid-3,
.svcx-grid-4 {
  display: grid;
  gap: 24px;
}
.svcx-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.svcx-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.svcx-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.svcx-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px 24px;
}
.svcx-card h3,
.svcx-card h4 {
  color: var(--orange);
  margin: 0 0 14px;
}
.svcx-card p,
.svcx-card li {
  color: var(--text-muted);
  line-height: 1.75;
}
.svcx-card p:last-child { margin-bottom: 0; }
.svcx-card ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}
.svcx-card ul li { margin-bottom: 7px; }
.svcx-note {
  max-width: 1080px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 26px;
}
.svcx-cta-panel {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
  background: rgba(0,0,0,0.32);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 34px 28px;
}
.svcx-cta-panel h2 {
  margin-bottom: 10px;
}
.svcx-cta-panel p {
  max-width: 460px;
  margin: 0 auto 22px;
  color: var(--text-muted);
  line-height: 1.7;
}
.svcx-mini-note {
  font-size: 14px;
  color: var(--text-faint);
  line-height: 1.6;
}
.svcx-checklist {
  list-style: none;
  padding-left: 0;
  margin: 14px 0 0;
}
.svcx-checklist li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 7px;
}
.svcx-checklist li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--orange);
}
.svcx-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin-top: 28px;
}
.svcx-logo-grid img {
  display: block;
  width: 100%;
  max-width: 178px;
  margin: 0 auto;
  border-radius: 6px;
}
.svcx-slim-list p {
  margin: 0 0 10px;
  color: var(--text-muted);
  line-height: 1.7;
}
.svcx-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.svcx-plan-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 22px 22px;
  min-height: 100%;
}
.svcx-plan-card h3 {
  color: var(--orange);
  font-size: 22px;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 8px;
}
.svcx-plan-sub {
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 6px;
}
.svcx-plan-price {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin: 8px 0 18px;
}
.svcx-plan-price span {
  font-size: 16px;
  font-weight: 400;
}
.svcx-plan-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 18px;
}
.svcx-plan-card li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  color: var(--text-muted);
  line-height: 1.5;
}
.svcx-plan-card li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  box-sizing: border-box;
}
.svcx-plan-card li.is-included::before {
  content: '\2713';
  background: var(--white);
  color: #111;
}
.svcx-plan-card li.is-excluded {
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  opacity: 0.8;
}
.svcx-plan-card li.is-excluded::before {
  content: '\2715';
  border: 1px solid var(--white);
  color: var(--white);
  background: transparent;
}
.svcx-plan-card .btn {
  display: inline-flex;
  margin-top: 6px;
}
.svcx-plan-card--panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svcx-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.svcx-faq-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 20px 18px;
}
.svcx-faq-box h3 {
  color: var(--orange);
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 12px;
}
.svcx-faq-box p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.svcx-highlight {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 24px 22px;
  max-width: 780px;
  margin: 28px auto 0;
  text-align: center;
}
.svcx-highlight h3 {
  color: var(--orange);
  margin-bottom: 10px;
}
.svcx-highlight p {
  color: var(--text-muted);
  margin-bottom: 0;
}
.svcx-centered-title {
  text-align: center;
  margin-bottom: 18px;
}
.svcx-stack > * + * { margin-top: 18px; }
.svcx-tight > * + * { margin-top: 10px; }
.svcx-brand-box {
  max-width: 660px;
  margin: 26px auto 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 26px;
}
.svcx-brand-box h3 { text-align: center; margin-bottom: 12px; }
.svcx-brand-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.svcx-brand-box li {
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
}
.svcx-number-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.svcx-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 20px;
}
.svcx-step-num {
  color: var(--orange);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}
.svcx-step h3 {
  color: var(--orange);
  font-size: 20px;
  margin-bottom: 12px;
}
.svcx-step p { color: var(--text-muted); line-height: 1.7; margin: 0; }

.ppj-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2500;
}
.ppj-lightbox[hidden] {
  display: none;
}
.ppj-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5,8,12,.88);
  cursor: zoom-out;
}
.ppj-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(92vw, 1440px);
  height: 100vh;
  margin: 0 auto;
  padding: 40px 0;
}
.ppj-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 80px);
  width: auto;
  height: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.ppj-lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10,12,16,.82);
  color: var(--white);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}
@media (max-width: 1180px) {
  .svcx-plan-grid,
  .svcx-grid-4,
  .svcx-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svcx-number-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .svcx-grid-2,
  .svcx-grid-3,
  .svcx-faq-grid { grid-template-columns: 1fr; }
  .svcx-plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svcx-number-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .svcx-logo-grid,
  .svcx-plan-grid,
  .svcx-grid-4,
  .svcx-number-grid { grid-template-columns: 1fr; }
  .svcx-card,
  .svcx-plan-card,
  .svcx-step { padding: 22px 18px; }
  .svcx-plan-price { font-size: 31px; }
}
.sv-hero { border-top: 2px solid var(--orange); border-bottom: 2px solid var(--orange); }
.mt-wpcare-mark { margin-bottom: 18px; }
.mt-wpcare-mark-word {
  font-size: 72px;
  font-weight: 700;
  line-height: 0.9;
  color: #fff;
}
.mt-wpcare-mark-word--care { color: #005f99; }
.mt-wpcare-mark-sub {
  font-size: 22px;
  color: #fff;
  line-height: 1.1;
}
.ss-logo {
  display: block;
  width: 250px;
  max-width: 100%;
  height: auto;
  margin: 0 0 22px;
}
.svcx-mt-24 { margin-top: 24px; }
.svcx-mt-28 { margin-top: 28px; }
.svcx-mt-30 { margin-top: 30px; }
.svcx-mt-14 { margin-top: 14px; }
.svcx-center { text-align: center; }
.svcx-h3-space { margin-top: 18px; }
.svcx-align-start { align-items: start; }
.svcx-plan-card--narrow { max-width: 420px; }

.svcx-plan-grid--hosting {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.svcx-plan-price--contact {
  font-size: 28px;
  line-height: 1.25;
}
@media (max-width: 980px) {
  .svcx-plan-grid--hosting { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .svcx-plan-grid--hosting { grid-template-columns: 1fr; }
}

/* ── Portfolio page (.pt-) ────────────────────────────────── */
/*
  Use .pt-* only for the /portfolio/ overview page. Keep typography,
  breadcrumbs, buttons, and generic section spacing on the shared global
  system. These rules handle the intro composition and portfolio grid only.
*/
.pt-hero {
  padding: 22px 0 34px;
}
.pt-hero__inner {
  display: block;
}
.pt-hero__copy {
  max-width: 760px;
}
.pt-hero h1 {
  margin-bottom: 18px;
}
.pt-hero h2 {
  max-width: 700px;
  margin-bottom: 20px;
}
.pt-hero p {
  max-width: 660px;
  color: var(--white);
  line-height: 1.38;
  margin-bottom: 18px;
}
.pt-hero .btn {
  margin-top: 8px;
}

.pt-grid-section {
  padding: 18px 0 56px;
}
.pt-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 34px;
  align-items: start;
}
.pt-card {
  min-width: 0;
}
.pt-card__link {
  display: block;
  text-align: center;
}
.pt-card img {
  width: 100%;
  max-width: 340px;
  margin: 0 auto 10px;
}
.pt-card h3 {
  color: var(--orange);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pt-card p {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}

@media (max-width: 1180px) {
  .pt-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 26px;
  }
}

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

@media (max-width: 767px) {
  .pt-hero h1 { margin-bottom: 14px; }
  .pt-hero h2 {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .pt-hero p {
    font-size: 16px;
    line-height: 1.42;
  }
  .pt-grid-section {
    padding-top: 10px;
    padding-bottom: 44px;
  }
  .pt-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pt-card img {
    max-width: 320px;
  }
}


/* ── Portfolio page enhancements (.pt-) ───────────────────── */
/*
  Extend the /portfolio/ overview page with stronger hover states and a more
  interactive card treatment while keeping the existing grid structure and
  typography on the shared global system.
*/
.pt-card {
  min-width: 0;
}
.pt-card__link {
  display: block;
  text-align: center;
  transition: transform .22s ease, filter .22s ease;
}
.pt-card__media {
  position: relative;
  display: block;
  max-width: 340px;
  margin: 0 auto 12px;
}
.pt-card__media::before {
  content: '';
  position: absolute;
  inset: -10px -12px;
  border: 1px solid rgba(241,157,75,.14);
  border-radius: 18px;
  opacity: 0;
  transition: opacity .22s ease, box-shadow .22s ease, transform .22s ease;
}
.pt-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  transition: transform .28s ease, filter .28s ease;
}
.pt-card__screen-glow {
  position: absolute;
  inset: 17% 15% 19% 15%;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.28) 100%);
  border-radius: 8px;
  opacity: 0;
  transition: opacity .22s ease;
  pointer-events: none;
}
.pt-card__cta {
  position: absolute;
  left: 50%;
  bottom: 22%;
  z-index: 3;
  transform: translate(-50%, 8px);
  min-width: 136px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(241,157,75,.45);
  background: rgba(15,15,15,.86);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  opacity: 0;
  transition: opacity .22s ease, transform .22s ease, border-color .22s ease;
  pointer-events: none;
}
.pt-card__text {
  display: block;
}
.pt-card h3,
.pt-card p {
  transition: color .22s ease, transform .22s ease;
}
.pt-card__link:hover,
.pt-card__link:focus-visible {
  transform: translateY(-6px);
}
.pt-card__link:hover .pt-card__media::before,
.pt-card__link:focus-visible .pt-card__media::before {
  opacity: 1;
  box-shadow: 0 18px 34px rgba(0,0,0,.24), 0 0 0 1px rgba(241,157,75,.08);
  transform: translateY(-2px);
}
.pt-card__link:hover img,
.pt-card__link:focus-visible img {
  transform: scale(1.025);
  filter: saturate(1.02);
}
.pt-card__link:hover .pt-card__screen-glow,
.pt-card__link:focus-visible .pt-card__screen-glow,
.pt-card__link:hover .pt-card__cta,
.pt-card__link:focus-visible .pt-card__cta {
  opacity: 1;
}
.pt-card__link:hover .pt-card__cta,
.pt-card__link:focus-visible .pt-card__cta {
  transform: translate(-50%, 0);
  border-color: rgba(241,157,75,.75);
}
.pt-card__link:hover h3,
.pt-card__link:focus-visible h3 {
  color: #ffb15d;
  transform: translateY(-1px);
}
.pt-card__link:focus-visible {
  outline: none;
}
@media (prefers-reduced-motion: reduce) {
  .pt-card__link,
  .pt-card img,
  .pt-card__screen-glow,
  .pt-card__cta,
  .pt-card h3,
  .pt-card p,
  .pt-card__media::before {
    transition: none;
  }
}
@media (max-width: 767px) {
  .pt-card__media {
    max-width: 320px;
  }
  .pt-card__cta {
    opacity: 1;
    transform: translate(-50%, 0);
    min-width: 124px;
    padding: 8px 14px;
    font-size: 13px;
    bottom: 20%;
  }
  .pt-card__screen-glow {
    opacity: 1;
  }
}

/* ── Portfolio project template (.ppj-) ───────────────────── */
/*
  Use .ppj-* for individual /portfolio/[slug]/ pages. Keep shared typography,
  buttons, breadcrumbs, and section spacing on the global system. These rules
  handle the modern project-page layout, panels, meta strip, and CTA only.
*/
.ppj-hero {
  padding: 22px 0 28px;
}
.ppj-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 44px;
  align-items: center;
}
.ppj-hero__eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.ppj-hero h1 {
  margin-bottom: 20px;
}
.ppj-hero__summary {
  max-width: 760px;
}
.ppj-hero__summary p {
  margin-bottom: 16px;
}
.ppj-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.ppj-hero__media {
  min-width: 0;
}
.ppj-device,
.ppj-mockup-card {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.ppj-device {
  cursor: zoom-in;
}
.ppj-mockup-card {
  cursor: zoom-in;
  max-width: 760px;
}
.ppj-device img,
.ppj-mockup-card img {
  width: 100%;
  display: block;
  height: auto;
}
.ppj-device__hint {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(10,12,16,.76);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease, background-color .22s ease;
  pointer-events: none;
}
.ppj-device:hover .ppj-device__hint,
.ppj-device:focus-visible .ppj-device__hint,
.ppj-mockup-card:hover .ppj-device__hint,
.ppj-mockup-card:focus-visible .ppj-device__hint {
  opacity: 1;
  transform: translateY(0);
}
.ppj-device:hover img,
.ppj-device:focus-visible img,
.ppj-mockup-card:hover img,
.ppj-mockup-card:focus-visible img {
  transform: translateY(-4px) scale(1.012);
}
.ppj-device img,
.ppj-mockup-card img {
  transition: transform .22s ease;
}
.ppj-meta-strip {
  padding: 0 0 18px;
}
.ppj-meta-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.ppj-meta-item,
.ppj-panel,
.ppj-cta {
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
}
.ppj-meta-item {
  padding: 18px 20px;
}
.ppj-meta-item__label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-faint);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.ppj-meta-item__value {
  display: block;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}
.ppj-section {
  padding-top: 14px;
  padding-bottom: 40px;
}
.ppj-section--alt {
  background: linear-gradient(180deg, rgba(255,255,255,.018) 0%, rgba(255,255,255,.008) 100%);
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.ppj-snapshot-grid,
.ppj-strength-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.ppj-snapshot-grid--1,
.ppj-strength-grid--1 {
  grid-template-columns: minmax(0, 1fr);
  max-width: 720px;
}
.ppj-snapshot-grid--2,
.ppj-strength-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.ppj-snapshot-grid--4,
.ppj-strength-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.ppj-context-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 30px;
  align-items: start;
}
.ppj-paired-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}
.ppj-paired-grid + .ppj-paired-grid {
  margin-top: 22px;
}
.ppj-paired-grid--single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 920px;
}
.ppj-build-grid {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr);
  gap: 34px;
  align-items: start;
}
.ppj-build-grid__content {
  display: grid;
  gap: 22px;
}
.ppj-build-grid--content-only {
  grid-template-columns: 1fr;
}
.ppj-build-grid--content-only .ppj-build-grid__content {
  max-width: 920px;
}
.ppj-panel {
  padding: 24px 24px 22px;
}
.ppj-panel h2,
.ppj-copy-block h2,
.ppj-heading-block h2 {
  margin-bottom: 14px;
}
.ppj-panel h3 {
  margin-bottom: 12px;
}
.ppj-panel--snapshot p,
.ppj-panel--strength p,
.ppj-cta p,
.ppj-richtext p {
  line-height: 1.45;
}
.ppj-richtext p:last-child,
.ppj-panel p:last-child {
  margin-bottom: 0;
}
.ppj-list,
.ppj-related-links {
  margin: 0;
  padding-left: 18px;
}
.ppj-list li,
.ppj-related-links li {
  margin: 0 0 10px;
}
.ppj-list li:last-child,
.ppj-related-links li:last-child {
  margin-bottom: 0;
}
.ppj-panel--scope,
.ppj-panel--overview,
.ppj-panel--feature,
.ppj-panel--links,
.ppj-panel--strength,
.ppj-panel--snapshot {
  height: 100%;
}
.ppj-panel--links p + p {
  margin-top: 16px;
}
.ppj-panel--links .ppj-related-links {
  margin-top: 12px;
}
.ppj-panel--links .ppj-related-links a {
  font-weight: 600;
}
.ppj-heading-block {
  max-width: 720px;
  margin-bottom: 24px;
}
.ppj-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px 30px;
}
.ppj-cta__actions {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 1180px) {
  .ppj-hero__inner,
  .ppj-context-grid,
  .ppj-paired-grid {
    grid-template-columns: 1fr;
  }
  .ppj-meta-strip__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 980px) {
  .ppj-snapshot-grid,
  .ppj-strength-grid,
  .ppj-meta-strip__inner {
    grid-template-columns: 1fr 1fr;
  }
  .ppj-snapshot-grid--1,
  .ppj-strength-grid--1 {
    grid-template-columns: 1fr;
  }
  .ppj-hero__inner {
    gap: 28px;
  }
  .ppj-device,
  .ppj-mockup-card,
  .ppj-panel,
  .ppj-cta {
    padding: 22px;
  }
}
@media (max-width: 767px) {
  .ppj-hero {
    padding-top: 14px;
  }
  .ppj-device__hint {
    opacity: 1;
    transform: none;
    right: 12px;
    bottom: 12px;
    font-size: 11px;
  }
  .ppj-snapshot-grid,
  .ppj-strength-grid,
  .ppj-meta-strip__inner,
  .ppj-snapshot-grid--2,
  .ppj-strength-grid--2,
  .ppj-snapshot-grid--4,
  .ppj-strength-grid--4 {
    grid-template-columns: 1fr;
  }
  .ppj-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* ── Blog archive (.blg-) ─────────────────────────────── */
/* Archive and category index layout for /blog/ and /blog/category/*.
   Uses the shared .ph- hero and shared breadcrumb component. */
.blg-shell {
  padding-top: 22px;
}
.blg-hero__copy {
  max-width: 880px;
}
.blg-hero {
}
.blg-hero .ph-hero__inner {
  padding-bottom: 34px;
}
.blg-hero .blg-filters {
  margin-top: 24px;
  margin-bottom: 0;
}
.blg-kicker {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blg-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}
.blg-filter {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.blg-filter:hover,
.blg-filter:focus-visible,
.blg-filter.is-active {
  background: rgba(241,157,75,0.12);
  border-color: rgba(241,157,75,0.45);
  color: var(--white);
  transform: translateY(-1px);
}
.blg-feature {
  margin-bottom: 34px;
}
.blg-feature__card {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(31,31,31,0.98) 0%, rgba(22,22,22,1) 100%);
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
}
.blg-feature__link {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  color: inherit;
  text-decoration: none;
}
.blg-feature__media,
.blg-card__media {
  overflow: hidden;
}
.blg-feature__img,
.blg-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.blg-feature__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 34px 36px;
}
.blg-feature__label {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.blg-feature__eyebrow,
.blg-card__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--text-secondary);
  font-size: 14px;
}
.blg-card__category {
  color: var(--orange);
  font-weight: 700;
}
.blg-card__dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
}
.blg-feature__title {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 34px;
  line-height: 1.2;
}
.blg-feature__excerpt,
.blg-card__excerpt {
  margin-bottom: 0;
  color: var(--text-secondary);
  line-height: 1.7;
}
.blg-feature__excerpt {
  font-size: 17px;
}
.blg-feature__cta,
.blg-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blg-feature__cta::after,
.blg-card__cta::after {
  content: '→';
}
.blg-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.blg-card {
  min-width: 0;
}
.blg-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(31,31,31,0.98) 0%, rgba(22,22,22,1) 100%);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(0,0,0,0.16);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.blg-card__link:hover,
.blg-card__link:focus-visible,
.blg-feature__link:hover,
.blg-feature__link:focus-visible {
  transform: translateY(-4px);
}
.blg-card__link:hover,
.blg-card__link:focus-visible {
  border-color: rgba(241,157,75,0.32);
  box-shadow: 0 18px 42px rgba(0,0,0,0.22);
}
.blg-feature__link:hover .blg-feature__img,
.blg-feature__link:focus-visible .blg-feature__img,
.blg-card__link:hover .blg-card__img,
.blg-card__link:focus-visible .blg-card__img {
  transform: scale(1.04);
}
.blg-card__media {
  aspect-ratio: 16 / 10;
  background: rgba(255,255,255,0.03);
}
.blg-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 24px 26px;
}
.blg-card__title {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 24px;
  line-height: 1.3;
}
.blg-card__excerpt {
  font-size: 16px;
}
.blg-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}
.blg-pagination__link,
.blg-pagination__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
}
.blg-pagination__link.is-active,
.blg-pagination__link:hover,
.blg-pagination__link:focus-visible,
.blg-pagination__arrow:hover,
.blg-pagination__arrow:focus-visible {
  background: rgba(241,157,75,0.12);
  border-color: rgba(241,157,75,0.45);
  color: var(--white);
}
.blg-empty {
  padding: 42px 34px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
}
.blg-empty h2 {
  margin-bottom: 10px;
}
.blg-empty p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

@media (max-width: 1200px) {
  .blg-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blg-feature__link {
    grid-template-columns: minmax(0, 1fr);
  }
  .blg-feature__media {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 767px) {
  .blg-shell {
    padding-top: 26px;
  }
  .blg-filters {
    gap: 10px;
    margin-bottom: 26px;
  }
  .blg-filter {
    min-height: 40px;
    padding: 8px 14px;
    font-size: 14px;
  }
  .blg-feature__body {
    padding: 24px 22px 26px;
  }
  .blg-feature__title {
    font-size: 28px;
  }
  .blg-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }
  .blg-card__body {
    padding: 22px 20px 24px;
  }
  .blg-card__title {
    font-size: 22px;
  }
  .blg-pagination {
    gap: 8px;
  }
  .blg-pagination__link,
  .blg-pagination__arrow {
    min-width: 42px;
    min-height: 42px;
    padding: 0 14px;
  }
}


/* Single blog post layout for /blog/* article pages.
   Uses the shared .ph-hero shell and breadcrumb component. */
.pst-hero {
}
.pst-hero__copy {
  max-width: 1080px;
}
.pst-hero .ph-hero__inner {
  padding-bottom: 34px;
}
.pst-kicker {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pst-shell {
  padding: 0 0 10px;
}
.pst-article {
  max-width: 1280px;
}
.pst-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--text-secondary);
  font-size: 15px;
}
.pst-meta__category {
  color: var(--orange);
  font-weight: 700;
}
.pst-meta__dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
}
.pst-feature {
  margin: 0 0 34px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(31,31,31,0.98) 0%, rgba(22,22,22,1) 100%);
  box-shadow: 0 18px 48px rgba(0,0,0,0.2);
}
.pst-feature__img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.pst-body {
  width: 100%;
  max-width: 980px;
}
.pst-body h2 {
  margin: 48px 0 16px;
}
.pst-body h3 {
  margin: 34px 0 12px;
}
.pst-body p,
.pst-body ul,
.pst-body ol {
  color: #e4e4e4;
}
.pst-body ul,
.pst-body ol {
  margin: 0 0 1.2em 1.25em;
}
.pst-body li + li {
  margin-top: 0.55em;
}
.pst-lead {
  font-size: 21px;
  line-height: 1.75;
  color: var(--white);
}
.pst-taxonomy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 15px;
}
.pst-taxonomy__label {
  font-weight: 700;
  color: var(--white);
}
.pst-cta-wrap {
  padding-top: 18px;
}
.pst-cta-shell {
  max-width: 1280px;
}
.pst-cta {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 38px 40px;
  background: linear-gradient(180deg, rgba(31,31,31,0.98) 0%, rgba(22,22,22,1) 100%);
  text-align: center;
  box-shadow: 0 18px 48px rgba(0,0,0,0.18);
}
.pst-cta h2 {
  margin-bottom: 12px;
}
.pst-cta p {
  max-width: 640px;
  margin: 0 auto 22px;
  color: var(--text-secondary);
}
.pst-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.pst-cta__actions .btn {
  min-width: 220px;
}
@media (max-width: 991px) {
  .pst-hero__copy,
  .pst-article,
  .pst-cta-shell,
  .pst-body {
    max-width: none;
  }
  .pst-lead {
    font-size: 18px;
  }
  .pst-cta {
    padding: 32px 28px;
  }
}
@media (max-width: 767px) {
  .pst-meta {
    gap: 8px;
    font-size: 14px;
  }
  .pst-feature {
    margin-bottom: 26px;
    border-radius: 16px;
  }
  .pst-body h2 {
    margin-top: 38px;
  }
  .pst-lead {
    font-size: 18px;
    line-height: 1.7;
  }
  .pst-cta {
    padding: 28px 22px;
    border-radius: 16px;
  }
}


/* ── About page (.abt-) ───────────────────────────────── */

.bcn--about {
  padding: 12px 0 12px;
}
.bcn--about .bcn-in {
  font-size: 0.82rem;
}

.abt-list {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 14px 0 0;
}
.abt-list li {
  list-style: none !important;
}
.abt-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  line-height: 1.65;
}
.abt-list li:last-child {
  margin-bottom: 0;
}
.abt-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 8px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
}
.abt-hero .ph-hero__inner {
  padding-bottom: 42px;
}
.abt-hero__copy {
  max-width: 1160px;
}
.abt-hero__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.abt-highlight {
  padding: 20px 20px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
}
.abt-highlight strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 17px;
}
.abt-highlight span {
  display: block;
  color: var(--text-secondary);
  line-height: 1.65;
}
.abt-section .svcx-card p,
.abt-section .svcx-card li {
  color: var(--text-secondary);
}
.abt-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 28px;
  align-items: start;
}
.abt-intro__main h2,
.abt-heading h2 {
  margin-bottom: 16px;
}
.abt-intro__main p:last-child,
.abt-heading p:last-child {
  margin-bottom: 0;
}
.abt-heading {
  max-width: 860px;
  margin-bottom: 28px;
}
.abt-compare__card,
.abt-value-card {
  height: 100%;
}
.abt-service-grid .svcx-card,
.abt-values-grid .svcx-card {
  height: 100%;
}
.abt-office-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 920px;
}
.abt-office-grid .ct-office-card {
  margin-bottom: 0;
}
@media (max-width: 980px) {
  .abt-hero__highlights,
  .abt-office-grid,
  .abt-intro,
  .abt-service-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 767px) {
  .abt-hero .ph-hero__inner {
    padding-bottom: 34px;
  }
  .abt-highlight {
    padding: 18px 18px 16px;
  }
}



/* ── Utility / legal pages (.util-) ───────────────────────── */
.util-hero .ph-hero__copy {
  max-width: 840px;
}
.util-page {
  padding: 0 0 56px;
}
.util-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  align-items: start;
}
.util-main {
  min-width: 0;
}
.util-main > :first-child {
  margin-top: 0;
}
.util-main p,
.util-main li,
.util-main blockquote p {
  font-size: 1.05rem;
  line-height: 1.72;
}
.util-main h2 {
  margin: 34px 0 10px;
}
.util-main h3 {
  margin: 28px 0 8px;
}
.util-main ul,
.util-main ol,
.util-card ul {
  margin: 0 0 1.25em 1.45em;
  padding-left: 0.45em;
}
.util-main li,
.util-card li {
  margin: 0 0 0.45em;
}
.util-main blockquote {
  margin: 0 0 1.35em;
  padding: 0;
  border: 0;
}
.util-main blockquote p {
  margin-bottom: 0.8em;
}
.util-aside {
  position: sticky;
  top: 150px;
}
.util-card {
  background: linear-gradient(180deg, rgba(36,36,36,0.92) 0%, rgba(29,29,29,0.92) 100%);
  border: 1px solid rgba(241,157,75,0.3);
  border-radius: 12px;
  padding: 24px 24px 20px;
  margin-bottom: 18px;
}
.util-card > :first-child {
  margin-top: 0;
}
.util-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.util-note {
  color: var(--text-faint);
  font-size: 0.96rem;
}
.util-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.util-link {
  display: block;
  padding: 22px 24px;
  border-radius: 12px;
  border: 1px solid rgba(241,157,75,0.3);
  background: linear-gradient(180deg, rgba(34,34,34,0.92) 0%, rgba(27,27,27,0.92) 100%);
  text-decoration: none;
  color: var(--text-body);
}
.util-link strong {
  display: block;
  color: var(--white);
  margin-bottom: 8px;
}
.util-link span {
  display: block;
  color: var(--text-body);
  line-height: 1.65;
}
.util-link:hover {
  border-color: rgba(241,157,75,0.65);
}
@media (max-width: 1100px) {
  .util-page__grid {
    grid-template-columns: 1fr;
  }
  .util-aside {
    position: static;
  }
}
@media (max-width: 820px) {
  .util-links {
    grid-template-columns: 1fr;
  }
}

/* ── Quote request pages (.qr-) ───────────────────────────────────── */
.qr-hero .ph-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.85fr);
  gap: 28px;
  align-items: start;
}
.qr-hero-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.08);
  padding: 24px 24px 22px;
}
.qr-hero-panel p {
  margin: 0;
  color: var(--text-muted);
}
.qr-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.qr-page {
  padding: 28px 0 72px;
}
.qr-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
}
.qr-grid--wide {
  grid-template-columns: minmax(0, 1fr) 320px;
}
.qr-main,
.qr-aside {
  min-width: 0;
}
.qr-intro-card,
.qr-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
}
.qr-intro-card {
  padding: 24px 24px 22px;
  margin-bottom: 22px;
}
.qr-intro-card h2 {
  margin-bottom: 10px;
}
.qr-intro-card p:last-child {
  margin-bottom: 0;
}
.qr-form {
  padding: 24px;
}
.qr-form-head {
  margin-bottom: 22px;
}
.qr-form-head h2 {
  margin-bottom: 8px;
}
.qr-form-head p {
  margin: 0;
  color: var(--text-muted);
}
.qr-form-section + .qr-form-section {
  border-top: 1px solid var(--border);
  margin-top: 30px;
  padding-top: 30px;
}
.qr-fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 20px;
}
.qr-fieldset .form-label {
  display: block;
  margin-bottom: 10px;
}
.qr-field-note {
  margin: 8px 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.qr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.qr-aside {
  display: grid;
  gap: 18px;
  align-content: start;
}
.qr-aside .util-card ul {
  padding-left: 1.2rem;
}
@media (max-width: 1023px) {
  .qr-hero .ph-hero__inner,
  .qr-grid,
  .qr-grid--wide {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .qr-hero-panel,
  .qr-intro-card,
  .qr-form {
    border-radius: 18px;
    padding: 20px;
  }
  .qr-page {
    padding: 22px 0 56px;
  }
}


/* ─────────────────────────────────────────────
   Get Started + Intake Pages
   Added for build v5.59
───────────────────────────────────────────── */
.gs-intro-card {
  max-width: 900px;
  margin: 0 auto 24px;
  text-align: center;
}
.gs-intro-card h2 {
  margin-bottom: 10px;
}
.gs-cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.gs-card .ct-card-sub {
  min-height: 78px;
}
.gs-card .ct-card-btn {
  min-width: 188px;
}
.gs-note-block {
  max-width: 900px;
  margin: 34px auto 0;
  background: #111111;
  border: 1px solid rgba(241,157,75,0.45);
  border-radius: 8px;
  padding: 26px 28px;
}
.gs-note-block ul {
  margin: 14px 0 0 18px;
}
.gs-note-block li + li {
  margin-top: 8px;
}
.intake-hero-panel ul {
  margin: 12px 0 0 18px;
}
.intake-hero-panel li + li {
  margin-top: 6px;
}
.intake-form .form-group > small,
.intake-form .qr-field-note {
  display: block;
  margin-top: 8px;
}
.intake-section-tag {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.intake-checklist {
  margin: 10px 0 0 18px;
}
.intake-checklist li + li {
  margin-top: 8px;
}
.intake-helper {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.intake-hidden {
  display: none;
}
@media (max-width: 1200px) {
  .gs-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 980px) {
  .gs-card .ct-card-sub {
    min-height: 0;
  }
}
@media (max-width: 767px) {
  .gs-cards-grid {
    grid-template-columns: 1fr;
  }
  .gs-note-block {
    padding: 22px 20px;
  }
}


/* ── Build v5.60 intake/contact spacing corrections ───────────────── */
.ct-hero {
  padding: 14px 0 18px;
}
.ct-cards-zone {
  padding: 0;
}
.ct-trust-strip {
  margin-top: -14px;
  padding: 66px 0 24px;
}
.gs-intro-card {
  margin: 0 auto 18px;
}
.gs-note-block {
  margin: 26px auto 0;
}

/* Keep intake pages in the site dark theme instead of drifting to a light card treatment. */
.qr-hero-panel,
.qr-intro-card,
.qr-form,
.qr-aside .util-card {
  background: linear-gradient(180deg, rgba(28,28,28,0.96) 0%, rgba(19,19,19,0.96) 100%);
  border: 1px solid rgba(241,157,75,0.32);
  box-shadow: 0 18px 44px rgba(0,0,0,0.34);
}
.qr-hero-panel p,
.qr-hero-panel li,
.qr-intro-card p,
.qr-form-head p,
.qr-field-note,
.intake-form .form-group > small,
.intake-form .qr-field-note,
.qr-aside .util-card p,
.qr-aside .util-card li {
  color: rgba(255,255,255,0.82);
}
.qr-hero-panel ul,
.qr-intro-card ul,
.qr-aside .util-card ul,
.intake-checklist,
.intake-hero-panel ul {
  color: rgba(255,255,255,0.82);
}
.qr-form,
.qr-form-section,
.qr-form-head h2,
.qr-intro-card h2,
.qr-aside .util-card h3 {
  color: var(--white);
}
.qr-form-section + .qr-form-section {
  border-top: 1px solid rgba(241,157,75,0.18);
}
.qr-form .form-label,
.qr-form label,
.qr-form .form-group > label span,
.qr-form .form-group > label {
  color: var(--white);
}
.qr-form .form-input,
.qr-form .form-select,
.qr-form .form-textarea,
.qr-form select,
.qr-form input,
.qr-form textarea {
  background: #0d0d0d;
  border: 1px solid rgba(241,157,75,0.34);
  color: var(--white);
}
.qr-form .form-input::placeholder,
.qr-form .form-textarea::placeholder,
.qr-form textarea::placeholder,
.qr-form input::placeholder {
  color: rgba(255,255,255,0.46);
}
.qr-form select option {
  background: #111111;
  color: var(--white);
}
.qr-form input:focus,
.qr-form textarea:focus,
.qr-form select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px rgba(241,157,75,0.18);
}
.qr-actions {
  margin-top: 32px;
}
.intake-section-tag {
  margin-bottom: 10px;
}


/* ── Build v5.61 intake family QA + spacing refinements ───────────────── */
.ct-hero {
  padding: 10px 0 14px;
}
.ct-cards-zone {
  padding: 0 0 10px;
}
.ct-trust-strip {
  margin-top: -10px;
  padding: 58px 0 24px;
}
.gs-page .ct-hero {
  padding: 8px 0 12px;
}
.gs-page .gs-intro-card {
  margin: 0 auto 14px;
}
.gs-page .ct-cards-zone {
  padding-top: 2px;
}
.gs-page .gs-note-block {
  margin: 22px auto 0;
}
.qr-hero {
  padding-top: 18px;
  padding-bottom: 20px;
}
.qr-page {
  padding-top: 22px;
}
.qr-form {
  background: linear-gradient(180deg, rgba(26,26,26,0.97) 0%, rgba(17,17,17,0.97) 100%);
}
.qr-form-section {
  padding: 30px 0;
}
.qr-form-section:first-of-type {
  padding-top: 6px;
}
.qr-form-section:last-of-type {
  padding-bottom: 8px;
}
.qr-form-head h2 {
  margin-bottom: 8px;
}
.qr-form-head p {
  margin-bottom: 0;
}
.qr-hero-panel,
.qr-intro-card,
.qr-form,
.qr-aside .util-card {
  border-color: rgba(241,157,75,0.38);
}
.qr-form .form-input,
.qr-form .form-select,
.qr-form .form-textarea,
.qr-form select,
.qr-form input,
.qr-form textarea {
  min-height: 50px;
  background: #101010;
  border-color: rgba(241,157,75,0.42);
}
.qr-form textarea,
.qr-form .form-textarea {
  min-height: 120px;
}
.qr-form select {
  appearance: none;
  -webkit-appearance: none;
}
.qr-form input[type="checkbox"] {
  min-height: 0;
}
.qr-form .form-row {
  gap: 20px;
  margin-bottom: 24px;
}
.qr-form .form-group {
  margin-bottom: 24px;
}
.qr-form .form-row .form-group {
  margin-bottom: 0;
}
.qr-form .form-group:last-child {
  margin-bottom: 0;
}
.qr-form .form-label {
  display: block;
  margin-bottom: 8px;
  line-height: 1.3;
}
.qr-form .form-label span,
.qr-form label span {
  color: var(--orange);
}
.qr-form .form-group > label:has(input[type="checkbox"]) {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.qr-form .form-group > label input[type="checkbox"] {
  margin-top: 4px;
}
.qr-form .form-group > label > span:last-child,
.qr-form .form-group > label span {
  line-height: 1.5;
}
.qr-aside .util-card h3 {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .ct-hero {
    padding: 8px 0 12px;
  }
  .ct-trust-strip {
    margin-top: -8px;
    padding: 54px 0 22px;
  }
  .gs-page .ct-hero {
    padding: 6px 0 10px;
  }
  .qr-hero {
    padding-top: 14px;
    padding-bottom: 16px;
  }
}


/* ── Build v5.62 form and routing refinements ───────────────── */
.gs-simple-hero .ph-hero__inner {
  padding: 56px 0 48px;
}
.gs-simple-hero .ph-hero__copy {
  max-width: 820px;
}
.gs-simple-hero .ph-hero__copy p {
  max-width: 760px;
}
.ct-cards-grid.gs-cards-grid {
  gap: 34px 28px;
}
.gs-page .gs-intro-card,
.gs-intro-card {
  margin: 0 auto 24px;
}
.gs-card {
  padding: 30px 36px 34px;
}
.gs-card .ct-card-sub {
  min-height: 104px;
}
.gs-card .ct-card-list {
  margin-bottom: 20px;
}
.gs-card .ct-card-btn {
  position: static;
  transform: none;
  left: auto;
  bottom: auto;
  min-width: 0;
  width: auto;
  max-width: 100%;
  padding-left: 18px;
  padding-right: 18px;
  white-space: normal;
}
.gs-card .ct-card-note {
  display: none;
}
.gs-note-block {
  margin: 54px auto 0;
}
.ct-cards-zone {
  padding: 0 0 22px;
}
.ct-card-note {
  bottom: -72px;
}
.ct-trust-strip {
  margin-top: 6px;
  padding: 42px 0 24px;
}
.ct-form-card .intake-form-notes {
  margin-bottom: 22px;
}
.intake-form-notes {
  margin: 0 0 24px;
  padding: 14px 16px;
  border: 1px solid rgba(241,157,75,0.28);
  border-radius: 10px;
  background: rgba(241,157,75,0.06);
}
.intake-form-notes p {
  margin: 0;
  color: rgba(255,255,255,0.86);
  font-size: 0.95rem;
  line-height: 1.55;
}
.intake-form-notes p + p {
  margin-top: 6px;
}
.intake-form-notes span {
  color: var(--orange);
  font-weight: 700;
}
.form-row--thirds {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.form-group--checkbox {
  gap: 0;
}
.form-group--checkbox label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.55;
}
.form-group--checkbox input[type="checkbox"] {
  margin-top: 3px;
}

@media (max-width: 834px) {
  .gs-simple-hero .ph-hero__inner {
    padding: 44px 0 38px;
  }
  .ct-cards-grid.gs-cards-grid {
    gap: 22px;
  }
  .gs-card {
    padding: 24px 22px 26px;
  }
  .form-row--thirds {
    grid-template-columns: 1fr;
  }
}


/* ── Build v5.63 contact restoration + intake row alignment ───────────────── */
.ct-hero {
  text-align: center;
  padding: 10px 0 14px;
}
.ct-hero h1 {
  margin-bottom: 6px;
}
.ct-cards-zone {
  position: relative;
  padding: 10px 0 0;
}
.ct-card-note {
  bottom: -62px;
}
.ct-trust-strip {
  margin-top: -18px;
  padding: 72px 0 26px;
}



/* Turnstile widget */
.form-turnstile {
  margin: 1.25rem 0 1rem;
}

.form-turnstile .cf-turnstile {
  display: inline-block;
  max-width: 100%;
}


.site-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
}
.site-modal[hidden] { display: none; }
.site-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(5px);
}
.site-modal__dialog {
  position: relative;
  width: min(92vw, 560px);
  margin: min(12vh, 96px) auto 0;
  background: linear-gradient(180deg, rgba(28,28,28,0.98), rgba(17,17,17,0.98));
  border: 1px solid rgba(241,157,75,0.42);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  padding: 28px 28px 24px;
}
.site-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-main);
  font-size: 28px;
  cursor: pointer;
}
.site-modal__eyebrow {
  margin: 0 0 8px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 700;
}
.site-modal__dialog h2 { margin-bottom: 10px; }
.site-modal__dialog p:last-child { margin-bottom: 0; }
.site-modal__actions { margin-top: 20px; }
body.site-modal-open { overflow: hidden; }

/* === Let's Get Started utility page === */
.lgs-stack{display:grid;gap:24px}
.lgs-download-card .ct-cards-grid,
.lgs-doc-grid{align-items:stretch}
.lgs-doc-grid .ct-card{display:flex;flex-direction:column;height:100%}
.lgs-doc-grid .ct-card .ct-card-divider{margin-top:auto}
.lgs-btn-row{display:flex;flex-wrap:wrap;gap:12px;margin-top:16px}
.lgs-btn-row .btn{flex:1 1 180px;text-align:center}
.lgs-two-col,.lgs-detail-grid{align-items:start}
.lgs-help-note{margin-top:16px}
@media (max-width: 980px){
  .lgs-btn-row{flex-direction:column}
}


/* === 404 page === */
.err404-page{padding:168px 0 100px;background:var(--bg);min-height:auto}
.err404-shell{width:min(92%,1200px);margin:0 auto}
.err404-layout{display:grid;grid-template-columns:minmax(0,500px) minmax(420px,560px);gap:72px;align-items:start}
.err404-copy{max-width:500px}
.err404-copy h1{font-size:clamp(3.1rem,5vw,4.6rem);line-height:0.94;letter-spacing:-0.035em;color:var(--orange);margin:0 0 40px}
.err404-copy p{font-size:1.12rem;line-height:1.72;margin:0 0 28px}
.err404-copy p a{color:var(--orange)}
.err404-action{margin-top:10px;margin-bottom:0}
.err404-action .btn{min-width:184px;justify-content:center;color:var(--white)!important}
.err404-figure{margin:0;align-self:start;justify-self:end;width:min(100%,560px)}
.err404-figure img{display:block;width:100%;height:auto}
@media (max-width:1100px){
  .err404-page{padding:156px 0 100px}
  .err404-layout{grid-template-columns:minmax(0,1fr) minmax(340px,480px);gap:44px}
  .err404-copy h1{margin-bottom:34px}
}
@media (max-width:860px){
  .err404-page{padding:144px 0 100px}
  .err404-shell{width:min(90%,640px)}
  .err404-layout{grid-template-columns:1fr;gap:28px}
  .err404-copy{max-width:100%}
  .err404-figure{justify-self:start;width:min(100%,520px)}
}



/* === Let's Get Started utility page === */
.lgs-stack{display:grid;gap:24px}
.lgs-download-card .ct-cards-grid,
.lgs-doc-grid{align-items:stretch}
.lgs-doc-grid .ct-card{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  height:100%;
  padding:32px 36px;
}
.lgs-doc-grid .ct-card .ct-card-divider{margin-top:10px}
.lgs-btn-row,
.lgs-btn-row--docs{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:22px;
  align-items:center;
}
.lgs-btn-row--docs .ct-card-btn,
.lgs-btn-row--docs a.btn{
  position:relative !important;
  left:auto !important;
  right:auto !important;
  bottom:auto !important;
  top:auto !important;
  transform:none !important;
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  width:260px;
  max-width:100%;
  min-width:0;
  margin:0 !important;
  box-shadow:none;
  visibility:visible !important;
  opacity:1 !important;
  z-index:2;
}
.lgs-doc-grid .ct-card-btn:hover{color:var(--white)}
.lgs-steps,
.lgs-steps--fixed{
  list-style:decimal outside !important;
  margin:0 0 18px 1.75em !important;
  padding:0 !important;
}
.lgs-steps li,
.lgs-steps--fixed li{
  display:list-item !important;
  margin:0 0 14px 0 !important;
  padding:0 0 0 .15em !important;
  line-height:1.65;
}
.lgs-two-col,.lgs-detail-grid{align-items:start}
.lgs-help-note{margin-top:16px}
@media (max-width: 980px){
  .lgs-btn-row,
  .lgs-btn-row--docs{align-items:stretch}
  .lgs-btn-row--docs .ct-card-btn,
  .lgs-btn-row--docs a.btn{
    width:100%;
  }
}


/* === v6.11 lets-get-started list and doc button overrides === */
body .lgs-btn-row--docs .ct-card-btn,
body .lgs-btn-row--docs a.btn{
  float:none !important;
}
body ol.lgs-steps--fixed{
  counter-reset:list-item !important;
}
body ol.lgs-steps--fixed li::marker{
  font-variant-numeric: lining-nums;
}


/* === v6.12 lets-get-started button sizing fix === */
body .lgs-doc-grid .lgs-btn-row--docs{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:12px !important;
}
body .lgs-doc-grid .lgs-btn-row--docs > a.btn,
body .lgs-doc-grid .lgs-btn-row--docs > .ct-card-btn{
  width:260px !important;
  height:auto !important;
  min-height:0 !important;
  min-width:0 !important;
  padding:14px 26px !important;
  line-height:1.2 !important;
  flex:0 0 auto !important;
  aspect-ratio:auto !important;
}
body .lgs-doc-grid .ct-card{
  min-height:0 !important;
}
