:root {
  --bg: #ffffff;
  --ink: #0b0b0c;
  --ink-2: #1a1a1c;
  --muted: #5a5a60;
  --line: #e7e7ea;
  --soft: #f4f4f3;
  --accent: oklch(0.58 0.07 240);
  /* steel blue from logo wave */
  --accent-ink: oklch(0.32 0.06 240);
  --accent-soft: oklch(0.96 0.02 240);
  --serif: "Bricolage Grotesque", "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --sans: "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --r-lg: 22px;
  --r-md: 14px;
  --r-sm: 8px;
  --maxw: 1280px;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility
}

body {
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden
}

img {
  display: block;
  max-width: 100%
}

a {
  color: inherit;
  text-decoration: none
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit
}

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px
}

.eyebrow {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 400;
  letter-spacing: -.01em
}

.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.02em
}

.display em {
  font-style: italic;
  color: var(--accent-ink)
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  transition: all .25s ease;
  border: 1px solid transparent;
  white-space: nowrap
}

.btn .arrow {
  transition: transform .25s ease
}

.btn:hover .arrow {
  transform: translateX(3px)
}

.btn-primary {
  background: var(--ink);
  color: #fff
}

.btn-primary:hover {
  background: var(--accent-ink)
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line)
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--soft)
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease
}

.nav.scrolled {
  border-color: var(--line)
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  transition: padding .3s ease
}

.nav.scrolled .nav-inner {
  padding-top: 10px;
  padding-bottom: 10px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto
}

.brand-mark {
  height: 52px;
  width: auto
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1
}

.brand-text .b1 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500
}

.brand-text .b2 {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  margin-top: 3px;
  font-weight: 400
}

.nav-links {
  display: flex;
  gap: 2px;
  justify-self: center;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: background .25s ease, border-color .25s ease
}

.nav.scrolled .nav-links {
  background: rgba(255, 255, 255, .8)
}

.nav-links a {
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 14.5px;
  color: var(--ink-2);
  transition: background .2s, color .2s;
  font-weight: 500
}

.nav-links a:hover {
  background: var(--soft);
  color: var(--ink)
}

.nav-links a.active {
  background: var(--ink);
  color: #fff
}

.nav-cta {
  justify-self: end;
  display: flex;
  gap: 10px;
  align-items: center
}

.nav-phone {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  display: none
}

@media (min-width:1100px) {
  .nav-phone {
    display: inline
  }
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: background .2s, border-color .2s, transform .35s cubic-bezier(.2, .7, .2, 1)
}

.burger:hover {
  background: var(--soft)
}

.burger span {
  display: block;
  width: 18px;
  height: 1.6px;
  background: var(--ink);
  position: relative;
  transition: transform .35s cubic-bezier(.2, .7, .2, 1), background .2s
}

.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.6px;
  background: var(--ink);
  transition: transform .35s cubic-bezier(.2, .7, .2, 1), top .35s cubic-bezier(.2, .7, .2, 1)
}

.burger span::before {
  top: -6px
}

.burger span::after {
  top: 6px
}

.burger.open span {
  background: transparent
}

.burger.open span::before {
  top: 0;
  transform: rotate(45deg)
}

.burger.open span::after {
  top: 0;
  transform: rotate(-45deg)
}

@media (max-width:1000px) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: none;
    padding: 10px 14px;
    pointer-events: none
  }

  .nav.scrolled {
    border-color: transparent
  }

  .nav-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    pointer-events: auto;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .06), 0 1px 3px rgba(0, 0, 0, .04);
    padding: 10px 18px;
    transition: background .3s ease, box-shadow .3s ease, border-radius .3s ease
  }

  .nav.scrolled .nav-inner {
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 6px 32px rgba(0, 0, 0, .1), 0 1px 4px rgba(0, 0, 0, .06)
  }

  .nav-links {
    display: none
  }

  .burger {
    display: inline-flex
  }

  .nav-cta .btn-primary {
    display: none
  }

  .brand-mark {
    height: 42px
  }

  .brand-text .b1 {
    font-size: 19px
  }

  .brand-text .b2 {
    font-size: 11px
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  background: #fff;
  z-index: 100;
  transform: translateY(-100%);
  transition: transform .55s cubic-bezier(.65, 0, .35, 1);
  display: flex;
  flex-direction: column;
  padding: 88px 28px 32px;
  padding-bottom: calc(32px + env(safe-area-inset-bottom));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch
}

.mobile-menu.open {
  transform: translateY(0)
}

.mobile-menu .close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s, transform .3s
}

.mobile-menu .close:hover {
  background: var(--soft);
  transform: rotate(90deg)
}

.mm-links {
  display: flex;
  flex-direction: column;
  gap: 0
}

.mm-links a {
  font-family: var(--serif);
  font-size: clamp(34px, 9vw, 48px);
  line-height: 1.1;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 18px;
  letter-spacing: -.025em;
  font-weight: 500;
  color: var(--ink);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2, .7, .2, 1);
  text-decoration: none
}

.mobile-menu.open .mm-links a {
  opacity: 1;
  transform: none;
  transition-delay: calc(var(--i) * .07s + .15s)
}

.mm-num {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  flex: 0 0 auto
}

.mm-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2, .7, .2, 1)
}

.mobile-menu.open .mm-foot {
  opacity: 1;
  transform: none;
  transition-delay: .55s
}

.mm-contact {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0
}

.mm-mail {
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  font-family: var(--sans)
}

