@font-face {
  font-family: "Sora";
  src: url("/assets/fonts/sora-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --navy: #061d34;
  --navy-2: #0a2945;
  --navy-deep: #031323;
  --blue: #086ca5;
  --cyan: #43d1ee;
  --cyan-soft: #bfeff7;
  --orange: #ff633b;
  --paper: #f4f5f1;
  --paper-2: #e9edeb;
  --white: #fff;
  --ink: #0b2136;
  --muted: #5d6c76;
  --line: rgba(6, 29, 52, .16);
  --line-light: rgba(255, 255, 255, .19);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --page: min(1380px, calc(100% - 96px));
  --header-h: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
p, h1, h2, h3 { text-wrap: balance; }
::selection { background: var(--cyan); color: var(--navy-deep); }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }
.page-shell { width: var(--page); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 18px;
  top: 12px;
  transform: translateY(-160%);
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  transition: transform 180ms ease;
}
.skip-link:focus { transform: none; }

.scroll-progress { position: fixed; z-index: 500; inset: 0 0 auto; height: 3px; pointer-events: none; }
.scroll-progress i { display: block; width: 100%; height: 100%; background: var(--cyan); transform: scaleX(0); transform-origin: left; will-change: transform; }

.site-header {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  height: var(--header-h);
  padding-inline: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.18);
  transition: height .35s var(--ease), background .35s ease, backdrop-filter .35s ease;
}
body:not(.legal-page) .site-header { border-bottom-color: transparent; }
.site-header.is-scrolled { height: 72px; background: rgba(3,19,35,.88); backdrop-filter: blur(18px); }
.brand { width: fit-content; display: inline-flex; align-items: center; gap: 10px; min-height: 46px; }
.brand img { width: 51px; height: 36px; object-fit: contain; filter: brightness(0) invert(1); }
.brand span { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; line-height: 1.08; }
.brand strong { display: block; font: 750 19px/1 "Sora", sans-serif; letter-spacing: .09em; }
.desktop-nav { display: flex; align-items: center; gap: 32px; font-size: 12px; font-weight: 700; }
.desktop-nav a { position: relative; min-height: 46px; display: flex; align-items: center; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 8px; height: 1px; background: var(--cyan); transition: right .3s var(--ease); }
.desktop-nav a:hover::after { right: 0; }
.header-contact { justify-self: end; min-height: 48px; padding: 0 20px; display: inline-flex; align-items: center; gap: 24px; border-radius: 999px; background: var(--orange); color: var(--white); font-size: 12px; font-weight: 800; transition: background .2s ease, color .2s ease, transform .2s ease; }
.header-contact:hover { background: var(--white); color: var(--navy); }
.header-contact span { font-size: 17px; }
.menu-button, .mobile-menu { display: none; }

.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  max-height: 940px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--navy-deep);
}
.hero-media { position: absolute; inset: -3% -1%; will-change: transform; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; animation: hero-zoom 1.25s .05s var(--ease) both; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,16,29,.98) 0%, rgba(3,20,36,.94) 34%, rgba(3,20,36,.72) 52%, rgba(3,20,36,.18) 72%, rgba(3,20,36,.28) 100%), linear-gradient(0deg, rgba(3,19,35,.68) 0%, transparent 42%); }
.hero-shade::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 86% 22%, rgba(67,209,238,.17), transparent 30%); }
.hero-grain { position: absolute; inset: 0; opacity: .16; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.23'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; }
@keyframes hero-zoom { from { transform: scale(1.14); filter: blur(7px); } to { transform: scale(1); filter: blur(0); } }
.hero-content { position: relative; z-index: 3; padding-top: calc(var(--header-h) + 28px); padding-bottom: 76px; }
.availability { width: fit-content; margin: 0 0 28px; padding: 10px 15px; display: flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,.34); border-radius: 999px; background: rgba(3,19,35,.26); backdrop-filter: blur(12px); color: rgba(255,255,255,.9); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.availability span { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(67,209,238,.13); }
.availability span::after { content: ""; position: absolute; inset: -5px; border: 1px solid var(--cyan); border-radius: 50%; animation: ping 1.8s infinite; }
@keyframes ping { 0% { opacity: .8; transform: scale(.6); } 100% { opacity: 0; transform: scale(1.7); } }
.hero h1 { max-width: min(760px, 59vw); margin: 0; font: 750 clamp(3.9rem, 6.15vw, 7.1rem)/.91 "Sora", sans-serif; letter-spacing: -.048em; word-spacing: .03em; }
.hero-line { display: block; overflow: hidden; padding: .03em .08em .07em 0; }
.hero-line > span { display: block; animation: hero-line .82s .12s var(--ease) both; }
.hero-line:nth-child(2) > span { animation-delay: .2s; }
.hero-line:nth-child(3) > span { animation-delay: .28s; }
.hero-line-accent > span { font-size: .84em; letter-spacing: -.035em; white-space: nowrap; }
.hero-line-accent em { color: var(--cyan); font-style: normal; }
.hero-line-accent b { color: var(--white); font-weight: inherit; }
@keyframes hero-line { from { transform: translateY(112%) rotate(1deg); } to { transform: none; } }
.hero-copy { max-width: 610px; margin: 25px 0 0; color: rgba(255,255,255,.8); font-size: clamp(.96rem, 1.18vw, 1.12rem); line-height: 1.62; }
.hero-enter { opacity: 0; animation: hero-enter .7s .18s var(--ease) forwards; }
.hero-copy.hero-enter { animation-delay: .36s; }
.hero-actions.hero-enter { animation-delay: .46s; }
.hero-proof.hero-enter { animation-delay: .58s; }
@keyframes hero-enter { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.hero-actions { margin-top: 27px; display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 56px; padding: 0 25px; border: 0; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 26px; font-size: 12px; font-weight: 800; cursor: pointer; transition: transform .2s ease, background .25s ease, color .25s ease, border-color .25s ease; }
.button-accent { min-width: 205px; background: var(--orange); color: var(--white); box-shadow: 0 13px 34px rgba(255,99,59,.2); }
.button-accent:hover { background: var(--white); color: var(--navy); }
.button-white { background: var(--white); color: var(--navy); }
.button-white:hover { background: var(--cyan); }
.button-glass { border: 1px solid rgba(255,255,255,.52); background: rgba(3,19,35,.42); color: var(--white); backdrop-filter: blur(10px); }
.button-glass:hover { border-color: var(--white); background: var(--white); color: var(--navy); }
.button-whatsapp { gap: 12px; }
.button-whatsapp svg, .mobile-whatsapp svg { width: 20px; height: 20px; flex: 0 0 auto; fill: currentColor; }
.hero-proof { position: absolute; z-index: 4; right: 4.2vw; bottom: 30px; display: flex; align-items: center; gap: 13px; padding: 10px 13px 10px 10px; border-radius: 999px; background: rgba(3,19,35,.48); backdrop-filter: blur(12px); }
.hero-proof img { width: 49px; height: 49px; border-radius: 50%; border: 2px solid var(--white); object-fit: cover; object-position: center 16%; }
.hero-proof p { margin: 0; color: rgba(255,255,255,.7); font-size: 11px; line-height: 1.55; }
.hero-proof strong { color: var(--white); }
.hero-locations { position: absolute; z-index: 4; left: 48px; bottom: 35px; display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,.62); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero-locations i { width: 3px; height: 3px; border-radius: 50%; background: var(--cyan); }
.hero-scroll { position: absolute; z-index: 4; right: 30px; top: 50%; display: flex; align-items: center; gap: 13px; transform: rotate(90deg) translateX(50%); transform-origin: right center; color: rgba(255,255,255,.58); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero-scroll i { width: 64px; height: 1px; overflow: hidden; background: rgba(255,255,255,.25); }
.hero-scroll i::after { content: ""; display: block; width: 100%; height: 100%; background: var(--cyan); animation: scroll-cue 2s var(--ease) infinite; }
@keyframes scroll-cue { 0% { transform: translateX(-105%); } 55%,100% { transform: translateX(105%); } }

.metrics { min-height: 360px; display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); }
.metric { min-height: 360px; padding: 52px 40px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); }
.metric strong { font: 750 clamp(4rem, 6vw, 7.2rem)/1 "Sora", sans-serif; letter-spacing: -.065em; color: var(--navy); }
.metric strong sup { margin-left: 3px; color: var(--blue); font-size: .3em; letter-spacing: 0; vertical-align: top; }
.metric p { max-width: 230px; margin: 0; color: var(--muted); font-size: 13px; }
.metric-cta { position: relative; overflow: hidden; background: var(--orange); color: var(--white); border: 0; }
.metric-cta::before { content: ""; position: absolute; width: 320px; height: 320px; right: -150px; top: -170px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.04), 0 0 0 110px rgba(255,255,255,.04); }
.metric-cta p { position: relative; max-width: 280px; color: var(--white); font: 650 clamp(1.6rem, 2.2vw, 2.45rem)/1.12 "Sora", sans-serif; letter-spacing: -.04em; }
.metric-cta a { position: relative; width: 100%; min-height: 52px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.34); font-size: 12px; font-weight: 800; }
.metric-cta a span { font-size: 18px; }

