/* ===================================================
   EmDash Digital — Landing Page
   Brand: Retro Scandinavian Editorial Sketch
   Colors: #508CA4 · #212738 · #F8F7FF · #9D5C63 · #D1D646
   =================================================== */

/* Design Tokens */
:root {
  --c-blue:       oklch(57% 0.07 219);
  --c-navy:       oklch(18% 0.04 257);
  --c-white:      oklch(98% 0.01 286);
  --c-rose:       #CE452E;
  --c-lime:       oklch(83% 0.135 107);

  --c-blue-light: oklch(90% 0.035 219);
  --c-blue-sky:   oklch(84% 0.05 219);
  --c-navy-muted: oklch(44% 0.025 257);
  --c-text:       var(--c-navy);
  --c-text-muted: var(--c-navy-muted);

  --sp-1:  4px;  --sp-2:  8px;  --sp-3:  12px;
  --sp-4:  16px; --sp-5:  20px; --sp-6:  24px;
  --sp-8:  32px; --sp-10: 40px; --sp-12: 48px;
  --sp-16: 64px; --sp-20: 80px; --sp-24: 96px;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --r-sm: 4px; --r-md: 8px; --r-lg: 12px; --r-xl: 20px; --r-pill: 100px;
  --max-w: 1200px;
  --nav-h: 72px;

  --shadow-sm:   0 1px 4px oklch(18% 0.04 257 / 0.07);
  --shadow-card: 0 4px 20px oklch(18% 0.04 257 / 0.1);
  --shadow-lift: 0 8px 32px oklch(18% 0.04 257 / 0.16);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.6;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.1;
  text-wrap: balance;
  font-kerning: normal;
}

/* ===================================================
   Eyebrow Labels
   =================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-blue);
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  opacity: 0.45;
  flex-shrink: 0;
}

/* ===================================================
   Buttons
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out,
              background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn:focus-visible {
  outline: 3px solid var(--c-lime);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--c-rose);
  color: #fff;
  border-color: var(--c-rose);
}

@media (hover: hover) {
  .btn-primary:hover {
    background: #b83d28;
    border-color: #b83d28;
    box-shadow: 0 4px 18px rgba(206, 69, 46, 0.45);
    transform: translateY(-1px);
  }
}

.btn-ghost {
  background: transparent;
  color: var(--c-navy);
  border-color: oklch(18% 0.04 257 / 0.25);
}

@media (hover: hover) {
  .btn-ghost:hover {
    border-color: var(--c-navy);
    transform: translateY(-1px);
  }
}

/* ===================================================
   Navigation
   =================================================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-white);
  border-bottom: 1px solid oklch(18% 0.04 257 / 0.09);
  height: var(--nav-h);
}

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  position: relative;
}

.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 38px; width: auto; }

.nav-links-wrapper {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex: 1;
  justify-content: center;
}

.nav-links-wrapper a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--c-text-muted);
  position: relative;
  padding-block: var(--sp-1);
  transition: color 0.12s;
}

.nav-links-wrapper a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-blue);
  transition: width 0.2s ease-out;
}

@media (hover: hover) {
  .nav-links-wrapper a:hover { color: var(--c-navy); }
  .nav-links-wrapper a:hover::after { width: 100%; }
}

.nav-cta {
  flex-shrink: 0;
  padding: 10px 22px;
}

/* Dropdown nav */
.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--c-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding-block: var(--sp-1);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.12s;
  position: relative;
}

.nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-blue);
  transition: width 0.2s ease-out;
}

@media (hover: hover) {
  .nav-dropdown-trigger:hover { color: var(--c-navy); }
  .nav-dropdown-trigger:hover::after { width: 100%; }
}

.nav-caret {
  font-size: 0.7rem;
  display: inline-block;
  transition: transform 0.15s;
  margin-top: 1px;
}

.nav-dropdown.is-open .nav-caret { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-white);
  border: 1px solid oklch(18% 0.04 257 / 0.1);
  border-radius: var(--r-lg);
  box-shadow: 0 8px 32px oklch(18% 0.04 257 / 0.12);
  padding: var(--sp-2);
  min-width: 210px;
  z-index: 200;
  list-style: none;
}