.mm-cta {
  margin-top: 14px;
  align-self: stretch;
  justify-content: center;
  width: 100%
}

/* ============ HERO ============ */
.hero {
  padding: 60px 0 30px;
  position: relative
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center
}

@media (max-width:960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }
}

.hero h1 {
  font-size: clamp(48px, 7.2vw, 96px);
  font-family: var(--serif);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 500
}

.hero h1 .rotor {
  display: inline-block;
  height: .95em;
  line-height: .95;
  overflow: hidden;
  vertical-align: bottom;
  color: var(--accent-ink)
}

.hero h1 .rotor>span {
  display: block
}

.hero h1 .rotor em {
  display: block;
  height: .95em;
  line-height: .95;
  font-style: italic;
  animation: rotor 8s infinite
}

@keyframes rotor {

  0%,
  18% {
    transform: translateY(0)
  }

  22%,
  40% {
    transform: translateY(-100%)
  }

  44%,
  62% {
    transform: translateY(-200%)
  }

  66%,
  84% {
    transform: translateY(-300%)
  }

  88%,
  100% {
    transform: translateY(-400%)
  }
}

.hero-sub {
  margin-top: 26px;
  max-width: 520px;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.55
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap
}

.hero-media {
  position: relative
}

.hero-photo {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #0e0e10;
  position: relative
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .55));
  pointer-events: none
}

.hero-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7be17b;
  box-shadow: 0 0 0 4px rgba(123, 225, 123, .2)
}

.hero-stat {
  position: absolute;
  right: -12px;
  top: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
  max-width: 220px
}

.hero-stat .n {
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1
}

.hero-stat .l {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px
}

@media (max-width:600px) {
  .hero-stat {
    right: -6px;
    top: auto;
    bottom: -16px;
    padding: 10px 14px;
    max-width: 180px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08)
  }

  .hero-stat .n {
    font-size: 34px
  }

  .hero-stat .l {
    font-size: 11px;
    margin-top: 2px
  }
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap
}

.hero-meta .item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted)
}

.hero-meta svg {
  width: 18px;
  height: 18px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.6
}

/* ============ MARQUEE ============ */
.marquee {
  margin: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  position: relative
}

.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marq 22s linear infinite;
  font-family: var(--serif);
  font-size: 42px;
  color: var(--ink)
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 64px
}

.marquee-track .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block
}

@keyframes marq {
  to {
    transform: translateX(-50%)
  }
}

/* ============ SECTION HEADER ============ */
.section {
  padding: 110px 0;
  position: relative
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 54px
}

@media (max-width:780px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: 18px
  }
}

.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -.035em;
  max-width: 9ch;
  font-weight: 500
}

.section-head .right {
  color: var(--muted);
  max-width: 46ch;
  font-size: 16.5px;
  line-height: 1.6
}

/* ============ SERVICES ============ */
/* ============ SERVICES (editorial list) ============ */
.svclist {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink)
}

.svc-row {
  position: relative;
  display: grid;
  grid-template-columns: 140px 1.05fr 1.4fr 60px;
  align-items: center;
  gap: 32px;
  padding: 34px 16px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  isolation: isolate
}

.svc-row:last-child {
  border-bottom: 0
}

.svc-row>* {
  position: relative;
  z-index: 1;
  transition: color .35s ease, transform .45s cubic-bezier(.2, .7, .2, 1)
}

.svc-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0a0a0c;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .55s cubic-bezier(.2, .7, .2, 1);
  z-index: 0
}

.svc-row:hover::before {
  transform: scaleX(1)
}

.svc-row .n {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  text-transform: none;
  letter-spacing: 0
}

.svc-row .n strong {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: .9;
  color: var(--ink);
  transition: color .35s ease
}

.svc-row .n span {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--muted);
  text-transform: none;
  transition: color .35s ease
}

.svc-row h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1;
  letter-spacing: -.03em;
  font-weight: 500;
  margin: 0
}

.svc-row .desc {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.5;
  margin: 0;
  max-width: 46ch
}

.svc-row .arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  background: transparent;
  transition: background .35s ease, border-color .35s ease, transform .45s cubic-bezier(.2, .7, .2, 1)
}

.svc-row .arrow-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--ink);
  stroke-width: 1.6;
  fill: none;
  transition: stroke .35s ease, transform .45s cubic-bezier(.2, .7, .2, 1)
}

.svc-row:hover .n strong {
  color: #fff
}

.svc-row:hover .n span {
  color: rgba(255, 255, 255, .5)
}

.svc-row:hover h3 {
  color: #fff;
  transform: translateX(8px)
}

.svc-row:hover .desc {
  color: rgba(255, 255, 255, .7)
}

.svc-row:hover .arrow-btn {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(-45deg)
}

.svc-row:hover .arrow-btn svg {
  stroke: #fff
}

.svc-row.no-link {
  cursor: default
}

.svclist-foot {
  display: none
}

.svc-more {
  position: relative;
  margin-top: 36px;
  background: #0a0a0c;
  color: #fff;
  border-radius: var(--r-lg);
  padding: 64px 56px 60px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 48px;
  align-items: end;
  isolation: isolate
}

.svc-more::after {
  content: "07";
  position: absolute;
  left: -30px;
  bottom: -90px;
  font-family: var(--serif);
  font-size: clamp(260px, 26vw, 380px);
  line-height: .8;
  font-weight: 500;
  letter-spacing: -.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .08);
  pointer-events: none;
  z-index: 0;
  user-select: none
}

