/* ---------- DESIGN TOKENS ---------- */
:root {
  --cream: #F2EFE7;
  --cream-2: #E8E4D8;
  --paper: #F8F5EC;
  --ink: #0A0A09;
  --ink-soft: #1C1A16;
  --ink-mute: #2A2823;
  --bio: #0E5749;
  --bio-2: #1F8C76;
  --bio-glow: #2BCAA6;
  --signal: #D04A2C;
  --signal-2: #E96A4E;
  --mute: #6B665C;
  --mute-2: #94908A;
  --line: rgba(10,10,9,0.10);
  --line-2: rgba(10,10,9,0.05);
  --line-bright: rgba(242,239,231,0.14);
  --font-sans: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --max: 1440px;
  --pad: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 12px;
  --radius-sm: 6px;
}

/* ---------- BASE ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15.5px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  body { cursor: auto; }
}

::selection { background: var(--bio); color: var(--cream); }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.mono { font-family: var(--font-mono); font-feature-settings: 'ss01', 'ss02'; letter-spacing: -0.01em; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
}


/* ---------- TOPBAR ---------- */
.topbar {
  background: var(--ink);
  color: var(--cream);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 9px var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.status {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono);
  font-weight: 400;
  letter-spacing: 0;
}
.status-dot {
  width: 7px; height: 7px;
  background: var(--bio-glow);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(43,202,166,0.6);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(43,202,166,0.55); }
  70% { box-shadow: 0 0 0 9px rgba(43,202,166,0); }
  100% { box-shadow: 0 0 0 0 rgba(43,202,166,0); }
}
.topbar-meta {
  display: flex; gap: 22px;
  font-family: var(--font-mono);
  font-weight: 400;
  opacity: 0.78;
}
.topbar-meta a { transition: opacity .2s, color .2s; }
.topbar-meta a:hover { opacity: 1; color: var(--bio-glow); }
@media (max-width: 720px) {
  .topbar-meta span:first-child { display: none; }
  .topbar-inner { font-size: 10.5px; }
}