.nav-dropdown.is-open .nav-dropdown-menu { display: block; }

.nav-dropdown-menu li { list-style: none; }

.nav-dropdown-menu a {
  display: block;
  padding: var(--sp-2) var(--sp-3);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text-muted);
  border-radius: var(--r-md);
  transition: background 0.12s, color 0.12s;
  white-space: nowrap;
}

.nav-dropdown-menu a::after { display: none !important; }

@media (hover: hover) {
  .nav-dropdown-menu a:hover {
    background: oklch(96% 0.012 219);
    color: var(--c-navy);
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===================================================
   Hero
   =================================================== */
.hero {
  background: var(--c-white);
  padding-top: var(--sp-6);
  padding-bottom: 0;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-3);
  display: grid;
  grid-template-columns: 30% 1fr;
  align-items: center;
  gap: var(--sp-4);
}

.hero-content {
  max-width: 580px;
  padding-top: var(--sp-6);
  padding-bottom: var(--sp-10);
}

.hero-content .eyebrow { margin-bottom: var(--sp-6); }

.hero-h1 {
  font-size: clamp(2.2rem, 3.8vw + 0.6rem, 3.625rem);
  font-weight: 900;
  color: var(--c-navy);
  margin-bottom: var(--sp-8);
  line-height: 1.07;
  letter-spacing: -0.025em;
}

.hero-h1 em {
  font-style: italic;
  color: var(--c-blue);
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--c-text-muted);
  max-width: 50ch;
  margin-bottom: var(--sp-10);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.trust-bar {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.trust-stars {
  color: var(--c-lime);
  font-size: 1rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.trust-text {
  font-size: 0.875rem;
  color: var(--c-text-muted);
}

.trust-text strong {
  color: var(--c-navy);
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.hero-scene-img {
  display: block;
  width: calc(100% + 96px);
  height: auto;
  max-width: none;
  margin-top: -24px;
  margin-bottom: -8px;
}

/* ===================================================
   Section Shared
   =================================================== */
.section-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-12);
}

.section-header .eyebrow { margin-bottom: var(--sp-4); }

.section-header h2 {
  font-size: clamp(1.75rem, 3vw + 0.4rem, 2.75rem);
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: var(--sp-4);
}

.section-header h2 em {
  font-style: italic;
  color: var(--c-blue);
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--c-text-muted);
  max-width: 56ch;
  margin-inline: auto;
  line-height: 1.7;
}

/* ===================================================
   Services
   =================================================== */
.services {
  background: oklch(100% 0 0);
  padding-block: var(--sp-20);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-5);
  margin-bottom: var(--sp-12);
  align-items: start;
}

.service-card {
  padding: var(--sp-10) var(--sp-6) var(--sp-8);
  border-radius: var(--r-lg);
  border: 1px solid oklch(18% 0.04 257 / 0.09);
  border-top: 3px solid var(--c-blue);
  background: var(--c-white);
  transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
}

@media (hover: hover) {
  .service-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
  }
}

.service-icon {
  width: 160px;
  height: 160px;
  margin-bottom: var(--sp-5);
  object-fit: contain;
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: var(--sp-3);
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}

/* ===================================================
   Testimonial
   =================================================== */
.testimonial-block {
  background: var(--c-navy);
  color: var(--c-white);
  border-radius: var(--r-xl);
  padding: var(--sp-10) var(--sp-12);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: var(--sp-10);
}

.testimonial-content {
  flex: 1;
}

.testimonial-block::before {
  content: '\201C';
  position: absolute;
  top: -24px;
  left: 28px;
  font-family: var(--font-display);
  font-size: 180px;
  line-height: 1;
  color: oklch(98% 0.01 286 / 0.06);
  pointer-events: none;
  user-select: none;
}

.testimonial-accent {
  width: 36px;
  height: 3px;
  background: var(--c-lime);
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-6);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw + 0.2rem, 1.35rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.55;
  text-align: left;
  margin-bottom: var(--sp-6);
  position: relative;
}

