@import url('design-system/colors_and_type.css');

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  background: var(--sw-white);
  color: var(--fg-1);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 14px;
  padding: 12px 22px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap;
  line-height: 1.2;
  box-sizing: border-box;
}
.btn--primary { background: var(--sw-yellow-500); color: var(--sw-navy-800); position: relative; overflow: hidden; }
.btn--primary:hover { background: var(--sw-yellow-600); box-shadow: var(--shadow-cta); }
.btn--primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: translateX(-110%);
  transition: transform 700ms var(--ease-out);
}
.btn--primary:hover::after { transform: translateX(110%); }

.btn--navy { background: var(--sw-navy-800); color: #fff; }
.btn--navy:hover { background: var(--sw-blue-500); }

.btn--ghost { background: transparent; color: var(--sw-navy-800); border: 1.5px solid var(--sw-navy-800); padding: 10.5px 20.5px; }
.btn--ghost:hover { background: var(--sw-navy-800); color: #fff; }

.btn--ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.7); padding: 10.5px 20.5px; }
.btn--ghost-light:hover { background: #fff; color: var(--sw-navy-800); border-color: #fff; }

.btn--lg { padding: 16px 32px; font-size: 14px; letter-spacing: 0.08em; }
.btn--xl { padding: 18px 36px; font-size: 15px; letter-spacing: 0.1em; line-height: 1.2; }

.icon-btn {
  background: transparent; border: none; cursor: pointer;
  width: 36px; height: 36px; border-radius: 999px;
  font-size: 24px; color: var(--fg-2); line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast);
}
.icon-btn:hover { background: var(--sw-gray-100); color: var(--fg-1); }

/* =========================================================
   TYPE HELPERS
   ========================================================= */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 14px;
  color: var(--sw-blue-500);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow--yellow { color: var(--sw-yellow-500); }
.eyebrow--white  { color: rgba(255,255,255,0.85); }

.h-display { font-family: var(--font-display); font-weight: 800; font-size: 64px; line-height: 1.02; letter-spacing: -0.02em; color: var(--sw-navy-800); text-transform: uppercase; }
.h1 { font-family: var(--font-display); font-weight: 800; font-size: 52px; line-height: 1.05; letter-spacing: -0.02em; color: var(--sw-navy-800); }
.h2 { font-family: var(--font-display); font-weight: 800; font-size: 40px; line-height: 1.1; letter-spacing: -0.01em; color: var(--sw-navy-800); }
.h3 { font-family: var(--font-display); font-weight: 700; font-size: 26px; line-height: 1.2; color: var(--sw-navy-800); }
.h4 { font-family: var(--font-display); font-weight: 700; font-size: 20px; line-height: 1.25; color: var(--sw-navy-800); }
.lead { font-family: var(--font-body); font-size: 18px; line-height: 1.6; color: var(--fg-2); }
.body { font-family: var(--font-body); font-size: 16px; line-height: 1.65; color: var(--fg-1); }
.small { font-family: var(--font-body); font-size: 14px; color: var(--fg-2); }
.meta  { font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-3); }

/* =========================================================
   LAYOUT
   ========================================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-sm { max-width: 960px; margin: 0 auto; padding: 0 32px; }

.section { padding: 96px 0; }
.section--alt { background: var(--sw-gray-100); }
.section--navy { background: var(--sw-navy-800); color: #fff; }
.section--navy .h2, .section--navy .h1, .section--navy .h3 { color: #fff; }

.section-head { max-width: 720px; }
.section-head__title { margin-top: 14px; }
.section-head__lead { margin-top: 18px; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 60;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--sw-border);
}
.nav__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  height: 100%; display: flex; align-items: center; gap: 24px;
}
.nav__logo { height: 42px; width: auto; cursor: pointer; }
.nav__links { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.nav__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--sw-navy-800);
  cursor: pointer;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  transition: color var(--dur-fast);
  white-space: nowrap;
  position: relative;
  text-decoration: none;
}
button.nav__link { background: transparent; border: 0; }
.nav__logo-link { display: inline-flex; align-items: center; line-height: 0; }
.nav__link:hover { color: var(--sw-blue-500); }
.nav__link.is-active { color: var(--sw-blue-500); }
.nav__link.is-active::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--sw-yellow-500);
  border-radius: 2px;
}
.nav__cta { margin-left: 8px; }

/* Services dropdown */
.nav__svc { position: relative; }
.nav__svc-trigger { display: inline-flex; align-items: center; gap: 6px; }
.nav__caret { width: 10px; height: 10px; transition: transform var(--dur-fast); }
.nav__svc:hover .nav__caret { transform: rotate(180deg); }
.nav__dropdown {
  position: absolute; top: calc(100% + 4px); left: -8px;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--sw-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0; visibility: hidden;
  transform: translateY(-4px);
  transition: all var(--dur-base) var(--ease-out);
  z-index: 80;
}
.nav__svc:hover .nav__dropdown,
.nav__svc:focus-within .nav__dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__dd-link {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-weight: 600; font-size: 14px;
  color: var(--sw-navy-800);
  cursor: pointer;
  transition: all var(--dur-fast);
}
.nav__dd-link:hover { background: var(--sw-gray-100); color: var(--sw-blue-500); }
.nav__dd-icon {
  width: 28px; height: 28px;
  background: var(--sw-blue-100);
  border-radius: var(--r-sm);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--sw-blue-500);
  flex-shrink: 0;
}
.nav__dd-icon svg { width: 18px; height: 18px; }
.nav__dd-link:hover .nav__dd-icon { background: var(--sw-yellow-100); color: var(--sw-yellow-600); }

/* Hamburger toggle (visible <=980px via media query) */
.nav__burger {
  display: none;
  flex: 0 0 44px;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--sw-border);
  border-radius: var(--r-md);
  cursor: pointer;
  margin-left: auto;
  color: var(--sw-navy-800);
  transition: all var(--dur-fast);
  padding: 0;
}
.nav__burger:hover { background: var(--sw-gray-100); }
.nav__burger svg { width: 20px; height: 20px; }