/* ---------- HEADER ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(242,239,231,0.84);
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  transition: padding .3s var(--ease);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: inline-flex; align-items: center;
  height: 64px;
  transition: opacity .25s;
}
.logo:hover { opacity: 0.78; }
.logo img {
  height: 100%;
  width: auto;
  display: block;
}
@media (max-width: 640px) {
  .logo { height: 48px; }
}

.nav {
  display: flex; gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav a {
  position: relative;
  padding: 9px 14px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink-soft);
  border-radius: 100px;
  transition: color .25s, background .25s;
}
.nav a:hover { background: rgba(10,10,9,0.05); color: var(--ink); }
.nav a .kbd {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  color: var(--mute-2);
  margin-right: 8px;
  padding: 1px 5px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
}
@media (max-width: 1100px) { .nav a .kbd { display: none; } }
@media (max-width: 900px) { .nav { display: none; } }

.cta-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px 10px 18px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.015em;
  transition: transform .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.cta-pill::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--bio);
  transform: translateY(101%);
  transition: transform .4s var(--ease);
  z-index: 0;
}
.cta-pill > * { position: relative; z-index: 1; }
.cta-pill:hover::before { transform: translateY(0); }
.cta-pill .arrow {
  width: 22px; height: 22px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 10px;
  transition: transform .4s var(--ease);
}
.cta-pill:hover .arrow { transform: rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(50px, 7vw, 96px) 0 clamp(48px, 7vw, 96px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 700px at 80% 10%, rgba(14,87,73,0.10), transparent 55%),
    radial-gradient(800px 500px at -10% 80%, rgba(208,74,44,0.06), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse 90% 65% at 30% 45%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 65% at 30% 45%, black 20%, transparent 75%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: stretch;
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero-left { display: flex; flex-direction: column; justify-content: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  padding: 7px 14px 7px 11px;
  background: rgba(10,10,9,0.04);
  border: 1px solid var(--line);
  border-radius: 100px;
  margin-bottom: clamp(28px, 4vw, 40px);
  align-self: flex-start;
  backdrop-filter: blur(6px);
}
.eyebrow .eb-dot {
  width: 6px; height: 6px;
  background: var(--signal);
  border-radius: 50%;
  animation: pulse-signal 2.4s infinite ease-out;
}
@keyframes pulse-signal {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(1.35); }
}
.eyebrow .eb-arrow {
  font-family: var(--font-mono);
  font-size: 11px;
  margin-left: 4px;
  color: var(--mute);
}

.hero-title {
  font-weight: 600;
  font-size: clamp(46px, 7.2vw, 110px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin-bottom: clamp(24px, 3vw, 36px);
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .reveal {
  display: inline-block;
  transform: translateY(110%);
  animation: reveal-up 1s var(--ease-out) forwards;
}
.hero-title .line:nth-child(1) .reveal { animation-delay: .15s; }
.hero-title .line:nth-child(2) .reveal { animation-delay: .28s; }
.hero-title .line:nth-child(3) .reveal { animation-delay: .41s; }
@keyframes reveal-up {
  to { transform: translateY(0); }
}
.hero-title .accent {
  color: var(--bio);
  position: relative;
  display: inline-block;
  font-weight: 600;
}
.hero-title .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.04em;
  height: 0.06em;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  animation: line-grow 1.2s var(--ease-out) 1.3s forwards;
}
@keyframes line-grow { to { transform: scaleX(1); } }

.hero-lead {
  max-width: 480px;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.55;
  color: var(--ink-mute);
  margin-bottom: clamp(32px, 4vw, 40px);
  opacity: 0;
  animation: fade-up 1s var(--ease-out) .9s forwards;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 1s var(--ease-out) 1.05s forwards;
  margin-bottom: clamp(36px, 4vw, 48px);
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 16px 14px 22px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.015em;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease);
}
.btn-primary::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--bio);
  transform: translateY(101%);
  transition: transform .45s var(--ease);
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary .icon {
  width: 26px; height: 26px;
  background: var(--cream);
  border-radius: 50%;
  display: inline-grid; place-items: center;
  color: var(--ink);
  transition: transform .4s var(--ease);
}
.btn-primary:hover .icon { transform: rotate(-45deg); }
.btn-primary .icon svg { width: 12px; height: 12px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.015em;
  background: rgba(255,255,255,0.4);
  transition: background .3s, border-color .3s, color .3s;
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-ghost .icon { transition: transform .4s var(--ease); }
.btn-ghost:hover .icon { transform: translateX(3px); }

.hero-features {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 1s var(--ease-out) 1.2s forwards;
}
.feat-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-soft);
  padding: 6px 12px 6px 8px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.5);
  border-radius: 100px;
  letter-spacing: 0;
}
.feat-chip .check {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bio);
  color: var(--cream);
  display: inline-grid; place-items: center;
  font-size: 9px;
}

/* ---------- HERO RIGHT - BIG IMAGE WITH BADGES ---------- */
.hero-visual {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  opacity: 0;
  animation: fade-up 1.1s var(--ease-out) .55s forwards;
}
@media (max-width: 980px) { .hero-visual { min-height: 480px; margin-top: 12px; } }
@media (max-width: 600px) { .hero-visual { min-height: 380px; } }

.hero-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.95);
  transform: scale(1.05);
  animation: slow-zoom 18s ease-in-out infinite alternate;
}
@keyframes slow-zoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.12); }
}
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,9,0.15) 0%, rgba(10,10,9,0) 30%, rgba(10,10,9,0.55) 100%),
    linear-gradient(135deg, rgba(14,87,73,0.20), transparent 50%);
}

.hero-visual .scan-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(43,202,166,0.18) 50%, transparent);
  animation: scan-vert 5s ease-in-out infinite;
  will-change: transform;
  z-index: 2;
}
@keyframes scan-vert {
  0%, 100% { transform: translateY(-100px); }
  50% { transform: translateY(640px); }
}