.testimonial-author {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-1);
}

.testimonial-avatars {
  width: 240px;
  height: auto;
  flex-shrink: 0;
}

.testimonial-author-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--c-white);
}

.testimonial-author-title {
  font-size: 0.8125rem;
  color: oklch(98% 0.01 286 / 0.55);
}

/* ===================================================
   Industries
   =================================================== */
.industries {
  background: var(--c-blue) url('assets/industries-bg.svg') center / cover;
  padding-block: var(--sp-20);
  color: var(--c-white);
}

.industries .eyebrow { color: var(--c-lime); }

.industries .section-header h2 {
  color: var(--c-white);
}

.industries .section-header h2 em {
  font-style: italic;
  text-decoration: underline;
  text-decoration-color: var(--c-lime);
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  color: inherit;
}

.industries .section-sub {
  color: oklch(98% 0.01 286 / 0.72);
}

.trades-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-12);
}

.trade-card {
  background: var(--c-white);
  border: 1px solid oklch(18% 0.04 257 / 0.1);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-5) var(--sp-6);
  text-align: center;
  transition: background 0.18s ease, transform 0.18s ease;
}

@media (hover: hover) {
  .trade-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
  }
}

.trade-illustration {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
}

.trade-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trade-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: var(--sp-2);
}

.trade-card p {
  font-size: 0.8125rem;
  color: var(--c-text-muted);
  line-height: 1.55;
}

/* Stats Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  border-top: 1px solid oklch(98% 0.01 286 / 0.18);
  padding-top: var(--sp-10);
}

.stat-item { text-align: center; }

.stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--c-lime);
  margin-bottom: var(--sp-3);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--c-white);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.stat-desc {
  font-size: 0.875rem;
  color: oklch(98% 0.01 286 / 0.65);
  line-height: 1.45;
}

/* ===================================================
   Footer
   =================================================== */
.site-footer {
  background: var(--c-navy);
  color: var(--c-white);
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-8);
}

.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.footer-top {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  gap: var(--sp-12);
  align-items: start;
  justify-content: start;
  margin-bottom: var(--sp-10);
}

.footer-brand {}

.footer-logo-img {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  margin-bottom: var(--sp-4);
}

.footer-tagline {
  font-size: 0.875rem;
  color: oklch(98% 0.01 286 / 0.48);
  max-width: 30ch;
  line-height: 1.55;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-lime);
  margin-bottom: var(--sp-4);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-col a {
  font-size: 0.9375rem;
  color: oklch(98% 0.01 286 / 0.58);
  transition: color 0.14s;
}

@media (hover: hover) {
  .footer-col a:hover { color: var(--c-white); }
}