.section-heading { padding: 145px 0 78px; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 9vw; align-items: end; }
.kicker { margin: 0 0 28px; display: flex; align-items: center; gap: 13px; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.kicker span { width: 33px; height: 33px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 8px; }
.kicker.light { color: var(--cyan); }
h2 { margin: 0; font: 700 clamp(3.35rem, 6.05vw, 7.1rem)/.93 "Sora", sans-serif; letter-spacing: -.058em; }
h2 em { color: var(--blue); font-style: normal; }
.section-lead { max-width: 490px; margin: 0 0 9px; color: var(--muted); font-size: clamp(1rem, 1.25vw, 1.18rem); line-height: 1.7; }

.services { padding-bottom: 140px; background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-card { position: relative; min-height: 520px; overflow: hidden; padding: 27px; display: flex; flex-direction: column; justify-content: space-between; color: var(--navy); background: var(--white); isolation: isolate; }
.service-card:nth-child(2), .service-card:nth-child(5) { transform: translateY(42px); }
.service-card::after { content: ""; position: absolute; z-index: -1; inset: 0; border: 1px solid transparent; transition: border-color .25s ease; }
.service-card:hover::after { border-color: var(--cyan); }
.service-card-top { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.service-card-top i { width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-style: normal; font-size: 16px; transition: transform .4s var(--ease), background .25s ease, color .25s ease; }
.service-card:hover .service-card-top i { transform: rotate(45deg); background: var(--white); color: var(--navy); }
.service-card-copy { position: relative; z-index: 2; }
.service-card h3 { margin: 0 0 13px; font: 700 clamp(1.7rem, 2.6vw, 3rem)/1 "Sora", sans-serif; letter-spacing: -.045em; }
.service-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.service-card-image { color: var(--white); }
.service-card-image::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(2,16,28,.38), rgba(2,16,28,.12) 42%, rgba(2,16,28,.85)); }
.service-card-media { position: absolute; z-index: 0; inset: 0; overflow: hidden; }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.service-card:hover .service-card-media img { transform: scale(1.06); }
.service-card-image p { color: rgba(255,255,255,.74); }
.service-card-blue { color: var(--white); background: var(--blue); }
.service-card-blue p, .service-card-dark p { color: rgba(255,255,255,.72); }
.service-card-reveal::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(2,16,28,.3), rgba(2,16,28,.14) 38%, rgba(2,16,28,.88)); pointer-events: none; }
.service-card-reveal-media { position: absolute; z-index: 0; inset: 0; overflow: hidden; clip-path: inset(0 100% 0 0); transform: translateX(-9%); transition: clip-path 1s .18s var(--ease), transform 1s .18s var(--ease); }
.service-card-reveal-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; transition: transform 1.1s var(--ease); }
.service-card-reveal.is-visible .service-card-reveal-media { clip-path: inset(0); transform: none; }
.service-card-reveal:hover .service-card-reveal-media img { transform: scale(1.055); }
.service-card-light { background: var(--cyan-soft); }
.service-card-dark { color: var(--white); background: var(--navy); }
.service-icon { position: absolute; z-index: -1; inset: 78px 12% auto; height: 210px; display: flex; align-items: flex-end; justify-content: center; gap: 18px; opacity: .55; }
.service-icon span { width: 24%; border: 1px solid rgba(255,255,255,.72); border-bottom: 0; }
.service-icon span:nth-child(1) { height: 45%; }.service-icon span:nth-child(2) { height: 95%; }.service-icon span:nth-child(3) { height: 68%; }
.steps-icon { align-items: center; gap: 0; transform: rotate(-8deg); }
.steps-icon span { width: 30%; border-color: rgba(6,29,52,.42); border-bottom: 1px solid rgba(6,29,52,.42); }
.steps-icon span:nth-child(1) { height: 25%; }.steps-icon span:nth-child(2) { height: 50%; }.steps-icon span:nth-child(3) { height: 75%; }
.cross-icon { inset: 102px 25% auto; height: 170px; opacity: .5; }
.cross-icon span { position: absolute; width: 100%; height: 27%; border: 1px solid rgba(255,255,255,.7); }
.cross-icon span:last-child { transform: rotate(90deg); }
.all-services { margin-top: 104px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.all-services summary { min-height: 88px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; list-style: none; font: 700 clamp(1.1rem, 1.8vw, 1.65rem)/1.2 "Sora", sans-serif; }
.all-services summary::-webkit-details-marker { display: none; }
.all-services summary i, .faq summary i { position: relative; width: 31px; height: 31px; border-radius: 50%; border: 1px solid var(--line); flex: 0 0 auto; }
.all-services summary i::before, .all-services summary i::after, .faq summary i::before, .faq summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 11px; height: 1px; background: currentColor; transform: translate(-50%,-50%); transition: transform .25s ease; }
.all-services summary i::after, .faq summary i::after { transform: translate(-50%,-50%) rotate(90deg); }
.all-services[open] summary i::after, .faq details[open] summary i::after { transform: translate(-50%,-50%) rotate(0); }
.all-services-grid { padding: 35px 0 55px; display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; border-top: 1px solid var(--line); }
.all-services-grid h3 { margin: 0 0 22px; font: 700 1.3rem/1.2 "Sora", sans-serif; }
.all-services-grid ul { margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 11px 25px; list-style: none; color: var(--muted); font-size: 13px; }
.all-services-grid li::before { content: "↗"; margin-right: 8px; color: var(--blue); }