.hero-visual .corners > i {
  position: absolute;
  width: 18px; height: 18px;
  border-color: var(--cream);
  border-style: solid;
  border-width: 0;
  z-index: 3;
  opacity: 0.7;
}
.hero-visual .corners > i:nth-child(1) { top: 18px; left: 18px; border-top-width: 1px; border-left-width: 1px; }
.hero-visual .corners > i:nth-child(2) { top: 18px; right: 18px; border-top-width: 1px; border-right-width: 1px; }
.hero-visual .corners > i:nth-child(3) { bottom: 18px; left: 18px; border-bottom-width: 1px; border-left-width: 1px; }
.hero-visual .corners > i:nth-child(4) { bottom: 18px; right: 18px; border-bottom-width: 1px; border-right-width: 1px; }

/* Floating badges */
.fbadge {
  position: absolute;
  z-index: 4;
  background: rgba(10,10,9,0.55);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border: 1px solid rgba(242,239,231,0.16);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(14px);
  animation: badge-in .9s var(--ease-out) forwards;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.6);
}
.fbadge-1 {
  top: 24px; left: 24px;
  animation-delay: 1s;
}
.fbadge-2 {
  bottom: 28%; right: 24px;
  animation-delay: 1.2s;
}
.fbadge-3 {
  bottom: 28px; left: 24px;
  max-width: calc(100% - 48px);
  animation-delay: 1.4s;
}
@keyframes badge-in {
  to { opacity: 1; transform: translateY(0); }
}
.fbadge-label {
  display: block;
  color: var(--mute-2);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.fbadge-value {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
}
.fbadge-row {
  display: flex; align-items: center; gap: 9px;
}
.fbadge-live {
  width: 8px; height: 8px;
  background: var(--bio-glow);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--bio-glow);
  animation: pulse 1.8s ease-out infinite;
}
.fbadge-num {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--bio-glow);
  letter-spacing: -0.03em;
}

@media (max-width: 980px) {
  .fbadge-1 { top: 18px; left: 16px; }
  .fbadge-2 { bottom: 22%; right: 16px; }
  .fbadge-3 { bottom: 18px; left: 16px; }
}

/* ---------- VALUE STRIP ---------- */
.values {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  position: relative;
  z-index: 2;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.value {
  padding: 28px var(--pad);
  border-right: 1px solid var(--line);
  display: flex; align-items: center; gap: 18px;
}
.value:last-child { border-right: none; }
.value-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0;
  font-weight: 400;
}
.value-body {
  font-weight: 500;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.value-body .accent { color: var(--bio); }
@media (max-width: 800px) {
  .values-grid { grid-template-columns: 1fr; }
  .value { border-right: none; border-bottom: 1px solid var(--line); padding: 20px var(--pad); }
  .value:last-child { border-bottom: none; }
}

/* ---------- MARQUEE / TICKER ---------- */
.ticker {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  position: relative;
}
.ticker::before, .ticker::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--paper), transparent); }
.ticker::after { right: 0; background: linear-gradient(-90deg, var(--paper), transparent); }

.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 55s linear infinite;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ink-soft);
}
.ticker-track span {
  display: inline-flex; align-items: center; gap: 12px;
}
.ticker-track .sep {
  width: 6px; height: 6px;
  background: var(--signal);
  border-radius: 50%;
  display: inline-block;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- SECTION ---------- */
.section {
  padding: clamp(80px, 11vw, 150px) 0;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(20px, 4vw, 60px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; align-items: start; }
}
.section-tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mute);
  display: inline-flex; align-items: center; gap: 12px;
}
.section-tag::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--signal);
}
.section-title {
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.section-title .accent { color: var(--bio); }

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
}
@media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

.service {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s;
  isolation: isolate;
}

.service:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(10,10,9,0.18);
}