.svc-more>* {
  position: relative;
  z-index: 1
}

.svc-more .label {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, .65);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500
}

.svc-more h3 {
  font-family: var(--serif);
  font-size: clamp(42px, 5.6vw, 80px);
  line-height: .95;
  letter-spacing: -.035em;
  font-weight: 500;
  margin: 22px 0 18px;
  max-width: 16ch
}

.svc-more h3 em {
  font-style: italic;
  color: var(--accent)
}

.svc-more p {
  color: rgba(255, 255, 255, .7);
  font-size: 17px;
  line-height: 1.55;
  max-width: 52ch;
  margin: 0
}

.svc-more .cta-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-self: end;
  min-width: 240px
}

.svc-more .btn-primary {
  background: #fff;
  color: #0a0a0c
}

.svc-more .btn-primary:hover {
  background: var(--accent-soft)
}

.svc-more .btn-ghost {
  border-color: rgba(255, 255, 255, .18);
  color: #fff;
  background: transparent
}

.svc-more .btn-ghost:hover {
  background: rgba(255, 255, 255, .06);
  border-color: #fff
}

.svc-more .ctahint {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, .5);
  margin-top: 6px;
  font-weight: 400
}

@media (max-width:880px) {
  .svc-more {
    grid-template-columns: 1fr;
    padding: 44px 32px 40px;
    gap: 28px;
    align-items: start
  }

  .svc-more .cta-block {
    justify-self: start
  }
}

@media (max-width:880px) {
  .svc-row {
    grid-template-columns: 80px 1fr 52px;
    gap: 18px;
    padding: 24px 12px
  }

  .svc-row .desc {
    display: none
  }

  .svc-row h3 {
    font-size: 24px
  }

  .svc-row .n strong {
    font-size: 30px
  }

  .svc-row .n span {
    font-size: 12px
  }
}

/* ============ ABOUT / SPLIT ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center
}

@media (max-width:880px) {
  .split {
    grid-template-columns: 1fr;
    gap: 36px
  }
}

.split-img {
  aspect-ratio: 5/6;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #0e0e10;
  position: relative
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.split p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 18px
}

.split h2 {
  margin-bottom: 24px
}

.signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-2);
  margin-top: 20px
}

/* ============ PROMISES STRIP ============ */
.promises {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink)
}

@media (max-width:1100px) {
  .promises {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:560px) {
  .promises {
    grid-template-columns: 1fr
  }
}

.promise {
  position: relative;
  padding: 34px 28px 30px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
  cursor: default;
  isolation: isolate
}

.promise:last-child {
  border-right: 0
}

@media (max-width:1100px) {
  .promise:nth-child(2n) {
    border-right: 0
  }

  .promise:nth-child(-n+2) {
    border-bottom: 1px solid var(--line)
  }
}

@media (max-width:560px) {
  .promise {
    border-right: 0;
    border-bottom: 1px solid var(--line)
  }

  .promise:last-child {
    border-bottom: 0
  }
}

.promise>* {
  position: relative;
  z-index: 1;
  transition: color .4s ease, transform .55s cubic-bezier(.2, .7, .2, 1)
}

.promise::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0a0a0c;
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform .55s cubic-bezier(.2, .7, .2, 1);
  z-index: 0
}

.promise:hover::before {
  transform: scaleY(1)
}

.p-label {
  font-family: var(--serif);
  font-size: 14.5px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500
}

.p-bignum {
  position: absolute;
  right: -14px;
  bottom: -46px;
  font-family: var(--serif);
  font-size: clamp(220px, 22vw, 300px);
  line-height: .8;
  font-weight: 500;
  color: transparent;
  -webkit-text-stroke: 1px var(--line);
  letter-spacing: -.05em;
  pointer-events: none;
  z-index: 0 !important;
  transition: -webkit-text-stroke-color .5s ease, transform .6s cubic-bezier(.2, .7, .2, 1), color .5s ease;
  user-select: none
}

.promise h4 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -.03em;
  margin: 0 0 10px
}

.promise .p-body {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.promise p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  max-width: 32ch
}

.promise:hover {
  color: #fff
}

.promise:hover .p-label {
  color: rgba(255, 255, 255, .55)
}

.promise:hover p {
  color: rgba(255, 255, 255, .7)
}

.promise:hover .p-bignum {
  -webkit-text-stroke-color: var(--accent);
  transform: translate(-14px, -14px)
}

.promise:hover h4 {
  transform: translateY(-4px)
}

/* ============ OFFER ============ */
.offer {
  background: #0b0b0c;
  color: #fff;
  border-radius: var(--r-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  overflow: hidden
}

@media (max-width:880px) {
  .offer {
    grid-template-columns: 1fr;
    padding: 40px
  }
}

.offer::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(closest-side, oklch(0.6 0.1 240 / .5), transparent 70%);
  pointer-events: none
}

.offer-eyebrow {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, .65);
  font-weight: 500
}

.offer h2 {
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 82px);
  line-height: .95;
  letter-spacing: -.035em;
  margin: 20px 0 18px;
  font-weight: 500
}

.offer p {
  color: #c8c8d0;
  max-width: 46ch;
  font-size: 16.5px
}

.offer-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  text-align: right;
  position: relative;
  z-index: 2
}

.offer-price .big {
  font-family: var(--serif);
  font-size: clamp(120px, 18vw, 200px);
  line-height: .85;
  letter-spacing: -.05em;
  font-weight: 500
}