.why { padding-bottom: 140px; color: var(--white); background: var(--navy-deep); }
.section-heading-light .section-lead { color: rgba(255,255,255,.65); }
.section-heading-light h2 em { color: var(--cyan); }
.why-grid { display: grid; grid-template-columns: 1fr 1.1fr 1fr; grid-template-rows: 1fr 1fr; border: 1px solid var(--line-light); }
.why-item { min-height: 310px; padding: 34px; display: flex; flex-direction: column; justify-content: space-between; border-bottom: 1px solid var(--line-light); }
.why-item:nth-of-type(odd) { border-right: 1px solid var(--line-light); }
.why-item:nth-of-type(even) { border-left: 1px solid var(--line-light); }
.why-item:nth-last-of-type(-n+2) { border-bottom: 0; }
.why-item > span { color: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.why-item h3 { margin: auto 0 14px; font: 700 clamp(1.65rem, 2.5vw, 2.8rem)/1 "Sora", sans-serif; letter-spacing: -.045em; }
.why-item p { margin: 0; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.65; }
.why-portrait { grid-column: 2; grid-row: 1 / 3; position: relative; min-height: 620px; margin: 0; overflow: hidden; }
.why-portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,19,35,.8), transparent 45%); }
.why-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; transition: transform 1.2s var(--ease); }
.why-portrait:hover img { transform: scale(1.035); }
.why-portrait figcaption { position: absolute; z-index: 2; inset: auto 30px 30px; display: flex; justify-content: space-between; gap: 15px; align-items: end; }
.why-portrait figcaption span { font: 700 1.25rem/1.1 "Sora", sans-serif; }
.why-portrait figcaption small { color: rgba(255,255,255,.62); }

.showcase { position: relative; height: 180vh; min-height: 1200px; color: var(--white); background: #020d18; }
.showcase-sticky { position: sticky; top: 0; height: 100svh; min-height: 680px; overflow: hidden; isolation: isolate; }
.showcase-sticky::after { content: ""; position: absolute; z-index: 1; inset: 0; background: radial-gradient(circle at center, transparent, rgba(1,10,18,.52)), linear-gradient(90deg, rgba(2,13,24,.78), rgba(2,13,24,.16) 55%, rgba(2,13,24,.55)); }
.showcase-layer { position: absolute; inset: -12%; opacity: .26; will-change: transform; }
.showcase-layer img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.65) contrast(1.1); }
.showcase-layer-a { width: 45%; right: auto; clip-path: polygon(0 10%, 86% 0, 100% 88%, 10% 100%); }
.showcase-layer-b { left: 48%; clip-path: polygon(10% 0, 100% 12%, 92% 100%, 0 88%); }
.showcase-canva { position: absolute; z-index: 2; width: min(44vw, 690px); right: 7vw; top: 50%; transform: translateY(-50%); box-shadow: 0 40px 100px rgba(0,0,0,.5); opacity: .7; will-change: transform; }
.showcase-canva img { width: 100%; }
.showcase-copy { position: relative; z-index: 3; height: 100%; padding-top: 18vh; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.showcase-copy h2 { font-size: clamp(4.4rem, 9.3vw, 11rem); line-height: .76; }
.showcase-copy h2 span { display: block; }
.showcase-copy h2 span:nth-child(2) { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.7); }
.showcase-copy h2 span:nth-child(3) { color: var(--cyan); }
.showcase-copy > p:last-child { margin: 35px 0 0; color: rgba(255,255,255,.65); }
.showcase-frame { position: absolute; z-index: 3; inset: 28px; display: flex; justify-content: space-between; align-items: end; padding: 18px; border: 1px solid rgba(255,255,255,.2); pointer-events: none; color: rgba(255,255,255,.48); font-size: 8px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }

.process { padding-bottom: 150px; background: var(--white); }
.process-list { margin-top: 15px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-step { min-height: 166px; display: grid; grid-template-columns: 100px 140px minmax(0,1fr); align-items: center; border-bottom: 1px solid var(--line); transition: background .35s ease, padding .4s var(--ease); }
.process-step:hover { padding-inline: 20px; background: var(--cyan-soft); }
.step-number { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.step-icon { width: 66px; height: 66px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: var(--white); font: 700 1.5rem/1 "Sora", sans-serif; transition: transform .5s var(--ease); }
.process-step:hover .step-icon { transform: rotate(12deg) scale(1.06); }
.process-step > div:last-child { display: grid; grid-template-columns: minmax(260px,.8fr) minmax(260px,1fr); gap: 40px; align-items: center; }
.process-step h3 { margin: 0; font: 700 clamp(1.7rem, 2.8vw, 3.2rem)/1 "Sora", sans-serif; letter-spacing: -.045em; }
.process-step p { max-width: 450px; margin: 0; color: var(--muted); font-size: 14px; }

.quick-cta { position: relative; overflow: hidden; min-height: 670px; display: flex; align-items: center; color: var(--white); background: var(--blue); }
.quick-cta-pattern { position: absolute; inset: 0; opacity: .38; background: radial-gradient(circle at 80% 50%, rgba(67,209,238,.75), transparent 28%), repeating-linear-gradient(120deg, transparent 0 60px, rgba(255,255,255,.055) 61px 62px); }
.quick-cta-pattern::after { content: ""; position: absolute; width: 620px; height: 620px; right: -60px; top: 20px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); box-shadow: 0 0 0 80px rgba(255,255,255,.035), 0 0 0 160px rgba(255,255,255,.025); animation: orbit 14s linear infinite; }
@keyframes orbit { to { transform: rotate(360deg); } }
.quick-cta-inner { position: relative; z-index: 1; }
.quick-cta h2 { max-width: 960px; }
.quick-cta h2 em { color: var(--cyan); }
.quick-actions { margin-top: 42px; display: flex; align-items: center; gap: 28px; }
.quick-mail { padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.6); font-size: 13px; font-weight: 700; }