.footer-bottom {
  border-top: 1px solid oklch(98% 0.01 286 / 0.1);
  padding-top: var(--sp-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8125rem;
  color: oklch(98% 0.01 286 / 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: var(--sp-5);
}

.footer-bottom-links a {
  font-size: 0.8125rem;
  color: oklch(98% 0.01 286 / 0.35);
  transition: color 0.14s;
}

@media (hover: hover) {
  .footer-bottom-links a:hover { color: oklch(98% 0.01 286 / 0.7); }
}

/* ===================================================
   Responsive
   =================================================== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
    text-align: center;
    padding-bottom: 0;
  }

  .hero-content { max-width: 100%; }

  .hero-sub {
    margin-inline: auto;
    max-width: 56ch;
  }

  .hero-ctas { justify-content: center; }
  .trust-bar { justify-content: center; }

  .hero-visual {
    max-width: 640px;
    margin-inline: auto;
  }

  .hero-scene-img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links-wrapper {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--c-white);
    flex-direction: column;
    align-items: stretch;
    padding: var(--sp-3) var(--sp-6) var(--sp-6);
    border-bottom: 1px solid oklch(18% 0.04 257 / 0.08);
    gap: 0;
    box-shadow: 0 8px 28px oklch(18% 0.04 257 / 0.1);
    z-index: 99;
  }

  .nav-links-wrapper.is-open { display: flex; }

  .nav-links-wrapper a {
    padding: var(--sp-3) 0;
    border-bottom: 1px solid oklch(18% 0.04 257 / 0.06);
    font-size: 1rem;
  }

  .nav-links-wrapper a::after { display: none; }

  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-dropdown { width: 100%; }

  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: var(--sp-3) 0;
    border-bottom: 1px solid oklch(18% 0.04 257 / 0.06);
    font-size: 1rem;
  }

  .nav-dropdown-trigger::after { display: none; }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: var(--sp-1) 0 var(--sp-2) var(--sp-4);
    min-width: unset;
    background: transparent;
  }

  .nav-dropdown-menu a {
    padding: var(--sp-2) 0;
    border-radius: 0;
    font-size: 0.9375rem;
    border-bottom: 1px solid oklch(18% 0.04 257 / 0.04);
  }

  .nav-dropdown-menu a:last-child { border-bottom: none; }

  .hero { padding-top: var(--sp-12); padding-bottom: var(--sp-10); }

  .services, .industries { padding-block: var(--sp-16); }

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

  .testimonial-block {
    padding: var(--sp-8) var(--sp-6);
    flex-direction: column;
    text-align: center;
  }
  .testimonial-block::before { font-size: 120px; }
  .testimonial-accent { margin-inline: auto; }
  .testimonial-quote { text-align: center; }
  .testimonial-author { align-items: center; text-align: center; }

  .trades-grid { grid-template-columns: repeat(3, 1fr); }

  .stats-bar {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--sp-3);
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .trades-grid { grid-template-columns: repeat(2, 1fr); }

  .section-header { margin-bottom: var(--sp-8); }
}

/* ===================================================
   CTA Section
   =================================================== */
.cta-section {
  background: var(--c-white);
  padding-block: var(--sp-24);
  border-top: 1px solid oklch(18% 0.04 257 / 0.07);
}

.cta-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
}

.cta-content {
  flex: 1;
}

.cta-visual {
  flex-shrink: 0;
  width: 660px;
}

.cta-img {
  width: 100%;
  height: auto;
}

.cta-heading {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--c-navy);
  margin-top: var(--sp-5);
  margin-bottom: var(--sp-4);
}

.cta-heading em {
  font-style: italic;
  color: var(--c-blue);
}

.cta-sub {
  font-size: 1.0625rem;
  color: var(--c-text-muted);
  max-width: 48ch;
  margin-bottom: var(--sp-8);
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-5);
}

.cta-btn-main { font-size: 1rem; }

.cta-phone {
  font-size: 0.875rem;
  color: var(--c-text-muted);
}

.cta-phone a {
  color: var(--c-blue);
  font-weight: 700;
  transition: color 0.14s;
}

@media (hover: hover) {
  .cta-phone a:hover { color: var(--c-navy); }
}

@media (max-width: 768px) {
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-visual { width: 100%; max-width: 360px; }
  .cta-sub { margin-inline: auto; }
  .cta-buttons { justify-content: center; }
}

/* ===================================================
   Service Pages — Shared
   =================================================== */

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.8125rem;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-6);
}

.breadcrumb a {
  color: var(--c-blue);
  font-weight: 500;
  transition: color 0.12s;
}

@media (hover: hover) {
  .breadcrumb a:hover { color: var(--c-navy); }
}

/* Service Hero */
.svc-hero {
  background: var(--c-white);
  padding-top: var(--sp-12);
  padding-bottom: var(--sp-16);
  border-bottom: 1px solid oklch(18% 0.04 257 / 0.07);
}

.svc-hero-inner {
  display: grid;
  grid-template-columns: 1fr 600px;
  align-items: center;
  gap: var(--sp-10);
}

.svc-hero-content .eyebrow { margin-bottom: var(--sp-5); }