/* Mobile drawer */
.nav__drawer {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(0, 15, 40, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  animation: fade 200ms ease-out;
}
.nav__drawer.is-open { display: block; }
.nav__drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw);
  background: #fff;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  padding: 18px 20px 28px;
  animation: slidein 280ms var(--ease-out);
}
@keyframes slidein { from { transform: translateX(100%); } to { transform: translateX(0); } }
.nav__drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sw-border);
  margin-bottom: 16px;
}
.nav__drawer-close {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 0;
  color: var(--sw-navy-800);
  font-size: 22px; cursor: pointer;
  border-radius: var(--r-sm);
}
.nav__drawer-close:hover { background: var(--sw-gray-100); }
.nav__drawer-section {
  font-family: var(--font-display); font-weight: 800;
  font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-3);
  padding: 14px 12px 8px;
}
.nav__drawer-link {
  display: block;
  font-family: var(--font-display); font-weight: 600;
  font-size: 16px;
  color: var(--sw-navy-800);
  padding: 12px;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all var(--dur-fast);
}
.nav__drawer-link:hover,
.nav__drawer-link.is-active { background: var(--sw-gray-100); color: var(--sw-blue-500); }
.nav__drawer-cta { margin-top: 18px; width: 100%; }
body.is-drawer-open { overflow: hidden; }

/* =========================================================
   HERO (Home)
   ========================================================= */
.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  display: flex; align-items: center;
  background: var(--sw-navy-900);
}
.hero__img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.04);
  animation: hero-zoom 24s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.10); }
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  opacity: 0;
  transition: opacity 1.2s linear;
}
.hero__video--top { opacity: 1; }
@media (max-width: 767px), (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,15,40,0.86) 0%, rgba(0,31,77,0.6) 60%, rgba(0,31,77,0.4) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(0,160,224,0.18) 0%, transparent 60%);
}
.hero__content {
  position: relative;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 96px 32px 120px;
  color: #fff;
}
.hero__main { max-width: 920px; position: relative; z-index: 2; }
.hero__pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px;
  color: var(--sw-yellow-500);
  letter-spacing: 0.28em; text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid rgba(255, 194, 14, 0.45);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  background: rgba(255,194,14,0.05);
  white-space: nowrap;
}
.hero__pill::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--sw-yellow-500);
  box-shadow: 0 0 12px var(--sw-yellow-500);
}
.hero__slogan {
  margin-top: 28px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5.2vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  text-wrap: balance;
}
.hero__sub { max-width: 620px; }
.hero__slogan .em { color: var(--sw-yellow-500); }
.hero__sub {
  margin-top: 26px;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  max-width: 540px;
}
.hero__ctas { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero entry */
.hero__pill, .hero__slogan, .hero__sub, .hero__ctas {
  opacity: 0;
  animation: rise 700ms var(--ease-out) forwards;
}
.hero__slogan { animation-delay: 80ms; }
.hero__sub    { animation-delay: 200ms; }
.hero__ctas   { animation-delay: 320ms; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================================
   STATS BAR
   ========================================================= */
.stats {
  background: #fff;
  border-bottom: 1px solid var(--sw-border);
}
.stats__grid {
  max-width: 1200px; margin: 0 auto; padding: 56px 32px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.stat {
  border-left: 3px solid var(--sw-yellow-500);
  padding-left: 22px;
}
.stat__n {
  font-family: var(--font-display); font-weight: 800;
  font-size: 48px; line-height: 1; color: var(--sw-navy-800);
  letter-spacing: -0.025em;
}
.stat__l {
  margin-top: 10px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 14px; color: var(--fg-2);
  letter-spacing: 0.14em; text-transform: uppercase;
}

/* =========================================================
   SERVICES GRID
   ========================================================= */
.svc-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  box-shadow: var(--shadow-sm);
  display: block;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.svc-card__media {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 800ms var(--ease-out);
}
.svc-card:hover .svc-card__media { transform: scale(1.06); }
.svc-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,31,77,0.85) 100%);
}
.svc-card__body {
  padding: 24px 24px 28px;
  background: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.svc-card__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; color: var(--sw-navy-800);
  line-height: 1.2;
}
.svc-card__arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sw-gray-100);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--sw-navy-800);
  flex-shrink: 0;
  transition: all var(--dur-base) var(--ease-out);
}
.svc-card:hover .svc-card__arrow { background: var(--sw-yellow-500); transform: rotate(-45deg); }

/* =========================================================
   FEATURE / PROMISE BLOCK (alternating)
   ========================================================= */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature--reverse > .feature__media { order: 2; }
.feature__media {
  position: relative;
  height: 480px;
  border-radius: var(--r-xl);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
}
.feature__media::after {
  content: '';
  position: absolute; inset: auto auto -1px -1px;
  width: 70%; height: 90px;
  background: var(--sw-yellow-500);
  border-top-right-radius: var(--r-xl);
}
.feature__media-inner {
  position: absolute; inset: 0; z-index: 2;
  background-image: inherit; background-size: cover; background-position: center;
}
.feature__chip {
  position: absolute;
  bottom: 22px; right: 22px; z-index: 3;
  background: #fff;
  padding: 14px 20px;
  border-radius: var(--r-md);
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; letter-spacing: 0.14em;
  color: var(--sw-navy-800); text-transform: uppercase;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
}
.feature__chip svg { width: 16px; height: 16px; color: var(--sw-blue-500); }
.feature__title { margin-top: 16px; }
.feature__lead { margin-top: 22px; font-size: 17px; line-height: 1.7; color: var(--fg-2); }
.feature__list { margin-top: 28px; display: grid; gap: 14px; }
.feature__li { display: flex; gap: 14px; align-items: flex-start; }
.feature__check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--sw-blue-100);
  color: var(--sw-blue-500);
  display: inline-flex; align-items: center; justify-content: center;
}
.feature__check svg { width: 14px; height: 14px; }
.feature__li-text {
  font-family: var(--font-body); font-size: 15px; line-height: 1.55;
  color: var(--fg-1);
}
.feature__li-text strong {
  display: block;
  font-family: var(--font-display); font-weight: 700;
  font-size: 15px; color: var(--sw-navy-800);
  margin-bottom: 2px;
}
.feature__cta { margin-top: 36px; display: flex; gap: 14px; }

/* =========================================================
   PROCESS
   ========================================================= */
