

:root {
  
  --ink:        #111111;
  --ink-2:      #1a1a1a;
  --ink-soft:   #232323;
  --ink-line:   #2e2e2e;

  --paper:      #ffffff;
  --paper-2:    #f1f1ef;
  --paper-3:    #e6e6e3;

  --rule:       #e6e6e6;
  --rule-soft:  #efefef;

  --warm:       #555555;
  --warm-dim:   #8a8a8a;

  
  --accent:     #8a2a2a;
  --accent-2:   #a83434;
  --accent-deep:#621e1e;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 1px 2px rgba(17, 17, 17, 0.04), 0 2px 6px rgba(17, 17, 17, 0.04);
  --shadow-md: 0 8px 22px rgba(17, 17, 17, 0.08);
  --shadow-lg: 0 22px 50px rgba(17, 17, 17, 0.14);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 6.5rem; }
html, body { overflow-x: clip; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--ink); color: var(--paper); }

img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; }
a { color: inherit; }


.container-app {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 1024px) { .container-app { padding-inline: 2.25rem; } }
@media (min-width: 1600px) { .container-app { max-width: 1400px; } }

.section { padding-block: 4.5rem; }
@media (min-width: 1024px) { .section { padding-block: 7rem; } }

.about-section    { background: var(--paper); }
.services-section { background: var(--paper-2); }
.process-section  { background: var(--paper); }
.people-section   {
  background: var(--paper-2);
  padding-block: 4.5rem;
}
@media (min-width: 1024px) { .people-section { padding-block: 6.5rem; } }
.trust-band       { background: var(--paper-2); }


.section-header {
  text-align: left;
  max-width: 44rem;
  margin: 0 0 3rem;
}
@media (min-width: 1024px) { .section-header { margin-bottom: 4rem; } }

.section-h2 {
  font-family: 'Familjen Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  text-wrap: balance;
  max-width: 22ch;
}
.section-h2.on-dark { color: var(--paper); }

.section-lead {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--warm);
  margin-top: 1.25rem;
  font-weight: 400;
  max-width: 50ch;
}

.section-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
  max-width: 56ch;
  font-size: 0.9875rem;
  line-height: 1.7;
  color: var(--warm);
}


.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}
.kicker::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--accent);
}
.kicker-sep {
  display: inline-block;
  width: 1px;
  height: 10px;
  background: currentColor;
  opacity: 0.35;
  margin-inline: 0.55rem;
}
.kicker-light {
  color: var(--paper);
}
.kicker-light::before { background: var(--accent-2); }


#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 60;
  transition: width 0.1s linear;
  pointer-events: none;
}


#topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 30;
  background: var(--ink);
  border-bottom: 1px solid var(--ink-line);
  transition: transform 0.4s var(--ease);
}
#topbar.topbar-hidden { transform: translateY(-100%); }

.topbar-grid {
  display: flex;
  align-items: center;
  height: 2.2rem;
  justify-content: center;
  gap: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
}
.topbar-brand { display: none; color: rgba(255, 255, 255, 0.5); }
.topbar-area  { display: none; color: rgba(255, 255, 255, 0.4); margin-left: auto; }
.topbar-info  { display: inline-flex; align-items: center; gap: 0.85rem; }
.topbar-link  {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.25s;
  white-space: nowrap;
}
.topbar-link svg { width: 12px; height: 12px; }
.cta-info-row svg, .person-card-contact a svg { flex-shrink: 0; }
.topbar-brand, .topbar-area { white-space: nowrap; }
.topbar-link:hover { color: var(--accent-2); }
.topbar-sep { color: rgba(255, 255, 255, 0.25); }

@media (min-width: 768px) {
  .topbar-grid { justify-content: space-between; }
  .topbar-brand { display: inline; }
  .topbar-info { margin-left: auto; margin-right: auto; }
  .topbar-area { display: inline; }
}
@media (max-width: 420px) {
  .topbar-info { gap: 0.6rem; font-size: 0.65rem; }
  .topbar-sep { display: none; }
  .topbar-link svg { display: none; }
}

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: top 0.5s var(--ease);
}
#navbar.has-topbar { top: 2.2rem; }
#navbar.no-topbar  { top: 0; }