.offer-price .big sup {
  font-size: .4em;
  vertical-align: top;
  font-family: var(--sans);
  font-weight: 300;
  margin-left: 6px
}

.offer-price .l {
  font-family: var(--sans);
  font-size: 19px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, .85);
  font-weight: 500
}

.offer-price .l-top {
  margin-bottom: 4px
}

.offer-price .l-bot {
  margin-top: 8px;
  color: rgba(255, 255, 255, .65);
  font-weight: 400
}

.offer-line {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 14px 32px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  width: 100%;
  justify-content: start
}

@media (max-width:520px) {
  .offer-line {
    grid-template-columns: 1fr
  }
}

.offer-line .li {
  font-family: var(--sans);
  font-size: 15px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500
}

.offer-line .li::before {
  content: none
}

.offer-line .li svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke: var(--accent);
  stroke-width: 2.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round
}

.offer-cta {
  margin-top: 30px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.offer .btn-primary {
  background: #fff;
  color: #0b0b0c
}

.offer .btn-primary:hover {
  background: var(--accent-soft)
}

.offer .btn-ghost {
  border-color: rgba(255, 255, 255, .2);
  color: #fff
}

.offer .btn-ghost:hover {
  background: rgba(255, 255, 255, .08);
  border-color: #fff
}

/* ============ ABLAUF STEPS (sister design to svclist) ============ */
.steplist {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink)
}

.step-row {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1.05fr 1.4fr auto;
  align-items: center;
  gap: 32px;
  padding: 36px 16px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  cursor: default;
  isolation: isolate
}

.step-row:last-child {
  border-bottom: 0
}

.step-row>* {
  position: relative;
  z-index: 1;
  transition: color .35s ease
}

.step-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0a0a0c;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .55s cubic-bezier(.2, .7, .2, 1);
  z-index: 0
}

.step-row:hover::before {
  transform: scaleX(1)
}

.step-row .stepnum {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: .9;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
  transition: -webkit-text-stroke-color .4s ease, color .4s ease
}

.step-row h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1;
  letter-spacing: -.03em;
  font-weight: 500;
  margin: 0
}

.step-row .desc {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.5;
  margin: 0;
  max-width: 46ch
}

.step-row .when {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
  justify-self: end
}

.step-row .when::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--ink);
  transition: width .4s ease, background .4s ease
}

.step-row:hover .stepnum {
  -webkit-text-stroke-color: var(--accent);
  color: transparent
}

.step-row:hover h3 {
  color: #fff
}

.step-row:hover .desc {
  color: rgba(255, 255, 255, .7)
}

.step-row:hover .when {
  color: #fff
}

.step-row:hover .when::before {
  background: var(--accent);
  width: 56px
}

@media (max-width:880px) {
  .step-row {
    grid-template-columns: 70px 1fr;
    gap: 16px;
    padding: 24px 12px
  }

  .step-row .desc,
  .step-row .when {
    display: none
  }

  .step-row h3 {
    font-size: 24px
  }

  .step-row .stepnum {
    font-size: 44px
  }
}

/* ============ TESTIMONIAL MARQUEE ============ */
.testi-strip {
  position: relative;
  overflow: hidden;
  margin: 0 -28px;
  padding: 8px 0;
  -webkit-mask: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%)
}

.testi-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: testimove 65s linear infinite
}

.testi-strip:hover .testi-track {
  animation-play-state: paused
}

@keyframes testimove {
  to {
    transform: translateX(-50%)
  }
}

.testi-card {
  flex: 0 0 auto;
  width: 390px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .25s, transform .25s, box-shadow .25s
}

.testi-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .05)
}

.testi-card .stars {
  display: flex;
  gap: 3px;
  color: var(--accent);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 1px
}

.testi-card q {
  quotes: none;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
  display: block
}

.testi-card q::before {
  content: "„"
}

.testi-card q::after {
  content: "\""
}

.testi-card .who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 6px
}

.testi-card .av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  flex: 0 0 auto;
  letter-spacing: 0
}

.testi-card .who-name {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3
}

.testi-card .who-loc {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px
}

.testi-card .who-verify {
  margin-left: auto;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 5px
}

.testi-card .who-verify svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round
}

@media (max-width:600px) {
  .testi-card {
    width: 300px;
    padding: 22px
  }

  .testi-card q {
    font-size: 16.5px
  }
}

/* ============ CONTACT ============ */
.contact {
  background: var(--soft);
  border-radius: var(--r-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px
}

@media (max-width:880px) {
  .contact {
    grid-template-columns: 1fr;
    padding: 36px
  }
}

.contact h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -.035em;
  font-weight: 500
}

.contact .lead {
  color: var(--muted);
  margin: 18px 0 28px;
  max-width: 38ch
}

.kv {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line)
}

.kv .row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 15px
}

.kv .k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 3px
}

.kv .v {
  color: var(--ink)
}

.kv .v a {
  border-bottom: 1px solid var(--line)
}

.kv .v a:hover {
  border-color: var(--ink)
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted)
}

.field input,
.field textarea,
.field select {
  font: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  font-family: var(--sans)
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px var(--accent-soft)
}

.field textarea {
  min-height: 96px;
  resize: vertical
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

@media (max-width:520px) {
  .field-row {
    grid-template-columns: 1fr
  }
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 6px
}

.form-submit small {
  color: var(--muted);
  font-size: 12px;
  max-width: 24ch
}

.field-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-top: 4px;
  transition: border-color .2s, background .2s
}