.process-grid {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--sw-border);
  border-left: 1px solid var(--sw-border);
}
.process-step {
  padding: 36px 28px 40px;
  border-right: 1px solid var(--sw-border);
  border-bottom: 1px solid var(--sw-border);
  background: #fff;
  position: relative;
  transition: background var(--dur-base);
}
.process-step:hover { background: var(--sw-yellow-100); }
.process-step__num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 14px; color: var(--sw-blue-500); letter-spacing: 0.2em;
}
.process-step__title {
  margin-top: 18px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 24px; color: var(--sw-navy-800);
  line-height: 1.15;
}
.process-step__desc {
  margin-top: 14px;
  font-family: var(--font-body); font-size: 14px; line-height: 1.6;
  color: var(--fg-2);
}
.process-step__icon {
  position: absolute; top: 28px; right: 24px;
  width: 36px; height: 36px;
  color: var(--sw-yellow-500);
  opacity: 0.5;
  transition: opacity var(--dur-base);
}
.process-step:hover .process-step__icon { opacity: 1; }

/* =========================================================
   TESTIMONIAL
   ========================================================= */
.testimonial {
  background: var(--sw-navy-800);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -120px; left: 4%;
  font-family: var(--font-display);
  font-size: 520px;
  font-weight: 800;
  color: var(--sw-blue-500);
  opacity: 0.18;
  line-height: 0.8;
}
.testimonial__inner {
  position: relative;
  max-width: 1100px; margin: 0 auto; padding: 96px 32px;
}
.testimonial__quote {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px); line-height: 1.25;
  color: #fff;
  letter-spacing: -0.01em;
  max-width: 920px;
}
.testimonial__quote em { color: var(--sw-yellow-500); font-style: normal; }
.testimonial__by {
  margin-top: 36px;
  display: flex; align-items: center; gap: 16px;
}
.testimonial__avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--sw-blue-500);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 20px;
  color: #fff;
}
.testimonial__name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 16px; color: #fff;
}
.testimonial__role {
  margin-top: 4px;
  font-family: var(--font-body); font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.testimonial__nav { margin-top: 36px; display: flex; gap: 8px; }
.testimonial__dot {
  width: 28px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.2);
  border: none; cursor: pointer;
  transition: background var(--dur-base);
}
.testimonial__dot.is-active { background: var(--sw-yellow-500); }

/* =========================================================
   CASE STUDY GRID
   ========================================================= */
.case-grid {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.case-card {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.case-card__media {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.case-card__tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.94);
  color: var(--sw-navy-800);
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; letter-spacing: 0.14em;
  padding: 6px 10px;
  border-radius: var(--r-sm);
  text-transform: uppercase;
}
.case-card__body {
  padding: 24px;
  flex: 1; display: flex; flex-direction: column;
}
.case-card__h {
  font-family: var(--font-display); font-weight: 700;
  font-size: 20px; color: var(--sw-navy-800);
  line-height: 1.25;
}
.case-card__p {
  margin-top: 10px;
  font-family: var(--font-body); font-size: 14px;
  color: var(--fg-2); line-height: 1.55;
  flex: 1;
}
.case-card__foot {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--sw-border);
  display: flex; align-items: center; justify-content: space-between;
}
.case-card__loc {
  font-family: var(--font-display); font-weight: 600;
  font-size: 14px; color: var(--fg-3); letter-spacing: 0.14em; text-transform: uppercase;
}
.case-card__more {
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; color: var(--sw-blue-500); letter-spacing: 0.1em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
}

/* Featured (full-width) case */
.case-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 48px;
}
.case-featured__media {
  background-size: cover; background-position: center;
  min-height: 460px;
  position: relative;
}
.case-featured__tag {
  position: absolute; top: 22px; left: 22px;
  background: var(--sw-yellow-500);
  color: var(--sw-navy-800);
  font-family: var(--font-display); font-weight: 800;
  font-size: 14px; letter-spacing: 0.18em;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  text-transform: uppercase;
}
.case-featured__body { padding: 56px 48px; }
.case-featured__title { margin-top: 14px; }
.case-featured__lead { margin-top: 18px; }
.case-featured__metrics {
  margin-top: 32px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding: 24px 0; border-top: 1px solid var(--sw-border); border-bottom: 1px solid var(--sw-border);
}
.case-featured__metric-n { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--sw-blue-500); }
.case-featured__metric-l { margin-top: 6px; font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--fg-2); letter-spacing: 0.12em; text-transform: uppercase; }
.case-featured__cta { margin-top: 28px; display: flex; gap: 12px; }

/* =========================================================
   PORTFOLIO GRID (masonry-ish)
   ========================================================= */
.gallery {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery__tile {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background-color: var(--sw-gray-200);
  transition: transform var(--dur-base) var(--ease-out);
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: zoom-in;
  display: block;
  text-align: left;
}
.gallery__tile:focus-visible {
  outline: 3px solid var(--sw-yellow-500);
  outline-offset: 2px;
}
.gallery__tile:hover > img {
  transform: scale(1.04);
}
.gallery__tile > img {
  transition: transform var(--dur-base) var(--ease-out);
}
.gallery__tile > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery__tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,15,40,0.7) 100%);
  opacity: 0;
  transition: opacity var(--dur-base);
}
.gallery__tile::after { opacity: 1; background: linear-gradient(180deg, transparent 60%, rgba(0,15,40,0.55) 100%); }
.gallery__caption {
  position: absolute; left: 18px; bottom: 14px; right: 18px; z-index: 2;
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; color: #fff;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(6px);
  transition: all var(--dur-base) var(--ease-out);
}
.gallery__tile .gallery__caption { opacity: 1; transform: translateY(0); }

.gallery__tile--lg { grid-column: 1 / span 6; grid-row: span 2; }
.gallery__tile--lg.gallery__tile--right { grid-column: 7 / span 6; }
.gallery__tile--sm { grid-column: span 3; grid-row: span 1; }

