/* Techtron Design System — source: .stitch/designs/techtron-home.html */
:root {
--brand-gold: #F0C930;
--brand-purple: #543493;
--accent: #F07030;
--dark-blue: #543493;
--cyan: #F07030;
--cyan-50: #FFF8F0;
--slate-50: #FAFAFA;
--slate-100: #F5F5F5;
--slate-200: #E8E8E8;
--slate-300: #D0D0D0;
--slate-400: #69727D;
--slate-500: #69727D;
--slate-600: #69727D;
--slate-800: #040404;
--text-body: #040404;
--border: #69727D;
--font-family-base: 'Montserrat', sans-serif;
--font-family-heading: 'Source Serif 4', serif;
--radius-card: 2px;
--radius-control: 3px;
--radius-secondary: 0px;
--section-padding: 80px;
}
body {
font-family: var(--font-family-base);
color: var(--slate-800);
background-color: #ffffff;
-webkit-font-smoothing: antialiased;
scroll-behavior: smooth;
}
/* Mobile robustness: stop any stray wide element from forcing horizontal
   scrolling. `clip` (not `hidden`) is used so it never turns the root into a
   scroll container — that would break the home page's sticky hero/nav. */
html { overflow-x: clip; }
/* Keep all media inside its container so nothing overflows the viewport. */
img, svg, video, canvas { max-width: 100%; }
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-family-heading);
font-weight: 400;
letter-spacing: normal;
}
.section-label {
font-family: var(--font-family-base);
font-size: 12px;
font-weight: 600;
letter-spacing: 0.04em;
text-transform: uppercase;
font-style: normal;
}
/* Typography */
h1, h2, h3, h4, h5, h6, .tracking-tight {
letter-spacing: normal;
}
.fw-semibold { font-weight: 600 !important; }
.fw-medium { font-weight: 500 !important; }
.fs-xs { font-size: 0.75rem !important; }
.fs-sm { font-size: 0.875rem !important; }
.fs-base { font-size: 1rem !important; }
.fs-lg { font-size: 1.125rem !important; }
.fs-xl { font-size: 1.25rem !important; }
.fs-2xl { font-size: 1.5rem !important; }
.fs-3xl { font-size: 1.875rem !important; }
.fs-4xl { font-size: 2.25rem !important; }
.fs-5xl { font-size: 3rem !important; }
.fs-6xl { font-size: 3.75rem !important; }
.fs-7xl { font-size: 4.5rem !important; }
/* Colors & Backgrounds */
.text-accent { color: var(--cyan) !important; }
.text-dark-blue { color: var(--dark-blue) !important; }
.text-slate-200 { color: var(--slate-200) !important; }
.text-slate-300 { color: var(--slate-300) !important; }
.text-slate-400 { color: var(--slate-400) !important; }
.text-slate-500 { color: var(--slate-500) !important; }
.text-slate-600 { color: var(--slate-600) !important; }
.bg-cyan { background-color: var(--cyan) !important; }
.bg-cyan-50 { background-color: var(--cyan-50) !important; }
.bg-dark-blue { background-color: var(--dark-blue) !important; }
.bg-slate-50 { background-color: var(--slate-50) !important; }
.bg-slate-100 { background-color: var(--slate-100) !important; }
/* Layout & Spacing */
.container-custom {
max-width: 1400px;
margin: 0 auto;
padding: 0 1.5rem;
}
.py-section { padding-top: 8rem; padding-bottom: 8rem; }
.pt-section { padding-top: 8rem; }
.pb-section { padding-bottom: 8rem; }
/* Buttons & Links */
a { text-decoration: none; }
.btn-custom {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.625rem 1.5rem;
border-radius: 9999px;
font-size: 0.875rem;
font-weight: 500;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
border: none;
z-index: 1;
}
.btn-cyan,
.btn.btn-cyan {
background-color: var(--cyan);
color: #ffffff;
border-color: var(--cyan);
}
.btn.btn-cyan:hover,
.btn.btn-cyan:focus {
background-color: #d96328;
border-color: #d96328;
color: #ffffff;
}
.btn-cyan:hover {
background-color: #d96328;
color: #ffffff;
}
.btn-dark {
background-color: var(--dark-blue);
color: #ffffff;
}
.btn-dark:hover {
transform: translateY(-2px);
box-shadow: 0 20px 25px -5px rgba(11, 30, 54, 0.2);
color: #ffffff;
}
.btn-outline-custom {
background-color: #ffffff;
color: var(--text-body);
border: 1px solid var(--border);
border-radius: var(--radius-secondary);
}
.btn-outline-custom:hover {
background-color: var(--slate-50);
transform: translateY(-2px);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.btn-white,
.btn.btn-white {
background-color: #ffffff;
color: var(--dark-blue);
border-color: #ffffff;
}
.btn.btn-white:hover,
.btn.btn-white:focus {
background-color: var(--slate-50);
border-color: var(--slate-50);
color: var(--dark-blue);
}
.btn-white:hover {
background-color: var(--slate-50);
transform: translateY(-2px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
/* Group Hover Utilities */
.group { cursor: pointer; }
.group:hover .group-hover-translate-x { transform: translateX(0.25rem); }
.group:hover .group-hover-translate-xy { transform: translate(0.25rem, -0.25rem); }
.group:hover .group-hover-rotate { transform: rotate(180deg); }
.group:hover .group-hover-scale { transform: scale(1.1); }
.group:hover .group-hover-opacity { opacity: 1; }
.group:hover .group-hover-text-accent { color: var(--cyan) !important; }
.group:hover .group-hover-text-white { color: #ffffff !important; }
.group:hover .group-hover-bg-accent { background-color: var(--cyan) !important; }
/* Custom Shapes & Utilities */
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.aspect-4-3 { aspect-ratio: 4/3; }
.aspect-16-9 { aspect-ratio: 16/9; }
.aspect-16-10 { aspect-ratio: 16/10; }
.aspect-video { aspect-ratio: 16/9; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-banner { width: 100%; aspect-ratio: 21/9; object-fit: cover; max-height: 440px; display: block; }
.img-content { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.img-wide { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.card-visual { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.card-visual-wide { aspect-ratio: 16/9; }
.card-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-visual { position: relative; aspect-ratio: 16/10; max-height: 500px; overflow: hidden; }
.hero-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; transform: scale(1.08); }
.hero-visual--home > img { object-position: center 42%; transform: scale(1.12); }
.testimonial-media { position: relative; overflow: hidden; aspect-ratio: 4/5; min-height: 320px; }
.testimonial-media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.media-embed { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.media-embed > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-image-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 992px) {
  .border-start-lg { border-left: 1px solid var(--bs-border-color, #dee2e6) !important; }
  .testimonial-media { aspect-ratio: auto; min-height: 400px; height: 100%; }
}
.mix-blend-multiply { mix-blend-mode: multiply; }
.backdrop-blur { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
/* Forms */
.form-control-custom {
width: 100%;
padding: 1rem 1.5rem;
border-radius: 0.75rem;
border: 1px solid rgba(0, 174, 239, 0.4);
background-color: #ffffff;
color: var(--slate-800);
transition: all 0.3s ease;
}
.form-control-custom:focus {
outline: none;
border-color: var(--cyan);
box-shadow: 0 0 0 1px var(--cyan);
}
.form-control-custom::placeholder {
color: var(--slate-400);
}
/* Custom Overlays & Gradients */
.bg-overlay-dark {
background: linear-gradient(to top, rgba(4,4,4,0.92) 0%, rgba(4,4,4,0.72) 45%, rgba(4,4,4,0.45) 100%);
}
.bg-overlay-scrim {
background: rgba(4,4,4,0.62);
}
.bg-overlay-scrim-heavy {
background: rgba(4,4,4,0.78);
}
.bg-overlay-cta {
background: linear-gradient(135deg, rgba(84,52,147,0.88) 0%, rgba(4,4,4,0.75) 50%, rgba(240,112,48,0.82) 100%);
}
.card-overlay {
background: linear-gradient(to top, rgba(4,4,4,0.92) 0%, rgba(4,4,4,0.55) 50%, rgba(4,4,4,0.2) 100%);
}
.text-shadow-readable {
text-shadow: 0 1px 3px rgba(0,0,0,0.45), 0 2px 10px rgba(0,0,0,0.3);
}
.text-on-image { color: #ffffff !important; }
.text-on-image-muted { color: rgba(255,255,255,0.88) !important; }
.bg-gradient-animated {
background: linear-gradient(to right, rgba(0,174,239,0.9), rgba(11,30,54,0.9), var(--dark-blue));
background-size: 200% 200%;
animation: gradient 8s ease infinite;
}
/* Animations */
@keyframes marquee {
0% { transform: translateX(0%); }
100% { transform: translateX(-100%); }
}
.animate-marquee {
animation: marquee 40s linear infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}
.animate-float {
animation: float 6s ease-in-out infinite;
}
@keyframes pulse-soft {
0%, 100% { transform: scale(1); opacity: 1; }
50% { transform: scale(1.05); opacity: 0.8; }
}
.animate-pulse-soft {
animation: pulse-soft 3s ease-in-out infinite;
}
@keyframes shimmer {
100% { transform: translateX(100%); }
}
.animate-shimmer::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
transform: translateX(-100%);
z-index: 0;
}
.group:hover .animate-shimmer::before {
animation: shimmer 1.5s infinite;
}
@keyframes gradient {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
@keyframes slideInRight {
from { transform: translate(100%, -50%); opacity: 0; }
to { transform: translate(0, -50%); opacity: 1; }
}
.animate-slide-in {
animation: slideInRight 1s ease-out forwards;
}
/* Legacy scroll-animation classes now render statically. */
.scroll-animate {
opacity: 1;
transform: none;
transition: none;
}
.scroll-animate.show {
opacity: 1;
transform: none;
}
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
/* Floating contact — bottom-right on all pages */
/* Utilities */
.transition-all-custom { transition: all 0.5s ease; }
.shadow-hover:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); }
.hover-lift:hover { transform: translateY(-0.5rem); }
.filter-grayscale { filter: grayscale(100%); }
.filter-grayscale:hover { filter: grayscale(0%); }
.opacity-60 { opacity: 0.6; }
.text-accent { color: var(--accent) !important; }
.group:hover .group-hover-text-accent { color: var(--accent) !important; }
.group:hover .group-hover-bg-accent { background-color: var(--accent) !important; }
.btn-custom { border-radius: var(--radius-control); box-shadow: none; }
.btn-cyan, .btn-dark { border-radius: var(--radius-control); }
.btn-cyan:hover, .btn-dark:hover { box-shadow: none; transform: none; }
.btn-outline-custom, .btn-white { border-radius: var(--radius-secondary); }
.btn-outline-custom:hover, .btn-white:hover { box-shadow: none; transform: none; }
.rounded-3xl { border-radius: var(--radius-card) !important; }
.rounded-2xl { border-radius: var(--radius-card) !important; }
.py-section { padding-top: var(--section-padding); padding-bottom: var(--section-padding); }
.pt-section { padding-top: var(--section-padding); }
.pb-section { padding-bottom: var(--section-padding); }
.bg-overlay-dark { background: linear-gradient(to top, rgba(4,4,4,0.92) 0%, rgba(4,4,4,0.72) 45%, rgba(4,4,4,0.45) 100%); }
.bg-gradient-animated { background: linear-gradient(to right, rgba(240,112,48,0.92), rgba(84,52,147,0.92), var(--brand-purple)); }
.cta-panel { position: relative; overflow: hidden; }
.cta-panel-content { position: relative; z-index: 3; }
.cta-panel-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.cta-panel-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.cta-panel-tint { position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0.85; }
.form-control-custom { border-radius: var(--radius-control); border: 1px solid var(--border); }
.form-control-custom:focus { border-color: var(--accent); box-shadow: none; }
.logo-img { height: 40px; width: auto; }

/* ── Page hero simple ── */
.page-hero-simple { padding-top: calc(var(--section-padding) + 2rem); padding-bottom: 3rem; background: var(--surface); border-bottom: 1px solid var(--border); }
.page-hero-simple .breadcrumb { --bs-breadcrumb-divider: '›'; }
.page-hero-simple .breadcrumb a { color: var(--text-muted); text-decoration: none; }
.page-hero-simple .breadcrumb a:hover { color: var(--accent); }
.page-hero-simple .breadcrumb-item.active { color: var(--text-main); }
.page-hero-photo { padding-top: calc(var(--section-padding) + 2rem); padding-bottom: 4rem; min-height: 340px; border-bottom: none; }
.page-hero-photo-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-photo-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,4,4,0.9) 0%, rgba(4,4,4,0.72) 45%, rgba(4,4,4,0.55) 100%); }
.page-hero-photo .breadcrumb { --bs-breadcrumb-divider: '›'; margin-bottom: 1.25rem; }
.page-hero-photo .breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; }
.page-hero-photo .breadcrumb a:hover { color: #ffffff; }
.page-hero-photo .breadcrumb-item.active { color: #ffffff; }
.page-hero-photo .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }
.page-hero-photo .section-eyebrow { color: var(--accent) !important; }

/* Services hub hero — keep the fleet centered in the wide banner */
.page-hero-photo--services-hub {
  min-height: 400px;
}
.page-hero-photo--services-hub-bg {
  background-position: center 62%;
}
@media (max-width: 991px) {
  .page-hero-photo--services-hub-bg {
    background-position: center 68%;
  }
}
.services-hub-grid .service-card-img {
  object-position: center 55%;
}

/* Leadership hero — keep wall logo fully in frame (source: leadershipBackground.jpg) */
.page-hero-photo--leadership {
  min-height: 440px;
  padding-bottom: 4.5rem;
}
.page-hero-photo--leadership-bg {
  background-position: 52% 8%;
}

/* Press newsroom hero — keep brick-wall Techtron lettering fully visible */
.page-hero-photo--press {
  min-height: 440px;
  padding-bottom: 4.5rem;
}
.page-hero-photo--press-bg {
  background-position: center 12%;
  background-size: cover;
}
.page-hero-photo--press .page-hero-photo-scrim {
  background: linear-gradient(105deg, rgba(4, 4, 4, 0.78) 0%, rgba(4, 4, 4, 0.42) 48%, rgba(4, 4, 4, 0.18) 100%);
}
@media (max-width: 991px) {
  .page-hero-photo--press {
    min-height: 380px;
  }
  .page-hero-photo--press-bg {
    background-position: center 8%;
  }
}
@media (max-width: 575px) {
  .page-hero-photo--press-bg {
    background-position: center 5%;
  }
}

/* Blog index hero — taller banner, lighter scrim, centered logo */
.page-hero-photo--blog {
  min-height: 420px;
  padding-bottom: 5rem;
}
.page-hero-photo--blog-bg {
  background-position: center 38%;
  background-size: cover;
}
.page-hero-photo--blog .page-hero-photo-scrim {
  background: linear-gradient(to top, rgba(4,4,4,0.82) 0%, rgba(4,4,4,0.48) 55%, rgba(4,4,4,0.28) 100%);
}
@media (max-width: 991px) {
  .page-hero-photo--blog {
    min-height: 360px;
  }
  .page-hero-photo--blog-bg {
    background-position: center 42%;
  }
}

.page-hero-photo--career {
  min-height: 300px;
  padding-bottom: 3rem;
}
.page-hero-photo--career .display-title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  max-width: 28ch;
}
@media (max-width: 575px) {
  .page-hero-photo--career .display-title {
    max-width: none;
  }
  .career-detail-actions {
    width: 100%;
  }
  .career-detail-actions .btn {
    flex: 1 1 auto;
  }
}

@media (max-width: 991px) {
  .page-hero-photo--leadership-bg {
    background-position: 56% 6%;
  }
}
@media (max-width: 575px) {
  .page-hero-photo--leadership {
    min-height: 380px;
  }
  .page-hero-photo--leadership-bg {
    background-position: 62% 5%;
  }
}

/* ── FAQ accordion ── */
.faq-accordion .accordion-item { border: 1px solid var(--border); border-radius: var(--radius-card) !important; margin-bottom: 0.75rem; overflow: hidden; background: var(--surface); }
.faq-accordion .accordion-button { font-family: var(--font-heading); font-weight: 600; font-size: 1rem; color: var(--text-main); background: var(--surface); box-shadow: none !important; padding: 1.25rem 1.5rem; }
.faq-accordion .accordion-button:not(.collapsed) { color: var(--accent); background: rgba(240,112,48,0.06); }
.faq-accordion .accordion-button::after { filter: none; }
.faq-accordion .accordion-body { color: var(--text-muted); line-height: 1.7; padding: 0 1.5rem 1.25rem; }

/* ── Team grid ── */
.team-grid .team-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 1.75rem; height: 100%; transition: border-color 0.2s, box-shadow 0.2s; }
.team-grid .team-card:hover { border-color: rgba(240,112,48,0.35); box-shadow: 0 8px 24px rgba(84,52,147,0.08); }
.team-grid .team-avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--brand-purple)); display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; margin-bottom: 1rem; }
.team-grid .team-photo { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; margin-bottom: 1rem; border: 2px solid rgba(240,112,48,0.25); }

/* Leadership page profile cards */
.team-grid--leadership .team-card--leadership {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  overflow: hidden;
  text-align: center;
  background: var(--surface);
  border: 1px solid rgba(84, 52, 147, 0.14);
  border-radius: var(--radius-card);
  box-shadow: 0 10px 30px rgba(84, 52, 147, 0.06);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.team-grid--leadership .team-card--leadership:hover {
  border-color: rgba(240, 112, 48, 0.45);
  box-shadow: 0 16px 36px rgba(84, 52, 147, 0.12);
  transform: translateY(-2px);
}
.team-grid--leadership .team-card-leadership-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--brand-purple));
}
.team-grid--leadership .team-card-leadership-media {
  padding: 1.75rem 1.5rem 0;
}
.team-grid--leadership .team-photo {
  width: 96px;
  height: 96px;
  margin: 0 auto;
  border: 3px solid rgba(240, 112, 48, 0.22);
  box-shadow: 0 8px 20px rgba(84, 52, 147, 0.12);
}
.team-grid--leadership .team-avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto;
  font-size: 1.35rem;
}
.team-grid--leadership .team-avatar--placeholder {
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.18), rgba(240, 112, 48, 0.18));
  border: 1px solid rgba(0, 174, 239, 0.25);
  color: var(--brand-purple);
  font-size: 0.9rem;
  line-height: 1.1;
  padding: 0.75rem;
  text-align: center;
}
.team-grid--leadership .team-card-leadership-body {
  flex: 1;
  padding: 1.25rem 1.5rem 1.5rem;
}
.team-grid--leadership .team-card-role {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.team-grid--leadership .team-card-leadership-footer {
  border-top: 1px solid var(--border);
  padding: 0.9rem 1.25rem 1.15rem;
  background: rgba(240, 112, 48, 0.05);
}
.team-grid--leadership .team-card-email {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  word-break: break-word;
}
.team-grid--leadership .team-card-email:hover {
  color: var(--accent);
}
.location-status-badge { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 0.35rem 0.65rem; border-radius: 999px; }
.location-status-open { background: rgba(16,185,129,0.12); color: #047857; }
.location-status-soon { background: rgba(240,112,48,0.12); color: var(--accent); }

/* ── Process steps ── */
.process-steps { counter-reset: step; }
.process-step { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.process-step:last-child { border-bottom: none; }
.process-step::before { counter-increment: step; content: counter(step); flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: #fff; font-family: var(--font-heading); font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; }
.process-step-text { font-weight: 500; color: var(--text-main); padding-top: 0.5rem; }

/* ── Pricing table ── */
.pricing-table { border: 1px solid var(--border); border-radius: var(--radius-card); overflow: hidden; background: var(--surface); }
.pricing-table .pricing-row { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); gap: 1rem; flex-wrap: wrap; }
.pricing-table .pricing-row:last-child { border-bottom: none; }
.pricing-table .pricing-label { color: var(--text-muted); font-size: 0.95rem; }
.pricing-table .pricing-value { font-family: var(--font-heading); font-weight: 700; color: var(--text-main); text-align: right; }
.pricing-table .pricing-note { padding: 1rem 1.5rem; background: rgba(240,201,48,0.08); font-size: 0.875rem; color: var(--text-muted); }

/* ── Location card ── */
.location-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 2rem; height: 100%; }
.location-card .location-icon { width: 48px; height: 48px; border-radius: var(--radius-control); background: rgba(240,112,48,0.1); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 1rem; }

/* ── Locations network map ── */
.locations-network-map {
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(240, 112, 48, 0.16), transparent 55%),
    radial-gradient(ellipse 70% 55% at 85% 75%, rgba(240, 112, 48, 0.1), transparent 50%),
    linear-gradient(155deg, #2f1a63 0%, #543493 42%, #3d2478 100%);
  color: #fff;
  overflow: hidden;
}
.locations-network-map .section-eyebrow,
.locations-network-map .locations-map-eyebrow {
  color: var(--accent) !important;
}
.locations-network-map .display-title,
.locations-network-map .locations-map-title {
  color: #fff;
}
.locations-network-map .lead-text,
.locations-network-map .locations-map-lead {
  color: rgba(255, 255, 255, 0.92);
  max-width: 38rem;
}
.locations-map-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
.locations-map-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-card);
  padding: 1rem 0.85rem;
  text-align: center;
  backdrop-filter: blur(8px);
}
.locations-map-stat-value {
  display: block;
  font-family: var(--font-family-heading);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1;
  color: var(--accent);
}
.locations-map-stat-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}
.locations-map-shell {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius-card) + 2px);
  background: rgba(8, 4, 22, 0.28);
  box-shadow:
    0 24px 60px rgba(10, 5, 30, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: clamp(1rem, 2vw, 1.5rem);
}
.locations-map-legend {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 3;
  background: rgba(12, 6, 32, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-card);
  padding: 0.85rem 1rem;
  backdrop-filter: blur(10px);
}
.locations-map-legend-title {
  margin: 0 0 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.locations-map-legend-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: #fff;
  padding: 0.2rem 0;
}
.locations-map-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 12px currentColor;
}
.locations-map-legend-dot--hq { background: #34d399; color: #34d399; }
.locations-map-legend-star {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background: currentColor;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  box-shadow: 0 0 12px currentColor;
}
.locations-map-legend-dot--open { background: #34d399; color: #34d399; }
.locations-map-legend-dot--soon { background: var(--brand-gold); color: var(--brand-gold); }
.locations-map-stage {
  position: relative;
  min-height: clamp(280px, 52vw, 520px);
}
.locations-map-loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
}
.locations-map-loading-pulse {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid rgba(240, 112, 48, 0.35);
  border-top-color: var(--accent);
  animation: locations-map-spin 0.9s linear infinite;
}
@keyframes locations-map-spin { to { transform: rotate(360deg); } }
.locations-map-svg {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.locations-map-stage.is-ready .locations-map-svg {
  opacity: 1;
  transform: translateY(0);
}
.locations-map-state {
  fill: rgba(255, 255, 255, 0.07);
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 0.75;
  transition: fill 0.25s ease;
}
.locations-map-state:hover { fill: rgba(255, 255, 255, 0.11); }
.locations-map-state-fallback {
  fill: rgba(255, 255, 255, 0.05);
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 1;
}
.locations-map-marker {
  cursor: pointer;
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.locations-map-marker.is-dimmed { opacity: 0.28; }
.locations-map-marker.is-hidden { opacity: 0; pointer-events: none; }
.locations-map-marker.is-active { opacity: 1; }
.locations-map-marker-ring,
.locations-map-marker-pulse,
.locations-map-marker-core {
  transform-box: fill-box;
  transform-origin: center;
}
.locations-map-marker-ring {
  fill: none;
  stroke-width: 1.5;
  opacity: 0;
  transition: opacity 0.2s ease, r 0.2s ease;
}
.locations-map-marker-pulse {
  fill: currentColor;
  opacity: 0.22;
  animation: locations-map-pulse 2.4s ease-out infinite;
}
.locations-map-marker-core {
  fill: currentColor;
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 1.5;
}
.locations-map-marker--open { color: #34d399; }
.locations-map-marker--soon { color: var(--brand-gold); }
.locations-map-marker--soon .locations-map-marker-pulse {
  animation-duration: 3.2s;
  opacity: 0.24;
}
.locations-map-marker--hq { color: #34d399; }
.locations-map-marker-star {
  fill: currentColor;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 1.2;
  stroke-linejoin: round;
}
.locations-map-marker--hq .locations-map-marker-pulse { animation-duration: 2s; opacity: 0.3; }
.locations-map-marker:hover .locations-map-marker-ring,
.locations-map-marker.is-active .locations-map-marker-ring,
.locations-map-marker:focus-visible .locations-map-marker-ring {
  opacity: 1;
  r: 22;
}
.locations-map-marker--open .locations-map-marker-ring { stroke: #6ee7b7; }
.locations-map-marker--soon .locations-map-marker-ring { stroke: #ffe082; }
.locations-map-marker--hq .locations-map-marker-ring { stroke: #6ee7b7; }
.locations-map-marker--hq:hover .locations-map-marker-ring,
.locations-map-marker--hq.is-active .locations-map-marker-ring,
.locations-map-marker--hq:focus-visible .locations-map-marker-ring {
  r: 24;
}
.locations-map-marker:focus-visible { outline: none; }
.locations-map-marker:focus-visible .locations-map-marker-core,
.locations-map-marker:focus-visible .locations-map-marker-star {
  stroke: #fff;
  stroke-width: 2.5;
}
@keyframes locations-map-pulse {
  0% { transform: scale(0.65); opacity: 0.45; }
  70% { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}
.locations-map-tooltip {
  position: absolute;
  z-index: 4;
  min-width: 11rem;
  max-width: 14rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text-body);
  border: 1px solid rgba(84, 52, 147, 0.12);
  box-shadow: 0 16px 40px rgba(16, 8, 40, 0.28);
  transform: translate(-50%, calc(-100% - 14px));
  pointer-events: auto;
  cursor: pointer;
  animation: locations-map-tooltip-in 0.2s ease;
}
.locations-map-tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.96);
  border-right: 1px solid rgba(84, 52, 147, 0.12);
  border-bottom: 1px solid rgba(84, 52, 147, 0.12);
  transform: translateX(-50%) rotate(45deg);
}
@keyframes locations-map-tooltip-in {
  from { opacity: 0; transform: translate(-50%, calc(-100% - 6px)); }
  to { opacity: 1; transform: translate(-50%, calc(-100% - 14px)); }
}
.locations-map-tooltip-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand-purple);
  margin-bottom: 0.25rem;
}
.locations-map-tooltip-title {
  display: block;
  font-family: var(--font-family-heading);
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 0.45rem;
}
.locations-map-tooltip-status {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  margin-bottom: 0.45rem;
}
.locations-map-tooltip-status--open {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
}
.locations-map-tooltip-status--soon {
  background: rgba(240, 201, 48, 0.2);
  color: #8a6d00;
}
.locations-map-tooltip-status--hq {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
}
.locations-map-tooltip-link {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
}
@media (max-width: 991.98px) {
  .locations-map-stats { margin-top: 0.5rem; }
  .locations-map-legend {
    position: static;
    margin-bottom: 0.85rem;
    width: fit-content;
  }
}
@media (max-width: 575.98px) {
  .locations-map-stats { grid-template-columns: 1fr; }
  .locations-map-stat { display: flex; align-items: center; justify-content: space-between; text-align: left; }
  .locations-map-stat-value { font-size: 1.5rem; }
  .locations-map-stat-label { margin-top: 0; }
}

/* ── Article body ── */
.article-body { max-width: 720px; }
.article-body h2 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; margin-top: 2.5rem; margin-bottom: 1rem; color: var(--text-main); }
.article-body p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.25rem; }
.article-body a { color: var(--brand-blue, #1B4F8A); text-decoration: underline; text-underline-offset: 2px; }
.article-body a:hover { color: var(--brand-navy, #0F2C4C); }
.article-meta { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 2rem; }
.article-hero-img { width: 100%; border-radius: var(--radius-card); aspect-ratio: 16/9; object-fit: cover; margin-bottom: 2rem; }
.article-meta-bar { background: var(--surface); border-bottom: 1px solid var(--border); }
.article-meta-item { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; display: inline-flex; align-items: center; gap: 0.35rem; }
.article-content { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 2rem 2.25rem; }
.article-content h2:first-child { margin-top: 0; }
@media (min-width: 768px) {
  .article-content { padding: 2.5rem 3rem; }
}

/* ── Service page visuals ── */
.benefit-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 1.5rem; height: 100%; transition: border-color 0.2s, box-shadow 0.2s; }
.benefit-card:hover { border-color: rgba(240,112,48,0.35); box-shadow: 0 8px 24px rgba(84,52,147,0.08); }
.benefit-card-icon { color: var(--accent); font-size: 1.75rem; margin-bottom: 0.75rem; display: block; }
.benefit-card-text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin: 0; }
.audience-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.audience-item:last-child { border-bottom: none; }
.audience-item-icon { flex-shrink: 0; width: 2.5rem; height: 2.5rem; border-radius: 50%; background: rgba(240,112,48,0.1); display: flex; align-items: center; justify-content: center; color: var(--accent); }
.audience-item-text { font-weight: 500; color: var(--text-main); padding-top: 0.35rem; margin: 0; }

/* ── Service detail blocks ── */
.detail-list { list-style: none; padding: 0; margin: 0; }
.detail-list li { display: flex; gap: 0.75rem; align-items: flex-start; padding: 0.6rem 0; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.detail-list li:last-child { border-bottom: none; }
.detail-list li iconify-icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* ── Generated page tokens ── */
:root {
  --surface: #ffffff;
  --surface-alt: #FAFAFA;
  --text-main: #040404;
  --text-muted: #69727D;
  --font-heading: 'Source Serif 4', serif;
}
.section-eyebrow { font-family: var(--font-family-base); font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 0.75rem; }
.display-title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 600; color: var(--text-main); line-height: 1.15; }
.lead-text { font-size: 1.125rem; color: var(--text-muted); line-height: 1.7; }
.locations-network-map .section-eyebrow { color: var(--accent) !important; }
.locations-network-map .display-title { color: #fff; }
.locations-network-map .lead-text { color: rgba(255, 255, 255, 0.92); }
.bg-surface-alt { background: var(--surface-alt); }
.max-w-prose { max-width: 640px; }

/* ── Site nav ── */
.site-nav { background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); padding: 0; }
.site-nav-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; width: 100%; min-height: 5rem; }
.site-nav .navbar-brand { padding: 0; margin-right: 0; flex-shrink: 0; }
.site-nav .navbar-toggler { padding: 0.25rem; color: var(--text-muted); order: 2; }
.site-nav .navbar-toggler:focus { box-shadow: none; }
.site-nav .nav-link { color: var(--text-muted); font-size: 0.875rem; font-weight: 500; padding: 0.5rem 0.75rem !important; white-space: nowrap; }
.site-nav .nav-link:hover, .site-nav .nav-link.active, .site-nav .nav-link.show { color: var(--accent); }
.site-nav .dropdown-menu { border-color: var(--border); border-radius: var(--radius-card); box-shadow: 0 8px 24px rgba(84,52,147,0.08); padding: 0.5rem; }
.site-nav .dropdown-item { font-size: 0.875rem; border-radius: var(--radius-control); padding: 0.45rem 0.75rem; }
.site-nav .dropdown-item:hover, .site-nav .dropdown-item:focus { background: rgba(240,112,48,0.08); color: var(--accent); }
.dropdown-menu-locations { min-width: min(18rem, calc(100vw - 2rem)); padding: 0.75rem !important; }
.locations-dropdown-actions { display: flex; flex-wrap: wrap; gap: 0.25rem 1rem; padding-bottom: 0.75rem; margin-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.locations-dropdown-actions .dropdown-item { display: inline-flex; width: auto; padding: 0.35rem 0.75rem; }
.locations-dropdown-states { max-height: min(24rem, 70vh); overflow-y: auto; }
.locations-dropdown-panel { border-bottom: 1px solid var(--border); }
.locations-dropdown-panel:last-child { border-bottom: none; }
.locations-dropdown-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  list-style: none;
  border-radius: var(--radius-control);
}
.locations-dropdown-summary::-webkit-details-marker { display: none; }
.locations-dropdown-summary::marker { content: ""; }
.locations-dropdown-summary:hover, .locations-dropdown-panel[open] > .locations-dropdown-summary { color: var(--accent); background: rgba(240,112,48,0.06); }
.locations-dropdown-chevron { flex-shrink: 0; color: var(--text-muted); transition: transform 0.2s ease, color 0.2s ease; }
.locations-dropdown-panel[open] .locations-dropdown-chevron { transform: rotate(180deg); color: var(--accent); }
.locations-dropdown-cities { display: flex; flex-direction: column; gap: 0.1rem; padding: 0 0.5rem 0.65rem 0.85rem; }
.locations-dropdown-city { display: block; font-size: 0.84rem; font-weight: 500; color: var(--text-main); text-decoration: none; padding: 0.35rem 0.5rem; border-radius: var(--radius-control); }
.locations-dropdown-city:hover, .locations-dropdown-city:focus { background: rgba(240,112,48,0.08); color: var(--accent); }
.site-nav-cta { flex-shrink: 0; white-space: nowrap; font-size: 0.875rem; }
@media (min-width: 992px) {
  .site-nav-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; column-gap: 2rem; }
  .site-nav .navbar-brand { grid-column: 1; }
  .site-nav .navbar-toggler { display: none; }
  .site-nav .navbar-collapse { grid-column: 2; display: flex !important; justify-content: center; flex-basis: auto; }
  .site-nav .navbar-nav { flex-direction: row; margin: 0 !important; gap: 0.25rem; }
  .site-nav-cta { grid-column: 3; }
}
@media (max-width: 991.98px) {
  .site-nav-cta { display: none !important; }
  .site-nav .navbar-collapse { flex-basis: 100%; flex-grow: 1; order: 3; background: var(--surface); border-top: 1px solid var(--border); padding: 0.75rem 0 0.5rem; margin-top: 0.5rem; }
  .site-nav .navbar-nav { width: 100%; gap: 0 !important; }
  .site-nav .nav-item { width: 100%; }
  .site-nav .nav-link { padding: 0.55rem 0 !important; white-space: normal; }
  .site-nav .nav-cta-mobile { margin-top: 0.75rem; }
  .site-nav .nav-cta-mobile .btn-cyan { display: block; width: 100%; text-align: center; }
  .site-nav .dropdown-menu { position: static !important; transform: none !important; float: none; border: none; box-shadow: none; padding: 0 0 0 0.75rem; margin: 0; background: transparent; }
  .dropdown-menu-locations { min-width: 0 !important; padding: 0 0 0 0.75rem !important; }
  .locations-dropdown-actions { display: block; border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
  .locations-dropdown-actions .dropdown-item { display: block; width: 100%; padding: 0.45rem 0; }
  .locations-dropdown-states { max-height: none; overflow: visible; }
  .locations-dropdown-summary { padding-left: 0; padding-right: 0; }
  .locations-dropdown-cities { padding-left: 0.5rem; }
}

/* ── Floating contact ── */
.floating-contact { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 1030; display: flex; flex-direction: column; gap: 0.5rem; }
.floating-btn { width: 48px; height: 48px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(240,112,48,0.35); transition: transform 0.2s; }
.floating-btn:hover { transform: scale(1.05); color: #fff; }

/* ── Trust marquee ── */
.trust-marquee { overflow: hidden; background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-track { display: flex; gap: 3rem; animation: marquee 30s linear infinite; white-space: nowrap; }
.trust-item { font-weight: 600; color: var(--text-muted); opacity: 0.7; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Service cards ── */
.service-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; color: inherit; }
.service-card:hover { border-color: rgba(240,112,48,0.35); box-shadow: 0 12px 32px rgba(84,52,147,0.08); }
.service-card-img-wrap { aspect-ratio: 16/10; overflow: hidden; }
.service-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-card-body { padding: 1.5rem; }
.service-card-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--text-main); }
.service-card-text { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
.service-card-link { font-size: 0.875rem; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 0.35rem; }

/* ── Blog cards ── */
.blog-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; color: inherit; }
.blog-card:hover { border-color: rgba(240,112,48,0.35); box-shadow: 0 12px 32px rgba(84,52,147,0.08); }
.blog-card-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: center; background: var(--surface-alt); display: block; }
.blog-card-body { padding: 1.25rem 1.5rem 1.5rem; display: flex; flex-direction: column; min-height: 9.5rem; }
.blog-card-date { font-size: 0.8rem; color: var(--text-muted); }
.blog-card-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--text-main); margin: 0.5rem 0; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-excerpt { font-size: 0.875rem; color: var(--text-muted); margin: 0; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ── Stats ── */
.stat-value { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--text-main); }
.stat-figure { white-space: nowrap; }
.stat-label { font-size: 0.875rem; color: var(--text-muted); margin-top: 0.25rem; }
[data-component="stats-split"] .stat-label { hyphens: none; }

/* ── Site footer ── */
.site-footer { background: #fff; border-top: 1px solid var(--border); }
.footer-heading { font-family: var(--font-family-base); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 1rem; color: var(--text-main); }
.footer-link { color: var(--text-muted); font-size: 0.9rem; text-decoration: none; }
.footer-link:hover { color: var(--accent); }
.footer-links li { margin-bottom: 0.5rem; }

/* ── Press / media kit ── */
.media-contact-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 2rem; height: 100%; }
.media-contact-card .media-icon { width: 48px; height: 48px; border-radius: var(--radius-control); background: rgba(240,112,48,0.1); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 1.25rem; }
.media-contact-photo { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; }
@media (min-width: 992px) {
  .media-contact-photo { min-height: 100%; }
}
.boilerplate-block { background: var(--surface-alt); border-left: 4px solid var(--accent); padding: 1.5rem 1.75rem; border-radius: 0 var(--radius-card) var(--radius-card) 0; }
.boilerplate-block p { color: var(--text-muted); line-height: 1.8; margin: 0; font-size: 1.05rem; }
.fact-sheet { border: 1px solid var(--border); border-radius: var(--radius-card); overflow: hidden; background: var(--surface); }
.fact-sheet-row { display: flex; justify-content: space-between; gap: 1.5rem; padding: 0.9rem 1.5rem; border-bottom: 1px solid var(--border); font-size: 0.95rem; flex-wrap: wrap; }
.fact-sheet-row:last-child { border-bottom: none; }
.fact-sheet-label { color: var(--text-muted); flex-shrink: 0; }
.fact-sheet-value { font-weight: 600; color: var(--text-main); text-align: right; }
.expertise-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 1.5rem; height: 100%; transition: border-color 0.2s; }
.expertise-card:hover { border-color: rgba(240,112,48,0.35); }
.expertise-card h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--text-main); }
.expertise-card p { font-size: 0.875rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.testimonial-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 1.75rem; }
.testimonial-quote-icon { color: var(--accent); font-size: 1.75rem; margin-bottom: 1rem; display: block; }
.testimonial-quote { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.testimonial-attribution { font-size: 0.8rem; font-weight: 600; color: var(--text-main); margin: 0; }
.testimonial-slide { transition: opacity 0.18s ease, transform 0.18s ease; }
.testimonial-slide.is-changing { opacity: 0.35; transform: translateY(6px); }
.testimonials-nav-btn:disabled { opacity: 0.35; cursor: not-allowed; transform: none !important; }
.spokesperson-row { display: flex; justify-content: space-between; align-items: center; padding: 0.85rem 0; border-bottom: 1px solid var(--border); }
.spokesperson-row:last-child { border-bottom: none; }
.press-empty { text-align: center; padding: 3rem 2rem; border: 1px dashed var(--border); border-radius: var(--radius-card); background: var(--surface-alt); }
.press-empty h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }

/* ── Careers / franchise forms ── */
.career-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 2rem; box-shadow: 0 8px 24px rgba(84,52,147,0.06); }
.career-card h3 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 600; color: var(--text-main); margin-bottom: 0.75rem; }
.career-card p { color: var(--text-muted); line-height: 1.7; }
.career-card-warning { border-color: rgba(240,112,48,0.45); background: rgba(240,112,48,0.05); }
.location-card-warning { border-color: rgba(240,112,48,0.45); background: rgba(240,112,48,0.05); }
.career-tag { display: inline-flex; align-items: center; min-height: 2rem; padding: 0.35rem 0.7rem; border: 1px solid rgba(240,112,48,0.25); border-radius: var(--radius-control); color: var(--accent); background: rgba(240,112,48,0.07); font-size: 0.8rem; font-weight: 600; }
.career-listing-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 2rem; box-shadow: 0 8px 24px rgba(84,52,147,0.06); transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; color: inherit; }
.career-listing-card:hover { transform: translateY(-2px); border-color: rgba(240,112,48,0.35); box-shadow: 0 12px 28px rgba(84,52,147,0.1); }
.career-listing-title { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 600; color: var(--text-main); margin-bottom: 0.75rem; }
.career-listing-excerpt { color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.career-listing-link { color: var(--accent); font-size: 0.9rem; font-weight: 600; }
.career-detail-list { padding-left: 1.25rem; margin: 0; color: var(--text-muted); line-height: 1.7; }
.career-detail-list li + li { margin-top: 0.75rem; }
.career-detail-meta-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 24px rgba(84,52,147,0.05);
}
.career-detail-meta-copy { flex: 1 1 320px; min-width: 0; }
.career-detail-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; flex-shrink: 0; }
.career-detail-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.career-detail-heading {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 1rem;
}
.career-search .input-group { align-items: stretch; gap: 0.5rem; }
.career-search .form-control-custom { min-height: 3rem; }
.career-search .btn { border-radius: var(--radius-control) !important; }
.franchise-form .form-select { min-height: 3.5rem; }

/* ── Responsive typography & spacing ── */
@media (max-width: 767.98px) {
  :root { --section-padding: 48px; }
  .fs-7xl { font-size: 2.75rem !important; }
  .fs-6xl { font-size: 2.5rem !important; }
  .fs-5xl { font-size: 2.25rem !important; }
  .fs-4xl { font-size: 1.875rem !important; }
  .fs-3xl { font-size: 1.5rem !important; }
  .container-custom { padding: 0 1rem; }
  .contact-detail-lg { font-size: 1.5rem !important; word-break: break-word; }
  /* Stat figures sit two-up on phones — shrink and keep each value on one line. */
  .stat-value { font-size: 1.35rem; }
  [data-component="stats-split"] .stat-figure.fs-5xl { font-size: 1.75rem !important; }
  [data-component="stats-split"] .row.g-5 { --bs-gutter-y: 2rem; }
  .floating-contact { right: 0.75rem; bottom: 0.75rem; }
}