.navbar-bg {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  z-index: 0;
}
#navbar.scrolled .navbar-bg {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--rule);
}

.nav-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.25rem;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}
.brand-logo {
  height: 34px;
  width: auto;
  transition: opacity 0.25s;
}
.brand:hover .brand-logo { opacity: 0.75; }
@media (min-width: 768px) {
  .brand-logo { height: 38px; }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.2rem;
}
@media (min-width: 1024px) { .nav-links { display: inline-flex; } }

.nav-link {
  position: relative;
  padding: 0.6rem 0.85rem;
  color: var(--warm);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s;
}
.nav-link:hover { color: var(--ink); }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0.85rem; right: 0.85rem;
  bottom: 0.45rem;
  height: 1.5px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 51;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-bar {
  width: 1.5rem;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
body.menu-open .menu-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .menu-bar:nth-child(2) { opacity: 0; transform: translateX(-8px); }
body.menu-open .menu-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--ink);
  color: var(--paper);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
#mobile-menu.active { opacity: 1; pointer-events: auto; }
.mobile-menu-inner {
  padding: 6rem 1.5rem 3rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
body.menu-open #topbar { transform: translateY(-100%); }
body.menu-open #navbar.has-topbar { top: 0; }
body.menu-open .navbar-bg { background: transparent; border-bottom-color: transparent; box-shadow: none; }
body.menu-open .brand-logo { background: var(--paper); padding: 0.3rem 0.5rem; border-radius: 3px; }
body.menu-open .menu-bar { background: var(--paper); }
.mobile-link {
  font-family: 'Familjen Grotesk', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.85rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--paper);
  text-decoration: none;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--ink-line);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.2s;
}
.mobile-link:hover { color: var(--accent-2); }
.mobile-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1rem 1.4rem;
  background: var(--accent);
  color: var(--paper);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 3px;
  align-self: flex-start;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
#mobile-menu.active .mobile-link,
#mobile-menu.active .mobile-cta { opacity: 1; transform: translateY(0); }
#mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.05s; }
#mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.09s; }
#mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.13s; }
#mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.17s; }
#mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.21s; }
#mobile-menu.active .mobile-link:nth-child(6) { transition-delay: 0.25s; }
#mobile-menu.active .mobile-cta { transition-delay: 0.30s; }
.mobile-info {
  margin-top: auto;
  padding-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}
.mobile-info-row { color: inherit; text-decoration: none; transition: color 0.2s; }
a.mobile-info-row:hover { color: var(--accent-2); }

.mobile-menu-close {
  position: fixed;
  top: 0.9rem;
  right: 1rem;
  z-index: 52;
  width: 2.75rem;
  height: 2.75rem;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  color: var(--ink);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s;
}
#mobile-menu.active ~ .mobile-menu-close,
body.menu-open .mobile-menu-close { display: inline-flex; }
.mobile-menu-close:hover { transform: rotate(90deg); }
.mobile-menu-close svg { width: 1.4rem; height: 1.4rem; }


.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.55rem;
  background: var(--ink);
  color: var(--paper);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.005em;
  text-decoration: none;
  border: 1.5px solid var(--ink);
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.2s var(--ease);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.btn-primary.btn-sm {
  padding: 0.55rem 1.05rem;
  font-size: 0.8125rem;
  margin-left: 0.4rem;
}

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.3rem;
  background: transparent;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 1.5px solid var(--ink);
  border-radius: 3px;
  transition: all 0.25s var(--ease);
}
.btn-line svg { width: 17px; height: 17px; transition: transform 0.3s var(--ease); }
.btn-line:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}
.btn-line:hover svg { transform: translateX(3px); }
.btn-line.on-dark {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-line.on-dark:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 1.05rem 1.5rem;
  background: var(--ink);
  color: var(--paper);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.2s var(--ease);
}
.btn-submit svg { width: 17px; height: 17px; transition: transform 0.3s var(--ease); }
.btn-submit:hover { background: var(--accent); transform: translateY(-1px); }
.btn-submit:hover svg { transform: translateX(4px); }