.service-img {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--ink);
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .6s;
  filter: saturate(0.85) contrast(1.04);
}
.service:hover .service-img img {
  transform: scale(1.07);
  filter: saturate(1) contrast(1.05);
}
.service-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,9,0) 50%, rgba(10,10,9,0.45) 100%);
}
.service-num-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  padding: 5px 9px;
  border-radius: 5px;
  background: rgba(242,239,231,0.92);
  backdrop-filter: blur(8px);
  color: var(--ink);
  letter-spacing: 0;
}
.service-cat-badge {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 5px;
  background: rgba(10,10,9,0.6);
  backdrop-filter: blur(8px);
  color: var(--cream);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.service-icon-badge {
  position: absolute;
  bottom: -22px; left: 22px;
  z-index: 3;
  width: 56px; height: 56px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--bio);
  box-shadow: 0 10px 24px -10px rgba(10,10,9,0.22);
  transition: transform .45s var(--ease), background .35s, color .35s, border-color .35s;
}
.service:hover .service-icon-badge {
  transform: scale(1.08) translateY(-2px);
  background: var(--ink);
  color: var(--bio-glow);
  border-color: var(--ink);
}
.service-icon-badge svg {
  width: 26px; height: 26px;
  stroke-width: 1.8;
}
.service-content { padding-top: 38px; }
.service-content {
  padding: 24px 22px 22px;
  display: flex; flex-direction: column;
  flex: 1;
}
.service-title {
  font-weight: 600;
  font-size: clamp(22px, 1.9vw, 26px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.service-title .accent { color: var(--bio); }
.service-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--mute);
  margin-bottom: 22px;
  flex: 1;
}
.service-foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.service-norm {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 400;
  color: var(--mute);
  letter-spacing: 0;
}
.service-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .4s var(--ease), background .3s, color .3s, border-color .3s;
}
.service:hover .service-arrow {
  transform: rotate(-45deg);
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.service-arrow svg { width: 13px; height: 13px; }

/* ---------- ABOUT ---------- */
.about {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.about-media { position: relative; }
.about-media .img-frame {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--ink);
  border-radius: var(--radius);
}
.about-media .img-frame img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.7) contrast(1.05);
}
.about-media .img-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,87,73,0.12), transparent 60%);
}
.about-media .floating-label {
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 14px 18px;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  display: flex; gap: 14px; align-items: center;
  box-shadow: 0 18px 30px -18px rgba(10,10,9,0.12);
}
.about-media .floating-label strong {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 24px;
  color: var(--bio);
  letter-spacing: -0.04em;
  text-transform: none;
}

.about-text .since {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mute);
  margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 12px;
}
.about-text .since::before {
  content: ""; width: 24px; height: 1px; background: var(--signal);
}
.about-text h2 {
  font-weight: 600;
  font-size: clamp(30px, 3.6vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 26px;
}
.about-text h2 .accent { color: var(--bio); }
.about-text p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-mute);
  margin-bottom: 16px;
  max-width: 58ch;
}

.about-signature {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--mute);
  font-family: var(--font-mono);
}
.about-signature .sig {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

/* ---------- STATS ---------- */
.stats {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(70px, 9vw, 130px) 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(43,202,166,0.10) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-bright);
  border-bottom: 1px solid var(--line-bright);
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .stats-grid { grid-template-columns: 1fr; } }

.stat {
  padding: 36px 26px;
  border-right: 1px solid var(--line-bright);
}
.stat:last-child { border-right: none; }
@media (max-width: 900px) {
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line-bright); }
}
@media (max-width: 520px) {
  .stat { border-right: none; border-bottom: 1px solid var(--line-bright); }
  .stat:last-child { border-bottom: none; }
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mute-2);
  margin-bottom: 28px;
  display: flex; justify-content: space-between;
}
.stat-num {
  font-weight: 600;
  font-size: clamp(54px, 6.4vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--cream);
  margin-bottom: 14px;
  display: flex; align-items: baseline;
}
.stat-num em {
  font-family: var(--font-mono);
  font-size: 0.22em;
  font-weight: 400;
  color: var(--bio-glow);
  font-style: normal;
  margin-left: 8px;
  letter-spacing: 0;
  align-self: end;
  margin-bottom: 0.55em;
}
.stat-desc {
  font-size: 14px;
  color: var(--mute-2);
  max-width: 22ch;
  line-height: 1.45;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: var(--cream); }
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
}
@media (max-width: 900px) { .t-grid { grid-template-columns: 1fr; } }