.gallery-filter {
  margin-top: 32px;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.gallery-filter__btn {
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--sw-border);
  color: var(--sw-navy-800);
  cursor: pointer;
  transition: all var(--dur-fast);
}
.gallery-filter__btn:hover { border-color: var(--sw-navy-800); }
.gallery-filter__btn.is-active { background: var(--sw-navy-800); color: #fff; border-color: var(--sw-navy-800); }
.gallery-empty {
  margin-top: 48px;
  padding: 64px 32px;
  background: var(--sw-gray-100);
  border: 1px dashed var(--sw-border);
  border-radius: var(--r-lg);
  text-align: center;
  color: var(--sw-gray-700);
}
.gallery-empty p { margin: 0; font-size: 16px; }
.gallery-empty a { color: var(--sw-navy-800); font-weight: 700; text-decoration: underline; }

/* =========================================================
   FINANCING SECTION
   ========================================================= */
.financing {
  background: var(--sw-navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.financing::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 12% 25%, rgba(0,160,224,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 88% 80%, rgba(255,194,14,0.1) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.financing .container { position: relative; z-index: 1; }
.financing .section__head h2 { color: #fff; }
.financing .section__sub { color: rgba(255,255,255,0.7); }

.fin-steps {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: fin;
}
.fin-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  backdrop-filter: blur(6px);
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-base);
}
.fin-step:hover {
  transform: translateY(-2px);
  border-color: rgba(255,194,14,0.4);
}
.fin-step__num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 40px; line-height: 1;
  color: var(--sw-yellow-500);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.fin-step__h {
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; color: #fff;
  margin-bottom: 8px;
}
.fin-step__p {
  font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

.fin-cta {
  margin-top: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.fin-cta__note {
  font-family: var(--font-body); font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

@media (max-width: 980px) {
  .fin-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .fin-steps { grid-template-columns: 1fr; }
}

/* =========================================================
   ABOUT — FOUNDER + TEAM
   ========================================================= */
.founder-card {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 56px;
  align-items: center;
}
.founder-card__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--sw-navy-800);
  box-shadow: 0 18px 40px -18px rgba(0, 31, 77, 0.35);
}
.founder-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.founder-card__photo-fallback {
  position: absolute; inset: 0;
  display: none; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800;
  font-size: 96px; color: var(--sw-yellow-500);
  background: var(--sw-navy-900);
  letter-spacing: -0.02em;
}
.founder-card__name {
  margin: 8px 0 4px;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.founder-card__role {
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sw-gray-700);
  margin-bottom: 24px;
}
.founder-card__bio {
  font-size: 17px; line-height: 1.7; color: var(--sw-gray-800);
  margin-bottom: 16px;
}
.founder-card__bio:last-child { margin-bottom: 0; }

.team-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--sw-border);
  border-radius: var(--r-lg);
  padding: 20px;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
}
.team-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -16px rgba(0, 31, 77, 0.25);
}
.team-card__photo {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--sw-gray-200);
  margin-bottom: 14px;
}
.team-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.team-card__photo-fallback {
  position: absolute; inset: 0;
  display: none; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800;
  font-size: 32px; color: var(--sw-navy-800);
  background: linear-gradient(135deg, var(--sw-yellow-400), var(--sw-yellow-500));
}
.team-card__name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 16px; color: var(--sw-navy-800);
  margin-bottom: 2px;
}
.team-card__role {
  font-family: var(--font-display); font-weight: 600;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--sw-yellow-600);
  margin-bottom: 10px;
}
.team-card__blurb {
  font-size: 13px; line-height: 1.55; color: var(--sw-gray-700);
  margin: 0;
}

@media (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .founder-card { grid-template-columns: 1fr; gap: 32px; }
  .founder-card__photo { max-width: 360px; margin: 0 auto; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* =========================================================
   PAGE HEADER (subpages)
   ========================================================= */
.page-header {
  background: var(--sw-navy-800);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
}
.page-header__deco {
  position: absolute; right: -200px; top: -80px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,160,224,0.22) 0%, transparent 60%);
  pointer-events: none;
}
.page-header__deco--2 {
  position: absolute; left: 30%; bottom: -300px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,194,14,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.page-header__inner { position: relative; max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.page-header__title {
  margin-top: 18px;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(40px, 5.4vw, 68px); line-height: 1.02;
  letter-spacing: -0.02em; color: #fff;
  text-transform: uppercase;
}
.page-header__sub {
  margin-top: 22px;
  font-size: 18px; line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 640px;
}
.crumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.crumb a { cursor: pointer; transition: color var(--dur-fast); }
.crumb a:hover { color: var(--sw-yellow-500); }
.crumb svg { width: 12px; height: 12px; opacity: 0.5; }

/* =========================================================
   SERVICE PAGE
   ========================================================= */
.svc {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px;
}
.svc__hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--r-xl);
  margin-top: -130px;
  margin-bottom: 56px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 4;
}
.svc__layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: start;
}
.svc__intro p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-1);
  margin-top: 22px;
}
.svc__intro p:first-child {
  font-size: 19px;
  color: var(--sw-navy-800);
  font-weight: 500;
  margin-top: 0;
}
.svc__sidebar {
  background: var(--sw-gray-100);
  border-radius: var(--r-xl);
  padding: 32px;
  position: sticky; top: calc(var(--nav-h) + 24px);
}
.svc__sidebar-h {
  font-family: var(--font-display); font-weight: 800;
  font-size: 18px; color: var(--sw-navy-800);
  letter-spacing: 0.02em;
}
.svc__checklist { margin-top: 22px; display: grid; gap: 0; }
.svc__check {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--sw-border);
}
.svc__check:last-child { border-bottom: none; }
.svc__check-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--sw-yellow-500);
  color: var(--sw-navy-800);
  display: inline-flex; align-items: center; justify-content: center;
}
.svc__check-icon svg { width: 12px; height: 12px; }
.svc__check-text {
  font-family: var(--font-body); font-size: 14px; line-height: 1.5;
  color: var(--sw-navy-800); font-weight: 500;
}

/* CTA block on service page */
.svc-cta {
  margin: 72px 32px 0;
  max-width: 1100px;
  margin-left: auto; margin-right: auto;
  background: var(--sw-navy-800);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
.svc-cta::before {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,194,14,0.2) 0%, transparent 60%);
}
.svc-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.svc-cta__h {
  font-family: var(--font-display); font-weight: 800;
  font-size: 38px; line-height: 1.1; color: #fff;
  letter-spacing: -0.01em;
}
.svc-cta__p {
  margin-top: 14px;
  font-family: var(--font-body); font-size: 16px; line-height: 1.55;
  color: rgba(255,255,255,0.8);
}
.svc-cta__actions { display: flex; flex-direction: column; gap: 12px; }
.svc-cta__phone {
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; color: rgba(255,255,255,0.7);
  letter-spacing: 0.14em; text-transform: uppercase;
  text-align: center;
  margin-top: 8px;
}
.svc-cta__phone strong { color: var(--sw-yellow-500); display: block; font-size: 22px; letter-spacing: 0; margin-top: 4px; }