.work { padding-bottom: 145px; background: var(--paper); }
.work-gallery { display: grid; grid-template-columns: 1.05fr .95fr; gap: 18px; }
.work-card { margin: 0; }
.work-card-tall { grid-row: span 2; }
.work-image { height: 380px; overflow: hidden; background: var(--paper-2); }
.work-card-tall .work-image { height: 820px; }
.work-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.work-card:nth-child(2) .work-image img { object-position: center; }
.work-card:nth-child(3) .work-image img { object-position: center 38%; }
.work-card:hover .work-image img { transform: scale(1.045); }
.work-card figcaption { padding: 18px 2px 25px; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.work-card figcaption span { font: 700 clamp(1.35rem, 2vw, 2rem)/1.1 "Sora", sans-serif; letter-spacing: -.04em; }
.work-card figcaption small { color: var(--muted); text-align: right; }
.image-note { margin-top: 24px; color: var(--muted); font-size: 10px; }

.commitment { min-height: 850px; display: grid; grid-template-columns: 1fr 1fr; color: var(--white); background: var(--navy-deep); }
.commitment-copy { padding: 9vw max(48px, calc((100vw - min(1380px, calc(100vw - 96px))) / 2)); padding-right: 8vw; display: flex; flex-direction: column; justify-content: center; }
.commitment-copy h2 { font-size: clamp(3.4rem, 5.5vw, 6.6rem); }
.commitment-copy h2 em { color: var(--cyan); }
.commitment-copy > p:not(.kicker) { max-width: 580px; margin: 40px 0 0; color: rgba(255,255,255,.63); font-size: clamp(1rem, 1.3vw, 1.2rem); line-height: 1.75; }
.line-link { width: fit-content; margin-top: 42px; padding-bottom: 7px; display: inline-flex; gap: 55px; align-items: center; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 800; }
.line-link span { font-size: 17px; transition: transform .3s var(--ease); }
.line-link:hover span { transform: rotate(45deg); }
.commitment-cards { display: grid; grid-template-rows: repeat(3,1fr); border-left: 1px solid var(--line-light); }
.commitment-card { padding: 43px 55px; display: grid; grid-template-columns: 70px minmax(0,.8fr) minmax(220px,1fr); gap: 25px; align-items: center; border-bottom: 1px solid var(--line-light); transition: background .3s ease; }
.commitment-card:last-child { border-bottom: 0; }
.commitment-card:hover { background: var(--navy-2); }
.commitment-card > span { color: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.commitment-card h3 { min-width: 0; margin: 0; font: 700 clamp(1.7rem, 2.35vw, 2.7rem)/1 "Sora", sans-serif; letter-spacing: -.045em; overflow-wrap: anywhere; }
.commitment-card p { margin: 0; color: rgba(255,255,255,.6); font-size: 13px; }

.area { overflow: hidden; padding-bottom: 145px; background: var(--cyan-soft); }
.area-marquee { border-bottom: 1px solid rgba(6,29,52,.13); overflow: hidden; }
.area-marquee div { width: max-content; padding: 28px 0; display: flex; align-items: center; gap: 34px; animation: marquee 24s linear infinite; }
.area-marquee span { font: 700 clamp(2.2rem, 4vw, 4.8rem)/1 "Sora", sans-serif; letter-spacing: -.04em; }
.area-marquee i { color: var(--blue); font-style: normal; font-size: 1.6rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
.area-grid { min-height: 730px; padding-top: 120px; display: grid; grid-template-columns: .95fr 1.05fr; gap: 8vw; align-items: center; }
.area-copy h2 { font-size: clamp(3.5rem, 5.7vw, 6.8rem); }
.area-copy > p:not(.kicker) { max-width: 560px; margin: 36px 0 0; color: #365365; font-size: 1.06rem; line-height: 1.75; }
.radius-map { position: relative; aspect-ratio: 1; max-width: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.78), rgba(255,255,255,.15) 65%, transparent 66%); }
.radius-ring { position: absolute; border: 1px solid rgba(6,29,52,.2); border-radius: 50%; }
.ring-one { inset: 12%; }.ring-two { inset: 27%; }.ring-three { inset: 42%; }
.radius-ring::after { content: ""; position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); top: 50%; right: -3px; box-shadow: 0 0 0 5px rgba(8,108,165,.12); }
.ring-one { animation: map-spin 16s linear infinite; }.ring-two { animation: map-spin 12s linear infinite reverse; }
@keyframes map-spin { to { transform: rotate(360deg); } }
.map-dot { position: absolute; display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 800; }
.map-dot b { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 7px rgba(255,99,59,.15); }
.map-nuernberg { left: 50%; top: 50%; transform: translate(-50%,-50%); font-size: 13px; }.map-fuerth { left: 24%; top: 39%; }.map-erlangen { left: 55%; top: 21%; }
.radius-map strong { position: absolute; right: 5%; bottom: 11%; font: 700 clamp(1.3rem, 2vw, 2.1rem)/1 "Sora", sans-serif; color: var(--blue); }

.about { min-height: 850px; display: grid; grid-template-columns: 1fr 1fr; background: var(--white); }
.about-media { position: relative; min-height: 760px; overflow: hidden; }
.about-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,19,35,.6), transparent 45%); }
.about-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 16%; }
.about-media > span { position: absolute; z-index: 2; left: 34px; bottom: 38px; color: var(--white); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }
.about-copy { padding: 9vw 8vw; display: flex; flex-direction: column; justify-content: center; }
.about-copy h2 { font-size: clamp(3.4rem, 5.5vw, 6.6rem); }
.about-lead { max-width: 620px; margin: 43px 0 0; color: #3b5363; font-size: clamp(1.05rem, 1.4vw, 1.32rem); line-height: 1.7; }
.about-signature { margin-top: 36px; padding-left: 18px; display: flex; flex-direction: column; border-left: 2px solid var(--blue); }
.about-signature strong { font: 700 1.15rem/1.4 "Sora", sans-serif; }.about-signature span { color: var(--muted); font-size: 12px; }

.contact { padding: 145px 0; color: var(--white); background: var(--blue); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 9vw; align-items: start; }
.contact-copy { position: sticky; top: 118px; }
.contact-copy h2 { font-size: clamp(3.5rem, 5.6vw, 6.7rem); }
.contact-copy h2 em { color: var(--cyan); }
.contact-copy > p:not(.kicker) { max-width: 510px; margin: 38px 0 0; color: rgba(255,255,255,.68); line-height: 1.75; }
.contact-direct { margin-top: 60px; display: grid; gap: 17px; }
.contact-direct a { width: fit-content; display: flex; flex-direction: column; }
.contact-direct span { color: rgba(255,255,255,.5); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-direct strong { font-size: 14px; }
.contact-form { padding: 44px; background: var(--white); color: var(--ink); }
.contact-form label { display: block; margin-bottom: 27px; }
.contact-form label > span:first-child { display: block; margin-bottom: 9px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form input:not([type="checkbox"]), .contact-form textarea, .contact-form select { width: 100%; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; padding: 10px 0 13px; background: transparent; color: var(--ink); outline: 0; }
.contact-form textarea { resize: vertical; min-height: 105px; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--blue); box-shadow: 0 1px 0 var(--blue); }
.consent { display: grid !important; grid-template-columns: 20px 1fr; gap: 11px; align-items: start; }
.consent input { width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--blue); }
.consent span { margin: 0 !important; color: var(--muted) !important; font-size: 11px !important; font-weight: 500 !important; letter-spacing: 0 !important; line-height: 1.55; text-transform: none !important; }
.consent a { text-decoration: underline; }
.contact-form .button { width: 100%; }
.form-status { min-height: 20px; margin: 13px 0 0; color: var(--blue); font-size: 12px; }
.form-status.is-success { color: #087a51; font-weight: 700; }
.form-status.is-error { color: #b83220; }
.form-status.is-error a { text-decoration: underline; }
.contact-form button:disabled { cursor: wait; opacity: .68; }
.form-honey { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.faq { padding: 145px 0; background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 9vw; align-items: start; }
.faq-heading { position: sticky; top: 118px; }
.faq-heading h2 { font-size: clamp(3.4rem, 5vw, 5.9rem); }
.faq-heading > p:last-child { max-width: 390px; margin-top: 34px; color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { min-height: 104px; display: flex; justify-content: space-between; align-items: center; gap: 25px; cursor: pointer; list-style: none; font: 650 clamp(1.05rem, 1.55vw, 1.45rem)/1.3 "Sora", sans-serif; }
.faq summary::-webkit-details-marker { display: none; }
.faq details p { max-width: 650px; margin: -5px 50px 32px 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

.final-cta { position: relative; min-height: 760px; overflow: hidden; display: flex; align-items: center; text-align: center; color: var(--white); background: var(--navy-deep); }
.final-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.final-inner .kicker { justify-content: center; }
.final-cta h2 { font-size: clamp(4rem, 7.1vw, 8.5rem); }
.final-cta h2 em { color: var(--cyan); }
.final-actions { margin-top: 42px; display: flex; gap: 12px; justify-content: center; }
.final-orbit { position: absolute; left: 50%; top: 50%; width: min(85vw, 1050px); aspect-ratio: 1; transform: translate(-50%,-50%); border: 1px solid rgba(67,209,238,.15); border-radius: 50%; }
.final-orbit i { position: absolute; border: inherit; border-radius: 50%; }
.final-orbit i:nth-child(1) { inset: 11%; }.final-orbit i:nth-child(2) { inset: 24%; }.final-orbit i:nth-child(3) { inset: 38%; background: radial-gradient(circle, rgba(8,108,165,.22), transparent 65%); }
.final-orbit::after { content: ""; position: absolute; left: 13%; top: 22%; width: 11px; height: 11px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 25px var(--cyan); animation: orbit-dot 8s ease-in-out infinite alternate; }
@keyframes orbit-dot { to { transform: translate(52vw, 31vh); } }

.site-footer { padding: 68px 48px 28px; color: var(--white); background: #010b14; }
.footer-top { padding-bottom: 50px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; border-bottom: 1px solid var(--line-light); }
.footer-brand { display: flex; gap: 13px; align-items: center; width: fit-content; }
.footer-brand-mark { width: 76px; height: 50px; flex: 0 0 76px; display: grid; place-items: center; }
.footer-brand img { width: 76px; height: 50px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-brand p { margin: 0; text-transform: uppercase; line-height: 1; letter-spacing: .1em; }
.footer-brand strong { display: block; font: 750 1.65rem/1 "Sora", sans-serif; }.footer-brand span { color: var(--cyan); font-size: .7rem; }
.footer-top > p { margin: 0; color: rgba(255,255,255,.55); font-size: 13px; }
.footer-phone { justify-self: end; display: flex; gap: 25px; align-items: center; font: 700 clamp(1.2rem, 2vw, 2rem)/1 "Sora", sans-serif; }
.footer-phone span { color: var(--cyan); }
.footer-main { padding: 52px 0 64px; display: grid; grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: 7vw; }
.footer-main > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-main span { margin-bottom: 10px; color: rgba(255,255,255,.4); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-main a, .footer-main p, .cookie-settings-link { margin: 0; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.7; }
.footer-main a:hover, .cookie-settings-link:hover { color: var(--cyan); }
.cookie-settings-link { padding: 0; border: 0; background: transparent; cursor: pointer; text-align: left; }
.footer-bottom { padding-top: 25px; display: flex; justify-content: space-between; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.38); font-size: 10px; }
.footer-bottom p { margin: 0; }
.mobile-call { display: none; }

/* Privacy controls: compact, non-blocking and intentionally not a loader. */
.cookie-consent { position: fixed; z-index: 900; inset: auto 18px 18px; pointer-events: none; }
.cookie-consent[hidden] { display: none; }
.cookie-panel { width: min(1180px, 100%); margin-inline: auto; display: grid; grid-template-columns: minmax(300px, .78fr) minmax(520px, 1.22fr); overflow: hidden; pointer-events: auto; border: 1px solid rgba(255,255,255,.18); border-radius: 22px; background: var(--white); box-shadow: 0 25px 80px rgba(0,12,23,.34); }
.cookie-brand-panel { position: relative; min-height: 270px; padding: 32px; overflow: hidden; color: var(--white); background: var(--navy-deep); }
.cookie-brand-panel::before, .cookie-brand-panel::after { content: ""; position: absolute; border: 1px solid rgba(67,209,238,.2); border-radius: 50%; }
.cookie-brand-panel::before { width: 310px; height: 310px; right: -185px; top: -180px; }
.cookie-brand-panel::after { width: 200px; height: 200px; right: -110px; bottom: -135px; }
.cookie-kicker { position: relative; z-index: 1; color: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.cookie-brand-panel h2 { position: relative; z-index: 1; margin: 47px 0 0; font: 750 clamp(2rem, 3.2vw, 3.3rem)/.98 "Sora", sans-serif; letter-spacing: -.055em; }
.cookie-brand-panel h2 em { color: var(--cyan); font-family: Georgia, serif; font-weight: 400; }
.cookie-brand-line { position: absolute; z-index: 1; left: 32px; bottom: 32px; width: 52px; height: 2px; background: var(--orange); }
.cookie-content { min-width: 0; padding: 31px 34px 28px; align-self: center; }
.cookie-content > div > p { max-width: 650px; margin: 0; color: #405564; font-size: 14px; line-height: 1.65; }
.cookie-privacy-link { width: fit-content; margin-top: 12px; display: flex; gap: 10px; align-items: center; color: var(--blue); font-size: 11px; font-weight: 800; }
.cookie-privacy-link span { color: var(--orange); }
.cookie-actions { margin-top: 25px; display: grid; grid-template-columns: auto auto 1fr; gap: 10px; align-items: center; }
.cookie-button { min-height: 48px; padding: 0 20px; border-radius: 999px; cursor: pointer; font-size: 11px; font-weight: 800; transition: transform 180ms ease, border-color 180ms ease, background 180ms ease; }
.cookie-button:hover { transform: translateY(-2px); }
.cookie-button-primary { justify-self: end; border: 1px solid var(--orange); background: var(--orange); color: var(--white); }
.cookie-button-secondary { border: 1px solid rgba(6,29,52,.23); background: transparent; color: var(--navy); }
.cookie-button-text { border: 0; background: transparent; color: var(--blue); }
.cookie-settings-heading { margin-bottom: 12px; display: flex; gap: 13px; align-items: center; }
.cookie-settings-heading span { color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.cookie-settings-heading h3 { margin: 2px 0 0; font: 750 1.4rem/1.1 "Sora", sans-serif; letter-spacing: -.035em; }
.cookie-back { width: 38px; height: 38px; flex: 0 0 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.cookie-category { min-height: 57px; margin: 0 !important; padding: 9px 0; display: grid !important; grid-template-columns: 1fr auto; gap: 20px; align-items: center; border-top: 1px solid var(--line); }
.cookie-category strong { font: 700 12px/1.3 "Sora", sans-serif; }
.cookie-category p { margin: 2px 0 0; color: var(--muted); font-size: 10px; line-height: 1.4; }
.cookie-category input { width: 38px; height: 20px; cursor: pointer; accent-color: var(--blue); }
.cookie-always { color: #087a51; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.cookie-settings-actions { margin-top: 15px; grid-template-columns: auto 1fr; }
.legal-links .cookie-settings-link { color: inherit; font-size: inherit; }
body.cookie-open .mobile-call { visibility: hidden; }

.reveal, .reveal-card, .reveal-image { opacity: 0; transform: translateY(42px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal-card { transform: translateY(60px) scale(.97); }
.reveal-image { clip-path: inset(9% 0 0); transform: translateY(45px); }
.reveal.is-visible, .reveal-card.is-visible, .reveal-image.is-visible { opacity: 1; transform: none; clip-path: inset(0); }
.service-card:nth-child(2).is-visible, .service-card:nth-child(5).is-visible { transform: translateY(42px); }
.service-card:nth-child(2) { transition-delay: .08s; }.service-card:nth-child(3) { transition-delay: .16s; }.service-card:nth-child(5) { transition-delay: .08s; }.service-card:nth-child(6) { transition-delay: .16s; }

/* Legal pages share the same brand system without animation dependencies. */
.legal-page { background: var(--paper); }
.legal-page .site-header { position: relative; background: var(--navy-deep); }
.legal-main { width: min(820px, calc(100% - 48px)); margin: 0 auto; padding: 110px 0 140px; overflow-wrap: anywhere; }
.legal-main .eyebrow { margin: 0 0 22px; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.legal-main .eyebrow span { display: inline-block; width: 28px; height: 1px; margin-right: 10px; vertical-align: middle; background: currentColor; }
.legal-main h1 { margin: 0 0 18px; font: 750 clamp(3.2rem, 7vw, 6.5rem)/.9 "Sora", sans-serif; letter-spacing: -.055em; }
.legal-lead { margin-bottom: 70px; color: var(--muted); }
.legal-main h2 { margin: 48px 0 12px; font-size: 1.45rem; letter-spacing: -.035em; }
.legal-main p, .legal-main li { color: #435563; line-height: 1.8; }
.legal-main a:not(.legal-back) { color: var(--blue); text-decoration: underline; }
.legal-main ul { padding-left: 20px; }
.legal-back { width: fit-content; margin-top: 70px; padding-bottom: 7px; display: flex; gap: 18px; border-bottom: 1px solid currentColor; font-weight: 700; }
.legal-page .site-footer { padding-top: 50px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 30px; }
.legal-page .site-footer .footer-brand { display: flex; }
.legal-page .site-footer .footer-brand p { text-transform: none; letter-spacing: 0; line-height: 1.5; font-size: 12px; }
.legal-page .site-footer .footer-brand strong { font-size: 1rem; }
.legal-links { display: flex; gap: 20px; font-size: 11px; }
.legal-page .copyright { grid-column: 1 / -1; margin: 0; color: rgba(255,255,255,.4); font-size: 10px; }

@media (max-width: 1100px) {
  :root { --page: min(100% - 56px, 1050px); }
  .site-header { padding-inline: 28px; }
  .desktop-nav { gap: 20px; }
  .hero h1 { max-width: 650px; font-size: clamp(3.8rem, 6.3vw, 5.7rem); }
  .hero-locations { left: 28px; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .metric { min-height: 290px; border-bottom: 1px solid var(--line); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(2), .service-card:nth-child(5), .service-card:nth-child(2).is-visible, .service-card:nth-child(5).is-visible { transform: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-portrait { grid-column: 1 / 3; grid-row: 2; min-height: 650px; }
  .why-item { border: 1px solid var(--line-light) !important; }
  .commitment { grid-template-columns: 1fr; }
  .commitment-copy { min-height: 700px; padding-inline: 7vw; }
  .commitment-card { min-height: 230px; }
  .about-copy { padding: 9vw 6vw; }
  .contact-grid, .faq-grid { gap: 6vw; }
}

@media (max-width: 860px) {
  .cookie-consent { inset: auto 10px 10px; }
  .cookie-panel { max-height: calc(100svh - 20px); grid-template-columns: 1fr; overflow-y: auto; }
  .cookie-brand-panel { min-height: 150px; padding: 23px 24px; }
  .cookie-brand-panel h2 { margin-top: 24px; font-size: clamp(2rem, 8vw, 2.85rem); }
  .cookie-brand-line { display: none; }
  .cookie-content { padding: 23px 24px 22px; }
  .cookie-actions { grid-template-columns: 1fr 1fr; }
  .cookie-button { width: 100%; padding-inline: 13px; }
  .cookie-button-primary { justify-self: stretch; grid-column: 1 / -1; }
  .cookie-settings-actions .cookie-button-primary { grid-column: auto; }
}

@media (max-width: 820px) {
  :root { --page: calc(100% - 36px); --header-h: 74px; }
  .site-header { height: 74px; padding-inline: 18px; grid-template-columns: 1fr auto; }
  .desktop-nav, .header-contact { display: none; }
  .brand img { width: 45px; }
  .menu-button { justify-self: end; width: 46px; height: 46px; padding: 0; display: grid; place-content: center; gap: 7px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: transparent; }
  .menu-button span { width: 19px; height: 1px; background: currentColor; transition: transform .3s var(--ease); }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu { position: fixed; z-index: 110; inset: 73px 0 0; padding: 50px 22px; background: rgba(3,19,35,.98); color: var(--white); }
  .mobile-menu:not([hidden]) { display: flex; flex-direction: column; }
  .mobile-menu a { padding: 15px 4px; border-bottom: 1px solid rgba(255,255,255,.16); font: 650 1.45rem/1.2 "Sora", sans-serif; }
  .hero { height: auto; min-height: 100svh; max-height: none; align-items: flex-start; }
  .hero-media { inset: 0; }
  .hero-media img { object-position: 84% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(2,16,29,.98) 0%, rgba(2,16,29,.87) 48%, rgba(2,16,29,.32) 100%), linear-gradient(90deg, rgba(2,16,29,.67), rgba(2,16,29,.05)); }
  .hero-content { padding-top: 112px; padding-bottom: 145px; }
  .availability { margin-bottom: 20px; font-size: 8px; }
  .hero h1 { max-width: 100%; font-size: clamp(3rem, 12.2vw, 4.6rem); line-height: .93; letter-spacing: -.045em; }
  .hero-line-accent > span { font-size: .82em; letter-spacing: -.025em; }
  .hero-copy { margin-top: 22px; font-size: .98rem; }
  .hero-actions { margin-top: 25px; }
  .button { min-height: 53px; }
  .hero-proof { left: 18px; right: auto; bottom: 88px; padding: 8px 12px 8px 8px; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .metric { min-height: 235px; padding: 32px 22px; }
  .metric strong { font-size: clamp(3.3rem, 14vw, 5.6rem); }
  .metric p { font-size: 11px; }
  .metric-cta p { font-size: 1.35rem; }
  .section-heading { padding: 105px 0 55px; grid-template-columns: 1fr; gap: 30px; }
  h2 { font-size: clamp(3rem, 12vw, 5.6rem); }
  .section-lead { max-width: 600px; }
  .services { padding-bottom: 100px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 470px; }
  .service-card-reveal-media { clip-path: none; transform: none; transition: none; }
  .all-services { margin-top: 50px; }
  .all-services-grid { grid-template-columns: 1fr; gap: 40px; }
  .why { padding-bottom: 100px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-portrait { grid-column: 1; grid-row: 3; min-height: 650px; }
  .why-item { min-height: 260px; }
  .showcase { height: 145vh; min-height: 1000px; }
  .showcase-copy { padding-top: 10vh; justify-content: center; }
  .showcase-copy h2 { font-size: clamp(4rem, 15vw, 7.5rem); }
  .showcase-canva { width: 72vw; right: -7vw; top: 27%; opacity: .52; }
  .showcase-layer-a { width: 72%; }.showcase-layer-b { left: 30%; }
  .showcase-frame { inset: 14px; }
  .process { padding-bottom: 100px; }
  .process-step { min-height: 200px; grid-template-columns: 55px 75px 1fr; }
  .process-step > div:last-child { grid-template-columns: 1fr; gap: 12px; }
  .step-icon { width: 55px; height: 55px; }
  .quick-cta { min-height: 610px; }
  .quick-actions { align-items: flex-start; flex-direction: column; }
  .work { padding-bottom: 105px; }
  .work-gallery { grid-template-columns: 1fr; }
  .work-card-tall { grid-row: auto; }
  .work-image, .work-card-tall .work-image { height: min(118vw, 650px); }
  .commitment-copy { min-height: 680px; padding: 90px 18px; }
  .commitment-card { min-height: 260px; padding: 35px 24px; grid-template-columns: 42px 1fr; }
  .commitment-card p { grid-column: 2; }
  .area { padding-bottom: 105px; }
  .area-grid { padding-top: 90px; grid-template-columns: 1fr; min-height: auto; }
  .radius-map { width: 100%; margin-top: 30px; }
  .about { grid-template-columns: 1fr; }
  .about-media { min-height: 720px; }
  .about-copy { padding: 95px 18px; }
  .contact { padding: 105px 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-copy, .faq-heading { position: static; }
  .contact-form { padding: 30px 22px; }
  .faq { padding: 105px 0; }
  .faq-grid { grid-template-columns: 1fr; gap: 55px; }
  .final-cta { min-height: 680px; }
  .site-footer { padding: 60px 18px 95px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-phone { justify-self: start; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 45px 25px; }
  .mobile-call { position: fixed; z-index: 130; left: 12px; right: 12px; bottom: 12px; min-height: 53px; display: flex; align-items: center; justify-content: center; gap: 10px; border-radius: 999px; background: var(--orange); color: var(--white); box-shadow: 0 14px 40px rgba(3,19,35,.28); font-size: 12px; font-weight: 800; }
  .mobile-call span { color: var(--cyan); font-size: 9px; }
  .legal-page .site-header { position: relative; }
  .legal-main { padding: 80px 0 100px; }
  .legal-page .site-footer { display: block; }
  .legal-links { margin: 35px 0; flex-wrap: wrap; }
}

@media (max-width: 520px) {
  .hero-actions, .final-actions { width: 100%; flex-direction: column; align-items: stretch; }
  .hero-actions .button, .final-actions .button { width: 100%; }
  .metrics { grid-template-columns: 1fr; }
  .metric { min-height: 210px; border-right: 0; }
  .metric-cta { min-height: 260px; }
  .all-services-grid ul { grid-template-columns: 1fr; }
  .why-portrait { min-height: 550px; }
  .process-step { padding: 26px 0; grid-template-columns: 40px 1fr; gap: 15px; }
  .step-icon { grid-column: 2; grid-row: 1; }
  .process-step > div:last-child { grid-column: 2; }
  .work-card figcaption { align-items: flex-start; flex-direction: column; }
  .work-card figcaption small { text-align: left; }
  .commitment-card { grid-template-columns: 35px 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { gap: 18px; flex-direction: column; }
  .cookie-brand-panel { min-height: 132px; }
  .cookie-brand-panel h2 { margin-top: 18px; font-size: 1.85rem; }
  .cookie-content > div > p { font-size: 12px; }
  .cookie-actions { grid-template-columns: 1fr; }
  .cookie-button-primary, .cookie-settings-actions .cookie-button-primary { grid-column: auto; }
  .cookie-button-text { order: -1; min-height: 38px; }
  .cookie-settings-actions { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) and (max-height: 760px) {
  .hero-content { padding-top: 96px; padding-bottom: 105px; }
  .availability { margin-bottom: 14px; }
  .hero h1 { font-size: clamp(2.65rem, 10.8vw, 3.5rem); }
  .hero-copy { margin-top: 15px; font-size: .88rem; line-height: 1.5; }
  .hero-actions { margin-top: 18px; }
  .hero-proof { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .reveal-card, .reveal-image, .hero-enter { opacity: 1; transform: none; clip-path: none; }
  .service-card:nth-child(2), .service-card:nth-child(5) { transform: none; }
  .service-card-reveal-media { clip-path: none; transform: none; }
}