.field-consent.error {
  border-color: #c0392b;
  background: #fdf3f1
}

.field-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid var(--muted);
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  position: relative;
  margin: 1px 0 0;
  flex: 0 0 auto;
  transition: all .2s
}

.field-consent input[type="checkbox"]:hover {
  border-color: var(--ink)
}

.field-consent input[type="checkbox"]:checked {
  background: var(--ink);
  border-color: var(--ink)
}

.field-consent input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg)
}

.field-consent input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px
}

.field-consent label {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--sans);
  text-transform: none;
  letter-spacing: 0
}

.field-consent label a {
  color: var(--ink);
  border-bottom: 1px solid var(--line)
}

.field-consent label a:hover {
  border-color: var(--ink)
}

.form-success {
  padding: 14px;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  border-radius: 10px;
  font-size: 14px;
  color: var(--accent-ink);
  display: none
}

.form-success.show {
  display: block
}

/* ============ FOOTER ============ */
footer {
  background: #0a0a0c;
  color: #dcdce0;
  padding: 80px 0 30px;
  margin-top: 80px;
  border-radius: 48px 48px 0 0
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

@media (max-width:880px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }
}

.foot-brand img {
  height: 120px;
  width: auto;
  display: block;
  margin-left: -12px
}

.foot-brand p {
  margin-top: 18px;
  color: #9a9aa0;
  font-size: 14px;
  max-width: 34ch;
  line-height: 1.6
}

.foot-col h5 {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
  font-weight: 500;
  margin: 8px 0 16px
}

.foot-col a,
.foot-col p {
  display: block;
  color: #dcdce0;
  font-size: 14.5px;
  margin: 0 0 8px;
  padding: 0
}

.foot-col a:hover {
  color: #fff
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  flex-wrap: wrap;
  color: #7e7e85;
  font-size: 12.5px;
  font-family: var(--mono)
}

/* ============ KALKULATOR ============ */
.calc {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(11, 11, 12, .08), 0 12px 24px -12px rgba(11, 11, 12, .06)
}

.calc-tabs-wrap {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
  isolation: isolate
}

.calc-tabs {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none
}

.calc-tabs::-webkit-scrollbar {
  display: none
}

.calc-tab {
  flex: 1 0 auto;
  background: transparent;
  border: 0;
  padding: 22px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  border-right: 1px solid var(--line);
  transition: background .25s ease, color .25s ease;
  color: var(--ink-2);
  text-align: left;
  font-family: var(--sans);
  position: relative;
  white-space: nowrap;
  scroll-snap-align: start
}

.calc-tab:last-child {
  border-right: 0
}

.calc-tab:hover {
  background: #fff
}

.calc-tab.on {
  background: #0a0a0c;
  color: #fff
}

.calc-tab.on::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: var(--accent)
}

.calc-tab-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 0, 0, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: background .25s ease
}

.calc-tab.on .calc-tab-icon {
  background: rgba(255, 255, 255, .1)
}

.calc-tab-icon svg {
  width: 20px;
  height: 20px
}

.calc-tab-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0
}

.calc-tab-t {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -.01em
}

.calc-tab-s {
  font-size: 12.5px;
  color: inherit;
  opacity: .6;
  margin-top: 2px
}

.calc-tab.on .calc-tab-s {
  opacity: .7
}

/* Scroll affordance: glass fades + arrow buttons */
.calc-tabs-fade {
  position: absolute;
  top: 0;
  bottom: 1px;
  width: 88px;
  pointer-events: none;
  z-index: 2;
  transition: opacity .3s ease;
  opacity: 1
}

.calc-tabs-fade.hidden {
  opacity: 0
}

.calc-tabs-fade-r {
  right: 0;
  background: linear-gradient(90deg, rgba(244, 244, 243, 0) 0%, rgba(244, 244, 243, .88) 60%, rgba(244, 244, 243, .98) 100%);
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0)
}

.calc-tabs-fade-l {
  left: 0;
  background: linear-gradient(-90deg, rgba(244, 244, 243, 0) 0%, rgba(244, 244, 243, .88) 60%, rgba(244, 244, 243, .98) 100%)
}

.calc-tabs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: opacity .3s ease, background .2s ease, transform .2s ease;
  pointer-events: auto;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .06)
}

.calc-tabs-arrow.hidden {
  opacity: 0;
  pointer-events: none
}

.calc-tabs-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05)
}

.calc-tabs-arrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--ink);
  stroke-width: 1.8;
  fill: none
}

.calc-tabs-arrow-l {
  left: 14px
}

.calc-tabs-arrow-r {
  right: 14px
}

.calc-body {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0
}

@media (max-width:880px) {
  .calc-body {
    grid-template-columns: 1fr
  }
}

.calc-inputs {
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  animation: calcFade .4s ease
}

@media (max-width:880px) {
  .calc-inputs {
    padding: 26px 22px;
    gap: 22px
  }
}

@keyframes calcFade {
  from {
    opacity: 0;
    transform: translateY(6px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.calc-field-row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px
}

.calc-flbl {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink)
}

.calc-flbl-v {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--accent-ink);
  letter-spacing: -.02em;
  line-height: 1
}

.calc-flbl-v em {
  font-style: normal;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  margin-left: 4px
}

.calc-hint {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.45
}