/* Other services strip (svc page) */
.other-svcs {
  background: var(--sw-gray-100);
  padding: 80px 0;
  margin-top: 96px;
}
.other-svcs__head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 36px;
  flex-wrap: wrap; gap: 16px;
}
.other-svcs__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.other-svc {
  background: #fff;
  border-radius: var(--r-md);
  padding: 22px 20px;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-out);
  display: flex; flex-direction: column; gap: 8px;
  border: 1px solid var(--sw-border);
}
.other-svc:hover {
  border-color: var(--sw-yellow-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.other-svc__name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 15px; color: var(--sw-navy-800);
}
.other-svc__arrow {
  margin-top: auto;
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--sw-gray-100);
  color: var(--sw-navy-800);
  transition: all var(--dur-fast);
}
.other-svc:hover .other-svc__arrow { background: var(--sw-yellow-500); }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: start;
  gap: 64px;
  margin-top: 56px;
}
.contact-info { display: grid; gap: 28px; }
.contact-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 26px;
  border-radius: var(--r-xl);
  background: #fff;
  border: 1px solid var(--sw-border);
}
.contact-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--sw-blue-100);
  color: var(--sw-blue-500);
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-card__icon svg { width: 26px; height: 26px; }
.contact-card__h {
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; color: var(--sw-navy-800);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.contact-card__body {
  margin-top: 6px;
  font-family: var(--font-body); font-size: 16px;
  color: var(--fg-1); line-height: 1.5;
}
.contact-card__body strong {
  display: block;
  font-family: var(--font-display); font-weight: 800;
  font-size: 22px; color: var(--sw-navy-800);
  letter-spacing: -0.01em;
}
.contact-card__body-wrap { min-width: 0; }
.contact-card__cta {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn--sm {
  padding: 8px 16px;
  font-size: 13px;
  letter-spacing: 0.06em;
}

/* Quote form wizard — shared between modal + contact page */
.qf {
  display: flex; flex-direction: column;
}
.qf__progress {
  display: flex; gap: 6px;
  margin-bottom: 10px;
}
.qf__bar {
  flex: 1; height: 4px;
  background: var(--sw-gray-200);
  border-radius: 999px;
  transition: background var(--dur-base);
}
.qf__bar.is-active { background: var(--sw-yellow-500); }
.qf__step-meta {
  font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sw-gray-700);
  margin-bottom: 24px;
}
.qf__step {
  animation: qfFade 280ms var(--ease-out);
}
@keyframes qfFade {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}
.qf__h {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--sw-navy-800);
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.qf__sub {
  font-size: 15px; color: var(--sw-gray-700);
  margin: 0 0 24px;
  line-height: 1.5;
}
.qf .form__row { margin-bottom: 18px; }
.qf .form__field { margin-bottom: 18px; }

.qf__tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.qf__tiles--2 { grid-template-columns: repeat(2, 1fr); }
.qf__tiles--3 { grid-template-columns: repeat(3, 1fr); }
.qf__tiles--4 { grid-template-columns: repeat(4, 1fr); }

.qf-tile {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px;
  padding: 22px 16px;
  background: #fff;
  border: 2px solid var(--sw-border);
  border-radius: var(--r-lg);
  cursor: pointer;
  text-align: center;
  font-family: var(--font-body);
  transition: all var(--dur-fast);
  color: var(--sw-navy-800);
}
.qf-tile:hover {
  border-color: var(--sw-navy-700);
  transform: translateY(-1px);
}
.qf-tile.is-active {
  border-color: var(--sw-yellow-500);
  background: rgba(255, 194, 14, 0.08);
  box-shadow: 0 0 0 4px rgba(255, 194, 14, 0.18);
}
.qf-tile__icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--sw-blue-100);
  color: var(--sw-blue-500);
  border-radius: var(--r-md);
  margin-bottom: 4px;
}
.qf-tile.is-active .qf-tile__icon {
  background: var(--sw-yellow-500);
  color: var(--sw-navy-800);
}
.qf-tile__icon svg { width: 24px; height: 24px; }
.qf-tile__label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.005em;
}
.qf-tile__hint {
  font-size: 12px;
  color: var(--sw-gray-700);
  line-height: 1.4;
}
.qf-tile__num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 36px; letter-spacing: -0.03em;
  color: var(--sw-navy-800);
}
.qf-tile.is-active .qf-tile__num { color: var(--sw-yellow-600); }
.qf-tile--vehicle { padding: 18px 14px 16px; }
.qf-tile--vehicle .qf-vehicle {
  width: 100%;
  height: auto;
  max-height: 110px;
  color: var(--sw-navy-800);
  margin-bottom: 4px;
}
.qf-tile--num { padding: 28px 16px; }
.qf-tile--text { padding: 18px 16px; }

.qf__nav {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--sw-border);
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.qf__nav .btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}
.qf__error {
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: var(--r-md, 8px);
  background: #fdecea;
  border: 1px solid #f5c6c0;
  color: #8a1f1f;
  font-family: var(--font-body);
  font-size: 14px; line-height: 1.5;
}

.form-success { padding: 32px 0; }

@media (max-width: 720px) {
  .qf__tiles, .qf__tiles--3 { grid-template-columns: repeat(2, 1fr); }
  .qf__tiles--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .qf__tiles--2 { grid-template-columns: 1fr; }
  .qf__h { font-size: 20px; }
}