.svc-hero-h1 {
  font-size: clamp(2rem, 3.5vw + 0.5rem, 3.25rem);
  font-weight: 900;
  color: var(--c-navy);
  margin-bottom: var(--sp-6);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.svc-hero-h1 em {
  font-style: italic;
  color: var(--c-blue);
}

.svc-hero-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--c-text-muted);
  max-width: 52ch;
  margin-bottom: var(--sp-8);
}

.svc-hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.svc-hero-img {
  width: 100%;
  height: auto;
}

/* The Problem */
.svc-problem {
  background: var(--c-blue-light);
  padding-block: var(--sp-20);
}

.problem-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: var(--sp-16);
}

.problem-text .eyebrow { margin-bottom: var(--sp-4); }

.problem-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw + 0.4rem, 2.25rem);
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: var(--sp-5);
  line-height: 1.1;
}

.problem-text p {
  font-size: 1.0625rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  max-width: 58ch;
}

.problem-text p + p { margin-top: var(--sp-4); }

.problem-visual {
  flex-shrink: 0;
  width: 380px;
  padding-top: var(--sp-8);
}

.problem-icon-img {
  width: 100%;
  height: auto;
}

/* What's Included */
.svc-includes {
  background: var(--c-white);
  padding-block: var(--sp-20);
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.include-card {
  padding: var(--sp-8) var(--sp-6);
  border-radius: var(--r-lg);
  border: 1px solid oklch(18% 0.04 257 / 0.09);
  border-top: 3px solid var(--c-blue);
  background: var(--c-white);
  transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
}

@media (hover: hover) {
  .include-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
  }
}

.include-icon {
  width: 44px;
  height: 44px;
  background: var(--c-blue-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-blue);
  margin-bottom: var(--sp-5);
  flex-shrink: 0;
}

.include-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: var(--sp-2);
}

.include-card p {
  font-size: 0.9375rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}

/* How It Works (Process) */
.svc-process {
  background: var(--c-navy);
  color: var(--c-white);
  padding-block: var(--sp-20);
}

.svc-process .section-header h2 { color: var(--c-white); }
.svc-process .section-header .eyebrow { color: var(--c-lime); }
.svc-process .section-sub { color: oklch(98% 0.01 286 / 0.65); }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-5);
}

.process-connector {
  width: 80px;
  height: 2px;
  background: oklch(98% 0.01 286 / 0.15);
  margin-top: 27px;
  flex-shrink: 0;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-blue);
  color: var(--c-white);
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: var(--sp-3);
}

.step-content p {
  font-size: 0.9375rem;
  color: oklch(98% 0.01 286 / 0.65);
  line-height: 1.65;
}

/* Testimonial wrapper on service pages */
.svc-social-proof {
  background: var(--c-blue-light);
  padding-block: var(--sp-16);
}

/* FAQ */
.svc-faq {
  background: var(--c-white);
  padding-block: var(--sp-20);
}

.faq-list {
  max-width: 720px;
  margin-inline: auto;
}

.faq-item {
  padding: var(--sp-6) 0;
  border-bottom: 1px solid oklch(18% 0.04 257 / 0.09);
}

.faq-item:first-child { border-top: 1px solid oklch(18% 0.04 257 / 0.09); }

.faq-q {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: var(--sp-3);
  line-height: 1.2;
}

.faq-a {
  font-size: 0.9375rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* Service page responsive */
@media (max-width: 900px) {
  .svc-hero-inner { grid-template-columns: 1fr; }
  .svc-hero-visual { display: none; }
  .problem-inner { grid-template-columns: 1fr; }
  .problem-callout { width: auto; max-width: 280px; }
  .includes-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-direction: column; gap: var(--sp-8); }
  .process-connector { display: none; }
}

@media (max-width: 480px) {
  .includes-grid { grid-template-columns: 1fr; }
  .svc-hero-ctas { flex-direction: column; align-items: stretch; }
}

/* ===================================================
   Industry Pages — Shared
   =================================================== */

.ind-hero-img {
  filter: drop-shadow(0 8px 24px oklch(18% 0.04 257 / 0.12));
}

.ind-services {
  background: oklch(100% 0 0);
  padding-block: var(--sp-20);
}