/* Slider */
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--ink) 0%, var(--ink) var(--pct, 50%), var(--line) var(--pct, 50%), var(--line) 100%);
  outline: none;
  cursor: pointer;
  margin: 0
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--ink);
  cursor: grab;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12)
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.08)
}

.calc-slider::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.15);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .2)
}

.calc-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--ink);
  cursor: grab;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12)
}

.calc-slider::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: transparent
}

/* Pill / Radio / Multi */
.calc-radio {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.calc-pill {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-2);
  cursor: pointer;
  transition: all .2s ease;
  letter-spacing: 0;
  text-transform: none
}

.calc-pill:hover {
  border-color: var(--ink);
  background: var(--soft)
}

.calc-pill.on {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink)
}

/* Toggle */
.calc-toggle {
  width: 52px;
  height: 30px;
  border-radius: 999px;
  background: var(--line);
  border: 0;
  position: relative;
  cursor: pointer;
  transition: background .25s ease;
  flex: 0 0 auto
}

.calc-toggle.on {
  background: var(--ink)
}

.calc-toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  transition: transform .25s cubic-bezier(.2, .7, .2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .18)
}

.calc-toggle.on .calc-toggle-knob {
  transform: translateX(22px)
}

/* Stepper */
.calc-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 4px;
  width: fit-content;
  gap: 4px
}

.calc-stepper button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s ease
}

.calc-stepper button:hover:not(:disabled) {
  background: var(--soft)
}

.calc-stepper button:disabled {
  color: var(--muted);
  cursor: not-allowed;
  opacity: .4
}

.calc-stepper-v {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  min-width: 60px;
  text-align: center;
  letter-spacing: -.01em
}

.calc-stepper-v em {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  font-style: normal;
  margin-left: 4px
}

/* Result panel (dark) */
.calc-result {
  background: #0a0a0c;
  color: #fff;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  isolation: isolate
}

@media (max-width:880px) {
  .calc-result {
    padding: 30px 22px
  }
}

.calc-result::before {
  content: "€";
  position: absolute;
  right: -30px;
  bottom: -90px;
  font-family: var(--serif);
  font-size: 340px;
  line-height: .8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .08);
  font-weight: 500;
  pointer-events: none;
  z-index: 0;
  user-select: none
}

.calc-result>* {
  position: relative;
  z-index: 1
}

.calc-result-eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none
}

.calc-result-price {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.calc-result-mid {
  font-family: var(--serif);
  font-size: clamp(72px, 8vw, 108px);
  line-height: .9;
  font-weight: 500;
  letter-spacing: -.035em;
  display: inline-flex;
  align-items: baseline;
  gap: 6px
}

.calc-result-mid em {
  font-style: normal;
  font-size: .45em;
  font-weight: 400;
  color: rgba(255, 255, 255, .55);
  margin-left: 2px
}

.calc-tick {
  display: inline-block;
  min-width: 2ch
}

.calc-result-range {
  font-family: var(--sans);
  font-size: 15px;
  color: rgba(255, 255, 255, .65);
  font-weight: 400
}

.calc-result-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 18px
}

.calc-result-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, .8)
}

.calc-result-list li svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  stroke: var(--accent);
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 2px
}

.calc-cta {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  background: #fff;
  color: #0a0a0c;
  border: 0;
  padding: 14px 22px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background .25s, transform .2s;
  margin-top: auto;
  width: 100%
}

.calc-cta span {
  transition: transform .25s ease
}

.calc-cta:hover {
  background: var(--accent-soft)
}

.calc-cta:hover span {
  transform: translateX(3px)
}

.calc-result-foot {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.5
}

/* Mobile tuning for calc */
@media (max-width:780px) {
  .calc-tab-t {
    font-size: 15px
  }

  .calc-tab-s {
    font-size: 11.5px
  }

  .calc-tab-icon {
    width: 32px;
    height: 32px
  }

  .calc-result-mid {
    font-size: clamp(56px, 14vw, 80px)
  }

  .calc-result::before {
    font-size: 240px;
    bottom: -60px;
    right: -15px
  }

  .calc-pill {
    padding: 9px 14px;
    font-size: 13.5px
  }
}