.form {
  background: var(--sw-gray-100);
  border-radius: var(--r-xl);
  padding: 40px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form__field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form__field label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; color: var(--sw-navy-800);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.form__field input,
.form__field select,
.form__field textarea {
  font-family: var(--font-body); font-size: 15px;
  padding: 13px 16px;
  border: 1.5px solid var(--sw-border-strong);
  border-radius: var(--r-md);
  background: #fff;
  color: var(--fg-1);
  outline: none;
  transition: all var(--dur-fast);
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  border-color: var(--sw-blue-500);
  box-shadow: 0 0 0 3px rgba(0, 160, 224, 0.15);
}
.form__field textarea { resize: vertical; min-height: 110px; }
.form__submit-row {
  margin-top: 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.form__submit-note {
  font-family: var(--font-body); font-size: 14px; color: var(--fg-2);
}

.map {
  margin-top: 80px;
  width: 100%;
  height: 380px;
  background: var(--sw-gray-100);
  border-radius: var(--r-xl);
  border: 1px solid var(--sw-border);
  display: block;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* =========================================================
   BLOG
   ========================================================= */
.blog-list {
  margin-top: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.blog-list--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) {
  .blog-list--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-list--3 { grid-template-columns: 1fr; }
}
.blog-card {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--sw-border);
  transition: all var(--dur-base) var(--ease-out);
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.blog-featured { text-decoration: none; color: inherit; cursor: pointer; }
.case-featured--link { text-decoration: none; color: inherit; cursor: pointer; }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card__media {
  height: 220px;
  background-size: cover; background-position: center;
  background-color: var(--sw-navy-800);
}
.blog-card__body {
  padding: 28px;
  flex: 1; display: flex; flex-direction: column;
}
.blog-card__meta {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; color: var(--fg-3);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.blog-card__meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--fg-3); }
.blog-card__category { color: var(--sw-blue-500); }
.blog-card__h {
  margin-top: 14px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; line-height: 1.25; color: var(--sw-navy-800);
}
.blog-card__excerpt {
  margin-top: 12px;
  font-family: var(--font-body); font-size: 15px; line-height: 1.55;
  color: var(--fg-2);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__h {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__more {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--sw-border);
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; color: var(--sw-blue-500); letter-spacing: 0.1em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;
}

/* Featured post */
.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.blog-featured__media {
  background-size: cover; background-position: center;
  min-height: 380px;
}
.blog-featured__body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured__h {
  margin-top: 18px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 32px; line-height: 1.15; color: var(--sw-navy-800);
  letter-spacing: -0.01em;
}
.blog-featured__excerpt { margin-top: 16px; font-size: 16px; line-height: 1.65; color: var(--fg-2); }
.blog-featured__cta { margin-top: 28px; align-self: flex-start; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { display: grid; gap: 0; margin-top: 48px; max-width: 920px; }
.faq__item {
  border-bottom: 1px solid var(--sw-border);
  padding: 4px 0;
}
.faq__q {
  width: 100%;
  background: transparent; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 24px 0;
  font-family: var(--font-display); font-weight: 700;
  font-size: 19px; line-height: 1.4; color: var(--sw-navy-800);
  text-align: left;
}
.faq__q:hover { color: var(--sw-blue-500); }
.faq__plus {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--sw-border-strong);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--sw-navy-800);
  transition: all var(--dur-base) var(--ease-out);
}
.faq__item.is-open .faq__plus {
  background: var(--sw-yellow-500);
  border-color: var(--sw-yellow-500);
  transform: rotate(45deg);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out);
  font-family: var(--font-body); font-size: 16px; line-height: 1.65;
  color: var(--fg-2);
}
.faq__a a {
  color: var(--sw-navy-800);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.faq__a a:hover { color: var(--sw-blue-500); }
.faq__item.is-open .faq__a { max-height: 320px; padding-bottom: 24px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--sw-navy-900);
  color: rgba(255,255,255,0.7);
  position: relative;
}
.footer__cta {
  background: var(--sw-yellow-500);
  color: var(--sw-navy-800);
  padding: 48px 32px;
}
.footer__cta-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.footer__cta-h {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(24px, 3vw, 36px); line-height: 1.1;
  color: var(--sw-navy-800);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.footer__inner {
  max-width: 1200px; margin: 0 auto; padding: 80px 32px 40px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
}
.footer__about { max-width: 360px; }
.footer__logo { height: 48px; width: auto; }
.footer__tag {
  margin-top: 22px;
  font-family: var(--font-display); font-style: italic;
  font-weight: 600; font-size: 16px; line-height: 1.5;
  color: rgba(255,255,255,0.85);
}
.footer__contact-row {
  margin-top: 22px;
  font-family: var(--font-body); font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.footer__social { margin-top: 24px; display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  transition: all var(--dur-fast);
}
.footer__social a:hover { background: var(--sw-yellow-500); color: var(--sw-navy-800); border-color: var(--sw-yellow-500); }
.footer__col-h {
  font-family: var(--font-display); font-weight: 800;
  font-size: 14px; color: #fff; letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__col a,
.footer__link-btn {
  display: block;
  font-family: var(--font-body); font-size: 14px;
  color: rgba(255,255,255,0.65);
  padding: 5px 0;
  cursor: pointer;
  transition: color var(--dur-fast);
}
.footer__link-btn {
  appearance: none; background: none; border: 0;
  text-align: left; width: 100%;
}
.footer__col a:hover,
.footer__link-btn:hover { color: var(--sw-yellow-500); }
.footer__static {
  display: block;
  font-family: var(--font-body); font-size: 14px;
  color: rgba(255,255,255,0.55);
  padding: 5px 0;
  line-height: 1.4;
}
.footer__bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.5);
}

/* =========================================================
   QUOTE MODAL
   ========================================================= */
.modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0, 15, 40, 0.7);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fade 200ms ease-out;
}
@keyframes fade { from { opacity: 0 } to { opacity: 1 } }
.modal__inner {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  width: 100%; max-width: 760px;
  padding: 36px;
  max-height: 90vh; overflow-y: auto;
  animation: rise 320ms var(--ease-out);
}
.modal__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 20px; margin-bottom: 28px;
}
.modal__title { margin-top: 4px; font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--sw-navy-800); }
.modal__success {
  text-align: center; padding: 24px 8px;
}
.modal__success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--sw-yellow-500);
  color: var(--sw-navy-800);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}

/* =========================================================
   GOOGLE REVIEWS  (bold on-navy editorial)
   ========================================================= */