.hero {
  position: relative;
  position: relative;
  color: var(--paper);
  min-height: clamp(560px, 92vh, 820px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17,17,17,0.55) 0%, rgba(17,17,17,0.45) 30%, rgba(17,17,17,0.75) 70%, rgba(17,17,17,0.95) 100%),
    linear-gradient(90deg, rgba(17,17,17,0.55) 0%, rgba(17,17,17,0.05) 60%);
}

.hero-content {
  position: relative;
  width: 100%;
  padding-top: 9rem;
  padding-bottom: 9rem;
  max-width: 1280px;
}
@media (min-width: 1024px) {
  .hero-content { padding-top: 11rem; padding-bottom: 11rem; }
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  padding-left: 18px;
  position: relative;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 1.5px;
  background: var(--accent-2);
}
.hero-h1 {
  font-family: 'Familjen Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--paper);
  max-width: 18ch;
}

.hero-sub {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 52ch;
}
@media (min-width: 1024px) { .hero-sub { font-size: 1.15rem; } }

.hero-ctas {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.hero-ctas .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
}
.hero-ctas .btn-primary:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
}
.hero-ctas .btn-line {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero-ctas .btn-line:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}


.hero-stats {
  position: relative;
  z-index: 1;
  background: var(--ink);
  border-top: 1px solid var(--ink-line);
}
.hero-stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.5rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .hero-stats-inner { justify-content: space-around; gap: 2rem; padding-block: 1.75rem; }
}
.hero-stat {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  flex: 0 0 auto;
}
.hero-stat-num {
  font-family: 'Familjen Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--paper);
}
.hero-stat-num small {
  font-size: 0.55em;
  color: var(--accent-2);
  margin-left: 0.05em;
  font-weight: 600;
}
.hero-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.62);
}
.hero-stat-sep {
  display: none;
  width: 1px;
  height: 26px;
  background: var(--ink-line);
  flex-shrink: 0;
}
@media (min-width: 768px) { .hero-stat-sep { display: block; } }


.trust-band {
  background: var(--paper-2);
  padding-block: 1.75rem;
}
.trust-band-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .trust-band-inner { flex-direction: row; gap: 2.5rem; }
}
.trust-band-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-dim);
  flex-shrink: 0;
  text-align: center;
}
@media (min-width: 1024px) {
  .trust-band-label {
    text-align: left;
    border-right: 1px solid var(--rule);
    padding-right: 2.5rem;
    max-width: 12rem;
    line-height: 1.5;
  }
}
.trust-band-marquee {
  flex: 1;
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.trust-band-track {
  display: flex;
  width: max-content;
  animation: trust-scroll 32s linear infinite;
}
.trust-band-track:hover { animation-play-state: paused; }
.trust-band-logos {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  flex-shrink: 0;
}
.trust-band-logos img {
  height: 36px;
  width: auto;
  opacity: 0.65;
  filter: grayscale(0.7);
  transition: opacity 0.3s, filter 0.3s;
  flex-shrink: 0;
}
.trust-band-logos img:hover { opacity: 1; filter: grayscale(0); }
@keyframes trust-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .trust-band-track { animation: none; }
}


.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 0.95fr 1fr; gap: 5rem; }
}
.about-photo-wrap {
  position: relative;
  padding-bottom: 56px;
  padding-right: 56px;
}
.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-3);
  box-shadow: var(--shadow-md);
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.about-photo:hover img { transform: scale(1.04); }