.t-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 30px 28px 26px;
  position: relative;
  border-radius: var(--radius);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .3s;
}
.t-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(10,10,9,0.15);
  border-color: var(--ink);
}
.t-card .quote-mark {
  font-size: 52px;
  line-height: 0.5;
  color: var(--bio);
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}
.t-card .stars {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--signal);
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.t-card .quote {
  font-weight: 500;
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}
.t-card .author {
  display: flex; justify-content: space-between; align-items: end;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.t-card .author-name {
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.t-card .author-role {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--mute);
  margin-top: 4px;
}
.t-card .author-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--mute-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- CERTIFICATIONS ---------- */
.certs {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.5vw, 20px);
}
@media (max-width: 800px) { .certs-grid { grid-template-columns: 1fr; } }

.cert {
  padding: 30px 28px;
  display: flex; gap: 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .3s, transform .4s var(--ease);
}
.cert:hover { border-color: var(--ink); transform: translateY(-3px); }

.cert-seal {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--bio);
  display: grid; place-items: center;
  flex-shrink: 0;
  background: var(--paper);
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: var(--bio);
  letter-spacing: -0.04em;
}
.cert-seal::before {
  content: "";
  position: absolute; inset: 4px;
  border: 1px dashed var(--bio);
  border-radius: 50%;
  opacity: 0.5;
  animation: rotate-slow 40s linear infinite;
}
@keyframes rotate-slow { to { transform: rotate(360deg); } }

.cert-body h3 {
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.cert-body p {
  font-size: 13.5px;
  color: var(--mute);
  margin-bottom: 10px;
  line-height: 1.45;
}
.cert-body .ref {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--bio);
  font-weight: 500;
}

/* ---------- FINAL CTA ---------- */
.final {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 11vw, 150px) 0;
}
.final::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 20% 20%, rgba(14,87,73,0.4), transparent 60%),
    radial-gradient(700px 500px at 100% 100%, rgba(208,74,44,0.18), transparent 65%);
  pointer-events: none;
}
.final-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: end;
  position: relative;
}
@media (max-width: 900px) { .final-grid { grid-template-columns: 1fr; } }

.final-title {
  font-weight: 600;
  font-size: clamp(38px, 5.8vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin-bottom: 34px;
}
.final-title .accent { color: var(--bio-glow); }

.final-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.btn-light {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 16px 14px 22px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.015em;
  transition: background .3s;
  position: relative; overflow: hidden;
}
.btn-light::before {
  content: ""; position: absolute; inset: 0;
  background: var(--bio-glow);
  transform: translateY(101%);
  transition: transform .45s var(--ease);
}
.btn-light > * { position: relative; z-index: 1; }
.btn-light:hover::before { transform: translateY(0); }
.btn-light .icon {
  width: 26px; height: 26px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 50%;
  display: inline-grid; place-items: center;
  transition: transform .4s var(--ease);
}
.btn-light:hover .icon { transform: rotate(-45deg); }
.btn-light .icon svg { width: 12px; height: 12px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border: 1px solid rgba(242,239,231,0.4);
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.015em;
  background: rgba(242,239,231,0.04);
  transition: background .3s, color .3s, border-color .3s;
}
.btn-outline:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.final-contact {
  padding: 24px 26px;
  border: 1px solid var(--line-bright);
  border-radius: var(--radius);
  background: rgba(242,239,231,0.04);
  backdrop-filter: blur(12px);
}
.final-contact .label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mute-2);
  margin-bottom: 14px;
  display: flex; justify-content: space-between;
}
.final-contact .phone {
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.04em;
  color: var(--cream);
  margin-bottom: 18px;
  display: block;
}
.final-contact .phone .accent { color: var(--bio-glow); }
.final-contact .meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line-bright);
}
.final-contact .meta dt {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mute-2);
  margin-bottom: 4px;
}
.final-contact .meta dd {
  font-size: 13.5px;
  color: var(--cream);
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ---------- FOOTER ---------- */
.foot {
  background: var(--cream);
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: 32px;
  position: relative;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: clamp(24px, 4vw, 56px);
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 1000px) { .foot-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .foot-top { grid-template-columns: 1fr; } }

.foot-brand .logo-big {
  display: block;
  margin-bottom: 26px;
  max-width: 320px;
}
.foot-brand .logo-big img {
  width: 100%;
  height: auto;
  display: block;
}
.foot-brand p {
  font-size: 14px;
  color: var(--mute);
  max-width: 36ch;
  line-height: 1.55;
}
.foot-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mute);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.foot-col ul { list-style: none; }
.foot-col li {
  font-size: 13.5px;
  margin-bottom: 9px;
  color: var(--ink-mute);
  letter-spacing: -0.01em;
}
.foot-col a { transition: color .3s; }
.foot-col a:hover { color: var(--bio); }