.g-reviews {
  position: relative;
  padding: 120px 0 110px;
  background: var(--sw-navy-900);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.g-reviews__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 18% 30%, rgba(0,160,224,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 82% 75%, rgba(255,194,14,0.12) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.g-reviews .container { position: relative; z-index: 1; }

.g-reviews__inner { /* no-op now — kept so JSX wrapper stays valid */ }
.g-reviews__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end; gap: 32px 48px;
  margin-bottom: 56px;
}
.g-reviews__h {
  margin-top: 14px;
  color: #fff;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 760px;
}
.g-reviews__h .em { color: var(--sw-yellow-500); font-style: normal; }

.g-reviews__write {
  background: var(--sw-yellow-500);
  color: var(--sw-navy-800);
  white-space: nowrap;
  align-self: end;
}
.g-reviews__write:hover { background: var(--sw-yellow-600); }

/* Aggregate-rating strip */
.g-reviews__rating-strip {
  display: flex; align-items: center; gap: 28px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  margin-bottom: 48px;
  backdrop-filter: blur(6px);
}
.g-reviews__rating-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 56px; line-height: 1;
  color: var(--sw-yellow-500);
  letter-spacing: -0.02em;
}
.g-reviews__rating-meta { display: flex; flex-direction: column; gap: 6px; }
.g-reviews__rating-sub {
  font-family: var(--font-body); font-size: 15px;
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.g-reviews__rating-sub strong { color: #fff; font-weight: 700; }
.g-reviews__google-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  color: #fff;
}

/* Featured quote */
.g-reviews__featured-wrap { position: relative; padding: 16px 0 8px; }
.g-reviews__quote-mark {
  position: absolute; top: -32px; left: -16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 240px; line-height: 1;
  color: rgba(255,194,14,0.18);
  pointer-events: none;
  font-weight: 700;
  z-index: 0;
}
.g-reviews__featured {
  position: relative; z-index: 1;
  max-width: 880px;
  animation: gFade 480ms var(--ease-out);
}
@keyframes gFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.g-reviews__quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  color: #fff;
  letter-spacing: -0.01em;
}
.g-reviews__attr {
  display: flex; align-items: center; gap: 14px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.g-reviews__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.1); overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--sw-yellow-500);
}
.g-reviews__avatar img { width: 100%; height: 100%; object-fit: cover; }
.g-reviews__avatar-initial {
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  color: var(--sw-yellow-500);
}
.g-reviews__author {
  font-family: var(--font-display); font-weight: 700;
  font-size: 16px; color: #fff;
}
.g-reviews__attr-sub {
  display: flex; align-items: center; gap: 8px;
  margin-top: 2px;
  font-family: var(--font-body); font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.g-reviews__attr-when { white-space: nowrap; }

/* Controls */
.g-reviews__controls {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-top: 40px;
}
.g-reviews__arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--dur-fast);
}
.g-reviews__arrow:hover {
  background: var(--sw-yellow-500);
  border-color: var(--sw-yellow-500);
  color: var(--sw-navy-800);
}
.g-reviews__dots { display: flex; gap: 8px; }
.g-reviews__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: 0; cursor: pointer;
  transition: all var(--dur-base) var(--ease-out);
}
.g-reviews__dot.is-active {
  background: var(--sw-yellow-500);
  width: 28px; border-radius: 4px;
}

/* Light-on-dark stars: empty stars need to be brighter than the default gray */
.g-reviews .g-stars svg path[fill="#E5E7EB"] { fill: rgba(255,255,255,0.18); }

@media (max-width: 980px) {
  .g-reviews { padding: 80px 0 88px; }
  .g-reviews__head { grid-template-columns: 1fr; }
  .g-reviews__write { justify-self: start; }
  .g-reviews__rating-strip { flex-wrap: wrap; gap: 16px 24px; padding: 18px 22px; }
  .g-reviews__rating-num { font-size: 44px; }
  .g-reviews__quote-mark { font-size: 180px; top: -22px; left: -8px; }
}
@media (max-width: 600px) {
  .g-reviews { padding: 64px 0 72px; }
  .g-reviews__quote-mark { font-size: 130px; top: -16px; left: -4px; }
  .g-reviews__attr { gap: 12px; }
  .g-reviews__avatar { width: 40px; height: 40px; }
}

/* =========================================================
   CASE STUDY & BLOG DETAIL PAGES
   ========================================================= */
.case-detail, .blog-detail { padding: 80px 0 96px; }
.case-detail__hero, .blog-detail__hero {
  display: block; width: 100%; height: auto;
  border-radius: var(--r-xl);
  margin-top: -120px;
  box-shadow: var(--shadow-md);
  position: relative; z-index: 2;
  max-height: 520px; object-fit: cover;
}
.case-detail__metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-top: 48px;
  padding: 28px 32px;
  background: #fff; border-radius: var(--r-xl);
  border: 1px solid var(--sw-border);
}
.case-detail__metric { text-align: center; }
.case-detail__metric-n { font-family: var(--font-display); font-weight: 800; font-size: 38px; color: var(--sw-blue-500); line-height: 1; }
.case-detail__metric-l { margin-top: 8px; font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--fg-2); letter-spacing: 0.12em; text-transform: uppercase; }

.case-detail__body, .blog-detail__body {
  margin: 56px auto 0;
  max-width: 760px;
  font-family: var(--font-body);
  font-size: 18px; line-height: 1.7; color: var(--fg-1);
}
.case-detail__body p, .blog-detail__body p { margin-bottom: 22px; }
.case-detail__body p:last-child, .blog-detail__body p:last-child { margin-bottom: 0; }

.case-detail__cta, .blog-detail__cta {
  margin: 64px auto 0;
  max-width: 760px;
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--sw-border);
}