@media (max-width:780px) {
  .container {
    padding: 0 20px
  }

  .section {
    padding: 64px 0
  }

  .nav-inner {
    padding: 10px 20px
  }

  .brand-mark {
    height: 44px
  }

  .brand-text .b2 {
    display: none
  }

  .brand-text .b1 {
    font-size: 19px
  }

  .hero {
    padding: 90px 0 20px
  }

  .hero h1 {
    font-size: clamp(40px, 10.5vw, 60px);
    line-height: 1
  }

  .hero h1 .rotor,
  .hero h1 .rotor em {
    height: 1em;
    line-height: 1
  }

  .hero-sub {
    font-size: 16px;
    margin-top: 18px;
    max-width: none
  }

  .hero-ctas {
    margin-top: 22px;
    gap: 10px
  }

  .hero-ctas .btn {
    padding: 13px 18px;
    font-size: 14.5px
  }

  .hero-meta {
    gap: 14px 22px;
    margin-top: 30px;
    padding-top: 18px
  }

  .hero-meta .item {
    font-size: 13px
  }

  .hero-grid {
    gap: 30px
  }

  .marquee {
    margin: 36px 0;
    padding: 16px 0
  }

  .marquee-track {
    font-size: 30px;
    gap: 42px;
    animation-duration: 18s
  }

  .marquee-track span {
    gap: 42px
  }

  .section-head {
    margin-bottom: 34px;
    gap: 14px
  }

  .section-head h2 {
    max-width: none;
    font-size: clamp(34px, 8vw, 46px)
  }

  .section-head .right {
    font-size: 15.5px
  }

  .svc-row {
    padding: 22px 6px;
    gap: 14px
  }

  .svc-row .n strong {
    font-size: 32px
  }

  .svc-row .n span {
    font-size: 12px
  }

  .svc-row h3 {
    font-size: 22px;
    letter-spacing: -.02em
  }

  .svc-row .arrow-btn {
    width: 40px;
    height: 40px
  }

  .svc-row .arrow-btn svg {
    width: 15px;
    height: 15px
  }

  .step-row {
    padding: 22px 6px;
    gap: 14px
  }

  .step-row .stepnum {
    font-size: 40px
  }

  .step-row h3 {
    font-size: 22px;
    letter-spacing: -.02em
  }

  .svc-more {
    padding: 36px 24px 32px;
    margin-top: 24px;
    border-radius: 18px;
    gap: 22px
  }

  .svc-more h3 {
    font-size: clamp(34px, 8vw, 46px);
    letter-spacing: -.03em;
    margin: 14px 0 14px;
    max-width: none
  }

  .svc-more p {
    font-size: 15.5px
  }

  .svc-more .label {
    font-size: 13px
  }

  .svc-more::after {
    font-size: 200px;
    bottom: -46px;
    left: -18px;
    -webkit-text-stroke-width: 1px
  }

  .svc-more .cta-block {
    min-width: 0;
    width: 100%
  }

  .svc-more .cta-block .btn {
    width: 100%;
    justify-content: center
  }

  .svc-more .ctahint {
    margin-top: 2px
  }

  .promise {
    min-height: 240px;
    padding: 26px 22px 24px
  }

  .promise h4 {
    font-size: 30px
  }

  .promise p {
    font-size: 14px
  }

  .p-bignum {
    font-size: 200px;
    bottom: -30px;
    right: -10px
  }

  .split {
    gap: 28px
  }

  .split-img {
    aspect-ratio: 5/5
  }

  .split p {
    font-size: 15.5px
  }

  .signature {
    font-size: 18px;
    margin-top: 14px
  }

  .offer {
    padding: 30px 22px;
    gap: 24px;
    border-radius: 18px;
    align-items: start
  }

  .offer h2 {
    font-size: clamp(36px, 9vw, 52px);
    letter-spacing: -.03em;
    margin: 14px 0 14px
  }

  .offer p {
    font-size: 15.5px
  }

  .offer-price {
    align-items: flex-start;
    text-align: left
  }

  .offer-price .big {
    font-size: 120px;
    letter-spacing: -.04em
  }

  .offer-price .l {
    font-size: 16px
  }

  .offer-line {
    margin-top: 18px;
    padding-top: 18px;
    gap: 10px 22px;
    grid-template-columns: 1fr 1fr
  }

  .offer-line .li {
    font-size: 14px
  }

  .offer-cta {
    margin-top: 22px
  }

  .offer-cta .btn {
    width: 100%;
    justify-content: center
  }

  .testi-card {
    width: 280px;
    padding: 22px
  }

  .testi-card q {
    font-size: 16.5px
  }

  .testi-strip {
    margin: 0 -20px
  }

  .contact {
    padding: 28px 22px;
    gap: 28px;
    border-radius: 18px
  }

  .contact h2 {
    font-size: clamp(32px, 8.5vw, 42px)
  }

  .contact .lead {
    font-size: 15.5px;
    margin: 14px 0 22px
  }

  .kv .row {
    grid-template-columns: 90px 1fr;
    font-size: 14px;
    gap: 10px
  }

  form {
    padding: 22px
  }

  .field input,
  .field textarea,
  .field select {
    font-size: 16px;
    padding: 11px 13px
  }

  .field-row {
    grid-template-columns: 1fr
  }

  .form-submit {
    flex-direction: column;
    align-items: stretch
  }

  .form-submit .btn {
    width: 100%;
    justify-content: center
  }

  .field-consent label {
    font-size: 12px
  }

  footer {
    padding: 54px 0 24px;
    margin-top: 48px
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    padding-bottom: 30px
  }

  .foot-brand {
    grid-column: 1/-1
  }

  .foot-brand img {
    height: 90px;
    margin-left: -8px
  }

  .foot-brand p {
    font-size: 13.5px
  }

  .foot-col h5 {
    font-size: 14px;
    margin: 0 0 12px
  }

  .foot-col a,
  .foot-col p {
    font-size: 13.5px
  }

  .foot-bottom {
    font-size: 11.5px;
    gap: 8px;
    flex-direction: column
  }

  .call-fab {
    right: 14px;
    bottom: 14px;
    padding: 11px 16px 11px 14px;
    font-size: 13.5px
  }
}

@media (max-width:480px) {
  .hero h1 {
    font-size: 42px
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch
  }

  .hero-ctas .btn {
    justify-content: center
  }

  .offer-price .big {
    font-size: 96px
  }

  .offer-line {
    grid-template-columns: 1fr
  }
}

/* ============ REVEAL ANIM ============ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1)
}

.reveal.in {
  opacity: 1;
  transform: none
}

/* ============ FLOATING CALL BUBBLE ============ */
.call-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 14px 20px 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
  transform: translateY(80px);
  opacity: 0;
  transition: all .35s ease
}