.about-photo-card {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 1.25rem 1.4rem;
  max-width: 16rem;
}
.about-photo-card-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.5rem;
}
.about-photo-card strong {
  display: block;
  font-family: 'Familjen Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 0.2rem;
}
.about-photo-card span {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--rule);
}
.stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 0;
  border-right: 1px solid var(--rule);
  padding-right: 1rem;
  padding-left: 0;
}
.stat-card:first-child { padding-left: 0; }
.stat-card:last-child { border-right: none; }
.stat-card:not(:first-child) { padding-left: 1.25rem; }
.stat-num {
  font-family: 'Familjen Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(1.7rem, 2.4vw, 2rem);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.stat-num .stat-unit { font-size: 0.55em; color: var(--warm-dim); margin-left: 0.05em; font-weight: 500; }
.stat-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-dim);
}
@media (max-width: 540px) {
  .stat-row { grid-template-columns: 1fr; }
  .stat-card { border-right: none; border-bottom: 1px solid var(--rule); padding-block: 1rem; }
  .stat-card:not(:first-child) { padding-left: 0; }
}


.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
@media (min-width: 640px)  { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }

.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--paper);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  transition: background 0.3s var(--ease);
}
.svc-card:hover { background: var(--paper-2); }
.svc-card-img {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--paper-3);
}
.svc-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.svc-card:hover .svc-card-img img { transform: scale(1.05); }
.svc-card-body {
  padding: 1.5rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card-num { display: none; }
.card-h3 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}
.card-body {
  margin-top: 0.6rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--warm);
}
.svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1.1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.svc-card-link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.svc-card:hover .svc-card-link { color: var(--accent); }
.svc-card:hover .svc-card-link svg { transform: translateX(4px); }


.reasons-section {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.reasons-bg { display: none; }

.reasons-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  z-index: 1;
}
@media (min-width: 1024px) {
  .reasons-grid { grid-template-columns: 5fr 7fr; gap: 5rem; }
}

.reasons-lead {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  max-width: 40ch;
}
.reasons-ctas {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.reasons-list {
  list-style: none;
  border-top: 1px solid var(--ink-line);
}
.reason-row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 1.4rem;
  align-items: start;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--ink-line);
}
.reason-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  color: var(--accent-2);
  flex-shrink: 0;
  margin-top: 4px;
}
.reason-mark svg { width: 22px; height: 22px; }
.reason-title {
  font-family: 'Familjen Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
.reason-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  max-width: 52ch;
}


.process-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
@media (min-width: 640px)  { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-step {
  position: relative;
  padding: 1.85rem 1.5rem 1.85rem;
  background: var(--paper);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: background 0.25s var(--ease);
}
.process-step:hover { background: var(--paper-2); }
.process-num { display: none; }
.process-h3 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.process-step p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--warm);
}


.people-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .people-grid { grid-template-columns: 5fr 7fr; gap: 4rem; }
}
.people-lead { color: var(--warm); }

.people-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .people-cards { grid-template-columns: repeat(2, 1fr); } }

.person-card {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1.75rem 1.5rem 1.75rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  transition: border-color 0.25s var(--ease);
}
.person-card:hover { border-color: var(--ink); }
.person-card-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 50%;
  font-family: 'Familjen Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.person-card-role {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-dim);
  margin-bottom: 0.45rem;
}
.person-card-name {
  font-family: 'Familjen Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}
.person-card-tag {
  font-size: 0.875rem;
  color: var(--warm);
  margin-top: 0.25rem;
}
.person-card-contact {
  margin-top: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--rule);
}
.person-card-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
.person-card-contact a svg { width: 16px; height: 16px; color: var(--warm-dim); transition: color 0.2s; }
.person-card-contact a:hover { color: var(--accent); }
.person-card-contact a:hover svg { color: var(--accent); }


.cta-section {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.cta-pad {
  padding-block: 4.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) { .cta-pad { padding-block: 7rem; } }
.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .cta-grid { grid-template-columns: 5fr 7fr; gap: 4rem; }
}
.cta-h2 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.85rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--paper);
  text-wrap: balance;
  max-width: 18ch;
}
.cta-lead {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 44ch;
}
.cta-info {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink-line);
}
.cta-info-row {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--paper);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.cta-info-row svg { width: 18px; height: 18px; color: var(--accent-2); flex-shrink: 0; }
.cta-info-row strong { font-weight: 600; }
.cta-info-row span { color: rgba(255, 255, 255, 0.45); font-size: 0.825rem; margin-left: 0.2rem; }
a.cta-info-row:hover { color: var(--accent-2); }