@media (max-width: 600px) {
  .case-detail, .blog-detail { padding: 56px 0 64px; }
  .case-detail__hero, .blog-detail__hero { margin-top: -64px; max-height: 280px; }
  .case-detail__metrics { grid-template-columns: 1fr 1fr; gap: 20px; padding: 22px 18px; }
  .case-detail__metric-n { font-size: 28px; }
  .case-detail__body, .blog-detail__body { font-size: 16px; }
  .case-detail__cta, .blog-detail__cta { flex-direction: column; align-items: stretch; }
  .case-detail__cta .btn, .blog-detail__cta .btn { width: 100%; justify-content: center; }
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* =========================================================
   TWEAKS PANEL OVERRIDES (themed)
   ========================================================= */
[data-theme="electric"] {
  --sw-yellow-500: #00C2FF;
  --sw-yellow-600: #00A0E0;
  --sw-yellow-100: #D6F0FB;
  --shadow-cta: 0 6px 16px rgba(0, 194, 255, 0.4);
}
[data-theme="bold-yellow"] {
  --sw-navy-800: #0A0F1F;
  --sw-navy-900: #000;
  --sw-yellow-500: #FFD500;
  --sw-yellow-600: #FFC400;
  --sw-yellow-100: #FFF6CC;
  --shadow-cta: 0 8px 22px rgba(255, 213, 0, 0.55);
}
[data-theme="bold-yellow"] .hero { background: #000; }
[data-theme="bold-yellow"] .nav { background: rgba(10, 15, 31, 0.97); border-bottom-color: rgba(255,213,0,0.18); }
[data-theme="bold-yellow"] .nav__link { color: #fff; }
[data-theme="bold-yellow"] .nav__link.is-active { color: var(--sw-yellow-500); }
[data-theme="bold-yellow"] .nav__logo { filter: brightness(0) invert(1); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero__content { padding: 64px 24px 100px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid, .case-grid, .blog-list { grid-template-columns: 1fr 1fr; }
  .feature, .case-featured, .blog-featured, .svc__layout, .contact-grid, .svc-cta__inner { grid-template-columns: 1fr; gap: 32px; }
  .feature--reverse > .feature__media { order: 0; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .other-svcs__grid { grid-template-columns: repeat(2, 1fr); }
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__logo { height: 36px; }
  .footer__inner { grid-template-columns: 1fr 1fr; row-gap: 40px; padding: 64px 24px 32px; }
  .footer__about { grid-column: 1 / -1; max-width: none; }
  .gallery__tile--lg { grid-column: 1 / -1; grid-row: span 2; }
  .gallery__tile--lg.gallery__tile--right { grid-column: 1 / -1; }
  .gallery__tile--sm { grid-column: span 6; grid-row: span 1; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .stats__grid { grid-template-columns: 1fr; }
  .svc-grid, .case-grid, .blog-list, .process-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 160px; }
  .gallery__tile--lg, .gallery__tile--sm { grid-column: 1 / -1; grid-row: span 1; }
  .gallery__tile--lg.gallery__tile--right { grid-column: 1 / -1; }
  .case-featured__body { padding: 28px 20px; min-width: 0; }
  .case-featured__metrics { grid-template-columns: 1fr 1fr; gap: 16px; }
  .case-featured__media { min-height: 260px; }
  .svc__hero-img { height: 260px; margin-top: -100px; }
  .form, .svc-cta { padding: 28px; }
  .form__row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; padding: 56px 24px 24px; }
  .footer__about { grid-column: auto; }
  .modal { padding: 12px; }
  .modal__inner { padding: 24px; }
  .modal__title { font-size: 22px; }
  .form__submit-row { flex-direction: column-reverse; align-items: stretch; }
  .form__submit-row .btn { width: 100%; }
  .nav__inner { padding: 0 16px; }
  .contact-card { grid-template-columns: 48px 1fr; padding: 18px; gap: 14px; }
  .contact-card__icon { width: 48px; height: 48px; }
  .hero__pill { font-size: 11px; letter-spacing: 0.18em; padding: 6px 10px; }
}

/* =========================================================
   GOOGLE BUSINESS WIDGET (LocalOptics)
   ========================================================= */
.gb-widget-section {
  padding: 64px 0 32px;
  background: var(--sw-gray-100);
}
.gb-widget-section #gb-widget {
  min-height: 200px;
}

/* =========================================================
   AUTHORITY CLIENTS
   ========================================================= */
.authority {
  padding: 80px 0 40px;
  background: var(--sw-gray-100);
}
.authority__head {
  max-width: 1280px; margin: 0 auto;
  padding: 0 32px 36px;
  text-align: center;
}
.authority__h {
  margin-top: 8px;
  color: var(--sw-navy-800);
}
.authority__sub {
  margin: 14px auto 0;
  max-width: 640px;
  font-size: 17px; line-height: 1.55;
  color: var(--sw-gray-700);
}
.authority__grid {
  max-width: 1280px; margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.authority__card {
  background: #fff;
  border: 1px solid var(--sw-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.authority__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.authority__card:hover .authority__cta {
  color: var(--sw-blue-500);
}
.authority__media {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.authority__body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex; flex-direction: column; gap: 8px;
}
.authority__name {
  font-family: var(--font-display); font-weight: 800;
  font-size: 18px;
  color: var(--sw-navy-800);
  letter-spacing: -0.01em;
}
.authority__stat {
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px;
  color: var(--sw-blue-500);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.authority__note {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--sw-gray-700);
  flex: 1;
}
.authority__cta {
  margin-top: 14px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--sw-navy-800);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color var(--dur-fast);
}
.authority__cta svg { width: 16px; height: 16px; }
.authority__foot {
  margin-top: 36px;
  display: flex; justify-content: center;
}
@media (max-width: 900px) {
  .authority__grid { grid-template-columns: 1fr; gap: 16px; }
  .authority__media { height: 180px; }
  .authority { padding: 56px 0 24px; }
}

/* =========================================================
   GOOGLE REVIEWS — 5-STAR REVIEWERS BLOCK
   ========================================================= */
.g-reviews__fivestar {
  display: flex; align-items: center; gap: 16px;
}
.g-reviews__fivestar-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 56px; line-height: 1;
  color: var(--sw-yellow-500);
  letter-spacing: -0.02em;
}
.g-reviews__fivestar-meta {
  display: flex; flex-direction: column; gap: 4px;
}
.g-reviews__fivestar-label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.g-reviews__rating-divider {
  width: 1px; align-self: stretch;
  background: rgba(255, 255, 255, 0.18);
  margin: 0 8px;
}
@media (max-width: 760px) {
  .g-reviews__rating-strip { flex-wrap: wrap; gap: 16px 24px; }
  .g-reviews__rating-divider { display: none; }
  .g-reviews__fivestar-num { font-size: 44px; }
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0, 8, 25, 0.92);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 32px 72px;
  animation: fade 180ms ease-out;
}
.lightbox__figure {
  position: relative;
  display: flex; flex-direction: column;
  max-width: min(1400px, 100%);
  max-height: 100%;
  margin: 0;
}
.lightbox__img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 160px);
  width: auto; height: auto;
  object-fit: contain;
  border-radius: var(--r-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  background: var(--sw-gray-200);
  animation: rise 220ms var(--ease-out);
}
.lightbox__caption {
  margin-top: 18px;
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px;
  color: #fff;
  font-family: var(--font-display);
}
.lightbox__title {
  font-weight: 800; font-size: 20px;
  letter-spacing: -0.01em;
}
.lightbox__meta {
  font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.lightbox__close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--dur-fast), border-color var(--dur-fast);
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.3); }
.lightbox__close svg { width: 22px; height: 22px; }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--dur-fast), border-color var(--dur-fast);
}
.lightbox__nav:hover { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.3); }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }
@media (max-width: 720px) {
  .lightbox { padding: 56px 14px; }
  .lightbox__img { max-height: calc(100vh - 200px); }
  .lightbox__nav { width: 42px; height: 42px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__nav svg { width: 22px; height: 22px; }
  .lightbox__close { top: 12px; right: 12px; width: 40px; height: 40px; }
  .lightbox__caption { flex-direction: column; gap: 4px; margin-top: 14px; }
  .lightbox__title { font-size: 16px; }
}

/* Agency credit in the footer bottom: same muted tone, dotted underline on hover only. */
.footer__credit a { color: inherit; text-decoration: none; }
.footer__credit a:hover { color: rgba(255,255,255,0.85); text-decoration: underline; text-decoration-style: dotted; text-underline-offset: 3px; }