.call-fab.show {
  transform: none;
  opacity: 1
}

.call-fab svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8
}

.call-fab:hover {
  background: var(--accent-ink)
}

/* ============ GALLERY ============ */
.gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px
}

@media (max-width:780px) {
  .gallery {
    grid-template-columns: 1fr;
    gap: 12px
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #0e0e10;
  cursor: default;
  isolation: isolate
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s cubic-bezier(.2, .7, .2, 1), filter .5s ease
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(.85)
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .55) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none
}

.gallery-item:hover::after {
  opacity: 1
}

.gallery-cap {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s ease, transform .45s cubic-bezier(.2, .7, .2, 1)
}

.gallery-item:hover .gallery-cap {
  opacity: 1;
  transform: none
}

.gallery-cap-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  line-height: 1.15
}

.gallery-cap-sub {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  margin-top: 4px
}

.gallery-item.tall {
  aspect-ratio: 3/4
}

.gallery-item.wide {
  aspect-ratio: 16/10
}

.gallery-item.square {
  aspect-ratio: 1/1
}

@media (max-width:780px) {

  .gallery-item.tall,
  .gallery-item.wide,
  .gallery-item.square {
    aspect-ratio: 4/3
  }

  .gallery-cap {
    left: 16px;
    bottom: 16px
  }

  .gallery-cap-title {
    font-size: 17px
  }

  .gallery-item::after {
    opacity: 1
  }

  .gallery-item .gallery-cap {
    opacity: 1;
    transform: none
  }
}

/* ============ BEFORE / AFTER SLIDER ============ */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px
}

@media (max-width:880px) {
  .ba-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }
}

.ba-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  background: #0e0e10;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .12)
}

.ba-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block
}

.ba-before {
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0)
}

.ba-after {
  clip-path: inset(0 0 0 var(--pos, 50%))
}

.ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  width: 3px;
  margin-left: -1.5px;
  background: #fff;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, .3)
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: var(--pos, 50%);
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 2px solid #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2), 0 0 0 4px rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  transition: transform .2s ease, box-shadow .2s ease
}

.ba-handle:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 6px 28px rgba(0, 0, 0, .25), 0 0 0 6px rgba(255, 255, 255, .2)
}

.ba-handle:active {
  transform: translate(-50%, -50%) scale(1.12)
}

.ba-handle svg {
  width: 22px;
  height: 22px;
  stroke: var(--ink);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round
}

.ba-label {
  position: absolute;
  bottom: 16px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  pointer-events: none;
  transition: opacity .3s ease
}

.ba-label-before {
  left: 16px
}

.ba-label-after {
  right: 16px
}

.ba-caption {
  text-align: center;
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink)
}

.ba-caption span {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  display: block;
  margin-top: 4px
}

@media (max-width:780px) {
  .ba-wrap {
    aspect-ratio: 3/2;
    border-radius: 18px
  }

  .ba-handle {
    width: 44px;
    height: 44px
  }

  .ba-handle svg {
    width: 18px;
    height: 18px
  }

  .ba-label {
    font-size: 10px;
    padding: 5px 10px;
    bottom: 12px
  }

  .ba-caption {
    font-size: 14.5px;
    margin-top: 12px
  }
}

/* ============ TWEAKS PANEL OVERRIDES ============ */
[data-accent="blue"] {
  --accent: oklch(0.58 0.07 240);
  --accent-ink: oklch(0.32 0.06 240);
  --accent-soft: oklch(0.96 0.02 240)
}

[data-accent="moss"] {
  --accent: oklch(0.58 0.08 150);
  --accent-ink: oklch(0.32 0.07 150);
  --accent-soft: oklch(0.96 0.03 150)
}

[data-accent="terra"] {
  --accent: oklch(0.62 0.11 50);
  --accent-ink: oklch(0.36 0.09 50);
  --accent-soft: oklch(0.96 0.03 60)
}

[data-accent="ink"] {
  --accent: oklch(0.40 0.02 250);
  --accent-ink: oklch(0.20 0.02 250);
  --accent-soft: oklch(0.95 0.01 250)
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(10, 10, 12, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 22px 0;
  transform: translateY(100%);
  transition: transform .55s cubic-bezier(.2, .7, .2, 1);
  will-change: transform
}

.cookie-banner.show {
  transform: translateY(0)
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap
}

.cookie-text {
  flex: 1;
  min-width: 260px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .72)
}

.cookie-text strong {
  color: #fff;
  font-weight: 500
}

.cookie-text a {
  color: rgba(255, 255, 255, .55);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s ease
}

.cookie-text a:hover {
  color: #fff
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center
}

.cookie-btn {
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background .25s ease, color .25s ease, transform .2s ease
}

.cookie-btn:active {
  transform: scale(.97)
}

.cookie-btn-accept {
  background: #fff;
  color: #0a0a0c
}

.cookie-btn-accept:hover {
  background: rgba(255, 255, 255, .88)
}

.cookie-btn-reject {
  background: transparent;
  color: rgba(255, 255, 255, .55);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 9px 20px
}

.cookie-btn-reject:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .35)
}

@media (max-width:600px) {
  .cookie-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center
  }

  .cookie-actions {
    width: 100%;
    justify-content: center
  }

  .cookie-banner {
    padding: 20px 0;
    padding-bottom: calc(20px + env(safe-area-inset-bottom))
  }
}