.ind-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.ind-service-card {
  display: flex;
  flex-direction: column;
  padding: var(--sp-8) var(--sp-6);
  border-radius: var(--r-lg);
  border: 1px solid oklch(18% 0.04 257 / 0.09);
  border-top: 3px solid var(--c-blue);
  background: var(--c-white);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease-out, transform 0.2s ease-out;
}

@media (hover: hover) {
  .ind-service-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
  }
}

.ind-service-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: var(--sp-5);
}

.ind-service-body { flex: 1; display: flex; flex-direction: column; }

.ind-service-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: var(--sp-2);
}

.ind-service-card p {
  font-size: 0.9375rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--sp-5);
}

.ind-service-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-blue);
  margin-top: auto;
  transition: color 0.12s;
}

@media (hover: hover) {
  .ind-service-card:hover .ind-service-link { color: var(--c-navy); }
}

@media (max-width: 900px) {
  .ind-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .ind-services-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   Reduced Motion
   =================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ===================================================
   About Page
   =================================================== */

.about-hero {
  background: var(--c-blue-light);
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-20);
  text-align: center;
}

.about-hero-h1 {
  font-size: clamp(2.25rem, 4vw + 0.5rem, 3.75rem);
  font-weight: 900;
  color: var(--c-navy);
  margin-top: var(--sp-5);
  margin-bottom: var(--sp-6);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin-inline: auto;
}

.about-hero-h1 em {
  font-style: italic;
  color: var(--c-blue);
}

.about-hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--c-text-muted);
  max-width: 52ch;
  margin-inline: auto;
}

.about-mission {
  padding-block: var(--sp-24);
  background: var(--c-white);
}

.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.mission-text .eyebrow { margin-bottom: var(--sp-5); }

.mission-text h2 {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: var(--sp-6);
  line-height: 1.12;
}

.mission-text h2 em {
  font-style: italic;
  color: var(--c-blue);
}

.mission-text p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-5);
}

.mission-text p:last-child { margin-bottom: 0; }

.mission-pull {
  background: var(--c-navy);
  color: var(--c-white);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  position: relative;
  overflow: hidden;
}

.mission-visual { display: flex; align-items: center; justify-content: center; }

.mission-img { width: 100%; height: auto; }

.mission-pull::before {
  content: '\201C';
  position: absolute;
  top: -24px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 160px;
  line-height: 1;
  color: oklch(98% 0.01 286 / 0.06);
  pointer-events: none;
}

.mission-pull-bar {
  width: 32px;
  height: 3px;
  background: var(--c-lime);
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-6);
}

.mission-pull blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw + 0.2rem, 1.5rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.55;
  color: var(--c-white);
  position: relative;
}

.about-stats {
  background: var(--c-navy);
  padding-block: var(--sp-16);
  color: var(--c-white);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  text-align: center;
}

.about-values {
  background: var(--c-blue-light);
  padding-block: var(--sp-20);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

.value-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  border: 1px solid oklch(18% 0.04 257 / 0.08);
}

.value-icon {
  width: 40px;
  height: 40px;
  background: var(--c-navy);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  color: var(--c-lime);
}

.value-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: var(--sp-3);
}

.value-card p {
  font-size: 0.9375rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}

.about-team {
  background: var(--c-white);
  padding-block: var(--sp-20);
}

.team-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.team-text .eyebrow { margin-bottom: var(--sp-5); }

.team-text h2 {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: var(--sp-6);
  line-height: 1.12;
}

.team-text p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-5);
}

.team-text p:last-child { margin-bottom: 0; }

.team-closing {
  font-family: var(--font-display);
  font-size: 1.125rem !important;
  font-style: italic;
  font-weight: 700;
  color: var(--c-navy) !important;
}

.team-visual { display: flex; align-items: center; justify-content: center; }

.team-img { width: 100%; height: auto; }

@media (max-width: 768px) {
  .mission-inner { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-8); }
  .values-grid { grid-template-columns: 1fr; }
  .team-inner { grid-template-columns: 1fr; }
  .team-photo-placeholder { aspect-ratio: 3 / 2; }
}
