:root {
  --paper: #f3f0e9;
  --paper-soft: #f8f6f1;
  --ink: #111928;
  --muted: #536174;
  --line: rgba(17, 25, 40, .16);
  --navy: #081321;
  --navy-soft: #0d1d2f;
  --blue: #1859f2;
  --blue-light: #7ca4ff;
  --white: #fff;
  --radius: 2rem;
  --shadow: 0 25px 70px rgba(8, 19, 33, .18);
  --shell: min(1440px, calc(100vw - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id], main[id] { scroll-margin-top: 105px; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body, button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: white; background: var(--blue); }

.shell, .container { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; z-index: 1000; top: -60px; left: 1rem; padding: .8rem 1rem; color: white; background: var(--navy); }
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 3px solid var(--blue-light); outline-offset: 4px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.045em; line-height: .98; text-wrap: pretty; }

/* Keep intentional editorial groups together on wide screens; mobile may reflow them naturally. */
.heading-line { display: block; }
@media (min-width: 821px) {
  .heading-line { white-space: nowrap; }
}
em { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.section-index, .kicker { margin: 0; color: var(--muted); font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.section-index-light { color: rgba(255,255,255,.56); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 16px;
  left: 0;
  width: 100%;
  pointer-events: none;
  transition: top .35s cubic-bezier(.2,.8,.2,1);
}
.site-header.is-scrolled { top: 8px; }
.nav-wrap { position: relative; display: flex; min-height: 72px; align-items: center; gap: 1rem; padding: .5rem .5rem .5rem 1.25rem; border: 1px solid rgba(17,25,40,.11); border-radius: 999px; background: rgba(248,246,241,.76); box-shadow: 0 18px 55px rgba(8,19,33,.08); pointer-events: auto; -webkit-backdrop-filter: blur(24px) saturate(145%); backdrop-filter: blur(24px) saturate(145%); transition: min-height .35s, background .35s, border-color .35s, box-shadow .35s; }
.site-header.is-scrolled .nav-wrap { min-height: 66px; border-color: rgba(17,25,40,.14); background: rgba(248,246,241,.94); box-shadow: 0 16px 48px rgba(8,19,33,.13); }
.brand { position: relative; z-index: 103; display: inline-flex; flex: 0 0 auto; align-items: center; }
.brand img { width: 178px; height: auto; transition: filter .25s; }
.brand-meta { display: inline-flex; align-items: center; gap: .55rem; margin-left: .35rem; padding-left: 1rem; border-left: 1px solid var(--line); color: #687282; font-size: .59rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.brand-meta i { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(24,89,242,.09); }
.header-rating { display: grid; flex: 0 0 auto; margin-left: .25rem; padding: .35rem .9rem .35rem 1rem; border-left: 1px solid var(--line); grid-template-columns: auto auto; column-gap: .42rem; color: var(--ink); line-height: 1; white-space: nowrap; transition: color .2s; }
.header-rating strong { font-size: 1rem; font-variant-numeric: tabular-nums; }
.header-rating > span { color: #a96f00; font-size: .78rem; letter-spacing: .04em; line-height: 1; }
.header-rating small { grid-column: 1 / -1; margin-top: .25rem; color: #334257; font-size: .75rem; font-weight: 700; letter-spacing: 0; }
.header-rating:hover { color: var(--blue); }
.site-menu { display: flex; margin-left: auto; align-items: center; gap: .15rem; font-size: .82rem; font-weight: 700; }
.site-menu > a:not(.nav-contact):not(.nav-cta) { position: relative; padding: .72rem .82rem; border-radius: 999px; transition: color .2s, background .2s; }
.site-menu > a:not(.nav-contact):not(.nav-cta):hover { color: var(--blue); background: rgba(24,89,242,.07); }
.nav-contact, .nav-cta { display: inline-flex; align-items: center; gap: 1rem; margin-left: .35rem; padding: .42rem .42rem .42rem 1.1rem; border: 0; border-radius: 999px; color: white; background: var(--navy); box-shadow: 0 9px 24px rgba(8,19,33,.16); white-space: nowrap; transition: color .25s, background .25s, transform .25s, box-shadow .25s; }
.nav-contact span, .nav-cta span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: white; background: var(--blue); transition: color .25s, background .25s, transform .25s; }
.nav-contact:hover, .nav-cta:hover { color: white; background: var(--blue); box-shadow: 0 12px 30px rgba(24,89,242,.25); transform: translateY(-1px); }
.nav-contact:hover span, .nav-cta:hover span { color: var(--blue); background: white; transform: translate(2px,-2px); }
.menu-toggle { display: none; border: 0; background: transparent; }

.hero { min-height: 100vh; padding: 150px 0 32px; overflow: hidden; }
.hero-layout { display: grid; min-height: 690px; grid-template-columns: minmax(0, 1.06fr) minmax(500px, .94fr); align-items: center; gap: clamp(3rem, 5vw, 6rem); }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 820px; margin: 1.5rem 0 2rem; font-size: clamp(4rem, 5.2vw, 5.5rem); font-weight: 520; }
.hero-copy h1 em { color: var(--blue); }
.hero-text { max-width: 640px; margin-bottom: 2rem; color: #3b4655; font-size: clamp(1.15rem, 1.55vw, 1.45rem); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.button { display: inline-flex; min-height: 58px; align-items: center; justify-content: space-between; gap: 2.5rem; padding: 0 1.25rem 0 1.5rem; border: 0; border-radius: 999px; font-size: .92rem; font-weight: 700; cursor: pointer; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-dark { color: white; background: var(--navy); }
.button-blue { color: white; background: var(--blue); }
.quiet-link { padding: .7rem 0; border-bottom: 1px solid var(--ink); font-size: .92rem; font-weight: 700; }
.reassurance-list { display: flex; margin: 2rem 0 0; padding: 0; list-style: none; gap: 1.3rem; color: var(--muted); font-size: .78rem; }
.reassurance-list li { display: flex; align-items: center; gap: .45rem; }
.reassurance-list li::before { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); content: ""; }
.hero-rating-link { display: inline-flex; width: fit-content; align-items: center; gap: .55rem; margin-top: 1.35rem; padding: .58rem .75rem; border: 1px solid rgba(17,25,40,.13); border-radius: 999px; color: #3f4856; background: rgba(255,255,255,.48); box-shadow: 0 9px 28px rgba(8,19,33,.05); font-size: .88rem; transition: border-color .2s, background .2s, transform .2s; }
.hero-rating-link:hover { border-color: rgba(24,89,242,.4); background: white; transform: translateY(-2px); }
.hero-rating-stars { color: #a96f00; font-size: .9rem; letter-spacing: .06em; line-height: 1; }
.hero-rating-link strong { color: var(--ink); font-size: 1rem; font-variant-numeric: tabular-nums; }
.hero-rating-link i { color: var(--blue); font-style: normal; }

.kicker { display: inline-flex; align-items: center; gap: .6rem; }
.kicker-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(24,89,242,.1); }
.hero-art { position: relative; height: clamp(620px, 48vw, 760px); perspective: 1600px; isolation: isolate; touch-action: pan-y; transform-style: preserve-3d; }
.hero-scene-backdrop { position: absolute; z-index: 0; inset: 7% 2% 4%; overflow: hidden; border: 1px solid rgba(17,25,40,.13); border-radius: 3rem; background: radial-gradient(circle at 72% 20%, rgba(124,164,255,.44), transparent 27%), radial-gradient(circle at 24% 76%, rgba(24,89,242,.2), transparent 30%), #dce5f5; box-shadow: 0 35px 90px rgba(8,19,33,.12); }
.hero-scene-backdrop::before { position: absolute; inset: 0; background: linear-gradient(125deg, rgba(255,255,255,.35), transparent 42%, rgba(8,19,33,.12)); content: ""; }
.hero-scene-grid { position: absolute; z-index: 1; inset: 8% 3% 5%; border-radius: 3rem; opacity: .24; background-image: linear-gradient(rgba(17,25,40,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(17,25,40,.2) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent); }
.hero-scene-orbit { position: absolute; z-index: 1; display: block; border: 1px solid rgba(24,89,242,.34); border-radius: 50%; pointer-events: none; }
.hero-scene-orbit-one { top: 12%; right: 0; width: 83%; height: 46%; transform: rotate(-24deg); }
.hero-scene-orbit-two { right: 15%; bottom: 4%; width: 65%; height: 26%; border-color: rgba(8,19,33,.25); transform: rotate(18deg); }
.hero-studio-panel { position: absolute; z-index: 3; overflow: hidden; transform-style: preserve-3d; will-change: transform; transition: transform .65s cubic-bezier(.2,.8,.2,1); }
.hero-studio-panel-main { top: 8%; right: 4%; bottom: 7%; left: 4%; display: flex; flex-direction: column; padding: 1.1rem; border: 1px solid rgba(255,255,255,.22); border-radius: 1.8rem; color: white; background: rgba(8,19,33,.97); box-shadow: 0 40px 90px rgba(8,19,33,.3); transform: translate3d(var(--panel-x, 0px), var(--panel-y, 0px), 0) rotateX(var(--panel-rx, 0deg)) rotateY(var(--panel-ry, 0deg)) rotate(-2deg); }
.hero-panel-top, .hero-panel-foot, .hero-float-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: .59rem; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }
.hero-panel-top { color: rgba(255,255,255,.52); }
.hero-panel-status { display: inline-flex; align-items: center; gap: .45rem; color: rgba(255,255,255,.72); }
.hero-panel-status i { width: 6px; height: 6px; border-radius: 50%; background: #83d09b; box-shadow: 0 0 0 4px rgba(131,208,155,.1); }
.hero-digital-stage { display: flex; min-height: 0; flex: 1; flex-direction: column; justify-content: center; gap: clamp(.8rem, 1.5vw, 1.2rem); padding: 1rem 0 .8rem; }
.hero-digital-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; }
.hero-digital-heading > span { color: var(--blue-light); font-size: .58rem; font-weight: 750; letter-spacing: .1em; }
.hero-digital-heading strong { max-width: 420px; font-size: clamp(1.7rem, 2.6vw, 3rem); font-weight: 480; line-height: .95; letter-spacing: -.055em; text-align: right; }
.hero-digital-heading em { color: var(--blue-light); }
.hero-panel-shot { overflow: hidden; border: 7px solid rgba(255,255,255,.95); border-radius: 1rem; background: #f5f7fa; box-shadow: 0 26px 55px rgba(0,0,0,.32); transform: translateZ(26px); }
.hero-panel-shot .browser-bar { height: 28px; padding: 0 .65rem; }
.hero-panel-shot .browser-bar i { width: 5px; height: 5px; }
.hero-panel-shot .browser-bar span { font-size: .5rem; }
.hero-panel-shot img { width: 100%; height: clamp(235px, 20vw, 335px); object-fit: contain; object-position: center; }
.hero-panel-foot { padding-top: .85rem; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.42); }
.hero-panel-foot b { color: rgba(255,255,255,.72); font-size: .56rem; }
.hero-panel-foot b i { margin-left: .45rem; color: var(--blue-light); font-style: normal; font-size: .9rem; }
.hero-studio-panel-app { top: 1%; left: -2%; width: 43%; padding: .9rem; border: 1px solid rgba(17,25,40,.12); border-radius: 1.2rem; color: var(--ink); background: rgba(248,246,241,.97); box-shadow: 0 30px 65px rgba(8,19,33,.2); transform: translate3d(var(--panel-x, 0px), var(--panel-y, 0px), 0) rotateX(var(--panel-rx, 0deg)) rotateY(var(--panel-ry, 0deg)) rotate(-5deg); }
.hero-float-top { color: rgba(255,255,255,.72); font-size: .58rem; }
.hero-float-top i { font-style: normal; font-size: 1rem; }
.hero-studio-panel-app .hero-float-top { color: rgba(17,25,40,.72); }
.hero-app-shot { height: 132px; margin: .75rem 0 .65rem; overflow: hidden; border: 4px solid white; border-radius: .7rem; background: #eee8df; }
.hero-app-shot img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.hero-studio-panel-app strong, .hero-studio-panel-tool strong { display: block; font-size: .8rem; }
.hero-studio-panel-app small, .hero-studio-panel-tool small { display: block; margin-top: .2rem; font-size: .64rem; }
.hero-studio-panel-app small { color: var(--muted); }
.hero-studio-panel-tool { right: -2%; bottom: 1%; width: 44%; padding: .9rem; border: 1px solid rgba(255,255,255,.28); border-radius: 1.2rem; color: white; background: var(--blue); box-shadow: 0 30px 65px rgba(24,89,242,.3); transform: translate3d(var(--panel-x, 0px), var(--panel-y, 0px), 0) rotateX(var(--panel-rx, 0deg)) rotateY(var(--panel-ry, 0deg)) rotate(4deg); }
.hero-tool-shot { height: 148px; margin: .7rem 0 .65rem; overflow: hidden; border: 4px solid rgba(255,255,255,.94); border-radius: .7rem; background: white; }
.hero-tool-shot img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.hero-studio-panel-tool .hero-float-top, .hero-studio-panel-tool small { color: white; }
.hero-scene-sticker { position: absolute; z-index: 5; bottom: 19%; left: 3%; display: inline-flex; align-items: center; gap: .55rem; padding: .7rem .9rem; border: 1px solid rgba(17,25,40,.14); border-radius: 999px; color: var(--ink); background: rgba(248,246,241,.92); box-shadow: 0 16px 35px rgba(8,19,33,.13); font-size: .62rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; transform: translate3d(var(--panel-x, 0px), var(--panel-y, 0px), 0) rotate(-6deg); transition: transform .65s cubic-bezier(.2,.8,.2,1); }
.hero-scene-sticker b { color: var(--blue); font-size: 1rem; font-weight: 400; }
.hero-scene-index { position: absolute; z-index: 5; right: 6%; bottom: 5%; display: flex; align-items: center; gap: .65rem; color: rgba(17,25,40,.65); font-size: .63rem; font-weight: 750; letter-spacing: .12em; }
.hero-scene-index span { color: var(--blue); }
.hero-scene-index > b { color: white; }
.hero-scene-cursor { position: absolute; z-index: 6; top: 7%; right: 8%; display: inline-flex; align-items: center; gap: .5rem; color: rgba(17,25,40,.6); font-size: .6rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.hero-scene-cursor i { display: block; width: 8px; height: 8px; border: 1px solid var(--blue); border-radius: 50%; box-shadow: 0 0 0 5px rgba(24,89,242,.1); }
.hero-proof { display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; border-top: 1px solid var(--line); color: #424b59; font-size: .73rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hero-proof p { margin: 0; }
.hero-proof span { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }

.trust-intro { padding: 12rem 0 8rem; background: var(--paper-soft); }
.trust-grid { display: grid; grid-template-columns: .32fr 1fr; gap: 4rem; }
.trust-grid h2 { max-width: 1100px; margin: 0; font-size: clamp(3.1rem, 4.8vw, 5.6rem); font-weight: 480; }
.trust-grid h2 em { color: var(--blue); }
.trust-grid div > p { max-width: 720px; margin: 3rem 0 0 auto; color: var(--muted); font-size: 1.2rem; line-height: 1.65; }

.pain-section { padding: 0 0 6rem; background: var(--paper-soft); }
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.pain-card { display: flex; min-height: 390px; flex-direction: column; padding: 1.5rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pain-card > span { color: var(--muted); font-size: .7rem; }
.pain-card h3 { margin: auto 0 1.5rem; font-size: clamp(1.65rem, 2.2vw, 2.4rem); font-weight: 520; line-height: 1.1; }
.pain-card p { margin: 0; color: var(--muted); }
.pain-card-answer { color: white; background: var(--blue); }
.pain-card-answer > span, .pain-card-answer p { color: rgba(255,255,255,.72); }
.pain-card-answer a { width: fit-content; margin-top: 1.5rem; border-bottom: 1px solid white; font-weight: 700; }

.review-proof-section { padding: 0 0 9rem; background: var(--paper-soft); }
.review-proof-grid { display: grid; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.54); grid-template-columns: 1.15fr repeat(3, 1fr); }
.review-proof-grid > * { min-width: 0; min-height: 225px; padding: clamp(1.4rem, 2.5vw, 2.3rem); }
.review-proof-grid > * + * { border-left: 1px solid var(--line); }
.review-proof-score { display: flex; flex-direction: column; justify-content: space-between; background: var(--navy); }
.review-proof-score .section-index { color: rgba(255,255,255,.5); }
.review-proof-score > div { display: flex; align-items: baseline; gap: .75rem; }
.review-proof-score > div strong { color: white; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.3rem, 4vw, 4.8rem); font-weight: 400; line-height: .85; }
.review-proof-score > div span { color: #f2b824; font-size: .75rem; letter-spacing: .08em; }
.review-proof-score h2 { margin: .7rem 0 0; color: rgba(255,255,255,.76); font-size: .9rem; font-weight: 650; letter-spacing: -.01em; }
.review-proof-score a { width: fit-content; color: #a9c2ff; font-size: .72rem; font-weight: 750; }
.review-proof-quote { display: flex; margin: 0; flex-direction: column; justify-content: space-between; }
.review-proof-quote p { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.35rem, 1.7vw, 1.8rem); line-height: 1.2; letter-spacing: -.025em; }
.review-proof-quote footer { color: var(--muted); font-size: .7rem; font-weight: 750; letter-spacing: .04em; }

.about-section { padding: 11rem 0 10rem; background: #e8edf8; }
.about-layout { display: grid; grid-template-columns: .72fr 1fr; gap: clamp(4rem, 9vw, 10rem); }
.about-title h2 { max-width: 760px; margin: 1.5rem 0 0; font-size: clamp(3.3rem, 4.8vw, 5.6rem); font-weight: 480; }
.about-title h2 em { color: var(--blue); }
.about-copy { padding-top: 2.2rem; }
.about-copy p { max-width: 780px; color: #4f5b6b; font-size: 1.05rem; line-height: 1.75; }
.about-copy .about-lede { color: var(--ink); font-size: clamp(1.4rem, 2.2vw, 2.15rem); line-height: 1.4; letter-spacing: -.025em; }
.about-copy .quiet-link { display: inline-flex; margin-top: 1.5rem; gap: 2rem; }
.about-principles { display: grid; margin-top: 8rem; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.about-principles > div { display: flex; min-height: 260px; flex-direction: column; padding: 1.5rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-principles span { color: var(--muted); font-size: .7rem; }
.about-principles strong { margin-top: auto; font-size: 1.2rem; letter-spacing: -.025em; }
.about-principles p { margin: .6rem 0 0; color: var(--muted); }

.work-section { padding: 11rem 0; overflow: hidden; color: white; background: var(--navy); }
.work-head { display: grid; grid-template-columns: .32fr .78fr .42fr; align-items: end; gap: 3rem; margin-bottom: 8rem; }
.work-head h2 { margin: 0; font-size: clamp(4.2rem, 6.6vw, 7.2rem); font-weight: 480; }
.work-head h2 em { color: var(--blue-light); }
.work-head > p:last-child { margin: 0; color: rgba(255,255,255,.58); line-height: 1.7; }
.project-stack { display: grid; gap: 2.5rem; }
.project-case { display: grid; min-height: 0; overflow: hidden; scroll-margin-top: 105px; grid-template-columns: 1fr; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: rgba(255,255,255,.045); box-shadow: 0 24px 70px rgba(0,0,0,.12); }
.project-case-media { position: relative; display: flex; min-width: 0; min-height: 0; flex-direction: column; overflow: hidden; isolation: isolate; padding: clamp(1.25rem, 2.5vw, 2.4rem); background: #dfe4ea; }
.project-media-beauty { background: radial-gradient(circle at 10% 12%, rgba(244,218,189,.88), transparent 34%), linear-gradient(135deg, #c6b5a6, #e2d8ca); }
.project-media-frisch { background: radial-gradient(circle at 90% 12%, rgba(185,229,142,.85), transparent 30%), linear-gradient(135deg, #dbe6d8, #9dbb9e); }
.project-media-fitline { background: radial-gradient(circle at 14% 12%, rgba(255,255,255,.9), transparent 32%), linear-gradient(135deg, #e8e5ed, #c8c3d2); }
.project-media-toolbox { background: radial-gradient(circle at 50% 14%, #fff 0, #e2edff 58%, #b7cdf2 100%); }
.project-media-kinsvater { background: radial-gradient(circle at 17% 10%, rgba(255,255,255,.42), transparent 31%), linear-gradient(135deg, #a89586, #d8d1c9); }
.project-media-wine { background: radial-gradient(circle at 76% 12%, rgba(231,190,126,.26), transparent 32%), linear-gradient(145deg, #401923, #7a2b34); }
.project-media-system { background: radial-gradient(circle at 82% 7%, #2f62a5 0, transparent 37%), linear-gradient(145deg, #101f34, #07111f); }
.project-filmstrip { position: relative; z-index: 4; display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: rgba(255,255,255,.66); font-size: .61rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.project-filmstrip span:first-child {
  display: inline-flex;
  min-width: 4.8rem;
  min-height: 2.15rem;
  align-items: center;
  justify-content: center;
  padding: .5rem .72rem;
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 999px;
  color: white;
  background: rgba(8,19,33,.92);
  box-shadow: 0 10px 24px rgba(8,19,33,.2);
  font-size: .72rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: .14em;
}
.project-filmstrip span:last-child { text-align: right; }
.project-shot-link { position: relative; z-index: 2; display: block; width: 95%; aspect-ratio: 1672 / 941; flex: 0 0 auto; margin: clamp(1rem, 2vw, 1.6rem) auto clamp(1.2rem, 2.4vw, 2rem); border: 1px solid rgba(255,255,255,.38); border-radius: 1.45rem; background: rgba(255,255,255,.16); box-shadow: 0 34px 80px rgba(8,19,33,.24); transition: border-color .35s ease, box-shadow .5s ease, transform .5s cubic-bezier(.16,1,.3,1); }
.project-shot-link:not(.project-shot-static):hover, .project-shot-link:not(.project-shot-static):focus-visible { border-color: rgba(255,255,255,.8); box-shadow: 0 42px 95px rgba(8,19,33,.3); transform: translateY(-5px); }
.project-poster { position: absolute; inset: 0; margin: 0; overflow: hidden; border-radius: inherit; background: #eef2f6; }
.project-poster::after { position: absolute; z-index: 2; inset: 0; border: 1px solid rgba(255,255,255,.38); border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(8,19,33,.05); content: ""; pointer-events: none; }
.project-poster-image { width: 100%; height: 100%; object-fit: contain; object-position: center; transition: filter .5s ease; }
.project-shot-link:not(.project-shot-static):hover .project-poster-image, .project-shot-link:not(.project-shot-static):focus-visible .project-poster-image { filter: saturate(1.06) contrast(1.02); }
.project-poster-fitline { color: var(--ink); background: radial-gradient(circle at 10% 10%, rgba(208,21,65,.16), transparent 34%), radial-gradient(circle at 88% 86%, rgba(208,21,65,.09), transparent 32%), linear-gradient(145deg, #fff, #f6f2f3 76%); }
.project-poster-fitline::before { position: absolute; inset: 0; opacity: .36; background-image: radial-gradient(circle, rgba(208,21,65,.19) 1px, transparent 1px); background-size: 24px 24px; content: ""; mask-image: linear-gradient(to bottom right, black, transparent 76%); }
.fitline-case-brand { position: absolute; z-index: 6; top: 3.5%; left: 4%; display: flex; align-items: center; gap: .75rem; mix-blend-mode: multiply; }
.fitline-case-brand img { width: clamp(46px, 5.5vw, 78px); height: clamp(34px, 4.1vw, 58px); object-fit: contain; }
.fitline-case-brand span { color: #9b4358; font-size: clamp(.35rem, .56vw, .56rem); font-weight: 800; letter-spacing: .14em; }
.fitline-real-screen { position: absolute; overflow: hidden; border: 1px solid rgba(36,36,36,.13); border-radius: clamp(.55rem, 1.1vw, 1rem); background: white; box-shadow: 0 22px 58px rgba(47,25,31,.18); }
.fitline-real-screen > div { display: flex; height: clamp(16px, 2vw, 28px); align-items: center; gap: .32rem; padding: 0 .7rem; color: #85777b; background: #f5f2f3; font-size: clamp(.28rem, .46vw, .46rem); font-weight: 800; letter-spacing: .1em; }
.fitline-real-screen > div i { width: clamp(3px, .4vw, 6px); height: clamp(3px, .4vw, 6px); border-radius: 50%; background: #d8cfd1; }
.fitline-real-screen > div i:first-child { background: #d01541; }
.fitline-real-screen > div span { margin-left: auto; }
.fitline-real-screen > img { display: block; width: 100%; height: auto; object-fit: contain; }
.fitline-real-screen-start { z-index: 1; top: 13%; left: 4%; width: 59%; transform: rotate(-1.2deg); }
.fitline-real-screen-question { z-index: 3; top: 11%; right: 4%; width: 45%; transform: rotate(1.1deg); }
.fitline-real-screen-finish { z-index: 4; right: 8%; bottom: 16%; width: 31%; box-shadow: 0 24px 62px rgba(47,25,31,.24); transform: rotate(-1.3deg); }
.fitline-process-rail { position: absolute; z-index: 5; right: 5%; bottom: 4%; left: 5%; display: flex; min-height: clamp(34px, 5vw, 62px); align-items: center; justify-content: space-between; gap: .7rem; padding: 0 clamp(.65rem, 1.6vw, 1.4rem); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: white; background: rgba(36,36,36,.94); box-shadow: 0 18px 45px rgba(47,25,31,.24); backdrop-filter: blur(10px); }
.fitline-process-rail span { display: inline-flex; min-width: 0; align-items: center; gap: .55rem; font-size: clamp(.34rem, .65vw, .64rem); font-weight: 750; white-space: nowrap; }
.fitline-process-rail span b { display: inline-flex; width: clamp(18px, 2vw, 28px); height: clamp(18px, 2vw, 28px); align-items: center; justify-content: center; border-radius: 50%; color: white; background: #d01541; font-size: clamp(.3rem, .48vw, .46rem); }
.fitline-process-rail > i { color: #d88a9d; font-size: clamp(.5rem, .9vw, .85rem); font-style: normal; }
.project-poster-kinsvater { background: radial-gradient(circle at 76% 24%, rgba(187,45,37,.22), transparent 27%), linear-gradient(145deg, #22262b, #0d1117 72%); }
.project-poster-kinsvater::before { position: absolute; z-index: 0; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 42px 42px; content: ""; }
.kinsvater-poster-main { position: absolute; z-index: 1; top: 6%; right: 4%; bottom: 20%; left: 4%; width: 92%; height: 74%; border: 1px solid rgba(255,255,255,.18); border-radius: 1rem; background: #171a1f; box-shadow: 0 28px 60px rgba(0,0,0,.38); object-fit: contain; }
.kinsvater-red-line { position: absolute; z-index: 3; right: -5%; bottom: 18%; width: 66%; height: 12px; background: #b92d25; box-shadow: 0 10px 28px rgba(185,45,37,.34); transform: rotate(-5deg); }
.kinsvater-poster-detail { position: absolute; z-index: 4; right: 5%; bottom: 5%; width: 35%; aspect-ratio: 2000 / 924; overflow: hidden; border: 5px solid rgba(255,255,255,.96); border-radius: .8rem; background: #111; box-shadow: 0 20px 45px rgba(0,0,0,.38); }
.kinsvater-poster-detail img { width: 100%; height: 100%; object-fit: contain; }
.project-poster-kinsvater figcaption { position: absolute; z-index: 4; bottom: 7%; left: 5%; display: grid; gap: .25rem; color: white; text-transform: uppercase; }
.project-poster-kinsvater figcaption span { color: rgba(255,255,255,.6); font-size: clamp(.42rem, .7vw, .68rem); font-weight: 750; letter-spacing: .15em; }
.project-poster-kinsvater figcaption strong { font-size: clamp(.86rem, 1.9vw, 1.65rem); letter-spacing: -.02em; }
.project-poster-system { background: radial-gradient(circle at 73% 23%, rgba(80,146,255,.36), transparent 25%), linear-gradient(145deg, #142b48, #07111f 70%); }
.project-poster-system::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 42px 42px; content: ""; mask-image: linear-gradient(to bottom, black, transparent 86%); }
.project-erp-showcase { display: grid; padding: clamp(.8rem, 2.1vw, 2rem); grid-template-columns: repeat(12, 1fr); grid-template-rows: repeat(8, 1fr); gap: clamp(.35rem, .8vw, .75rem); }
.erp-screen-main { position: relative; z-index: 3; display: flex; min-width: 0; align-self: center; flex-direction: column; overflow: hidden; grid-column: 2 / 12; grid-row: 1 / 5; border: 1px solid rgba(255,255,255,.22); border-radius: .9rem; background: white; box-shadow: 0 26px 60px rgba(0,0,0,.38); }
.erp-screen-main > div { display: flex; height: clamp(20px, 2.4vw, 34px); align-items: center; justify-content: space-between; padding: 0 .8rem; color: #536176; background: #eef2f7; font-size: clamp(.38rem, .62vw, .61rem); font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.erp-screen-main i { color: var(--blue); font-style: normal; }
.erp-screen-main img { width: 100%; height: auto; object-fit: contain; }
.erp-module { position: relative; z-index: 3; display: flex; min-width: 0; flex-direction: column; padding: clamp(.5rem, 1.1vw, 1rem); border: 1px solid rgba(255,255,255,.42); border-radius: .8rem; color: var(--ink); background: rgba(255,255,255,.94); box-shadow: 0 18px 44px rgba(0,0,0,.24); }
.erp-module span { color: var(--blue); font-size: clamp(.38rem, .55vw, .55rem); font-weight: 800; }
.erp-module-visual { position: relative; min-height: 0; flex: 1; overflow: hidden; margin: .45rem 0 .55rem; border: 1px solid #e1e7f0; border-radius: .5rem; background: #f5f7fb; }
.erp-module-visual::before, .erp-module-visual::after { position: absolute; content: ""; }
.erp-module-crm .erp-module-visual::before { inset: 16% 62% 16% 10%; border-radius: 50%; background: radial-gradient(circle at 50% 25%, #6b94f5 0 15%, transparent 16%), radial-gradient(circle at 50% 73%, #d9e4ff 0 30%, transparent 31%); }
.erp-module-crm .erp-module-visual::after { top: 20%; right: 10%; width: 45%; height: 60%; background: repeating-linear-gradient(to bottom, #aebbd0 0 3px, transparent 3px 12px); }
.erp-module-offers .erp-module-visual::before { top: 13%; bottom: 13%; left: 24%; width: 46%; border: 2px solid #9fb4da; border-radius: .35rem; background: repeating-linear-gradient(to bottom, transparent 0 12px, #d6deea 12px 15px); box-shadow: 9px 8px 0 #e6ecf5; }
.erp-module-offers .erp-module-visual::after { right: 13%; bottom: 15%; width: 29%; height: 16%; border-radius: 999px; background: #2f6df6; }
.erp-module-invoices .erp-module-visual::before { bottom: 13%; left: 17%; width: 13%; height: 47%; border-radius: .22rem .22rem 0 0; background: #8fb0ff; box-shadow: 29px 11px 0 #5e8df8, 58px -10px 0 #2f6df6; }
.erp-module-invoices .erp-module-visual::after { right: 10%; bottom: 12%; left: 10%; height: 1px; background: #bdc8d8; }
.erp-module-finance .erp-module-visual::before { top: 18%; bottom: 18%; left: 10%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, #f5f7fb 0 43%, transparent 44%), conic-gradient(#2f6df6 0 66%, #dce5f5 66% 100%); }
.erp-module-finance .erp-module-visual::after { top: 23%; right: 9%; width: 43%; height: 54%; background: repeating-linear-gradient(to bottom, #aebbd0 0 3px, transparent 3px 12px); }
.erp-module strong { font-size: clamp(.62rem, 1.25vw, 1.15rem); letter-spacing: -.025em; }
.erp-module small { overflow: hidden; margin-top: .18rem; color: #667286; font-size: clamp(.34rem, .58vw, .58rem); white-space: nowrap; text-overflow: ellipsis; }
.erp-module-crm { grid-column: 1 / 4; grid-row: 5 / 9; }
.erp-module-offers { grid-column: 4 / 7; grid-row: 5 / 9; }
.erp-module-invoices { grid-column: 7 / 10; grid-row: 5 / 9; }
.erp-module-finance { grid-column: 10 / 13; grid-row: 5 / 9; }
.project-media-beauty .project-filmstrip, .project-media-frisch .project-filmstrip, .project-media-fitline .project-filmstrip, .project-media-toolbox .project-filmstrip, .project-media-kinsvater .project-filmstrip { color: rgba(8,19,33,.62); }
.project-media-beauty .project-media-caption, .project-media-frisch .project-media-caption, .project-media-fitline .project-media-caption, .project-media-toolbox .project-media-caption, .project-media-kinsvater .project-media-caption { color: var(--ink); }
.project-media-beauty .project-media-caption small, .project-media-frisch .project-media-caption small, .project-media-fitline .project-media-caption small, .project-media-toolbox .project-media-caption small, .project-media-kinsvater .project-media-caption small { color: rgba(8,19,33,.58); }
.project-open, .project-private { position: absolute; z-index: 9; top: 1rem; right: 1rem; display: flex; min-width: 148px; align-items: center; justify-content: space-between; gap: 1rem; padding: .78rem 1rem; border-radius: 999px; color: var(--ink); background: rgba(255,255,255,.94); box-shadow: 0 12px 35px rgba(10,20,35,.12); font-size: .75rem; font-weight: 750; backdrop-filter: blur(12px); }
.project-private { min-width: 0; color: white; background: rgba(9,22,40,.86); }
.project-media-caption { position: relative; z-index: 4; display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; color: white; }
.project-media-caption strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.15rem, 2.2vw, 2rem); font-weight: 400; letter-spacing: -.035em; }
.project-media-caption small { color: rgba(255,255,255,.65); font-size: .66rem; letter-spacing: .1em; text-align: right; text-transform: uppercase; }
.project-case-copy { display: flex; min-width: 0; flex-direction: column; padding: clamp(2rem, 4vw, 4.5rem); }
.project-case-meta { display: grid; grid-template-columns: 36px 1fr; align-items: baseline; gap: .15rem 1rem; color: rgba(255,255,255,.48); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.project-case-meta > span { grid-row: 1 / 3; }
.project-case-meta p, .project-case-meta small { margin: 0; }
.project-case-meta p { color: white; font-size: .78rem; font-weight: 750; }
.project-case-meta small { grid-column: 2; color: rgba(255,255,255,.45); }
.project-case-copy h3 { margin: 3rem 0 1.5rem; font-size: clamp(2.15rem, 3.2vw, 3.85rem); font-weight: 480; line-height: 1.02; letter-spacing: -.055em; }
.project-case-intro { margin: 0; color: rgba(255,255,255,.7); font-size: 1.03rem; line-height: 1.65; }
.project-case-facts { display: grid; margin-top: 2rem; border-top: 1px solid rgba(255,255,255,.16); }
.project-case-facts p { margin: 0; padding: 1.15rem 0; color: rgba(255,255,255,.58); line-height: 1.55; }
.project-case-facts p + p { border-top: 1px solid rgba(255,255,255,.12); }
.project-case-facts strong { display: block; margin-bottom: .35rem; color: white; font-size: .68rem; letter-spacing: .09em; text-transform: uppercase; }
.project-text-link { display: inline-flex; width: fit-content; align-items: center; gap: 1.8rem; margin-top: auto; padding-top: 2rem; border-bottom: 1px solid rgba(255,255,255,.38); font-size: .78rem; font-weight: 750; }
.project-text-link-static { border-bottom-color: transparent; color: rgba(255,255,255,.48); }
.project-links { display: flex; align-items: center; gap: 1.4rem; margin-top: auto; padding-top: 2rem; flex-wrap: wrap; }
.project-links .project-text-link { margin-top: 0; padding-top: 0; }
.project-live-link { color: rgba(255,255,255,.52); font-size: .75rem; font-weight: 700; transition: color .2s; }
.project-live-link:hover, .project-live-link:focus-visible { color: white; }

.browser-bar { display: flex; align-items: center; gap: .38rem; height: 38px; padding: 0 .85rem; color: #536174; background: #edf1f6; }
.browser-bar i { width: 7px; height: 7px; border-radius: 50%; background: #b8c1ce; }
.browser-bar span { margin-left: auto; font-size: .6rem; }

.systems-showcase { margin-top: 9rem; padding-top: 3rem; border-top: 1px solid rgba(255,255,255,.16); }
.systems-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .42fr); align-items: end; gap: clamp(3rem, 7vw, 8rem); }
.systems-head h3 { max-width: 980px; margin: 1rem 0 0; font-size: clamp(3rem, 5.2vw, 6.2rem); font-weight: 480; line-height: .98; letter-spacing: -.055em; }
.systems-head h3 em { color: var(--blue-light); }
.systems-head > p { margin: 0; color: rgba(255,255,255,.58); line-height: 1.7; }
.systems-grid { display: grid; margin-top: 3.5rem; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.system-card { overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); background: rgba(255,255,255,.05); transition: border-color .3s, transform .35s cubic-bezier(.2,.8,.2,1); }
.system-card:hover { border-color: rgba(255,255,255,.32); transform: translateY(-5px); }
.system-card-media { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; margin: .8rem; border-radius: calc(var(--radius) - .65rem); background: white; }
.system-card-media::after { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.34); border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(8,19,33,.06); content: ""; pointer-events: none; }
.system-card-media img { width: 100%; height: 100%; object-fit: contain; object-position: center; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.system-card:hover .system-card-media img { transform: scale(1.015); }
.system-card-media-toolbox { background: #edf4ff; }
.system-card-media-suite { background: #f5f7fb; }
.system-card-media > span { position: absolute; z-index: 2; top: .85rem; right: .85rem; padding: .58rem .78rem; border-radius: 999px; color: var(--ink); background: rgba(255,255,255,.94); box-shadow: 0 10px 28px rgba(8,19,33,.13); font-size: .65rem; font-weight: 750; }
.system-card-media-suite > span { color: white; background: rgba(8,19,33,.9); }
.system-card-copy { padding: clamp(1.3rem, 2.5vw, 2.4rem) clamp(1.4rem, 2.8vw, 2.7rem) clamp(1.7rem, 3vw, 2.8rem); }
.system-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: rgba(255,255,255,.46); font-size: .64rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.system-card-meta small { font-size: inherit; }
.system-card-copy h4 { margin: 2.2rem 0 1rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 3.3vw, 3.5rem); font-weight: 400; line-height: 1; letter-spacing: -.045em; }
.system-card-copy p { max-width: 650px; margin: 0; color: rgba(255,255,255,.62); line-height: 1.7; }
.system-card-copy ul { display: flex; margin: 2rem 0 0; padding: 0; list-style: none; gap: .55rem; flex-wrap: wrap; }
.system-card-copy li { padding: .5rem .72rem; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: rgba(255,255,255,.7); font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.system-card-detail { display: inline-flex; width: fit-content; align-items: center; gap: 1.6rem; margin-top: 2rem; border-bottom: 1px solid rgba(255,255,255,.36); font-size: .75rem; font-weight: 750; }

.portfolio-more { margin-top: 10rem; padding-top: 3rem; border-top: 1px solid rgba(255,255,255,.16); }
.portfolio-more-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 3rem; }
.portfolio-more-head h3 { margin: 1rem 0 0; font-size: clamp(3.2rem, 5.4vw, 6.5rem); font-weight: 480; line-height: .98; letter-spacing: -.055em; }
.portfolio-more-head h3 em { color: var(--blue-light); }
.carousel-controls { display: flex; gap: .7rem; padding-bottom: .5rem; }
.carousel-controls button { display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: white; background: transparent; cursor: pointer; transition: color .2s, background .2s; }
.carousel-controls button:hover, .carousel-controls button:focus-visible { color: var(--ink); background: white; }
.project-carousel { overflow: hidden; margin-top: 3.5rem; }
.carousel-stage { position: relative; height: min(55vw, 630px); min-height: 440px; }
.carousel-card { position: absolute; top: 50%; left: 50%; width: min(72vw, 900px); aspect-ratio: 1.5; margin: 0; overflow: hidden; padding: .7rem .7rem 4.15rem; border: 1px solid rgba(255,255,255,.18); border-radius: 1.2rem; opacity: 0; background: #0b1726; box-shadow: 0 40px 90px rgba(0,0,0,.38); transform: translate(-50%, -50%) scale(.68); transition: transform .7s cubic-bezier(.2,.8,.2,1), opacity .45s ease; pointer-events: none; }
.carousel-card > img, .carousel-card-link, .carousel-card-link img { width: 100%; height: 100%; border-radius: .75rem; object-fit: contain; background: white; }
.carousel-card-link { display: block; }
.carousel-card-link:focus-visible { outline: 3px solid var(--blue-light); outline-offset: -3px; }
.carousel-card figcaption { position: absolute; right: 0; bottom: 0; left: 0; display: flex; min-height: 3.45rem; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem 1.1rem; border-top: 1px solid rgba(255,255,255,.12); color: white; background: rgba(8,19,33,.96); }
.carousel-card figcaption strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(.9rem, 1.5vw, 1.25rem); font-weight: 400; }
.carousel-card figcaption span { color: rgba(255,255,255,.55); font-size: .58rem; font-weight: 750; letter-spacing: .1em; text-align: right; text-transform: uppercase; }
.carousel-card[data-position="0"] { z-index: 5; opacity: 1; transform: translate(-50%, -50%) scale(1); pointer-events: auto; }
.carousel-card[data-position="-1"] { z-index: 4; opacity: .62; transform: translate(-105%, -50%) scale(.82); }
.carousel-card[data-position="1"] { z-index: 4; opacity: .62; transform: translate(5%, -50%) scale(.82); }
.carousel-card[data-position="-2"] { z-index: 3; opacity: .18; transform: translate(-142%, -50%) scale(.67); }
.carousel-card[data-position="2"] { z-index: 3; opacity: .18; transform: translate(42%, -50%) scale(.67); }

.services-section { padding: 12rem 0; background: var(--paper); }
.services-head { display: grid; grid-template-columns: .32fr 1fr .48fr; align-items: end; gap: 3rem; margin-bottom: 5rem; }
.services-head h2 { margin: 0; font-size: clamp(3.2rem, 4.6vw, 5.4rem); font-weight: 480; line-height: 1; }
.services-head h2 em { color: var(--blue); }
.services-head > p:last-child { margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.service-card { display: flex; min-height: 400px; flex-direction: column; padding: clamp(1.6rem, 3vw, 3rem); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.3); transition: color .3s, background .3s, transform .3s; }
.service-card:hover { color: white; background: var(--blue); transform: translateY(-4px); }
.service-card > div { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: .7rem; }
.service-card:hover > div, .service-card:hover p { color: rgba(255,255,255,.72); }
.service-card i { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-style: normal; font-size: 1rem; }
.service-card h3 { max-width: 620px; margin: auto 0 1.4rem; font-size: clamp(2.2rem, 3.6vw, 4.2rem); font-weight: 500; line-height: .98; letter-spacing: -.05em; }
.service-card p { max-width: 570px; min-height: 3.4em; margin: 0; color: var(--muted); line-height: 1.65; transition: color .3s; }

.process-section { padding: 11rem 0; color: white; background: #122842; }
.process-head { display: grid; grid-template-columns: .32fr 1fr; gap: 4rem; margin-bottom: 6rem; }
.process-head h2 { margin: 0; font-size: clamp(3.4rem, 4.8vw, 5.8rem); font-weight: 480; }
.process-head h2 em { color: var(--blue-light); }
.process-list { display: grid; margin: 0 auto; padding: 0; list-style: none; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.2); border-left: 1px solid rgba(255,255,255,.2); }
.process-list li { display: flex; min-height: 360px; flex-direction: column; padding: 1.5rem; border-right: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.process-list li > span { color: rgba(255,255,255,.45); font-size: .72rem; }
.process-list li > div { margin-top: auto; }
.process-list h3 { margin-bottom: 1rem; font-size: clamp(1.8rem, 2.4vw, 2.8rem); font-weight: 500; }
.process-list p { margin: 0; color: rgba(255,255,255,.6); }

.audit-section { padding: 10rem 0; background: var(--paper-soft); }
.audit-layout { display: grid; grid-template-columns: 1.1fr .8fr; overflow: hidden; border-radius: var(--radius); color: white; background: var(--navy); }
.audit-copy { padding: clamp(3rem, 6vw, 7rem); }
.audit-copy .section-index { color: var(--blue-light); }
.audit-copy h2 { margin: 1.5rem 0 2rem; font-size: clamp(3rem, 4.4vw, 5.4rem); font-weight: 480; }
.audit-copy h2 em { color: var(--blue-light); }
.audit-copy > p:not(.section-index) { max-width: 680px; color: rgba(255,255,255,.65); font-size: 1.1rem; line-height: 1.7; }
.audit-copy .button { margin-top: 1.5rem; }
.audit-panel { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 5rem); background: var(--blue); }
.audit-panel > p { margin-bottom: 2rem; font-size: 1.2rem; font-weight: 700; }
.audit-panel ul { margin: 0; padding: 0; list-style: none; }
.audit-panel li { display: grid; grid-template-columns: 45px 1fr; padding: 1.3rem 0; border-top: 1px solid rgba(255,255,255,.25); }
.audit-panel li span { color: rgba(255,255,255,.6); font-size: .7rem; }

.faq-section { padding: 11rem 0; background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1fr); gap: clamp(4rem, 6vw, 6rem); }
.faq-intro h2 { margin: 1.5rem 0 0; font-size: clamp(3rem, 3.8vw, 4.5rem); font-weight: 480; }
.faq-intro h2 em { color: var(--blue); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: grid; grid-template-columns: 1fr 30px; gap: 2rem; padding: 1.8rem 0; cursor: pointer; list-style: none; font-size: 1.1rem; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { font-style: normal; font-size: 1.5rem; font-weight: 400; transition: transform .25s; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details p { max-width: 680px; margin: 0; padding: 0 3rem 1.8rem 0; color: var(--muted); }

.contact-section { position: relative; isolation: isolate; overflow: hidden; padding: 11rem 0 clamp(5.5rem, 7vw, 7rem); color: white; background: radial-gradient(circle at 88% 14%, rgba(70,128,255,.24), transparent 31%), radial-gradient(circle at 12% 88%, rgba(36,83,162,.2), transparent 28%), var(--navy); }
.contact-section::before { position: absolute; z-index: -1; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 64px 64px; content: ""; mask-image: linear-gradient(to bottom, transparent, black 28%, black 76%, transparent); }
.contact-section > .shell { position: relative; z-index: 1; }
.contact-head { display: grid; grid-template-columns: .28fr 1fr .42fr; align-items: end; gap: 3rem; margin-bottom: 6rem; }
.contact-head h2 { margin: 0; font-size: clamp(3.8rem, 5.8vw, 6.8rem); font-weight: 480; }
.contact-head h2 em { color: var(--blue-light); }
.contact-head > p:last-child { margin: 0; color: rgba(255,255,255,.64); font-size: 1.02rem; line-height: 1.7; }
.contact-layout { display: grid; grid-template-columns: minmax(300px, .58fr) minmax(0, 1fr); gap: 1.4rem; }
.contact-assurance { position: relative; display: flex; overflow: hidden; flex-direction: column; padding: clamp(2rem, 3.4vw, 3.4rem); border: 1px solid rgba(255,255,255,.16); border-radius: 24px; background: linear-gradient(155deg, rgba(34,62,101,.88), rgba(10,25,45,.94)); box-shadow: 0 28px 70px rgba(0,0,0,.2); }
.contact-assurance::after { position: absolute; top: -110px; right: -100px; width: 260px; height: 260px; border-radius: 50%; background: rgba(83,138,255,.18); filter: blur(2px); content: ""; pointer-events: none; }
.contact-assurance h3 { position: relative; z-index: 1; margin: 0 0 2.5rem; font-size: clamp(1.6rem, 2.2vw, 2.2rem); font-weight: 520; letter-spacing: -.035em; }
.contact-assurance ol { margin: 0; padding: 0; list-style: none; }
.contact-assurance li { display: grid; min-height: 84px; align-items: center; padding: 1.1rem 0; grid-template-columns: 48px 1fr; gap: .35rem; border-top: 1px solid rgba(255,255,255,.14); }
.contact-assurance li span { display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid rgba(123,164,255,.45); border-radius: 50%; color: #b9ceff; background: rgba(66,116,230,.14); font-size: .66rem; font-weight: 800; }
.contact-assurance li p { margin: 0; color: rgba(255,255,255,.76); line-height: 1.55; }
.direct-contact { display: grid; margin-top: auto; padding-top: 3rem; gap: .35rem; }
.direct-contact p { margin: 0 0 .45rem; color: rgba(255,255,255,.46); font-size: .68rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.direct-contact a { width: fit-content; color: rgba(255,255,255,.88); font-size: 1.04rem; font-weight: 700; transition: color .2s; }
.direct-contact a:hover { color: #b9ceff; }
.form-card { padding: clamp(2rem, 4vw, 4rem); border: 1px solid rgba(255,255,255,.78); border-radius: 24px; color: var(--ink); background: linear-gradient(145deg, #fff, #f4f6fa); box-shadow: 0 34px 90px rgba(0,0,0,.24); }
.form-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; margin-bottom: 2.5rem; padding-bottom: 1.6rem; border-bottom: 1px solid #dfe4ec; }
.form-heading > div { display: grid; gap: .35rem; }
.form-heading span { font-size: clamp(1.35rem, 2vw, 1.8rem); font-weight: 750; letter-spacing: -.04em; }
.form-heading p { margin: 0; color: var(--muted); font-size: .76rem; }
.form-heading strong { max-width: 190px; color: #385478; font-size: .72rem; font-weight: 700; line-height: 1.45; text-align: right; }
.form-row { display: grid; margin-bottom: 1.15rem; gap: .55rem; }
.form-row-split { grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row-split > div { display: grid; gap: .5rem; }
.form-row label { color: #283445; font-size: .76rem; font-weight: 750; }
.form-row label small { color: var(--muted); font-weight: 400; }
.form-row input, .form-row select, .form-row textarea { width: 100%; border: 1px solid #d5dbe5; border-radius: 13px; color: var(--ink); background: rgba(255,255,255,.92); box-shadow: inset 0 1px 0 rgba(8,19,33,.025); transition: border-color .2s, box-shadow .2s, background .2s; }
.form-row input, .form-row select { height: 54px; padding: 0 1rem; }
.form-row select { cursor: pointer; }
.form-row textarea { min-height: 145px; padding: 1rem; line-height: 1.55; resize: vertical; }
.form-row input::placeholder, .form-row textarea::placeholder { color: #9199a6; }
.form-row input:hover, .form-row select:hover, .form-row textarea:hover { border-color: #b4becd; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--blue); background: white; box-shadow: 0 0 0 4px rgba(47,109,246,.12); }
.form-row input:focus-visible, .form-row select:focus-visible, .form-row textarea:focus-visible { outline: 3px solid var(--blue-light); outline-offset: 3px; }
.form-help { color: var(--muted); font-size: .7rem; line-height: 1.45; }
form.has-errors :is(input, select, textarea)[aria-invalid="true"] { border-color: #c43f4c; background: #fffafa; box-shadow: 0 0 0 3px rgba(196,63,76,.1); }
.consent-row { display: grid; margin-top: .4rem; padding: 1rem; grid-template-columns: 22px 1fr; gap: .75rem; border: 1px solid #e0e5ec; border-radius: 12px; color: #5e6876; background: rgba(238,242,247,.75); font-size: .72rem; line-height: 1.55; }
.consent-row input { width: 18px; height: 18px; margin-top: .1rem; accent-color: var(--blue); }
.consent-row a { color: var(--ink); text-decoration: underline; }
.form-trust { display: flex; flex-wrap: wrap; gap: .55rem 1rem; margin-top: 1.2rem; color: #607088; font-size: .68rem; font-weight: 650; }
.form-trust span { white-space: nowrap; }
.form-submit { width: 100%; min-height: 58px; margin-top: 1.25rem; box-shadow: 0 16px 32px rgba(47,109,246,.2); }
.form-submit:disabled { cursor: wait; opacity: .65; }
.form-status { min-height: 1.3em; margin: .85rem 0 0; color: #a52a3a; font-size: .78rem; font-weight: 650; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-success { padding: 4rem 1rem; text-align: center; }
.form-success > span { display: grid; width: 64px; height: 64px; margin: 0 auto 1.5rem; place-items: center; border-radius: 50%; color: white; background: var(--blue); box-shadow: 0 16px 35px rgba(47,109,246,.25); font-size: 1.5rem; }
.form-success h3 { font-size: 2.6rem; }
.form-success p { color: var(--muted); }
.form-success a { border-bottom: 1px solid var(--ink); font-weight: 700; }

.site-footer { position: relative; isolation: isolate; overflow: hidden; padding: clamp(4rem, 7vw, 6.5rem) 0 2rem; color: white; background: linear-gradient(180deg, rgba(50,95,170,.24), transparent 150px), radial-gradient(circle at 12% -15%, rgba(64,120,246,.24), transparent 38%), linear-gradient(150deg, #10233d 0%, #081727 26%, #030910 72%); }
.site-footer::before { position: absolute; z-index: -1; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 72px 72px; content: ""; mask-image: linear-gradient(90deg, black, transparent 78%); }
.site-footer::after { position: absolute; z-index: 0; top: 0; left: 50%; width: min(880px, calc(100% - 48px)); height: 1px; border-radius: 999px; background: linear-gradient(90deg, transparent, rgba(224,232,248,.22) 14%, rgba(126,166,255,.72) 50%, rgba(224,232,248,.22) 86%, transparent); box-shadow: 0 0 18px rgba(70,119,224,.28); content: ""; transform: translateX(-50%); }
.site-footer-home { padding-top: clamp(3.5rem, 5vw, 4.75rem); }
.site-footer-home::before { opacity: .15; mask-image: linear-gradient(to bottom, transparent, black 30%, black); }
.site-footer > .shell { position: relative; z-index: 1; }
.footer-main { display: grid; align-items: start; padding-bottom: clamp(3rem, 6vw, 5rem); grid-template-columns: minmax(300px, 1.25fr) repeat(2, minmax(160px, .55fr)) auto; gap: clamp(2.25rem, 5vw, 5.5rem); }
.footer-main > div:first-child { max-width: 470px; }
.brand-footer { display: inline-flex; padding: .3rem 0; }
.site-footer .brand-footer img { width: clamp(240px, 22vw, 310px); }
.footer-main > div:first-child > p { margin: 1.6rem 0 0; color: rgba(255,255,255,.58); font-size: clamp(.98rem, 1.2vw, 1.12rem); line-height: 1.65; }
.footer-contact, .footer-address { display: grid; align-content: start; gap: .65rem; padding-top: .35rem; }
.footer-contact > span, .footer-address > span { margin-bottom: .65rem; color: #7f9fdc; font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-contact a, .footer-address p { margin: 0; color: rgba(255,255,255,.82); font-size: .96rem; line-height: 1.55; }
.footer-contact a { width: fit-content; transition: color .2s; }
.footer-contact a:hover { color: #a9c2ff; }
.footer-up { display: grid; width: 60px; height: 60px; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: white; background: rgba(255,255,255,.055); font-size: 1.15rem; transition: color .2s, background .2s, transform .2s; }
.footer-up:hover { color: var(--ink); background: white; transform: translateY(-4px); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.72); font-size: .82rem; }
.footer-bottom > span:first-child { white-space: nowrap; }
.footer-bottom > span:last-child { display: flex; gap: 1.5rem; }
.footer-bottom a, .footer-consent-link { transition: color .2s; }
.footer-bottom a:hover, .footer-consent-link:hover { color: white; }
.footer-consent-link { padding: 0; border: 0; color: inherit; background: transparent; font-size: inherit; cursor: pointer; }

/* Consent manager: optional services stay inert until their category is approved. */
body.consent-open { overflow: hidden; }
.ws24-consent[hidden], .ws24-consent-view[hidden] { display: none; }
.ws24-consent { position: fixed; z-index: 5000; inset: 0; display: flex; align-items: flex-end; justify-content: center; padding: 16px; }
.ws24-consent-backdrop { position: absolute; inset: 0; background: rgba(3,9,16,.58); backdrop-filter: blur(7px); }
.ws24-consent-panel { position: relative; width: min(820px, 100%); max-height: calc(100vh - 32px); max-height: calc(100dvh - 32px); overflow: auto; overscroll-behavior: contain; border: 1px solid rgba(255,255,255,.48); border-radius: 22px; background: #f8f6f1; box-shadow: 0 24px 70px rgba(0,0,0,.3); scrollbar-width: thin; }
.ws24-consent-panel::before { position: absolute; top: 0; right: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--blue), #76a0ff 58%, #dbe5ff); content: ""; }
.ws24-consent-close { position: absolute; z-index: 2; top: 14px; right: 14px; display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid rgba(17,25,40,.14); border-radius: 50%; color: #435064; background: rgba(255,255,255,.72); font-size: 1.25rem; line-height: 1; cursor: pointer; transition: color .2s, background .2s, transform .2s; }
.ws24-consent-close:hover { color: white; background: var(--navy); transform: rotate(4deg); }
.ws24-consent-brand { display: flex; min-height: 62px; align-items: center; gap: .55rem; padding: 14px clamp(22px, 3vw, 34px) 0; color: var(--navy); }
.ws24-consent-brand > img { width: 82px; height: auto; object-fit: contain; }
.ws24-consent-brand > i { width: 6px; height: 6px; border-radius: 50%; background: #2fa96f; box-shadow: 0 0 0 4px rgba(47,169,111,.1); }
.ws24-consent-brand > small { color: #455366; font-size: .75rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.ws24-consent-view { padding: 9px clamp(22px, 3vw, 34px) 24px; }
.ws24-consent-kicker { margin: 0 0 .55rem; color: var(--blue); font-size: .72rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.ws24-consent-view h2 { max-width: 720px; margin: 0 0 .75rem; font-size: clamp(2.15rem, 4vw, 3.35rem); font-weight: 520; line-height: .98; }
.ws24-consent-view[data-consent-view="settings"] h2 { font-size: clamp(2.05rem, 3.4vw, 2.9rem); }
.ws24-consent-view h2[tabindex="-1"]:focus-visible { outline: 3px solid var(--blue-light); outline-offset: 4px; }
.ws24-consent-view > p:not(.ws24-consent-kicker) { max-width: 740px; margin: 0; color: #4f5967; font-size: clamp(.9rem, 1.1vw, 1rem); line-height: 1.55; }
.ws24-consent-checkline { display: flex; max-width: 740px; align-items: center; gap: .65rem; margin-top: 1.1rem; padding: .7rem .8rem; border: 1px solid rgba(24,89,242,.14); border-radius: 12px; color: #324158; background: #edf2ff; }
.ws24-consent-checkline > span { display: grid; width: 22px; height: 22px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: white; background: var(--blue); font-size: .62rem; }
.ws24-consent-checkline p { margin: 0; font-size: .82rem; line-height: 1.4; }
.ws24-consent-actions { display: grid; margin-top: 1.15rem; grid-template-columns: 1fr 1fr; gap: .6rem; }
.ws24-consent-actions-main { grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr); }
.ws24-consent-button { min-height: 48px; padding: .65rem 1rem; border: 1px solid transparent; border-radius: 999px; font-size: .88rem; font-weight: 800; cursor: pointer; transition: color .2s, border-color .2s, background .2s, transform .2s, box-shadow .2s; }
.ws24-consent-button:hover { transform: translateY(-2px); }
.ws24-consent-button-essential { border-color: rgba(8,19,33,.28); color: var(--navy); background: white; }
.ws24-consent-button-essential:hover { border-color: var(--navy); box-shadow: 0 10px 24px rgba(8,19,33,.09); }
.ws24-consent-button-settings { padding-inline: 1.2rem; border-color: transparent; color: #4b586c; background: transparent; text-decoration: underline; text-underline-offset: 4px; }
.ws24-consent-button-accept { color: white; background: var(--blue); box-shadow: 0 13px 28px rgba(24,89,242,.22); }
.ws24-consent-button-accept:hover { background: #0c47d6; box-shadow: 0 16px 34px rgba(24,89,242,.3); }
.ws24-consent-back { display: inline-flex; align-items: center; gap: .45rem; margin: 0 0 .85rem; padding: 0; border: 0; color: #526074; background: transparent; font-size: .82rem; font-weight: 750; cursor: pointer; }
.ws24-consent-back:hover { color: var(--blue); }
.ws24-consent-categories { display: grid; margin-top: 1.2rem; grid-template-columns: 1fr 1fr; gap: .55rem; }
.ws24-consent-category { position: relative; display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: .85rem; padding: .8rem .9rem; border: 1px solid rgba(17,25,40,.14); border-radius: 13px; background: white; cursor: pointer; transition: border-color .2s, box-shadow .2s; }
.ws24-consent-category:hover { border-color: rgba(24,89,242,.5); box-shadow: 0 10px 25px rgba(8,19,33,.06); }
.ws24-consent-category-fixed { background: #eef1f5; cursor: default; }
.ws24-consent-category-fixed:hover { border-color: rgba(17,25,40,.14); box-shadow: none; }
.ws24-consent-category > span { display: grid; gap: .25rem; }
.ws24-consent-category strong { font-size: .95rem; }
.ws24-consent-category small { max-width: 310px; color: #536174; font-size: .78rem; line-height: 1.4; }
.ws24-consent-category input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.ws24-consent-category > i { position: relative; width: 42px; height: 24px; flex: 0 0 auto; border: 1px solid #aab3c0; border-radius: 999px; background: #cbd1d9; transition: border-color .2s, background .2s; }
.ws24-consent-category > i::after { position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: white; box-shadow: 0 2px 6px rgba(8,19,33,.24); content: ""; transition: transform .2s; }
.ws24-consent-category input:checked + i { border-color: var(--blue); background: var(--blue); }
.ws24-consent-category input:checked + i::after { transform: translateX(18px); }
.ws24-consent-category input:focus-visible + i { outline: 3px solid var(--blue-light); outline-offset: 4px; }
.ws24-consent-inventory-wrap { display: grid; margin-top: .6rem; padding: .75rem .9rem; border: 1px solid rgba(17,25,40,.12); border-radius: 13px; background: #eef1f5; gap: .6rem; }
.ws24-consent-inventory-wrap > div { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.ws24-consent-inventory-wrap > div strong { font-size: .88rem; }
.ws24-consent-inventory-wrap > div span { color: #536174; font-size: .78rem; text-align: right; }
.ws24-consent-inventory-wrap ul { display: grid; margin: 0; padding: 0; list-style: none; gap: .4rem; }
.ws24-consent-inventory-wrap li { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: .55rem; border-top: 1px solid rgba(17,25,40,.1); color: #536174; font-size: .78rem; }
.ws24-consent-inventory-wrap li strong { color: #2f8a5e; font-size: .75rem; }
.ws24-consent-inventory-wrap li[data-violation="true"] strong { color: #b32645; }
.ws24-consent-legal { display: flex; align-items: center; gap: 1.1rem; padding: .75rem clamp(22px, 3vw, 34px) .85rem; border-top: 1px solid rgba(17,25,40,.11); color: #536174; font-size: .75rem; }
.ws24-consent-legal a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.ws24-consent-legal span { margin-left: auto; }

.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal-delay-one { transition-delay: .08s; }
.js .reveal-delay-two { transition-delay: .16s; }
.js .reveal-delay-three { transition-delay: .24s; }
.js .project-case.reveal { opacity: 0; transform: translateY(56px); transition: opacity .65s ease, transform .8s cubic-bezier(.16,1,.3,1); will-change: opacity, transform; }
.js .project-case:nth-child(even).reveal { transform: translateY(56px); }
.js .project-case.reveal.is-visible { opacity: 1; filter: none; transform: none; will-change: auto; }

/* Legal pages share brand chrome without duplicating a stylesheet. */
.legal-page { min-height: 75vh; padding: 160px 0 5rem; background: var(--paper-soft); }
.legal-wrap { max-width: 900px; }
.legal-wrap h1 { margin: 1.2rem 0 .5rem; font-size: clamp(3.4rem, 5.5vw, 5.8rem); font-weight: 500; }
.legal-meta { margin-bottom: 5rem; color: var(--muted); }
.legal-meta-end { margin: 4rem 0 0; }
.legal-wrap h2 { margin: 3.5rem 0 1rem; font-size: 2rem; font-weight: 550; }
.legal-wrap h3 { margin: 2rem 0 .8rem; font-size: 1.25rem; font-weight: 650; }
.legal-wrap p { color: #444e5b; line-height: 1.8; }
.legal-wrap ul { margin: .75rem 0 1.5rem; padding-left: 1.25rem; color: #444e5b; line-height: 1.8; }
.legal-wrap a { color: var(--blue); overflow-wrap: anywhere; text-decoration: underline; }
.nav-cta { font-size: .78rem; }

/* Shared editorial layout for portfolio case studies. */
.case-page { --case-accent: var(--blue); --case-soft: #dce5f5; --case-deep: var(--navy); background: var(--paper-soft); }
.case-page.case-beautypoint { --case-accent: #9b7967; --case-soft: #eadccf; --case-deep: #2a211e; }
.case-page.case-frischwuchs { --case-accent: #2f7b3d; --case-soft: #dcebd5; --case-deep: #102a1a; }
.case-page.case-fitline { --case-accent: #d01541; --case-soft: #f5e3e8; --case-deep: #29141a; }
.case-page.case-suite { --case-accent: #2f6df6; --case-soft: #dfe8f6; --case-deep: #07111f; }
.case-page.case-toolbox { --case-accent: #1f70f4; --case-soft: #dce9ff; --case-deep: #07172d; }
.case-hero { padding: 165px 0 7rem; overflow: hidden; background: radial-gradient(circle at 82% 12%, color-mix(in srgb, var(--case-accent) 16%, transparent), transparent 28%), var(--paper-soft); }
.case-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .38fr); align-items: end; gap: clamp(3rem, 8vw, 9rem); }
.case-eyebrow { margin: 0; color: var(--case-accent); font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.case-hero h1 { max-width: 1050px; margin: 1.5rem 0 2rem; font-size: clamp(4.3rem, 6vw, 7rem); font-weight: 500; line-height: .91; letter-spacing: -.065em; }
.case-hero-lede { max-width: 780px; margin: 0; color: #3f4854; font-size: clamp(1.2rem, 1.75vw, 1.55rem); line-height: 1.58; }
.case-hero-actions { display: flex; align-items: center; gap: 1.5rem; margin-top: 2.2rem; flex-wrap: wrap; }
.case-hero-actions .button { color: white; background: var(--case-deep); }
.case-back-link { padding: .7rem 0; border-bottom: 1px solid var(--ink); font-size: .82rem; font-weight: 750; }
.case-brief { margin: 0; border-top: 1px solid var(--line); }
.case-brief > div { display: grid; padding: 1rem 0; grid-template-columns: 105px 1fr; gap: 1rem; border-bottom: 1px solid var(--line); }
.case-brief dt { color: var(--muted); font-size: .65rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.case-brief dd { margin: 0; font-size: .86rem; font-weight: 650; }
.case-hero-visual { margin-top: clamp(4rem, 8vw, 8rem); padding: clamp(.7rem, 1.6vw, 1.25rem); border: 1px solid color-mix(in srgb, var(--case-accent) 22%, transparent); border-radius: clamp(1.4rem, 3vw, 3rem); background: var(--case-soft); box-shadow: 0 38px 100px color-mix(in srgb, var(--case-deep) 20%, transparent); }
.case-window { overflow: hidden; border: 1px solid rgba(8,19,33,.12); border-radius: clamp(.9rem, 2.2vw, 2rem); background: white; }
.case-window-bar { display: flex; height: 42px; align-items: center; gap: .42rem; padding: 0 1rem; color: #657184; background: #edf1f5; }
.case-window-bar i { width: 7px; height: 7px; border-radius: 50%; background: #b7c1ce; }
.case-window-bar i:first-child { background: var(--case-accent); }
.case-window-bar span { margin-left: auto; font-size: .6rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.case-window > img { width: 100%; height: auto; max-height: 820px; object-fit: contain; object-position: center; background: white; }
.case-fitline-showcase { position: relative; width: 100%; aspect-ratio: 1672 / 941; overflow: hidden; border-radius: clamp(.9rem, 2.2vw, 2rem); }
.case-fitline .case-hero-visual { padding: 8px; border-radius: 18px; background: #f2dfe5; box-shadow: 0 30px 80px rgba(55,20,30,.15); }
.case-fitline .case-window { border-color: rgba(72,33,44,.16); border-radius: 12px; background: #f7e7eb; }
.case-fitline .case-window-bar { border-bottom: 1px solid rgba(72,33,44,.12); background: #e9edf2; }
.case-fitline .case-fitline-showcase { border-radius: 0 0 8px 8px; background: radial-gradient(circle at 12% 14%, rgba(208,21,65,.14), transparent 35%), radial-gradient(circle at 86% 82%, rgba(208,21,65,.08), transparent 34%), linear-gradient(145deg, #f9e8ed, #f3dbe2); }
.case-toolbox .case-hero-visual { padding: 8px; border-radius: 18px; background: #dce9ff; box-shadow: 0 30px 80px rgba(20,55,105,.18); }
.case-toolbox .case-window { border-color: rgba(31,112,244,.18); border-radius: 12px; background: #eef4ff; }
.case-toolbox .case-window-bar { border-bottom: 1px solid rgba(31,112,244,.14); background: #e9eef5; }
.case-toolbox .case-window > img, .case-toolbox .case-gallery-card img { background: #f4f7fb; }
.case-toolbox .case-gallery-card-wide { grid-column: 1 / -1; }
.case-facts { display: grid; margin-top: 1.25rem; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); background: rgba(255,255,255,.4); }
.case-fact { min-height: 140px; padding: 1.3rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.case-fact span { display: block; margin-bottom: 2rem; color: var(--muted); font-size: .64rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.case-fact strong { display: block; font-size: 1rem; line-height: 1.35; }
.case-story { padding: 10rem 0; background: white; }
.case-story-intro { display: grid; grid-template-columns: .32fr 1fr; gap: clamp(3rem, 8vw, 9rem); }
.case-story-intro h2 { max-width: 1050px; margin: 0; font-size: clamp(3.5rem, 4.8vw, 5.6rem); font-weight: 480; line-height: .96; }
.case-story-intro h2 em { color: var(--case-accent); }
.case-story-grid { display: grid; margin-top: 7rem; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.case-story-card { min-height: 390px; padding: clamp(2rem, 4vw, 4.5rem); background: var(--paper-soft); }
.case-story-card span { color: var(--case-accent); font-size: .68rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.case-story-card h3 { max-width: 600px; margin: 5rem 0 1.4rem; font-size: clamp(2.3rem, 3.5vw, 4rem); font-weight: 500; line-height: 1; }
.case-story-card p { max-width: 680px; margin: 0; color: var(--muted); font-size: 1.02rem; line-height: 1.75; }
.case-principles { display: grid; margin-top: 1.25rem; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.case-principle { display: flex; min-height: 270px; flex-direction: column; padding: 1.5rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.case-principle > span { color: var(--case-accent); font-size: .7rem; font-weight: 800; }
.case-principle div { margin-top: auto; }
.case-principle h3 { margin: 0 0 .8rem; font-size: clamp(1.7rem, 2.3vw, 2.7rem); font-weight: 520; }
.case-principle p { margin: 0; color: var(--muted); line-height: 1.65; }
.case-gallery { padding: 10rem 0; color: white; background: var(--case-deep); }
.case-gallery-head { display: grid; margin-bottom: 5rem; grid-template-columns: .32fr 1fr; gap: clamp(3rem, 8vw, 9rem); }
.case-gallery-head p { color: rgba(255,255,255,.5); }
.case-gallery-head h2 { max-width: 1000px; margin: 0; font-size: clamp(3.3rem, 4.6vw, 5.4rem); font-weight: 480; }
.case-gallery-head h2 em { color: color-mix(in srgb, var(--case-accent) 55%, white); }
.case-gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.case-gallery-card { margin: 0; padding: .7rem .7rem 0; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: rgba(255,255,255,.06); }
.case-gallery-card img { width: 100%; height: clamp(260px, 34vw, 540px); border-radius: calc(var(--radius) - .6rem); object-fit: contain; object-position: center; background: white; }
.case-gallery-card figcaption { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem .5rem; }
.case-gallery-card figcaption strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; font-weight: 400; }
.case-gallery-card figcaption span { color: rgba(255,255,255,.48); font-size: .62rem; font-weight: 750; letter-spacing: .09em; text-align: right; text-transform: uppercase; }
.case-outcome { padding: 10rem 0; background: var(--case-soft); }
.case-outcome-card { display: grid; padding: clamp(2.2rem, 5vw, 5.5rem); grid-template-columns: minmax(0, 1fr) minmax(260px, .38fr); align-items: end; gap: clamp(3rem, 8vw, 9rem); border: 1px solid color-mix(in srgb, var(--case-accent) 24%, transparent); border-radius: var(--radius); background: rgba(255,255,255,.58); }
.case-outcome-card h2 { max-width: 900px; margin: 1rem 0 0; font-size: clamp(3rem, 4.6vw, 5.4rem); font-weight: 480; }
.case-outcome-card h2 em { color: var(--case-accent); }
.case-outcome-copy p { margin: 0 0 1.5rem; color: #49525f; font-size: 1.06rem; line-height: 1.75; }
.case-outcome-copy .button { color: white; background: var(--case-deep); }
.case-next { color: white; background: var(--navy); }
.case-next-link { display: grid; min-height: 330px; align-items: center; padding: 5rem 0; grid-template-columns: .32fr 1fr auto; gap: 3rem; }
.case-next-link > span:first-child { color: rgba(255,255,255,.72); font-size: .7rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.case-next-link strong { max-width: 900px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.8rem, 5vw, 5.8rem); font-weight: 400; line-height: 1; letter-spacing: -.05em; }
.case-next-arrow { display: grid; width: 68px; height: 68px; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; font-size: 1.4rem; transition: color .2s, background .2s, transform .2s; }
.case-next-link:hover .case-next-arrow { color: var(--ink); background: white; transform: translate(3px,-3px); }

/* Local landing pages: shared visual system, distinct content per search intent. */
.location-page { background: var(--paper-soft); }
.location-hero { position: relative; overflow: hidden; padding: 128px 0 7rem; background: radial-gradient(circle at 83% 12%, rgba(124,164,255,.24), transparent 25%), linear-gradient(180deg, #f8f6f1, #eef2fa); }
.location-hero::before { position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(17,25,40,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(17,25,40,.08) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(90deg, transparent 32%, black); content: ""; pointer-events: none; }
.local-breadcrumb { position: relative; z-index: 2; display: flex; align-items: center; gap: .55rem; margin-bottom: 2.5rem; color: #6c7686; font-size: .68rem; font-weight: 700; }
.local-breadcrumb a { border-bottom: 1px solid rgba(17,25,40,.26); }
.local-breadcrumb span:last-child { color: var(--ink); }
.location-hero-grid { position: relative; z-index: 1; display: grid; min-height: 690px; align-items: center; grid-template-columns: minmax(0, .96fr) minmax(500px, 1.04fr); gap: clamp(3.5rem, 7vw, 8rem); }
.location-hero-copy h1 { max-width: 1050px; margin: 1.35rem 0 1.8rem; font-size: clamp(4.1rem, 5.6vw, 6.5rem); font-weight: 500; }
.location-hero-copy h1 em { display: inline; color: var(--blue); }
.location-lede { max-width: 720px; margin: 0 0 2rem; color: #3f4a59; font-size: clamp(1.12rem, 1.45vw, 1.38rem); line-height: 1.62; }
.location-hero-actions { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.location-trust-list { display: flex; margin: 1.35rem 0 0; padding: 0; list-style: none; flex-wrap: wrap; gap: .75rem 1.15rem; color: #616b79; font-size: .72rem; }
.location-trust-list li { display: flex; align-items: center; gap: .4rem; }
.location-trust-list li::before { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); content: ""; }
.location-visual { position: relative; min-height: 670px; perspective: 1500px; }
.location-landscape { position: absolute; inset: 0 0 8% 10%; overflow: hidden; margin: 0; border: 1px solid rgba(17,25,40,.16); border-radius: 3rem; background: #dce5f5; box-shadow: 0 35px 90px rgba(8,19,33,.16); }
.location-landscape::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,19,33,.02), rgba(8,19,33,.38)); content: ""; }
.location-landscape > img { width: 100%; height: 100%; object-fit: cover; }
.location-landscape figcaption { position: absolute; z-index: 1; right: 2rem; bottom: 1.6rem; color: white; font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.location-browser-card { position: absolute; z-index: 3; bottom: 0; left: 0; overflow: hidden; width: 72%; padding: .55rem; border: 1px solid rgba(17,25,40,.16); border-radius: 1.35rem; background: white; box-shadow: 0 30px 70px rgba(8,19,33,.24); transform: rotate(-2.2deg); }
.location-browser-card .browser-bar { margin: -.55rem -.55rem .55rem; }
.location-browser-card > img { width: 100%; height: 255px; border-radius: .8rem; object-fit: cover; object-position: top; }
.location-browser-card > strong { display: block; padding: .8rem .65rem .45rem; font-size: .82rem; }
.location-person-card { position: absolute; z-index: 4; top: 7%; right: -2%; width: 40%; overflow: hidden; margin: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 1.5rem; color: white; background: var(--navy); box-shadow: 0 30px 70px rgba(8,19,33,.28); transform: rotate(2.5deg); }
.location-person-card img { width: 100%; height: 330px; object-fit: cover; object-position: center top; }
.location-person-card figcaption { display: flex; padding: 1rem; flex-direction: column; gap: .2rem; }
.location-person-card strong { font-size: .83rem; }
.location-person-card span { color: rgba(255,255,255,.58); font-size: .62rem; }
.location-review-section { padding-top: 6rem; background: var(--paper-soft); }

.location-section { padding: clamp(7rem, 10vw, 10rem) 0; background: var(--paper-soft); }
.location-section-soft { background: #e8edf8; }
.location-heading { display: grid; align-items: start; margin-bottom: clamp(4rem, 7vw, 7rem); grid-template-columns: .3fr 1fr; gap: clamp(2rem, 6vw, 7rem); }
.location-heading h2 { max-width: 980px; margin: 0; font-size: clamp(3.2rem, 4.8vw, 5.4rem); font-weight: 490; }
.location-heading h2 em { color: var(--blue); }
.location-heading > div > p { max-width: 760px; margin: 1.8rem 0 0; color: #596372; font-size: 1.05rem; line-height: 1.75; }
.location-card-grid { display: grid; border-top: 1px solid var(--line); border-left: 1px solid var(--line); grid-template-columns: repeat(4, 1fr); }
.location-card-grid-three { grid-template-columns: repeat(3, 1fr); }
.location-card { display: flex; min-height: 360px; flex-direction: column; padding: clamp(1.4rem, 2.2vw, 2.2rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.location-card > span { color: var(--blue); font-size: .68rem; font-weight: 800; }
.location-card h3 { margin: auto 0 1rem; font-size: clamp(1.8rem, 2.4vw, 2.8rem); font-weight: 520; line-height: 1.04; }
.location-card p { margin: 0; color: #606b7a; line-height: 1.65; }
.location-split { display: grid; align-items: start; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(3rem, 6vw, 6rem); }
.location-sticky-copy { position: sticky; top: 130px; }
.location-sticky-copy h2 { max-width: 690px; margin: 1.4rem 0 1.7rem; font-size: clamp(3rem, 3.8vw, 4.4rem); font-weight: 490; }
.location-sticky-copy h2 em { color: var(--blue); }
.location-sticky-copy > p:not(.section-index) { max-width: 620px; color: #5c6674; font-size: 1.05rem; line-height: 1.72; }
.location-sticky-copy .quiet-link { display: inline-flex; margin-top: 1.3rem; }
.location-audience-list, .local-signal-list { border-top: 1px solid var(--line); }
.location-audience-list article, .local-signal-list article { display: grid; min-height: 190px; align-items: center; padding: 1.7rem 0; border-bottom: 1px solid var(--line); grid-template-columns: 72px 1fr; gap: 1rem; }
.location-audience-list article > span, .local-signal-list article > span { color: var(--blue); font-size: .7rem; font-weight: 800; }
.location-audience-list h3, .local-signal-list h3 { margin: 0 0 .7rem; font-size: clamp(1.7rem, 2.4vw, 2.5rem); font-weight: 520; }
.location-audience-list p, .local-signal-list p { max-width: 680px; margin: 0; color: #606a78; line-height: 1.65; }

.location-section-navy { color: white; background: var(--navy); }
.location-section-navy .location-heading h2 em { color: var(--blue-light); }
.location-section-navy .location-heading > div > p { color: rgba(255,255,255,.58); }
.location-project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.location-project { position: relative; overflow: hidden; min-height: 520px; border: 1px solid rgba(255,255,255,.14); border-radius: 1.6rem; background: #0d1d2f; }
.location-project::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(3,9,16,.92)); content: ""; }
.location-project > img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.location-project:hover > img { transform: scale(1.035); }
.location-project > div { position: absolute; z-index: 1; right: 1.6rem; bottom: 1.5rem; left: 1.6rem; }
.location-project > div > span { color: #a9c2ff; font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.location-project h3 { margin: .6rem 0 .4rem; font-size: clamp(2rem, 3vw, 3.2rem); font-weight: 500; }
.location-project p { margin: 0; color: rgba(255,255,255,.58); font-size: .78rem; }
.location-project i { position: absolute; right: 0; bottom: 0; display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; font-style: normal; }

.local-person-section { background: #e8edf8; }
.local-person-grid { display: grid; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; grid-template-columns: minmax(350px, .7fr) 1.3fr; }
.local-person-grid > figure { min-height: 650px; margin: 0; background: #dce5f5; }
.local-person-grid > figure img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.local-person-grid > div { align-self: center; padding: clamp(2.5rem, 6vw, 7rem); }
.local-person-grid h2 { margin: 1.4rem 0 2rem; font-size: clamp(3.3rem, 5vw, 5.8rem); font-weight: 490; }
.local-person-grid h2 em { color: var(--blue); }
.local-person-grid > div > p:not(.section-index) { color: #566170; font-size: 1.06rem; line-height: 1.75; }
.location-check-list { display: grid; margin: 2rem 0; padding: 0; list-style: none; gap: .8rem; }
.location-check-list li { position: relative; padding-left: 1.7rem; color: #3e4958; }
.location-check-list li::before { position: absolute; top: .1rem; left: 0; color: var(--blue); font-weight: 850; content: "✓"; }

.local-process-grid { display: grid; margin-top: 0; padding: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); list-style: none; grid-template-columns: repeat(4, 1fr); }
.local-process-grid li { display: flex; min-height: 310px; flex-direction: column; padding: 1.7rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.local-process-grid span { color: var(--blue); font-size: .68rem; font-weight: 800; }
.local-process-grid h3 { margin: auto 0 .8rem; font-size: clamp(1.8rem, 2.4vw, 2.8rem); font-weight: 520; }
.local-process-grid p { margin: 0; color: #626c79; line-height: 1.6; }
.location-faq { background: #e8edf8; }
.local-contact-section { border-bottom: 0; }
.contact-person { display: grid; overflow: hidden; margin: 0 0 2rem; border: 1px solid rgba(255,255,255,.14); border-radius: 1.2rem; background: rgba(255,255,255,.05); grid-template-columns: 90px 1fr; }
.contact-person img { width: 90px; height: 105px; object-fit: cover; object-position: center top; }
.contact-person figcaption { display: flex; padding: 1rem; flex-direction: column; justify-content: center; gap: .25rem; }
.contact-person strong { color: white; }
.contact-person span { color: rgba(255,255,255,.54); font-size: .7rem; }

.location-seo-hero { background: radial-gradient(circle at 80% 15%, rgba(24,89,242,.23), transparent 27%), linear-gradient(180deg, #f8f6f1, #edf1f8); }
.seo-visual-backdrop { position: absolute; inset: 2% 0 8% 8%; overflow: hidden; padding: clamp(2rem, 4vw, 4rem); border-radius: 3rem; color: white; background: radial-gradient(circle at 80% 24%, rgba(124,164,255,.34), transparent 25%), linear-gradient(145deg, #102a4c, #06111f 70%); box-shadow: 0 36px 90px rgba(8,19,33,.22); }
.seo-visual-backdrop::before { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.11) 1px, transparent 1px); background-size: 38px 38px; content: ""; }
.seo-visual-backdrop > span { position: relative; color: #8eb0ff; font-size: .62rem; font-weight: 850; letter-spacing: .13em; }
.seo-visual-backdrop > strong { position: relative; display: block; margin-top: 2rem; font-size: clamp(2.5rem, 4vw, 4.4rem); font-weight: 480; line-height: .96; letter-spacing: -.05em; }
.seo-visual-backdrop em { color: var(--blue-light); }
.seo-visual-backdrop > i { position: absolute; right: -7%; bottom: 4%; width: 68%; height: 42%; border: 1px solid rgba(124,164,255,.45); border-radius: 50%; transform: rotate(-15deg); }
.seo-browser-card { right: 6%; bottom: 0; left: auto; width: 82%; transform: rotate(1.5deg); }
.seo-browser-card > img { height: 245px; object-fit: cover; object-position: top left; }
.seo-serp-card { position: absolute; z-index: 5; top: 37%; left: 0; width: 230px; padding: 1.2rem; border: 1px solid rgba(17,25,40,.12); border-radius: 1.2rem; background: rgba(255,255,255,.96); box-shadow: 0 24px 55px rgba(8,19,33,.22); transform: rotate(-3deg); }
.seo-serp-card > span { color: var(--blue); font-size: .58rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.seo-serp-card p { margin: .8rem 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; line-height: 1.05; }
.seo-serp-card p strong { color: var(--blue); font-weight: 400; }
.seo-serp-card > div { display: grid; gap: .35rem; }
.seo-serp-card > div i { display: block; height: 5px; border-radius: 999px; background: #dbe1ea; }
.seo-serp-card > div i:nth-child(2) { width: 82%; }
.seo-serp-card > div i:nth-child(3) { width: 63%; }
.seo-serp-card small { display: block; margin-top: 1rem; color: #778292; font-size: .56rem; }
.seo-principle-grid { border-top: 1px solid var(--line); }
.seo-principle { display: grid; min-height: 190px; align-items: center; padding: 1.5rem 0; border-bottom: 1px solid var(--line); grid-template-columns: .2fr 1fr; gap: 2rem; }
.seo-principle > span { color: var(--blue); font-size: .72rem; font-weight: 800; }
.seo-principle h3 { margin: 0 0 .65rem; font-size: clamp(2rem, 3vw, 3.4rem); font-weight: 500; }
.seo-principle p { max-width: 760px; margin: 0; color: #606a78; line-height: 1.65; }
.seo-proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.seo-proof-grid figure { overflow: hidden; margin: 0; border: 1px solid rgba(255,255,255,.14); border-radius: 1.5rem; background: #0d1d2f; }
.seo-proof-grid img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top left; }
.seo-proof-grid figcaption { display: flex; padding: 1.3rem 1.5rem; align-items: center; justify-content: space-between; gap: 1rem; }
.seo-proof-grid figcaption span { color: rgba(255,255,255,.5); font-size: .72rem; }

@media (max-width: 1120px) {
  :root { --shell: min(100% - 40px, 1100px); }
  .brand-meta { display: none; }
  .header-rating { padding-right: .55rem; }
  .header-rating small { display: inline-block; max-width: 6.4rem; overflow: hidden; font-size: 0; line-height: 1; text-overflow: clip; white-space: nowrap; }
  .header-rating small::after { color: #334257; content: "18 Bewertungen"; font-size: .68rem; font-weight: 700; }
  .review-proof-grid { grid-template-columns: 1fr 1fr; }
  .review-proof-grid > * { border-top: 1px solid var(--line); border-left: 0; }
  .review-proof-grid > :nth-child(-n+2) { border-top: 0; }
  .review-proof-grid > :nth-child(even) { border-left: 1px solid var(--line); }
  .hero-layout { grid-template-columns: 1fr .9fr; gap: 2rem; }
  .hero-art { height: 590px; }
  .hero-copy h1 { font-size: clamp(4rem, 7.5vw, 6rem); }
  .pain-grid, .process-list { grid-template-columns: repeat(2, 1fr); }
  .work-head, .contact-head { grid-template-columns: .3fr 1fr; }
  .work-head > p:last-child, .contact-head > p:last-child { grid-column: 2; }
  .project-case { min-height: 0; }
  .project-case-media { min-height: 0; }
  .project-case-copy { padding: 2.4rem; }
  .project-case-copy h3 { margin-top: 2.2rem; }
  .systems-head { grid-template-columns: minmax(0, 1fr) minmax(240px, .38fr); gap: 3rem; }
  .system-card-copy { padding: 1.7rem 1.8rem 2rem; }
  .case-hero h1 { font-size: clamp(4rem, 7.5vw, 6.8rem); }
  .case-hero-grid { gap: 4rem; }
  .case-story-card { min-height: 350px; }
  .services-head { grid-template-columns: .3fr 1fr; }
  .services-head > p:last-child { grid-column: 2; }
  .faq-layout { gap: 4rem; }
  .location-hero-grid { grid-template-columns: 1fr .9fr; gap: 2.5rem; }
  .location-hero-copy h1 { font-size: clamp(3.9rem, 7vw, 6.1rem); }
  .location-visual { min-height: 590px; }
  .location-browser-card > img { height: 215px; }
  .location-person-card img { height: 280px; }
  .location-card-grid { grid-template-columns: 1fr 1fr; }
  .location-card-grid-three { grid-template-columns: repeat(3, 1fr); }
  .location-card { min-height: 320px; }
  .location-project { min-height: 460px; }
  .local-person-grid { grid-template-columns: .75fr 1.25fr; }
  .local-person-grid > figure { min-height: 580px; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100% - 32px); --radius: 1.3rem; }
  .site-header, .site-header.is-scrolled { top: 9px; background: transparent; }
  .nav-wrap, .site-header.is-scrolled .nav-wrap { min-height: 64px; gap: .4rem; padding: .42rem .42rem .42rem 1rem; background: rgba(248,246,241,.91); box-shadow: 0 12px 38px rgba(8,19,33,.11); }
  .brand img { width: 164px; }
  .brand-meta { display: none; }
  .header-rating { display: flex; margin-left: auto; padding: .35rem .5rem; border-left: 0; gap: .35rem; }
  .header-rating > span { font-size: .72rem; }
  .header-rating small { width: 1.15rem; max-width: 1.15rem; }
  .header-rating small::after { content: "18"; font-size: .68rem; }
  .header-rating + .menu-toggle { margin-left: .15rem; }
  .menu-toggle { position: relative; z-index: 103; display: inline-flex; margin-left: auto; align-items: center; gap: .65rem; height: 46px; padding: 0 .4rem 0 .9rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.7); cursor: pointer; }
  .menu-toggle span { font-size: .72rem; font-weight: 750; letter-spacing: .04em; }
  .menu-toggle i { position: relative; display: block; width: 34px; height: 34px; border-radius: 50%; background: var(--navy); }
  .menu-toggle i::before, .menu-toggle i::after { position: absolute; left: 10px; width: 14px; height: 1px; background: white; content: ""; transition: top .25s, transform .25s; }
  .menu-toggle i::before { top: 14px; }
  .menu-toggle i::after { top: 19px; }
  .menu-toggle[aria-expanded="true"] i::before { top: 16px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i::after { top: 16px; transform: rotate(-45deg); }
  .site-header[data-header] .site-menu { position: fixed; z-index: 101; inset: 0; display: flex; width: 100%; height: 100vh; height: 100dvh; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 0; margin: 0; padding: 126px 24px 24px; color: white; background: var(--navy); visibility: hidden; pointer-events: none; transform: translateY(-105%); transition: transform .45s cubic-bezier(.2,.8,.2,1), visibility 0s linear .45s; }
  .site-header[data-header] .site-menu.is-open { visibility: visible; pointer-events: auto; transform: none; transition: transform .45s cubic-bezier(.2,.8,.2,1), visibility 0s; }
  .site-header[data-header] .site-menu > a:not(.nav-contact) { width: 100%; padding: 1.05rem 0; border-top: 1px solid rgba(255,255,255,.16); border-radius: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.25rem, 10vw, 4rem); font-weight: 400; letter-spacing: -.045em; }
  .site-header[data-header] .site-menu > a:not(.nav-contact):hover { color: var(--blue-light); background: transparent; }
  .site-header[data-header] .nav-contact { width: 100%; min-height: 64px; justify-content: space-between; margin: auto 0 0; padding: .55rem .55rem .55rem 1.25rem; font-size: 1rem; background: var(--blue); }
  body.menu-open { overflow: hidden; }
  body.menu-open .site-header[data-header] .nav-wrap { border-color: rgba(255,255,255,.16); background: rgba(8,19,33,.92); box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; }
  body.menu-open .site-header[data-header] .brand img { filter: brightness(0) invert(1); }
  body.menu-open .site-header[data-header] .header-rating { color: white; }
  .site-header:not([data-header]) .site-menu > a:not(.nav-cta) { display: none; }
  .site-header:not([data-header]) .header-rating { display: none; }
  .site-header:not([data-header]) .nav-cta { margin-left: auto; padding-left: .85rem; font-size: .7rem; }
  .hero { min-height: auto; padding: 120px 0 24px; }
  .hero-layout { min-height: 0; grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: clamp(3.7rem, 15vw, 6rem); }
  .hero-art { height: 620px; margin-top: 2rem; }
  .hero-studio-panel-main { top: 9%; right: 2%; bottom: 8%; left: 2%; }
  .hero-studio-panel-app { left: -1%; width: 46%; }
  .hero-studio-panel-tool { right: -1%; width: 46%; }
  .hero-scene-cursor { display: none; }
  .hero-proof { overflow-x: auto; justify-content: flex-start; gap: 1.5rem; white-space: nowrap; }
  .trust-intro { padding: 8rem 0 5rem; }
  .trust-grid, .about-layout, .faq-layout, .process-head { grid-template-columns: 1fr; gap: 2rem; }
  .pain-section { padding-bottom: 7rem; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .pain-card { min-height: 310px; }
  .about-section { padding: 8rem 0; }
  .about-copy { padding-top: 0; }
  .about-principles { margin-top: 5rem; grid-template-columns: 1fr 1fr; }
  .work-section { padding: 8rem 0; }
  .work-head, .contact-head { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 5rem; }
  .work-head > p:last-child, .contact-head > p:last-child { grid-column: 1; }
  .project-stack { gap: 1.5rem; }
  .project-case { min-height: 0; grid-template-columns: 1fr; }
  .js .project-case.reveal, .js .project-case:nth-child(even).reveal { transform: translateY(48px); }
  .js .project-case.reveal.is-visible { transform: none; }
  .project-case-media { min-height: 0; }
  .project-case-copy { min-height: 0; padding: 2.5rem; }
  .project-case-copy h3 { font-size: clamp(2.6rem, 7vw, 4rem); }
  .systems-showcase { margin-top: 7rem; }
  .systems-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .systems-grid { grid-template-columns: 1fr; }
  .system-card-copy h4 { font-size: clamp(2.5rem, 7vw, 4rem); }
  .portfolio-more { margin-top: 8rem; }
  .portfolio-more-head { align-items: flex-start; flex-direction: column; }
  .carousel-stage { height: auto; min-height: 0; }
  .carousel-card {
    position: relative;
    top: auto;
    left: auto;
    display: none;
    width: 100%;
    aspect-ratio: 1.5;
    opacity: 0;
    transform: none;
    pointer-events: none;
  }
  .carousel-card[data-position="0"] {
    display: block;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .services-section { padding: 8rem 0; }
  .services-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-head > p:last-child { grid-column: 1; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card { min-height: 360px; }
  .process-list { grid-template-columns: 1fr 1fr; }
  .process-list li { min-height: 300px; }
  .audit-section { padding: 6rem 0; }
  .audit-layout, .contact-layout { grid-template-columns: 1fr; }
  .faq-section, .contact-section { padding: 8rem 0; }
  .contact-head h2 { font-size: clamp(3.2rem, 12vw, 5.5rem); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-up { justify-self: end; }
  .case-hero { padding: 130px 0 5rem; }
  .case-hero-grid, .case-story-intro, .case-gallery-head, .case-outcome-card { grid-template-columns: 1fr; gap: 2rem; }
  .case-hero h1 { font-size: clamp(3.7rem, 13vw, 6.5rem); }
  .case-brief { margin-top: 1rem; }
  .case-facts { grid-template-columns: 1fr 1fr; }
  .case-story, .case-gallery, .case-outcome { padding: 7rem 0; }
  .case-story-grid, .case-gallery-grid { grid-template-columns: 1fr; }
  .case-story-card { min-height: 330px; }
  .case-principles { grid-template-columns: 1fr; }
  .case-principle { min-height: 230px; }
  .case-next-link { min-height: 280px; grid-template-columns: 1fr auto; }
  .case-next-link > span:first-child { grid-column: 1 / 3; }
  .location-hero { padding: 116px 0 6rem; }
  .local-breadcrumb { margin-bottom: 1.5rem; }
  .location-hero-grid { min-height: 0; grid-template-columns: 1fr; }
  .location-hero-copy h1 { font-size: clamp(3.65rem, 13vw, 6rem); }
  .location-visual { min-height: 620px; margin-top: 2rem; }
  .location-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .location-heading h2 { font-size: clamp(3.3rem, 11vw, 5.5rem); }
  .location-card-grid, .location-card-grid-three { grid-template-columns: 1fr 1fr; }
  .location-split { grid-template-columns: 1fr; gap: 3.5rem; }
  .location-sticky-copy { position: static; }
  .location-project-grid { grid-template-columns: 1fr; }
  .location-project { min-height: 540px; }
  .local-person-grid { grid-template-columns: 1fr; }
  .local-person-grid > figure { min-height: 520px; }
  .local-process-grid { grid-template-columns: 1fr 1fr; }
  .seo-proof-grid { grid-template-columns: 1fr; }
  .ws24-consent { padding: 12px; }
  .ws24-consent-panel { max-height: calc(100vh - 24px); max-height: calc(100dvh - 24px); border-radius: 22px; }
  .ws24-consent-actions-main { grid-template-columns: 1fr 1fr; }
  .ws24-consent-actions-main .ws24-consent-button-settings { grid-column: 1 / -1; order: 3; min-height: 42px; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 24px); }
  .brand img { width: 136px; }
  .header-rating { gap: .2rem; padding: .25rem; }
  .header-rating strong { font-size: .86rem; }
  .header-rating > span { font-size: .62rem; letter-spacing: .01em; }
  .header-rating small { width: 1.05rem; max-width: 1.05rem; }
  .header-rating small::after { font-size: .64rem; }
  .menu-toggle { gap: .4rem; padding-right: .3rem; padding-left: .65rem; }
  .site-header:not([data-header]) .brand img { width: 136px; }
  .site-header:not([data-header]) .nav-wrap { gap: .45rem; }
  .site-header:not([data-header]) .nav-cta { gap: .55rem; padding-left: .72rem; }
  .hero-copy h1 { margin-top: 1.1rem; font-size: 15.2vw; }
  .hero-rating-link { max-width: 100%; flex-wrap: wrap; }
  .review-proof-grid { grid-template-columns: 1fr; }
  .review-proof-grid > *, .review-proof-grid > :nth-child(even) { min-height: 190px; border-top: 1px solid var(--line); border-left: 0; }
  .review-proof-grid > :first-child { border-top: 0; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .quiet-link { width: fit-content; }
  .reassurance-list { align-items: flex-start; flex-direction: column; gap: .5rem; }
  .hero-art { height: 610px; }
  .hero-studio-panel-main { top: 10%; right: 2%; bottom: 9%; left: 2%; padding: .8rem; transform: translate3d(var(--panel-x, 0px), var(--panel-y, 0px), 0) rotateX(var(--panel-rx, 0deg)) rotateY(var(--panel-ry, 0deg)) rotate(-1deg); }
  .hero-panel-top, .hero-panel-foot, .hero-float-top { font-size: .5rem; }
  .hero-digital-stage { gap: .55rem; padding: .7rem 0 .55rem; }
  .hero-digital-heading { gap: .6rem; }
  .hero-digital-heading > span { max-width: 92px; font-size: .42rem; }
  .hero-digital-heading strong { max-width: 190px; font-size: 1.2rem; }
  .hero-panel-shot { border-width: 4px; border-radius: .7rem; }
  .hero-panel-shot .browser-bar { height: 20px; padding: 0 .4rem; }
  .hero-panel-shot .browser-bar i { width: 3px; height: 3px; }
  .hero-panel-shot img { height: 215px; }
  .hero-studio-panel-app { top: 1%; width: 48%; padding: .65rem; }
  .hero-studio-panel-tool { right: -2%; bottom: 0; width: 49%; padding: .65rem; }
  .hero-app-shot { height: 82px; margin: .5rem 0 .45rem; border-width: 3px; }
  .hero-tool-shot { height: 92px; margin: .5rem 0 .45rem; border-width: 3px; }
  .hero-studio-panel-app strong, .hero-studio-panel-tool strong { font-size: .65rem; }
  .hero-studio-panel-app small, .hero-studio-panel-tool small { font-size: .52rem; }
  .hero-scene-sticker { bottom: 20%; left: 1%; padding: .55rem .65rem; font-size: .5rem; }
  .hero-scene-index { right: 4%; bottom: 5%; font-size: .52rem; }
  .trust-grid h2 { font-size: 12.8vw; }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; white-space: normal; }
  .hero-proof span { display: none; }
  .pain-grid, .process-list { grid-template-columns: 1fr; }
  .pain-card { min-height: 270px; }
  .about-title h2 { font-size: 12vw; }
  .about-principles { grid-template-columns: 1fr; }
  .about-principles > div { min-height: 220px; }
  .work-head h2 { font-size: 18vw; }
  .project-case-media { min-height: 0; padding: 1rem; }
  .project-filmstrip { gap: .5rem; font-size: .5rem; }
  .project-filmstrip span:nth-child(2) { display: none; }
  .project-shot-link { width: 100%; margin: .75rem auto 1rem; border-radius: .9rem; }
  .fitline-case-brand { top: 2.5%; left: 3%; gap: .25rem; }
  .fitline-case-brand img { width: 38px; height: 28px; }
  .fitline-case-brand span { display: none; }
  .fitline-real-screen { border-radius: .38rem; }
  .fitline-real-screen > div { height: 10px; gap: .15rem; padding: 0 .25rem; }
  .fitline-real-screen > div i { width: 2px; height: 2px; }
  .fitline-real-screen > div span { font-size: .2rem; }
  .fitline-real-screen-start { top: 13%; left: 3%; width: 62%; }
  .fitline-real-screen-question { top: 12%; right: 3%; width: 48%; }
  .fitline-real-screen-finish { display: none; }
  .fitline-process-rail { right: 3%; bottom: 3%; left: 3%; min-height: 30px; gap: .2rem; padding: .2rem .42rem; }
  .fitline-process-rail span { gap: .2rem; font-size: .24rem; line-height: 1.1; white-space: normal; }
  .fitline-process-rail span b { width: 14px; height: 14px; flex: 0 0 auto; font-size: .22rem; }
  .fitline-process-rail > i { font-size: .34rem; }
  .project-media-fitline .project-private { top: .55rem; right: .55rem; padding: .38rem .48rem; font-size: .42rem; }
  .project-open, .project-private { top: .7rem; right: .7rem; padding: .6rem .72rem; font-size: .65rem; }
  .project-open { width: 38px; min-width: 38px; height: 38px; padding: 0; font-size: 0; }
  .project-open b { font-size: .8rem; }
  .project-media-caption { align-items: flex-start; flex-direction: column; gap: .25rem; }
  .project-media-caption strong { font-size: 1.15rem; }
  .project-media-caption small { text-align: left; }
  .project-case-copy { min-height: 0; padding: 1.6rem; }
  .project-case-copy h3 { margin: 2.2rem 0 1.2rem; font-size: 10.5vw; }
  .project-case-intro { font-size: .98rem; }
  .project-links { align-items: flex-start; flex-direction: column; gap: .9rem; }
  .systems-showcase { margin-top: 6rem; }
  .systems-head h3 { font-size: 13vw; }
  .system-card-media { margin: .55rem; border-radius: 1rem; }
  .system-card-media > span { top: .55rem; right: .55rem; padding: .45rem .58rem; font-size: .55rem; }
  .system-card-meta { align-items: flex-start; flex-direction: column; gap: .35rem; }
  .system-card-copy h4 { margin-top: 1.7rem; font-size: 10vw; }
  .project-open, .project-private { top: 1rem; right: 1rem; min-width: 0; }
  .portfolio-more-head h3 { font-size: 14vw; }
  .carousel-stage { height: auto; min-height: 0; }
  .carousel-card { width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 340px; }
  .service-card h3 { font-size: 11vw; }
  .process-list li { min-height: 260px; }
  .audit-copy, .audit-panel { padding: 2rem; }
  .audit-copy h2 { font-size: 11.5vw; }
  .contact-assurance, .form-card { padding: 1.5rem; }
  .faq-list summary i { width: 22px; height: 22px; justify-self: end; line-height: 1; }
  .form-row-split { grid-template-columns: 1fr; }
  .form-heading { align-items: flex-start; flex-direction: column; gap: .4rem; }
  .form-heading strong { max-width: none; text-align: left; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-up { justify-self: start; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: .8rem; }
  .footer-bottom > span:last-child { flex-wrap: wrap; gap: .7rem 1.1rem; }
  .ws24-consent { padding: 7px; }
  .ws24-consent-panel { max-height: calc(100vh - 14px); max-height: calc(100dvh - 14px); border-radius: 17px; }
  .ws24-consent-close { top: 11px; right: 11px; width: 34px; height: 34px; }
  .ws24-consent-brand { min-height: 56px; padding: 11px 16px 0; }
  .ws24-consent-brand > img { width: 74px; }
  .ws24-consent-view { padding: 8px 16px 18px; }
  .ws24-consent-view h2 { font-size: clamp(1.95rem, 9.5vw, 2.65rem); }
  .ws24-consent-view[data-consent-view="settings"] h2 { font-size: clamp(1.9rem, 9vw, 2.45rem); }
  .ws24-consent-checkline { align-items: flex-start; }
  .ws24-consent-actions, .ws24-consent-actions-main { grid-template-columns: 1fr; }
  .ws24-consent-actions-main .ws24-consent-button-settings { grid-column: auto; }
  .ws24-consent-button { min-height: 46px; }
  .ws24-consent-categories { grid-template-columns: 1fr; }
  .ws24-consent-category { min-height: 76px; padding: .75rem .8rem; }
  .ws24-consent-inventory-wrap > div, .ws24-consent-inventory-wrap li { align-items: flex-start; flex-direction: column; gap: .25rem; }
  .ws24-consent-inventory-wrap > div span { text-align: left; }
  .ws24-consent-legal { flex-wrap: wrap; gap: .45rem .9rem; padding: .7rem 16px .8rem; }
  .ws24-consent-legal span { width: 100%; margin-left: 0; }
  .legal-page { padding-top: 120px; }
  .case-hero h1 { font-size: 15vw; }
  .case-hero-actions { align-items: stretch; flex-direction: column; }
  .case-back-link { width: fit-content; }
  .case-brief > div { grid-template-columns: 82px 1fr; }
  .case-hero-visual { margin-top: 3.5rem; padding: .45rem; border-radius: 1.2rem; }
  .case-window { border-radius: .8rem; }
  .case-window-bar { height: 30px; padding: 0 .65rem; }
  .case-window-bar span { font-size: .46rem; }
  .case-facts { grid-template-columns: 1fr; }
  .case-fact { min-height: 115px; }
  .case-fact span { margin-bottom: 1.2rem; }
  .case-story-intro h2, .case-gallery-head h2, .case-outcome-card h2 { font-size: 12vw; }
  .case-story-grid { margin-top: 4rem; }
  .case-story-card { min-height: 290px; padding: 1.7rem; }
  .case-story-card h3 { margin-top: 4rem; font-size: 9.5vw; }
  .case-gallery-card figcaption { align-items: flex-start; flex-direction: column; gap: .35rem; }
  .case-gallery-card figcaption span { text-align: left; }
  .case-next-link { min-height: 250px; padding: 3.5rem 0; }
  .case-next-link strong { font-size: 10.5vw; }
  .case-next-arrow { width: 52px; height: 52px; }
  .location-hero-actions { align-items: stretch; flex-direction: column; }
  .location-hero-copy h1 { font-size: 13.8vw; }
  .location-lede { font-size: 1rem; }
  .location-visual { min-height: 480px; }
  .location-landscape { inset: 0 0 10% 4%; border-radius: 1.6rem; }
  .location-landscape figcaption { right: 1rem; bottom: 1rem; }
  .location-browser-card { width: 82%; border-radius: 1rem; }
  .location-browser-card > img { height: 155px; }
  .location-browser-card > strong { font-size: .65rem; }
  .location-person-card { top: 5%; right: -1%; width: 42%; border-radius: 1rem; }
  .location-person-card img { height: 190px; }
  .location-person-card figcaption { padding: .7rem; }
  .location-person-card strong { font-size: .66rem; }
  .location-person-card span { font-size: .52rem; }
  .location-review-section { padding-top: 4rem; }
  .location-card-grid, .location-card-grid-three { grid-template-columns: 1fr; }
  .location-card { min-height: 280px; }
  .location-sticky-copy h2 { font-size: 12vw; }
  .location-audience-list article, .local-signal-list article { min-height: 170px; grid-template-columns: 48px 1fr; }
  .location-project { min-height: 390px; }
  .location-project i { width: 40px; height: 40px; }
  .local-person-grid > figure { min-height: 400px; }
  .local-person-grid > div { padding: 2rem 1.5rem; }
  .local-person-grid h2 { font-size: 11.8vw; }
  .local-process-grid { grid-template-columns: 1fr; }
  .local-process-grid li { min-height: 250px; }
  .seo-visual-backdrop { inset: 0 0 9% 4%; border-radius: 1.6rem; padding: 1.5rem; }
  .seo-browser-card { right: 1%; width: 90%; }
  .seo-browser-card > img { height: 145px; }
  .seo-serp-card { top: 35%; width: 175px; padding: .9rem; }
  .seo-serp-card p { font-size: 1rem; }
  .seo-principle { grid-template-columns: 46px 1fr; }
  .seo-proof-grid figcaption { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal, .js .project-case.reveal { opacity: 1; filter: none; transform: none; }
}

/* Shared motion and media treatment for city and service pages. */
.landing-hero-scene { min-height: 690px; isolation: isolate; transform-style: preserve-3d; touch-action: pan-y; }
.landing-hero-scene [data-depth] { will-change: transform; transform: translate3d(var(--panel-x, 0), var(--panel-y, 0), 0) rotateX(var(--panel-rx, 0)) rotateY(var(--panel-ry, 0)); transition: transform .18s ease-out; }
.landing-scene-backdrop { position: absolute; z-index: 0; inset: 4% 1% 4% 7%; overflow: hidden; border: 1px solid rgba(17,25,40,.14); border-radius: 3rem; background: radial-gradient(circle at 75% 18%, rgba(124,164,255,.45), transparent 28%), linear-gradient(145deg, #e9edf5, #cbd7e8); box-shadow: 0 38px 90px rgba(8,19,33,.16); }
.landing-scene-backdrop::before { position: absolute; inset: 0; opacity: .28; background-image: linear-gradient(rgba(17,25,40,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(17,25,40,.14) 1px, transparent 1px); background-size: 42px 42px; content: ""; mask-image: linear-gradient(120deg, black, transparent 78%); }
.landing-scene-orbit { position: absolute; z-index: 1; display: block; border: 1px solid rgba(24,89,242,.38); border-radius: 50%; pointer-events: none; }
.landing-scene-orbit-one { top: 9%; right: -4%; width: 86%; height: 48%; transform: rotate(-21deg); }
.landing-scene-orbit-two { right: 18%; bottom: 3%; width: 58%; height: 36%; transform: rotate(18deg); }
.landing-scene-photo { position: absolute; z-index: 1; top: 8%; right: 0; width: 70%; height: 55%; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.6); border-radius: 2.25rem; background: #c8d3df; box-shadow: 0 24px 65px rgba(8,19,33,.2); }
.landing-scene-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.landing-scene-photo figcaption { position: absolute; z-index: 2; right: 1.4rem; bottom: 1.2rem; padding: .55rem .75rem; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; color: white; background: rgba(8,19,33,.58); font-size: .58rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; backdrop-filter: blur(12px); }
.photo-treatment { position: relative; overflow: hidden; }
.photo-treatment img { filter: saturate(.78) contrast(1.06) sepia(.06); }
.photo-treatment::after { position: absolute; z-index: 1; inset: 0; background: linear-gradient(145deg, rgba(17,40,71,.08), rgba(24,89,242,.05) 48%, rgba(242,232,215,.12)); content: ""; pointer-events: none; }
.landing-scene-screen { position: absolute; z-index: 4; left: 0; bottom: 2%; width: 78%; overflow: hidden; padding: .55rem; border: 1px solid rgba(17,25,40,.16); border-radius: 1.45rem; background: rgba(255,255,255,.98); box-shadow: 0 34px 78px rgba(8,19,33,.26); }
.landing-scene-screen .browser-bar { margin: -.55rem -.55rem .55rem; }
.landing-scene-screen > figure { aspect-ratio: 1672 / 941; margin: 0; overflow: hidden; border: 1px solid #e1e6ee; border-radius: .9rem; background: #eef2f6; }
.landing-scene-screen > figure img { display: block; width: 100%; height: 100%; object-fit: contain; }
.landing-scene-screen > footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem .65rem .35rem; }
.landing-scene-screen > footer strong { color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 1.05rem; font-weight: 400; }
.landing-scene-screen > footer span { color: #667181; font-size: .58rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.landing-scene-badge { position: absolute; z-index: 6; top: 13%; left: 1%; display: flex; align-items: center; gap: .65rem; padding: .85rem 1rem; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; color: white; background: rgba(8,19,33,.88); box-shadow: 0 18px 42px rgba(8,19,33,.22); font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(12px); }
.landing-scene-badge b { color: var(--blue-light); font-size: 1rem; }
.landing-scene-index { position: absolute; z-index: 6; right: 3%; bottom: 1%; display: flex; align-items: center; gap: .8rem; color: #4f5c6d; font-size: .58rem; font-weight: 800; letter-spacing: .1em; }
.landing-scene-index span { color: var(--blue); }

.location-project-showcase { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.15rem; }
.location-work-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; padding: 1.15rem; border: 1px solid rgba(255,255,255,.16); border-radius: 1.6rem; box-shadow: 0 24px 60px rgba(0,0,0,.13); }
.location-work-card .project-filmstrip { min-height: 2.2rem; }
.location-work-card .project-filmstrip span:nth-child(2) { display: none; }
.location-work-card .project-shot-link { width: 100%; margin: 1rem 0 1.15rem; border-radius: 1rem; }
.location-work-card .project-open { top: .7rem; right: .7rem; min-width: 118px; padding: .6rem .75rem; font-size: .64rem; }
.location-work-card .project-media-caption { margin-top: auto; }
.location-work-card .project-media-caption strong { font-size: clamp(1.15rem, 1.65vw, 1.55rem); }
.person-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.linkedin-link { display: inline-flex; min-height: 52px; align-items: center; gap: .65rem; padding: .7rem 1rem; border: 1px solid rgba(17,25,40,.16); border-radius: 999px; color: #344153; background: white; font-size: .72rem; font-weight: 750; transition: border-color .2s, color .2s, transform .2s; }
.linkedin-link:hover { border-color: #0a66c2; color: #0a66c2; transform: translateY(-2px); }
.linkedin-link > span { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 7px; color: white; background: #0a66c2; font-family: Arial, sans-serif; font-size: .83rem; font-weight: 800; }

.seo-landing-scene .landing-scene-backdrop { background: radial-gradient(circle at 82% 16%, rgba(78,130,255,.4), transparent 27%), linear-gradient(145deg, #102a4c, #06111f 72%); box-shadow: 0 38px 90px rgba(8,19,33,.24); }
.seo-landing-scene .landing-scene-orbit { border-color: rgba(124,164,255,.45); }
.seo-scene-photo { z-index: 1; top: 5%; right: 2%; width: 88%; height: 88%; opacity: .2; }
.seo-scene-photo::after { background: linear-gradient(145deg, rgba(6,17,31,.42), rgba(24,89,242,.2)); }
.seo-tab-card { position: absolute; z-index: 4; overflow: hidden; margin: 0; border: 1px solid rgba(255,255,255,.34); border-radius: 1rem; background: white; box-shadow: 0 24px 58px rgba(0,0,0,.3); }
.seo-tab-card .browser-bar { min-height: 30px; padding: 0 .65rem; }
.seo-tab-card > img { display: block; width: 100%; height: auto; aspect-ratio: 1.835 / 1; object-fit: contain; object-position: top left; background: #f4f6f9; }
.seo-tab-card > footer { display: flex; align-items: center; justify-content: space-between; gap: .7rem; padding: .65rem .75rem; }
.seo-tab-card > footer strong { color: var(--ink); font-size: .7rem; }
.seo-tab-card > footer span { color: #6c7686; font-size: .5rem; }
.seo-tab-card-main { top: 14%; left: 3%; width: 73%; }
.seo-tab-card-audit { right: 0; bottom: 5%; width: 47%; }
.seo-tab-card-keywords { bottom: 1%; left: 0; width: 46%; }
.seo-scene-badge { top: 2%; left: 1%; }

.toolbox-tab-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.toolbox-tab-frame { overflow: hidden; margin: 0; border: 1px solid rgba(255,255,255,.16); border-radius: 1.35rem; background: white; box-shadow: 0 24px 56px rgba(0,0,0,.18); }
.toolbox-tab-frame .browser-bar { min-height: 38px; color: #596576; background: #edf1f6; }
.toolbox-tab-frame > img { display: block; width: 100%; height: auto; aspect-ratio: 1.835 / 1; object-fit: contain; object-position: top left; background: #f4f6f9; }
.toolbox-tab-frame figcaption { display: flex; min-height: 72px; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.2rem; color: white; background: #0d1d2f; }
.toolbox-tab-frame figcaption strong { font-size: .9rem; }
.toolbox-tab-frame figcaption span { color: rgba(255,255,255,.58); font-size: .66rem; text-align: right; }

@media (max-width: 1120px) {
  .landing-hero-scene { min-height: 600px; }
  .landing-scene-screen { width: 82%; }
  .location-project-showcase { grid-template-columns: 1fr 1fr; }
  .location-work-card:last-child { grid-column: 1 / -1; width: calc(50% - .575rem); justify-self: center; }
  .seo-tab-card-main { width: 78%; }
}

@media (max-width: 820px) {
  .landing-hero-scene { min-height: 620px; }
  .landing-scene-photo { top: 4%; right: 0; width: 88%; height: 52%; border-radius: 1.6rem; }
  .landing-scene-screen { bottom: 3%; width: 92%; border-radius: 1.1rem; }
  .landing-scene-badge { top: 8%; }
  .location-project-showcase { grid-template-columns: 1fr; }
  .location-work-card:last-child { grid-column: auto; width: auto; }
  .local-person-grid > figure.photo-treatment { min-height: 520px; }
  .toolbox-tab-grid { grid-template-columns: 1fr; }
  .seo-landing-scene { min-height: 680px; }
  .seo-tab-card-main { top: 10%; left: 2%; width: 92%; }
  .seo-tab-card-audit { right: 1%; bottom: 3%; width: 49%; }
  .seo-tab-card-keywords { bottom: 0; width: 49%; }
  .seo-scene-photo { width: 96%; height: 95%; }
}

@media (max-width: 520px) {
  .landing-hero-scene { min-height: 510px; }
  .landing-scene-photo { width: 94%; height: 48%; }
  .landing-scene-screen { width: 96%; padding: .4rem; }
  .landing-scene-screen .browser-bar { margin: -.4rem -.4rem .4rem; }
  .landing-scene-screen > footer { padding: .65rem .4rem .2rem; }
  .landing-scene-screen > footer span { display: none; }
  .landing-scene-badge { padding: .65rem .78rem; font-size: .52rem; }
  .landing-scene-index { display: none; }
  .location-work-card { padding: .85rem; }
  .location-work-card .project-filmstrip span:last-child { overflow: hidden; max-width: 52%; text-overflow: ellipsis; white-space: nowrap; }
  .person-actions { align-items: stretch; flex-direction: column; }
  .linkedin-link { justify-content: center; }
  .seo-landing-scene { min-height: 570px; }
  .seo-tab-card-main { top: 12%; width: 96%; }
  .seo-tab-card-audit, .seo-tab-card-keywords { width: 50%; }
  .seo-tab-card > footer span { display: none; }
  .seo-scene-badge { top: 1%; }
  .toolbox-tab-frame figcaption { align-items: flex-start; flex-direction: column; gap: .3rem; }
  .toolbox-tab-frame figcaption span { text-align: left; }
}

/* Quiet landing headers: one clear visual idea, less decorative noise. */
.landing-hero-scene { overflow: hidden; }
.location-hero .location-trust-list { display: none; }
.landing-hero-scene .landing-scene-orbit-two,
.landing-hero-scene .landing-scene-badge,
.landing-hero-scene .landing-scene-index { display: none; }
.landing-hero-scene .landing-scene-backdrop::before { opacity: .11; }
.landing-hero-scene .landing-scene-orbit { opacity: .2; }
.location-hero .landing-scene-photo { top: 6%; right: 0; width: 88%; height: 88%; opacity: .16; }
.location-hero .landing-scene-photo figcaption { display: none; }
.location-hero .landing-scene-screen { bottom: 7%; left: 8%; width: 82%; }
.seo-landing-scene .seo-scene-photo { opacity: .08; }
.seo-landing-scene .seo-scene-badge,
.seo-landing-scene .seo-tab-card-audit,
.seo-landing-scene .seo-tab-card-keywords { display: none; }
.seo-landing-scene .seo-tab-card-main { top: 14%; left: 10%; width: 80%; }
.local-person-grid { grid-template-columns: minmax(260px, .48fr) minmax(0, 1.52fr); }
.local-person-grid > figure,
.local-person-grid > figure.photo-treatment { min-height: 390px; max-height: 420px; }
.local-person-grid > div { padding: clamp(1.8rem, 3.2vw, 3.6rem); }
.local-person-grid > div h2 { margin-bottom: 1rem; font-size: clamp(2.35rem, 3.4vw, 3.8rem); line-height: 1.02; }
.local-person-grid > div > p:not(.section-index) { margin-bottom: .7rem; font-size: 1rem; line-height: 1.55; }
.local-person-grid .location-check-list { margin: 1.2rem 0; gap: .55rem; }

@media (max-width: 1120px) {
  .location-hero .landing-scene-photo { width: 90%; }
  .location-hero .landing-scene-screen { left: 5%; width: 88%; }
  .seo-landing-scene .seo-tab-card-main { left: 7%; width: 86%; }
}

@media (max-width: 820px) {
  .location-heading > * { min-width: 0; }
  .location-heading h2,
  .location-heading > div > p { overflow-wrap: anywhere; }
  .location-hero .landing-scene-photo { top: 6%; right: 2%; width: 92%; height: 48%; }
  .location-hero .landing-scene-screen { bottom: 3%; left: 2%; width: 94%; }
  .seo-landing-scene .seo-tab-card-main { top: 10%; left: 3%; width: 94%; }
  .local-person-grid > figure,
  .local-person-grid > figure.photo-treatment { min-height: 320px; max-height: 360px; }
  .local-person-grid > div { padding: 2.5rem 1.4rem 3rem; }
}

@media (max-width: 520px) {
  .location-hero .landing-scene-photo { width: 94%; height: 48%; }
  .location-hero .landing-scene-screen { width: 96%; }
  .seo-landing-scene .seo-tab-card-main { left: 2%; width: 96%; }
  .local-person-grid > figure,
  .local-person-grid > figure.photo-treatment { min-height: 280px; max-height: 310px; }
}

/* Static location-page hero: one regional image, one message, no floating UI. */
.location-page .location-hero-static {
  position: relative;
  min-height: clamp(720px, 88svh, 860px);
  isolation: isolate;
  overflow: hidden;
  padding: 128px 0 56px;
  color: white;
  background: #071524;
}
.location-page .location-hero-static::before { display: none; }
.location-hero-background {
  position: absolute;
  z-index: -2;
  inset: 0;
  margin: 0;
  background: #071524;
}
.location-hero-background::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,16,29,.97) 0%, rgba(5,16,29,.92) 36%, rgba(5,16,29,.68) 61%, rgba(5,16,29,.28) 100%), linear-gradient(180deg, rgba(5,16,29,.1), rgba(5,16,29,.42));
  content: "";
}
.location-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(.72) contrast(1.06);
}
.location-hero-static .local-breadcrumb {
  z-index: 2;
  margin-bottom: 0;
  color: rgba(255,255,255,.62);
}
.location-hero-static .local-breadcrumb a { border-color: rgba(255,255,255,.38); }
.location-hero-static .local-breadcrumb span:last-child { color: rgba(255,255,255,.88); }
.location-hero-static-grid {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 600px;
  align-items: center;
  padding: 2.75rem 0 1rem;
}
.location-hero-static .location-hero-copy { max-width: 1050px; }
.location-hero-static .kicker { color: rgba(255,255,255,.7); }
.location-hero-static .kicker-dot {
  background: #8fb0ff;
  box-shadow: 0 0 0 5px rgba(143,176,255,.14);
}
.location-hero-static .location-hero-copy h1 {
  max-width: 1050px;
  margin: 1.35rem 0 1.75rem;
  color: white;
  font-size: clamp(3.45rem, 4.8vw, 5.2rem);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.055em;
  text-wrap: pretty;
}
.location-hero-static .location-hero-copy h1 em { color: #91b2ff; }
.location-hero-static .location-lede {
  max-width: 660px;
  margin-bottom: 2.1rem;
  color: rgba(255,255,255,.76);
}
.location-hero-static .button-dark {
  color: #071524;
  background: white;
}
.location-hero-static .button:hover,
.location-hero-static .hero-rating-link:hover { transform: none; }
.location-hero-static .button-dark:hover { background: #e7edfb; }
.location-hero-static .quiet-link {
  border-color: rgba(255,255,255,.52);
  color: white;
}
.location-hero-static .hero-rating-link {
  border-color: rgba(255,255,255,.24);
  color: rgba(255,255,255,.72);
  background: rgba(5,16,29,.42);
  box-shadow: none;
}
.location-hero-static .hero-rating-link:hover {
  border-color: rgba(255,255,255,.46);
  color: white;
  background: rgba(5,16,29,.58);
}
.location-hero-static .hero-rating-link strong { color: white; }
.location-hero-static .hero-rating-link i { color: #91b2ff; }

/* Personal section: compact card with a full-height portrait. */
.local-person-section .local-person-grid {
  width: min(var(--shell), 1240px);
  max-width: 1240px;
  align-items: stretch;
  grid-template-columns: minmax(380px, .72fr) minmax(0, 1.28fr);
}
.local-person-section .local-person-grid > figure,
.local-person-section .local-person-grid > figure.photo-treatment {
  min-height: 560px;
  max-height: none;
  align-self: stretch;
}
.local-person-section .local-person-grid > figure img {
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
}
.local-person-section .local-person-grid > div {
  align-self: center;
  padding: clamp(2.4rem, 4vw, 4.4rem);
}
.local-person-section .local-person-grid > div h2 {
  max-width: 760px;
  margin: 1rem 0 1.25rem;
  font-size: clamp(2.7rem, 3.6vw, 4rem);
  line-height: 1;
  text-wrap: balance;
}
.local-person-section .local-person-grid > div > p:not(.section-index) {
  max-width: 760px;
  margin: 0 0 .75rem;
  font-size: 1rem;
  line-height: 1.58;
}
.local-person-section .local-person-grid .location-check-list { margin: 1.25rem 0; }

@media (max-width: 820px) {
  .location-page .location-hero-static {
    min-height: 760px;
    padding: 112px 0 38px;
  }
  .location-hero-background::after {
    background: linear-gradient(90deg, rgba(5,16,29,.96), rgba(5,16,29,.72)), linear-gradient(180deg, rgba(5,16,29,.18), rgba(5,16,29,.62));
  }
  .location-hero-background img { object-position: 62% center; }
  .location-hero-static-grid {
    min-height: 610px;
    align-items: center;
    padding: 2rem 0 .5rem;
  }
  .location-hero-static .location-hero-copy h1 {
    max-width: 700px;
    font-size: clamp(3.15rem, 11.5vw, 5rem);
  }
  .local-person-section .local-person-grid { grid-template-columns: 1fr; }
  .local-person-section .local-person-grid > figure,
  .local-person-section .local-person-grid > figure.photo-treatment {
    min-height: 440px;
    max-height: none;
  }
  .local-person-section .local-person-grid > figure img { object-position: center 12%; }
  .local-person-section .local-person-grid > div { padding: 2.5rem 2rem 3rem; }
}

@media (max-width: 560px) {
  .location-page .location-hero-static { min-height: 740px; }
  .location-hero-static .local-breadcrumb { font-size: .62rem; }
  .location-hero-static .location-hero-copy h1 {
    margin-top: 1.15rem;
    font-size: clamp(2.85rem, 13vw, 4rem);
  }
  .location-hero-static .location-lede { font-size: 1.02rem; line-height: 1.55; }
  .location-hero-static .location-hero-actions { align-items: stretch; flex-direction: column; gap: .8rem; }
  .local-person-section .local-person-grid > figure,
  .local-person-section .local-person-grid > figure.photo-treatment { min-height: 360px; }
  .local-person-section .local-person-grid > div { padding: 2.2rem 1.35rem 2.6rem; }
  .local-person-section .local-person-grid > div h2 { font-size: clamp(2.55rem, 11.5vw, 3.35rem); }
}

/* Local SEO network, regional hubs and transparent image credits. */
.location-network { background: #f8f6f1; }
.location-network-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); }
.location-network-grid > div { padding-top: 1.5rem; border-top: 1px solid var(--line); }
.location-network-grid h3 { margin: 0 0 1.5rem; font-size: clamp(1.7rem, 2.4vw, 2.5rem); font-weight: 520; }
.location-link-list { display: flex; flex-wrap: wrap; gap: .65rem; }
.location-link-list a { display: inline-flex; min-height: 44px; align-items: center; padding: .65rem 1rem; border: 1px solid #ccd3df; border-radius: 999px; color: #344052; background: white; font-size: .76rem; font-weight: 720; transition: color .2s, border-color .2s, background .2s; }
.location-link-list a:hover { border-color: var(--blue); color: white; background: var(--blue); }
.region-directory { background: #e8edf8; }
.region-city-grid { display: grid; border-top: 1px solid var(--line); border-left: 1px solid var(--line); grid-template-columns: repeat(3, 1fr); }
.region-city-link { position: relative; display: grid; min-height: 170px; align-content: end; padding: 1.5rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.3); transition: color .2s, background .2s; }
.region-city-link span { max-width: calc(100% - 45px); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.55rem, 2.2vw, 2.35rem); line-height: 1.05; }
.region-city-link small { margin-top: .5rem; color: #697485; font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.region-city-link i { position: absolute; top: 1.3rem; right: 1.3rem; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-style: normal; }
.region-city-link:hover { color: white; background: var(--navy); }
.region-city-link:hover small { color: rgba(255,255,255,.6); }
.region-city-link:hover i { border-color: rgba(255,255,255,.28); }
.toolbox-tab-grid-compact { width: min(var(--shell), 1320px); }
.image-credits-page .legal-wrap { max-width: 1120px; }

.not-found-main { min-height: min(820px, calc(100svh - 88px)); padding: 150px 0 7rem; background: var(--paper-soft); }
.not-found-layout { display: grid; min-height: 610px; align-items: center; grid-template-columns: minmax(0, 1fr) minmax(430px, .86fr); gap: clamp(3rem, 8vw, 9rem); }
.not-found-copy { position: relative; z-index: 1; }
.not-found-copy h1 { max-width: 760px; margin: 1.25rem 0 1.7rem; font-size: clamp(4.4rem, 7.8vw, 8rem); font-weight: 500; line-height: .92; }
.not-found-copy h1 em { display: block; color: var(--blue); }
.not-found-lede { max-width: 625px; margin: 0; color: var(--muted); font-size: clamp(1.1rem, 1.55vw, 1.38rem); line-height: 1.6; }
.not-found-actions { display: flex; align-items: center; gap: 1.5rem; margin-top: 2.25rem; }
.not-found-actions .button { color: white; text-decoration: none; }
.not-found-actions .quiet-link { display: inline-flex; align-items: center; gap: .55rem; }
.not-found-routes { display: grid; max-width: 700px; margin-top: clamp(4rem, 7vw, 6rem); border-top: 1px solid var(--line); grid-template-columns: repeat(3, 1fr); }
.not-found-routes a { position: relative; display: flex; min-height: 132px; flex-direction: column; padding: 1.1rem 1.1rem 1rem 0; border-bottom: 1px solid var(--line); color: var(--ink); transition: color .2s, transform .2s; }
.not-found-routes a + a { padding-left: 1.1rem; border-left: 1px solid var(--line); }
.not-found-routes a:hover { color: var(--blue); transform: translateY(-3px); }
.not-found-routes span { color: var(--muted); font-size: .68rem; font-weight: 750; letter-spacing: .1em; }
.not-found-routes strong { margin-top: auto; font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; font-weight: 500; }
.not-found-routes small { margin-top: .35rem; color: var(--muted); font-size: .68rem; line-height: 1.35; }
.not-found-routes b { position: absolute; top: 1rem; right: 1rem; font-size: .9rem; font-weight: 500; }
.not-found-visual { position: relative; min-height: 580px; overflow: hidden; padding: 1.6rem; border: 1px solid rgba(255,255,255,.12); border-radius: 2rem; color: white; background: radial-gradient(circle at 82% 18%, rgba(100,143,255,.42), transparent 28%), linear-gradient(145deg, #112c50 0%, #0a1930 55%, #050d18 100%); box-shadow: 0 28px 70px rgba(8,19,33,.2); isolation: isolate; }
.not-found-visual::before { position: absolute; z-index: -1; inset: 0; opacity: .2; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 52px 52px; content: ""; mask-image: linear-gradient(135deg, black 0%, transparent 72%); }
.not-found-visual::after { position: absolute; z-index: -1; right: -16%; bottom: -25%; width: 72%; aspect-ratio: 1; border: 1px solid rgba(126,166,255,.22); border-radius: 50%; box-shadow: 0 0 0 38px rgba(126,166,255,.05), 0 0 0 78px rgba(126,166,255,.035); content: ""; }
.not-found-visual-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: rgba(255,255,255,.58); font-size: .62rem; font-weight: 750; letter-spacing: .13em; }
.not-found-number { position: absolute; top: 4.1rem; right: 1rem; color: #99b8ff; font-family: Georgia, "Times New Roman", serif; font-size: clamp(9rem, 16vw, 15rem); font-weight: 500; letter-spacing: -.1em; line-height: .72; opacity: .92; }
.not-found-route-line { position: absolute; top: 39%; right: 17%; left: 9%; display: flex; align-items: center; gap: .65rem; }
.not-found-route-line::before { position: absolute; right: 0; left: 0; height: 1px; background: linear-gradient(90deg, rgba(126,166,255,0), rgba(126,166,255,.7), rgba(126,166,255,.1)); content: ""; }
.not-found-route-line i { position: relative; z-index: 1; display: block; width: 9px; height: 9px; border: 2px solid #a9c2ff; border-radius: 50%; background: #0c1c34; box-shadow: 0 0 0 5px rgba(126,166,255,.08); }
.not-found-route-line i:nth-child(2) { margin-left: 33%; border-color: #6d98ff; background: var(--blue); }
.not-found-route-line i:nth-child(3) { margin-left: auto; border-color: #b4c9ff; }
.not-found-window { position: absolute; right: 9%; bottom: 10%; left: 9%; overflow: hidden; border: 1px solid rgba(17,25,40,.14); border-radius: 1.25rem; color: var(--ink); background: rgba(248,246,241,.98); box-shadow: 0 24px 55px rgba(0,0,0,.22); transform: rotate(-3deg); transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s; }
.not-found-visual:hover .not-found-window { box-shadow: 0 30px 62px rgba(0,0,0,.28); transform: rotate(-1deg) translateY(-5px); }
.not-found-window-bar { display: flex; height: 42px; align-items: center; justify-content: space-between; padding: 0 1rem; border-bottom: 1px solid #dbe1ea; background: #eef2f8; }
.not-found-window-bar > span { display: flex; gap: .32rem; }
.not-found-window-bar i { display: block; width: 7px; height: 7px; border-radius: 50%; background: #a8b4c7; }
.not-found-window-bar i:first-child { background: #e0526b; }
.not-found-window-bar small { color: #63738a; font-size: .58rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.not-found-window-body { min-height: 205px; padding: 2rem; background: linear-gradient(145deg, #fff, #f3f6fb); }
.not-found-window-body p { margin: 0 0 1rem; color: var(--blue); font-size: .65rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.not-found-window-body strong { display: block; max-width: 360px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 500; letter-spacing: -.04em; line-height: .98; }
.not-found-chips { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.6rem; }
.not-found-chips span { padding: .45rem .65rem; border: 1px solid #d3dcea; border-radius: 999px; color: #52627a; background: #edf2f9; font-size: .62rem; font-weight: 750; }
.not-found-float { position: absolute; padding: .55rem .7rem; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: rgba(255,255,255,.75); background: rgba(255,255,255,.07); font-size: .58rem; font-weight: 750; letter-spacing: .1em; }
.not-found-float-top { top: 47%; right: 8%; }
.not-found-float-bottom { bottom: 4%; left: 9%; color: #a9c2ff; }

@media (max-width: 980px) {
  .not-found-main { padding-bottom: 5rem; }
  .not-found-layout { grid-template-columns: 1fr; gap: 4rem; }
  .not-found-copy { max-width: 760px; }
  .not-found-visual { min-height: 540px; }
}

@media (max-width: 680px) {
  .not-found-main { min-height: 0; padding-top: 120px; }
  .not-found-layout { min-height: 0; gap: 3rem; }
  .not-found-copy h1 { font-size: clamp(3.7rem, 15vw, 5.8rem); }
  .not-found-actions { align-items: stretch; flex-direction: column; gap: .8rem; }
  .not-found-actions .button { justify-content: space-between; width: 100%; }
  .not-found-actions .quiet-link { width: fit-content; }
  .not-found-routes { grid-template-columns: 1fr; }
  .not-found-routes a, .not-found-routes a + a { min-height: 105px; padding: 1rem 0; border-left: 0; }
  .not-found-routes a + a { border-top: 0; }
  .not-found-routes strong { margin-top: 1.1rem; }
  .not-found-routes b { top: 1rem; right: 0; }
  .not-found-visual { min-height: 420px; padding: 1rem; border-radius: 1.3rem; }
  .not-found-visual-top { font-size: .48rem; }
  .not-found-visual-top span:last-child { display: none; }
  .not-found-number { top: 3.8rem; right: .75rem; font-size: clamp(7rem, 30vw, 11rem); }
  .not-found-window { right: 6%; bottom: 9%; left: 6%; }
  .not-found-window-bar { height: 32px; padding: 0 .7rem; }
  .not-found-window-bar small { font-size: .45rem; }
  .not-found-window-body { min-height: 166px; padding: 1.25rem; }
  .not-found-window-body strong { font-size: clamp(1.55rem, 7.2vw, 2.2rem); }
  .not-found-chips { margin-top: 1.1rem; }
  .not-found-float-top { top: 45%; right: 6%; font-size: .45rem; }
  .not-found-float-bottom { left: 6%; font-size: .45rem; }
}
.image-credit-list { display: grid; margin-top: 3.5rem; grid-template-columns: 1fr 1fr; gap: 1rem; }
.image-credit-list article { padding: clamp(1.3rem, 2.5vw, 2rem); border: 1px solid var(--line); border-radius: 1.1rem; background: white; }
.image-credit-list h2 { margin-top: 0; font-size: clamp(1.25rem, 1.8vw, 1.65rem); line-height: 1.18; }
.image-credit-list p { margin-bottom: 0; font-size: .9rem; line-height: 1.65; }
.regional-presence-section { padding: clamp(7rem, 10vw, 10rem) 0; background: #f8f6f1; }
.regional-presence-head { display: grid; align-items: start; margin-bottom: clamp(3rem, 6vw, 5rem); grid-template-columns: .3fr 1fr; gap: clamp(2rem, 6vw, 7rem); }
.regional-presence-head h2 { margin: 0; font-size: clamp(3.5rem, 5.8vw, 6.6rem); font-weight: 490; }
.regional-presence-head h2 em { color: var(--blue); }
.regional-presence-head p:last-child { max-width: 760px; margin: 1.5rem 0 0; color: #596372; line-height: 1.72; }
.regional-presence-grid { display: grid; border-top: 1px solid var(--line); border-left: 1px solid var(--line); grid-template-columns: repeat(3, 1fr); }
.regional-presence-card { display: flex; min-height: 390px; flex-direction: column; padding: clamp(1.4rem, 2.5vw, 2.2rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.regional-presence-card > span { color: var(--blue); font-size: .68rem; font-weight: 800; }
.regional-presence-card h3 { margin: auto 0 1rem; font-size: clamp(2.4rem, 3.5vw, 4rem); font-weight: 500; }
.regional-presence-card > p { min-height: 5.2em; margin: 0 0 1.4rem; color: #606b7a; line-height: 1.65; }
.regional-presence-card > div { display: flex; flex-wrap: wrap; gap: .55rem; }
.regional-presence-card > div a { padding: .65rem .85rem; border-radius: 999px; color: white; background: var(--navy); font-size: .72rem; font-weight: 750; }
.regional-presence-card > div a:hover { background: var(--blue); }
.regional-presence-card small { margin-top: 1.3rem; color: #697485; font-size: .68rem; line-height: 1.6; }
.regional-presence-card small a { border-bottom: 1px solid #b8c0cc; }

@media (max-width: 820px) {
  .location-network-grid { grid-template-columns: 1fr; }
  .region-city-grid { grid-template-columns: 1fr 1fr; }
  .image-credit-list { grid-template-columns: 1fr; }
  .regional-presence-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .regional-presence-grid { grid-template-columns: 1fr; }
  .regional-presence-card { min-height: 330px; }
  .regional-presence-card > p { min-height: 0; }
}

@media (max-width: 560px) {
  .region-city-grid { grid-template-columns: 1fr; }
  .region-city-link { min-height: 135px; }
  .footer-bottom > span:last-child { flex-wrap: wrap; justify-content: flex-end; gap: .75rem 1rem; }
}

/* Keep editorial heading phrases intact on narrow screens as well. */
@media (max-width: 820px) {
  .heading-line { white-space: normal; }
  .hero-copy h1 { font-size: clamp(2.8rem, 11.5vw, 5.5rem); }
  .work-head h2 { font-size: clamp(3rem, 12.5vw, 5.25rem); }
  .services-head h2 { font-size: clamp(2.7rem, 10vw, 4.6rem); }
  .audit-copy h2 { font-size: clamp(2.6rem, 10vw, 4.8rem); }
  .regional-presence-head h2 { font-size: clamp(2.6rem, 8.8vw, 5.2rem); }
  .case-hero h1 { font-size: clamp(3.1rem, 10.8vw, 6.5rem); }
  .case-story-intro h2,
  .case-gallery-head h2,
  .case-outcome-card h2 { font-size: clamp(2.2rem, 7vw, 5.5rem); }
  .location-hero-copy h1,
  .location-hero-static .location-hero-copy h1 { font-size: clamp(2.45rem, 9vw, 5rem); }
  .location-heading h2 { font-size: clamp(2.35rem, 9.8vw, 5rem); }
  .location-sticky-copy h2 { font-size: clamp(2.35rem, 9.5vw, 4.2rem); }
  .local-person-section .local-person-grid > div h2 { font-size: clamp(2.3rem, 10vw, 3.8rem); }
  .faq-intro h2 { font-size: clamp(2.35rem, 9.5vw, 4rem); }
  .contact-head h2 { font-size: clamp(2.8rem, 10.2vw, 5.5rem); }
  .location-network .location-heading h2,
  .seo-proof-section .location-heading h2 { font-size: clamp(2rem, 8vw, 4rem); }
}

@media (max-width: 560px) {
  .hero-copy h1 { font-size: clamp(2.7rem, 11.5vw, 4.8rem); }
  .work-head h2 { font-size: clamp(2.7rem, 12vw, 5rem); }
  .services-head h2 { font-size: clamp(2.5rem, 9.8vw, 4.2rem); }
  .audit-copy h2 { font-size: clamp(2.45rem, 9.8vw, 4.4rem); }
  .regional-presence-head h2 { font-size: clamp(2.1rem, 8.4vw, 4.8rem); }
  .case-hero h1 { font-size: clamp(2.7rem, 10vw, 5rem); }
  .case-story-intro h2,
  .case-gallery-head h2,
  .case-outcome-card h2 { font-size: clamp(2rem, 8.4vw, 4.7rem); }
  .location-hero-copy h1,
  .location-hero-static .location-hero-copy h1 { font-size: clamp(2.45rem, 10.5vw, 4rem); }
  .location-heading h2 { font-size: clamp(2.35rem, 9.8vw, 4.2rem); }
  .location-sticky-copy h2 { font-size: clamp(2.3rem, 9.5vw, 3.7rem); }
  .local-person-section .local-person-grid > div h2 { font-size: clamp(2.3rem, 10vw, 3.3rem); }
  .faq-intro h2 { font-size: clamp(2.35rem, 9.5vw, 3.7rem); }
  .contact-head h2 { font-size: clamp(2.65rem, 9.8vw, 4.8rem); }
  .location-network .location-heading h2,
  .seo-proof-section .location-heading h2 { font-size: clamp(2rem, 8vw, 3.6rem); }
}

/* Editorial labels stay above their headings; semantic UI text stays readable. */
.trust-grid,
.process-head,
.regional-presence-head,
.location-heading,
.case-story-intro,
.case-gallery-head {
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

.work-head,
.services-head,
.contact-head {
  grid-template-columns: minmax(0, 1fr) minmax(240px, .42fr);
  grid-template-rows: auto auto;
  align-items: end;
  gap: 1.4rem clamp(2rem, 5vw, 5rem);
}

.work-head > .section-index,
.services-head > .section-index,
.contact-head > .section-index {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
}

.work-head > h2,
.services-head > h2,
.contact-head > h2 {
  grid-column: 1;
  grid-row: 2;
}

.work-head > p:last-child,
.services-head > p:last-child,
.contact-head > p:last-child {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
}

.section-index,
.kicker {
  font-size: clamp(.78rem, .78vw, .92rem);
}

.header-rating strong {
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}

.header-rating > span {
  font-size: .84rem;
}

.header-rating small {
  font-size: .78rem;
}

.site-menu {
  font-size: .86rem;
}

.hero-rating-stars {
  font-size: .96rem;
}

.hero-rating-link strong {
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}

.hero-rating-link small,
.hero-proof {
  font-size: .8rem;
}

.pain-card > span,
.about-principles span,
.process-list li > span,
.location-card > span,
.regional-presence-card > span,
.location-audience-list article > span,
.local-signal-list article > span,
.local-process-grid span,
.case-fact span,
.case-principle > span,
.case-story-card span {
  font-size: clamp(.74rem, .7vw, .86rem);
  font-variant-numeric: tabular-nums;
}

.review-proof-score > div span,
.review-proof-score h2 {
  font-size: .98rem;
}

.review-proof-score a,
.review-proof-quote footer {
  font-size: .8rem;
}

.review-proof-score strong {
  font-variant-numeric: tabular-nums;
}

.project-filmstrip {
  font-size: clamp(.68rem, .65vw, .8rem);
}

.project-filmstrip span:first-child {
  font-size: .78rem;
  font-variant-numeric: tabular-nums;
}

.project-open,
.project-private {
  min-height: 44px;
  font-size: .82rem;
}

.project-open b {
  font-size: 1rem;
}

.project-media-caption small,
.project-case-meta,
.project-case-facts strong,
.case-gallery-card figcaption span,
.location-project > div > span {
  font-size: .74rem;
}

.project-case-meta p,
.project-text-link,
.project-live-link {
  font-size: .84rem;
}

.service-card > div,
.process-list li > span {
  font-size: .78rem;
}

.service-card i,
.location-project i,
.region-city-link i {
  width: 48px;
  height: 48px;
  font-size: 1.1rem;
}

.carousel-controls button {
  width: 56px;
  height: 56px;
  font-size: 1.1rem;
}

.system-card-media > span,
.system-card-meta,
.system-card-copy li,
.case-eyebrow,
.case-brief dt,
.case-window-bar span,
.case-next-link > span:first-child,
.location-breadcrumb,
.location-trust-list,
.location-landscape figcaption,
.footer-label,
.form-label,
.form-help,
.form-consent,
.contact-trust {
  font-size: .76rem;
}

.system-card-detail,
.location-browser-card > strong {
  font-size: .82rem;
}

.footer-bottom {
  font-size: .86rem;
}

@media (max-width: 820px) {
  .work-head,
  .services-head,
  .contact-head {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
    gap: 1.2rem;
  }

  .work-head > .section-index,
  .services-head > .section-index,
  .contact-head > .section-index,
  .work-head > h2,
  .services-head > h2,
  .contact-head > h2,
  .work-head > p:last-child,
  .services-head > p:last-child,
  .contact-head > p:last-child {
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
  }

  .section-index,
  .kicker {
    font-size: .78rem;
  }

  .header-rating strong {
    font-size: .92rem;
  }

  .header-rating > span {
    font-size: .7rem;
  }

  .header-rating small::after {
    font-size: .7rem;
  }

  .project-filmstrip {
    font-size: .68rem;
  }

  .project-filmstrip span:first-child {
    font-size: .72rem;
  }

  .project-open b {
    font-size: .92rem;
  }

  .service-card i,
  .location-project i,
  .region-city-link i {
    width: 46px;
    height: 46px;
    font-size: 1.06rem;
  }

  .carousel-controls button {
    width: 52px;
    height: 52px;
  }

  .location-card > span,
  .regional-presence-card > span,
  .location-audience-list article > span,
  .local-signal-list article > span,
  .local-process-grid span,
  .case-fact span,
  .case-principle > span,
  .case-story-card span,
  .system-card-media > span,
  .system-card-meta,
  .system-card-copy li,
  .case-brief dt,
  .case-window-bar span,
  .location-breadcrumb,
  .location-trust-list,
  .location-landscape figcaption,
  .footer-label,
  .form-label,
  .form-help,
  .form-consent,
  .contact-trust {
    font-size: .74rem;
  }

  .fitline-process-rail span {
    font-size: .38rem;
  }

  .fitline-process-rail span b {
    font-size: .3rem;
  }

  .fitline-process-rail > i {
    font-size: .48rem;
  }
}

@media (max-width: 560px) {
  .header-rating strong {
    font-size: .9rem;
  }

  .header-rating > span,
  .header-rating small::after {
    font-size: .72rem;
  }

  .project-filmstrip {
    font-size: .66rem;
  }

  .project-filmstrip span:first-child {
    font-size: .74rem;
  }

  .project-open {
    width: 44px;
    height: 44px;
  }

  .project-open b {
    font-size: .9rem;
  }

  .fitline-process-rail span {
    font-size: .34rem;
  }

  .fitline-process-rail span b {
    font-size: .28rem;
  }

  .fitline-process-rail > i {
    font-size: .42rem;
  }
}

/* Traben-Trarbach pricing test: reusable component for later service pages. */
.location-pricing {
  background: #edf1f8;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pricing-card {
  display: flex;
  min-width: 0;
  min-height: 590px;
  flex-direction: column;
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, .72);
}

.pricing-card-featured {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: 0 1.5rem 3.5rem rgba(8, 19, 33, .14);
}

.pricing-card-top {
  display: flex;
  min-height: 2.7rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.pricing-card-featured .pricing-card-top {
  color: rgba(255, 255, 255, .68);
}

.pricing-badge {
  flex: 0 0 auto;
  padding: .42rem .68rem;
  color: var(--navy);
  border-radius: 999px;
  background: var(--blue-light);
  font-size: .68rem;
  letter-spacing: .08em;
}

.pricing-card h3 {
  max-width: 15ch;
  min-height: 2.1em;
  display: flex;
  align-items: flex-start;
  margin: 3.5rem 0 1rem;
  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 520;
  letter-spacing: -.045em;
  line-height: 1.03;
}

.pricing-intro {
  min-height: 5.2rem;
  margin: 0;
  color: #606b7a;
  line-height: 1.6;
}

.pricing-card-featured .pricing-intro {
  color: rgba(255, 255, 255, .68);
}

.pricing-price {
  display: flex;
  flex-wrap: wrap;
  min-height: 7.15rem;
  align-items: baseline;
  gap: .45rem;
  margin: 2rem 0 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
}

.pricing-card-featured .pricing-price {
  border-color: rgba(255, 255, 255, .2);
}

.pricing-price > span {
  color: var(--muted);
  font-size: .85rem;
  font-weight: 700;
}

.pricing-card-featured .pricing-price > span {
  color: rgba(255, 255, 255, .68);
}

.pricing-price strong {
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.6rem, 3.5vw, 4rem);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .95;
}

.pricing-card-featured .pricing-price strong {
  color: #fff;
}

.pricing-price small {
  flex-basis: 100%;
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.4;
}

.pricing-card-featured .pricing-price small {
  color: rgba(255, 255, 255, .58);
}

.pricing-card ul {
  display: grid;
  min-height: 15rem;
  gap: .72rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 1.35rem;
  color: #3f4a5a;
  line-height: 1.5;
}

.pricing-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--blue);
  content: '✓';
  font-weight: 800;
}

.pricing-card-featured li {
  color: rgba(255, 255, 255, .82);
}

.pricing-link {
  display: flex;
  min-height: 3rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding: .8rem 1rem .8rem 1.1rem;
  color: #fff;
  border: 1px solid var(--navy);
  border-radius: 999px;
  background: var(--navy);
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .25s ease, background-color .25s ease;
}

.pricing-link:hover {
  transform: translateY(-2px);
  background: var(--blue);
}

.pricing-card-featured .pricing-link {
  color: var(--navy);
  border-color: var(--blue-light);
  background: var(--blue-light);
}

.pricing-card-featured .pricing-link:hover {
  background: #fff;
}

.pricing-link span {
  font-size: 1.15rem;
  line-height: 1;
}

.pricing-note {
  max-width: 76rem;
  margin-top: 1.35rem;
  color: #606b7a;
  font-size: .82rem;
  line-height: 1.65;
}

@media (max-width: 1120px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-card:last-child {
    grid-column: 1 / -1;
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .location-pricing .heading-line {
    white-space: normal;
  }

  .pricing-card,
  .pricing-card:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .pricing-card h3 {
    margin-top: 2.5rem;
  }

  .pricing-intro {
    min-height: 0;
  }
}

/* Shared card rhythm: reserve comparable heading and copy space across repeated rows. */
.service-card h3,
.pain-card h3,
.location-card h3,
.regional-presence-card h3,
.local-process-grid h3 {
  min-height: 2.1em;
  display: flex;
  align-items: flex-end;
}

.service-card p {
  min-height: 3.4em;
}

.pain-card p {
  min-height: 4.8em;
}

.location-card p,
.local-process-grid p {
  min-height: 6.6em;
}

.regional-presence-card > p {
  min-height: 5.2em;
}

.about-principles strong {
  min-height: 2.5em;
  display: flex;
  align-items: flex-end;
}

.about-principles p {
  min-height: 3.3em;
}

.process-list h3 {
  min-height: 2.1em;
  display: flex;
  align-items: flex-end;
}

.process-list p {
  min-height: 4.8em;
}

.location-audience-list h3,
.local-signal-list h3 {
  min-height: 2.1em;
  display: flex;
  align-items: flex-end;
}

.location-audience-list p,
.local-signal-list p {
  min-height: 3.3em;
}

.case-story-card h3 {
  min-height: 2em;
  display: flex;
  align-items: flex-end;
}

.case-story-card p {
  min-height: 5.25em;
}

.system-card-copy h4 {
  min-height: 2em;
  display: flex;
  align-items: flex-end;
}

.system-card-copy p {
  min-height: 4.8em;
}

/* Shared directional language: quiet text arrows, never standalone icon bubbles. */
.arrow-mark {
  display: inline-flex;
  width: auto;
  min-width: 0;
  height: auto;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: currentColor;
  font: inherit;
  font-style: normal;
  line-height: 1;
  pointer-events: none;
}

.arrow-mark::before {
  position: static;
  display: block;
  content: "\2192";
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1;
  transition: transform .2s ease;
}

.arrow-mark::after {
  content: none;
}

a:hover .arrow-mark::before,
a:focus-visible .arrow-mark::before,
button:hover .arrow-mark::before,
button:focus-visible .arrow-mark::before {
  transform: translateX(.18rem);
}

.nav-contact .arrow-mark,
.nav-cta .arrow-mark,
.nav-contact:hover .arrow-mark,
.nav-cta:hover .arrow-mark {
  display: inline-flex;
  width: auto;
  height: auto;
  flex: 0 0 auto;
  border-radius: 0;
  color: inherit;
  background: transparent;
  transform: none;
}

.project-open {
  width: auto;
  min-width: 0;
  height: auto;
  min-height: 44px;
  gap: .62rem;
  padding: .7rem .9rem;
  font-size: .78rem;
  line-height: 1;
  white-space: nowrap;
  transition: box-shadow .2s ease, transform .2s ease;
}

.project-open b.arrow-mark {
  display: inline-flex;
  width: auto;
  height: auto;
  flex: 0 0 auto;
}

.project-shot-link:hover .project-open,
.project-shot-link:focus-visible .project-open {
  box-shadow: 0 14px 34px rgba(8,19,33,.18);
  transform: translateY(-1px);
}

.service-card i.arrow-mark,
.location-project i.arrow-mark,
.region-city-link i.arrow-mark,
.case-next-arrow.arrow-mark {
  display: inline-flex;
  width: auto;
  height: auto;
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.service-card i.arrow-mark::before,
.location-project i.arrow-mark::before,
.region-city-link i.arrow-mark::before {
  font-size: 1.45rem;
}

.case-next-arrow.arrow-mark::before {
  font-size: 1.55rem;
}

.case-next-link:hover .case-next-arrow {
  color: inherit;
  background: transparent;
  transform: none;
}

.site-menu > a:not(.nav-contact):not(.nav-cta)[aria-current="location"] {
  color: var(--blue);
  background: transparent;
}

.nav-contact[aria-current="location"],
.nav-cta[aria-current="location"] {
  background: var(--blue);
}

@media (max-width: 820px) {
  .nav-wrap,
  .nav-wrap > * {
    min-width: 0;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    max-width: 100%;
  }

  .header-rating {
    display: grid;
    min-width: 0;
    flex: 0 1 auto;
    margin-left: auto;
    padding: .22rem .35rem;
    grid-template-columns: auto auto;
    column-gap: .28rem;
    row-gap: .1rem;
    align-items: center;
    white-space: nowrap;
  }

  .header-rating strong {
    font-size: .9rem;
    line-height: 1;
  }

  .header-rating > span {
    font-size: .68rem;
    letter-spacing: .015em;
  }

  .header-rating small {
    display: block;
    width: auto;
    max-width: none;
    margin-top: 0;
    overflow: visible;
    color: #334257;
    font-size: .63rem;
    line-height: 1.1;
    white-space: nowrap;
  }

  .header-rating small::after {
    content: none;
  }

  body.menu-open .site-header[data-header] .header-rating strong {
    color: white;
  }

  body.menu-open .site-header[data-header] .header-rating small {
    color: rgba(255, 255, 255, .72);
  }

  body.menu-open .site-header[data-header] .header-rating > span {
    color: #f2bb4e;
  }

  .site-header[data-header] .site-menu > a:not(.nav-contact):not(.nav-cta):focus {
    outline: none;
    background: transparent;
    box-shadow: none;
  }

  .site-header[data-header] .site-menu > a:not(.nav-contact):not(.nav-cta):focus-visible {
    outline: 2px solid var(--blue-light);
    outline-offset: 4px;
  }

  .site-header[data-header] .site-menu > a:not(.nav-contact):not(.nav-cta)[aria-current="location"] {
    color: var(--blue-light);
    background: transparent;
    box-shadow: none;
  }

  .menu-toggle,
  .site-menu a {
    touch-action: manipulation;
  }

}

@media (max-width: 560px) {
  .nav-wrap,
  .site-header.is-scrolled .nav-wrap {
    gap: .25rem;
    padding: .35rem .35rem .35rem .72rem;
  }

  .brand img {
    width: 126px;
  }

  .header-rating {
    padding: .2rem .25rem;
    column-gap: .24rem;
  }

  .header-rating strong {
    font-size: .82rem;
  }

  .header-rating > span {
    font-size: .58rem;
    letter-spacing: .01em;
  }

  .header-rating small {
    font-size: .58rem;
    letter-spacing: -.01em;
  }

  .menu-toggle {
    gap: .32rem;
    height: 44px;
    padding-right: .28rem;
    padding-left: .6rem;
  }

  .menu-toggle span {
    font-size: .66rem;
    letter-spacing: .02em;
  }

  .menu-toggle i {
    width: 32px;
    height: 32px;
  }

  .menu-toggle i::before,
  .menu-toggle i::after {
    left: 9px;
    width: 14px;
  }

  .project-open {
    width: auto;
    min-width: 0;
    height: auto;
    min-height: 42px;
    padding: .66rem .82rem;
    font-size: .74rem;
  }
}

@media (max-width: 380px) {
  .brand img {
    width: 112px;
  }

  .header-rating {
    column-gap: .18rem;
  }

  .header-rating strong {
    font-size: .78rem;
  }

  .header-rating > span {
    font-size: .52rem;
  }

  .header-rating small {
    font-size: .52rem;
  }

  .menu-toggle {
    gap: .25rem;
    padding-left: .52rem;
  }

  .menu-toggle span {
    font-size: .62rem;
  }

  .menu-toggle i {
    width: 30px;
    height: 30px;
  }

  .menu-toggle i::before,
  .menu-toggle i::after {
    top: 13px;
    left: 8px;
    width: 14px;
  }

  .menu-toggle i::after {
    top: 18px;
  }
}