.foot-bottom {
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mute);
}
.foot-bottom a { transition: color .3s; }
.foot-bottom a:hover { color: var(--ink); }
.foot-bottom .legal { display: flex; gap: 22px; }

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal-fade.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .4s; }

/* ---------- SCROLL PROGRESS ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--bio), var(--bio-glow));
  z-index: 1000;
  width: 0%;
  transition: width .05s linear;
}

/* mobile nav button */
.menu-btn {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  align-items: center; justify-content: center;
}
@media (max-width: 900px) { .menu-btn { display: inline-flex; } .cta-pill { display: none; } }
.menu-btn span { width: 16px; height: 1px; background: var(--ink); display: block; position: relative; }
.menu-btn span::before { content: ""; position: absolute; top: -5px; left: 0; right: 0; height: 1px; background: var(--ink); }
.menu-btn span::after { content: ""; position: absolute; top: 5px; left: 0; right: 0; height: 1px; background: var(--ink); }
/* ====== NAV DROPDOWN (Leistungen) ====== */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
}
.nav-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid var(--mute);
  border-bottom: 1.5px solid var(--mute);
  transform: rotate(45deg);
  margin-left: 8px;
  margin-bottom: 3px;
  transition: transform .3s var(--ease), border-color .25s;
}
.nav-dropdown:hover > a::after,
.nav-dropdown:focus-within > a::after {
  transform: rotate(-135deg);
  margin-bottom: -1px;
  border-color: var(--ink);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -10px;
  min-width: 340px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 30px 60px -20px rgba(10,10,9,0.20),
              0 6px 12px -6px rgba(10,10,9,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .28s, transform .35s var(--ease), visibility .28s;
  z-index: 110;
  pointer-events: none;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown-menu::before {
  /* invisible hover bridge so the menu doesn't close in the gap */
  content: "";
  position: absolute;
  top: -10px; left: 0; right: 0;
  height: 10px;
}
.dropdown-menu a {
  display: flex !important;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px !important;
  border-radius: 9px;
  transition: background .22s;
  font-size: 13.5px !important;
  color: var(--ink) !important;
  background: transparent !important;
}
.dropdown-menu a::before { display: none !important; }
.dropdown-menu a:hover { background: var(--paper) !important; }
.dropdown-menu .dd-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--mute);
  letter-spacing: 0;
  flex-shrink: 0;
  margin-top: 3px;
  width: 22px;
}
.dropdown-menu a:hover .dd-num { color: var(--bio); }
.dropdown-menu .dd-body {
  flex: 1; min-width: 0;
}
.dropdown-menu .dd-title {
  font-weight: 500;
  display: block;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.25;
}
.dropdown-menu .dd-desc {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 11.5px;
  color: var(--mute);
  display: block;
  margin-top: 3px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.dropdown-menu .dd-arrow {
  font-family: var(--font-mono);
  color: var(--mute-2);
  font-size: 14px;
  align-self: center;
  transition: transform .3s var(--ease), color .3s;
  flex-shrink: 0;
}
.dropdown-menu a:hover .dd-arrow {
  transform: translateX(3px);
  color: var(--bio);
}
.dropdown-menu .dd-divider {
  height: 1px;
  background: var(--line);
  margin: 6px 14px;
}
.dropdown-menu .dd-footer {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 10px 14px 6px;
  display: flex; justify-content: space-between; align-items: center;
}
.dropdown-menu .dd-footer a {
  padding: 0 !important;
  font-size: 11px !important;
  color: var(--bio) !important;
  background: none !important;
}