.cta-form {
  background: var(--paper);
  color: var(--ink);
  padding: 1.75rem;
  border-radius: 0;
}
@media (min-width: 1024px) { .cta-form { padding: 2.25rem; } }
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }
.form-full { margin-top: 1rem; }
.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.45rem;
}
.form-label span { color: var(--accent); margin-left: 0.15em; }
.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--paper);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.9375rem;
  border: 1.5px solid var(--rule);
  border-radius: 2px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-input::placeholder { color: var(--warm-dim); }
.form-input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}
textarea.form-input { resize: vertical; min-height: 5rem; }
select.form-input {
  appearance: auto;
  -webkit-appearance: menulist;
  padding-right: 1rem;
}
.btn-submit { margin-top: 1.25rem; }
.cta-form-note {
  margin-top: 0.85rem;
  font-size: 0.8125rem;
  color: var(--warm-dim);
  text-align: center;
}


.footer-cta {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.footer-cta-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.footer-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.footer-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.55) 55%, rgba(17,17,17,0.85) 100%),
    linear-gradient(180deg, rgba(17,17,17,0.30) 0%, rgba(17,17,17,0.55) 100%);
}
.footer-cta-pad {
  position: relative;
  z-index: 1;
  padding-block: 4rem;
}
@media (min-width: 1024px) { .footer-cta-pad { padding-block: 5.5rem; } }
.footer-cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) { .footer-cta-inner { grid-template-columns: 1fr auto; gap: 3rem; } }
.footer-cta-h {
  font-family: 'Familjen Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--paper);
  text-wrap: balance;
  max-width: 22ch;
}
.footer-cta-p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 52ch;
}
.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-cta-actions .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
}
.footer-cta-actions .btn-primary:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
}

.footer { background: var(--ink); color: var(--paper); }
.footer-pad { padding-block: 4rem 2.5rem; }
@media (min-width: 1024px) { .footer-pad { padding-block: 5rem 3rem; } }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: 3rem; }
}
.footer-brand-col { max-width: 22rem; }
.footer-logo-link {
  display: inline-block;
  padding: 1rem 1.25rem;
  background: var(--paper);
  border-radius: 4px;
  transition: transform 0.3s var(--ease);
}
.footer-logo-link:hover { transform: translateY(-2px); }
.footer-logo-img { height: 56px; width: auto; }
@media (min-width: 1024px) { .footer-logo-img { height: 64px; } }
.footer-tagline {
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 34ch;
}
.footer-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 1rem;
}
.footer-heading-spaced { margin-top: 2rem; }
.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}
.footer-pad-top { padding-top: 0.35rem; }
.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--accent-2); }
.footer-link-strong {
  font-family: 'Familjen Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.footer-link-strong:hover { color: var(--accent-2); }
.footer-legal {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--ink-line);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.42);
}
@media (min-width: 768px) {
  .footer-legal { flex-direction: row; align-items: center; justify-content: space-between; }
}


.reveal-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }


a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
  .reveal-up { opacity: 1; transform: none; }
  .trust-band-track { animation: none; }
}

@media (max-width: 480px) {
  .hero { padding-top: 7.5rem; }
  .about-photo-wrap { padding-bottom: 50px; padding-right: 40px; }
  .about-photo-card { max-width: 14rem; padding: 1rem 1.1rem; }
  .kicker::before { width: 22px; }
}

@media (max-width: 640px) {
  section, section > div, section > div > div, section > div > div > div {
    max-width: 100%;
    box-sizing: border-box;
  }
  .grid > div, .form-grid > div { min-width: 0; max-width: 100%; }
}

#contact-form { max-width: 100%; overflow: hidden; }
#contact-form .g-recaptcha {
  transform-origin: left center;
  max-width: 100%;
}
@media (max-width: 400px) {
  #contact-form .g-recaptcha { transform: scale(0.85); }
}
@media (max-width: 340px) {
  #contact-form .g-recaptcha { transform: scale(0.75); }
}
