/* ==========================================================================
   BondoAero Private Services — main.css
   ========================================================================== */

@font-face { font-family: "Cormorant"; src: url(../fonts/cormorant-300.woff2) format("woff2"); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: "Cormorant"; src: url(../fonts/cormorant-300i.woff2) format("woff2"); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: "Cormorant"; src: url(../fonts/cormorant-400.woff2) format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Cormorant"; src: url(../fonts/cormorant-500.woff2) format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Inter"; src: url(../fonts/inter-300.woff2) format("woff2"); font-weight: 300; font-display: swap; }
@font-face { font-family: "Inter"; src: url(../fonts/inter-400.woff2) format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Inter"; src: url(../fonts/inter-500.woff2) format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Inter"; src: url(../fonts/inter-600.woff2) format("woff2"); font-weight: 600; font-display: swap; }

:root {
	--navy: #041c2c;
	--navy-deep: #02121d;
	--navy-soft: #0b2b40;
	--ink: #0e2433;
	--ink-soft: #52606b;
	--bronze: #c4a46b;
	--bronze-light: #e3cc9a;
	--mist: #eef1f4;
	--white: #fff;
	--line-dark: rgba(227, 204, 154, .22);
	--line-light: rgba(14, 36, 51, .12);

	--serif: "Cormorant", "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

	--gutter: clamp(1.25rem, 5vw, 5.5rem);
	--max: 1440px;
	--section: clamp(5.5rem, 13vw, 11rem);
	--header-h: 88px;
	--ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body.ba {
	margin: 0;
	background: var(--white);
	color: var(--ink);
	font: 300 clamp(1rem, .95rem + .2vw, 1.125rem)/1.7 var(--sans);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
.ba img { display: block; max-width: 100%; height: auto; }
.ba a { color: inherit; text-decoration: none; }
.ba p { margin: 0 0 1.2em; }
.ba h1, .ba h2, .ba h3 { margin: 0; font-weight: 300; }
.ba ul, .ba ol { margin: 0; padding: 0; list-style: none; }
.ba address { font-style: normal; }
.ba ::selection { background: var(--bronze-light); color: var(--navy); }
.ba :focus-visible { outline: 1px solid var(--bronze); outline-offset: 4px; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
.serif { font-family: var(--serif); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: fixed; left: 1rem; top: -4rem; z-index: 999; background: var(--bronze-light); color: var(--navy); padding: .75rem 1rem; font-size: .8rem; }
.skip-link:focus { top: 1rem; }

/* ---------- Type ---------- */
.label, .eyebrow {
	display: flex; align-items: center; gap: .9rem;
	font: 500 .72rem/1.2 var(--sans);
	letter-spacing: .24em; text-transform: uppercase;
	color: var(--bronze);
	margin-bottom: 1.75rem;
}
.label::before, .eyebrow::before { content: ""; width: 2.5rem; height: 1px; background: currentColor; opacity: .7; }

.display {
	font-family: var(--serif);
	font-weight: 300;
	font-size: clamp(2.6rem, 1.6rem + 4.2vw, 6.2rem);
	line-height: 1;
	letter-spacing: -.015em;
	color: var(--navy);
}
.display em, .hero-title em, .band-quote em { font-style: italic; color: var(--bronze); }
.ba .section-lead { max-width: 34rem; color: var(--ink-soft); margin-top: 2rem; }
.line { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.line > span { display: block; }

/* ---------- Buttons ---------- */
.btn {
	--pad: 1.15rem 2rem;
	position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 1rem;
	padding: var(--pad);
	font: 500 .74rem/1 var(--sans); letter-spacing: .2em; text-transform: uppercase;
	border: 1px solid transparent; cursor: pointer; overflow: hidden; isolation: isolate;
	transition: color .5s var(--ease), border-color .5s var(--ease), background-color .5s var(--ease);
}
.btn::after {
	content: ""; position: absolute; inset: 0; z-index: -1;
	transform: scaleX(0); transform-origin: right; transition: transform .6s var(--ease);
}
.btn:hover::after { transform: scaleX(1); transform-origin: left; }
.btn-gold { background: var(--bronze-light); color: var(--navy); }
.btn-gold::after { background: var(--white); }
.btn-line { border-color: rgba(227, 204, 154, .55); color: var(--white); }
.btn-line::after { background: var(--bronze-light); }
.btn-line:hover { color: var(--navy); border-color: var(--bronze-light); }
.btn-sm { --pad: .85rem 1.3rem; font-size: .68rem; }
.arrow { width: 1.6rem; height: 1px; background: currentColor; position: relative; transition: width .5s var(--ease); }
.arrow::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-top: 1px solid; border-right: 1px solid; transform: rotate(45deg); }
.btn:hover .arrow { width: 2.4rem; }

/* ---------- Header ---------- */
.site-header {
	position: fixed; inset: 0 0 auto; z-index: 100;
	height: var(--header-h);
	color: var(--white);
	transition: background-color .6s var(--ease), height .6s var(--ease), transform .6s var(--ease), border-color .6s;
	border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
	--header-h: 72px;
	background: rgba(4, 28, 44, .82);
	-webkit-backdrop-filter: blur(18px) saturate(140%);
	backdrop-filter: blur(18px) saturate(140%);
	border-color: var(--line-dark);
}
.site-header.is-hidden { transform: translateY(-100%); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: block; flex: none; }
.ba .logo { height: clamp(38px, 3.4vw, 50px); width: auto; transition: height .6s var(--ease); }
.ba .is-scrolled .logo { height: 38px; }
.nav { display: flex; gap: clamp(1.5rem, 3vw, 3.25rem); margin-left: auto; }
.nav a, .lang-btn {
	position: relative; font: 500 .72rem/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; padding-block: .5rem; white-space: nowrap;
}
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--bronze-light); transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease); }
.nav a:hover::after, .nav a.is-current::after { transform: scaleX(1); transform-origin: left; }
.header-tools { display: flex; align-items: center; gap: 1.5rem; }

.lang { position: relative; }
.lang-btn { background: none; border: 0; color: inherit; cursor: pointer; display: flex; align-items: center; gap: .5rem; }
.chev { width: 6px; height: 6px; border-right: 1px solid; border-bottom: 1px solid; transform: translateY(-2px) rotate(45deg); transition: transform .4s var(--ease); }
.lang.is-open .chev { transform: translateY(1px) rotate(-135deg); }
.lang-list {
	position: absolute; right: -1rem; top: calc(100% + 1rem); min-width: 12rem;
	background: var(--navy); border: 1px solid var(--line-dark); padding: .5rem;
	opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all .4s var(--ease);
}
.lang.is-open .lang-list { opacity: 1; visibility: visible; transform: none; }
.lang-list a { display: flex; gap: 1rem; padding: .7rem .9rem; font-size: .85rem; color: rgba(255,255,255,.75); transition: color .3s, background-color .3s; }
.lang-list a span { font-size: .68rem; letter-spacing: .15em; color: var(--bronze); width: 1.5rem; padding-top: .15rem; }
.lang-list a:hover, .lang-list a[aria-current] { color: var(--white); background: rgba(227, 204, 154, .08); }

.menu-btn { display: none; width: 44px; height: 44px; background: none; border: 0; color: inherit; cursor: pointer; position: relative; }
.menu-btn i { position: absolute; left: 10px; right: 10px; height: 1px; background: currentColor; transition: transform .5s var(--ease), top .5s var(--ease); }
.menu-btn i:first-of-type { top: 18px; }
.menu-btn i:last-of-type { top: 26px; left: 18px; }
.menu-open .menu-btn i:first-of-type { top: 22px; transform: rotate(45deg); }
.menu-open .menu-btn i:last-of-type { top: 22px; left: 10px; transform: rotate(-45deg); }

.mobile-menu {
	position: fixed; inset: 0; z-index: 90; background: var(--navy-deep); color: var(--white);
	display: flex; align-items: flex-end; padding-bottom: 3rem;
	clip-path: inset(0 0 100% 0); transition: clip-path .8s var(--ease);
}
.mobile-menu[hidden] { display: flex !important; visibility: hidden; }
.menu-open .mobile-menu { clip-path: inset(0); visibility: visible; }
.mobile-nav { display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav > a:not(.mobile-wa) { font: 300 clamp(2.6rem, 11vw, 4rem)/1.15 var(--serif); display: flex; align-items: baseline; gap: 1rem; }
.mobile-nav > a span { font: 500 .7rem var(--sans); letter-spacing: .2em; color: var(--bronze); }
.mobile-langs { display: flex; gap: 1.25rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line-dark); font-size: .8rem; letter-spacing: .15em; }
.mobile-langs a { color: rgba(255,255,255,.55); }
.mobile-langs a[aria-current] { color: var(--bronze-light); }
.mobile-wa { margin-top: 1.25rem; font-size: .85rem; color: var(--bronze-light); }

/* ---------- Hero ---------- */
.hero {
	position: relative; min-height: 100vh; min-height: 100svh;
	display: flex; flex-direction: column; justify-content: flex-end;
	color: var(--white); background: var(--navy); overflow: hidden;
}
.hero-media, .hero-slide { position: absolute; inset: 0; }
.hero-slide { opacity: 0; transition: opacity 2.2s ease; }
.hero-slide.is-active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); }
.hero-slide.is-active img { animation: kenburns 9s linear forwards; }
@keyframes kenburns { from { transform: scale(1.14) translate3d(1%, 0, 0); } to { transform: scale(1.02) translate3d(0, 0, 0); } }
.hero-shade {
	position: absolute; inset: 0;
	background:
		linear-gradient(90deg, rgba(4, 28, 44, .9) 0%, rgba(4, 28, 44, .55) 45%, rgba(4, 28, 44, .15) 100%),
		linear-gradient(0deg, rgba(4, 28, 44, .95) 0%, rgba(4, 28, 44, 0) 45%),
		linear-gradient(180deg, rgba(4, 28, 44, .6) 0%, rgba(4, 28, 44, 0) 25%);
}
.hero-content { position: relative; padding-top: calc(var(--header-h) + 4rem); padding-bottom: clamp(3rem, 7vh, 5rem); }
.hero .eyebrow { color: var(--bronze-light); }
.hero-title { font-size: clamp(3.6rem, 1.5rem + 9.5vw, 11.5rem); line-height: .9; letter-spacing: -.025em; margin-bottom: 2rem; }
.hero-sub { max-width: 32rem; font-size: clamp(1.05rem, 1rem + .3vw, 1.3rem); color: rgba(255,255,255,.82); margin-bottom: 2.75rem !important; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-foot {
	position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2rem;
	padding-block: 1.5rem 2rem; border-top: 1px solid rgba(227, 204, 154, .18);
}
.hero-strip { display: flex; flex-wrap: wrap; gap: .5rem 2rem; margin: 0 !important; font: 500 .68rem/1 var(--sans); letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.hero-strip span:first-child { color: var(--bronze-light); }
.hero-progress { display: flex; gap: .5rem; }
.hero-progress i { width: 2.5rem; height: 1px; background: rgba(255,255,255,.25); position: relative; overflow: hidden; }
.hero-progress i::after { content: ""; position: absolute; inset: 0; background: var(--bronze-light); transform: scaleX(0); transform-origin: left; }
.hero-progress i.is-active::after { animation: progress 7s linear forwards; }
@keyframes progress { to { transform: scaleX(1); } }
.scroll-cue { display: flex; align-items: center; gap: 1rem; font: 500 .68rem var(--sans); letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.scroll-cue i { width: 1px; height: 2.75rem; background: rgba(255,255,255,.25); position: relative; overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; left: 0; top: -40%; width: 1px; height: 40%; background: var(--bronze-light); animation: cue 2.2s var(--ease) infinite; }
@keyframes cue { to { top: 110%; } }

/* ---------- Intro ---------- */
.intro { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: repeat(12, 1fr); column-gap: clamp(1rem, 2.5vw, 2.5rem); row-gap: 4rem; align-items: start; }
.intro-head { grid-column: 1 / span 8; }
.intro-lead { font: 300 clamp(1.35rem, 1.1rem + 1vw, 2.1rem)/1.35 var(--serif); color: var(--ink); max-width: 40rem; margin-top: 2.5rem !important; }
.intro-media { grid-column: 1 / span 5; aspect-ratio: 4 / 5; overflow: hidden; position: relative; }
.parallax { position: absolute; inset: -12% 0; }
.parallax img { width: 100%; height: 100%; object-fit: cover; }
.intro-copy { grid-column: 7 / span 5; align-self: end; color: var(--ink-soft); }
.swiss { display: flex; gap: 1.5rem; margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--line-light); }
.swiss-cross { flex: none; width: 34px; height: 34px; }
.swiss-cross rect { fill: #d52b1e; }
.swiss-cross path { fill: #fff; }
.swiss-text { font: 400 1.25rem/1.3 var(--serif); color: var(--navy); margin-bottom: .9rem !important; }
.swiss-values { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; }
.swiss-values li { font: 500 .7rem/1.6 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--bronze); }

/* ---------- Services ---------- */
.services { background: var(--mist); }
.section-head { max-width: 58rem; margin-bottom: clamp(3.5rem, 7vw, 6rem); }
.svc { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(2rem, 5vw, 6rem); align-items: start; }
.svc-visual { position: sticky; top: 110px; aspect-ratio: 4 / 5; overflow: hidden; background: var(--navy); }
.svc-img { position: absolute; inset: 0; opacity: 0; transform: scale(1.08); transition: opacity 1s var(--ease), transform 1.6s var(--ease); }
.svc-img.is-active { opacity: 1; transform: scale(1); }
.svc-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-count { position: absolute; left: 1.5rem; bottom: 1rem; font: 300 clamp(4rem, 8vw, 7.5rem)/1 var(--serif); color: var(--white); mix-blend-mode: overlay; opacity: .9; }
.svc-list { border-bottom: 1px solid var(--line-light); }
.svc-item { border-top: 1px solid var(--line-light); }
.svc-trigger {
	width: 100%; background: none; border: 0; cursor: pointer; text-align: left; color: var(--navy);
	display: grid; grid-template-columns: 3.5rem 1fr 2rem; grid-template-areas: "num title plus" ". short ."; column-gap: 1rem; row-gap: .5rem;
	padding: clamp(1.6rem, 3vw, 2.4rem) 0;
}
.svc-num { grid-area: num; font: 500 .72rem/2.8 var(--sans); letter-spacing: .15em; color: var(--bronze); }
.svc-title { grid-area: title; font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.9rem); line-height: 1.1; transition: transform .6s var(--ease), color .4s; }
.svc-short { grid-area: short; font-size: .95rem; color: var(--ink-soft); }
.svc-plus { grid-area: plus; position: relative; width: 1.25rem; height: 1.25rem; align-self: center; justify-self: end; }
.svc-plus::before, .svc-plus::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: var(--navy); transition: transform .6s var(--ease); }
.svc-plus::after { transform: rotate(90deg); }
.svc-item.is-open .svc-plus::after { transform: rotate(0); }
.svc-trigger:hover .svc-title { transform: translateX(.5rem); color: var(--bronze); }
.svc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .8s var(--ease); }
.svc-item.is-open .svc-panel { grid-template-rows: 1fr; }
.svc-panel-inner { overflow: hidden; padding-left: 4.5rem; }
.ba .svc-intro { margin-bottom: 1.5rem; color: var(--ink); font-size: 1.05rem; max-width: 36rem; }
.svc-panel ul { display: grid; gap: .1rem; margin-bottom: 2.25rem; }
.svc-panel li { position: relative; padding: .75rem 0 .75rem 2rem; border-bottom: 1px solid var(--line-light); color: var(--ink-soft); font-size: .98rem; }
.svc-panel li::before { content: ""; position: absolute; left: 0; top: 1.45rem; width: .9rem; height: 1px; background: var(--bronze); }
.ba .svc-note { font-size: .82rem; color: var(--ink-soft); font-style: italic; max-width: 34rem; margin-top: -1rem; padding-bottom: 2rem; }
.svc-mobile-img { display: none; }

/* ---------- PC-12 ---------- */
.pc12 { background: var(--navy); color: var(--white); padding-top: var(--section); padding-bottom: calc(var(--section) * .8); }
.pc12 .display { color: var(--white); }
.pc12 .section-lead { color: rgba(255,255,255,.7); }
.pc12-intro { margin-bottom: clamp(3rem, 8vw, 6rem); }
.pc12-intro .display { max-width: 60rem; }
.pc12-story { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(2rem, 6vw, 7rem); }
.pc12-sticky { position: relative; }
.pc12-frame { position: sticky; top: 12vh; height: 76vh; overflow: hidden; background: var(--navy-deep); }
.pc12-img { position: absolute; inset: 0; clip-path: inset(100% 0 0 0); transition: clip-path 1.2s var(--ease); }
.pc12-img.is-active { clip-path: inset(0); z-index: 1; }
.pc12-img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); transition: transform 2.4s var(--ease); }
.pc12-img.is-active img { transform: scale(1); }
.pc12-step { min-height: 76vh; display: flex; flex-direction: column; justify-content: center; opacity: .28; transition: opacity .8s var(--ease); }
.pc12-step.is-active { opacity: 1; }
.pc12-step-img { display: none; }
.step-num { font: 500 .72rem var(--sans); letter-spacing: .2em; color: var(--bronze); margin-bottom: 1.5rem; }
.pc12-step h3 { font-size: clamp(2rem, 1.4rem + 2vw, 3.4rem); line-height: 1.05; margin-bottom: 1.25rem; }
.ba .pc12-step p { color: rgba(255,255,255,.7); max-width: 26rem; }
.specs { display: grid; grid-template-columns: repeat(3, 1fr); margin: clamp(4rem, 9vw, 7rem) 0 0; border-top: 1px solid var(--line-dark); }
.spec { padding: 2.5rem 2rem 2rem 0; border-right: 1px solid var(--line-dark); }
.spec + .spec { padding-left: clamp(1rem, 3vw, 3rem); }
.spec:last-child { border-right: 0; }
.spec dt { font: 500 .7rem var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--bronze); margin-bottom: 1rem; }
.spec dd { margin: 0; display: flex; align-items: baseline; gap: .6rem; }
.spec dd span { font-size: clamp(3.2rem, 2rem + 4.5vw, 6.5rem); line-height: 1; color: var(--white); font-variant-numeric: tabular-nums; }
.spec dd small { font-size: .9rem; color: rgba(255,255,255,.6); letter-spacing: .1em; }
.specs-source { margin-top: 1.5rem !important; font-size: .75rem; color: rgba(255,255,255,.4); }

/* ---------- Band ---------- */
.band { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; background: var(--navy); color: var(--white); }
.band-media { position: absolute; inset: -10% 0; }
.band-media img { width: 100%; height: 100%; object-fit: cover; }
.band-shade { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(4,28,44,.35) 0%, rgba(4,28,44,.75) 100%); }
.band-quote { position: relative; margin: 0 auto; text-align: center; font-size: clamp(2.2rem, 1.2rem + 4vw, 5.6rem); line-height: 1.05; letter-spacing: -.01em; }
.band-quote .line { justify-content: center; }

/* ---------- Contact ---------- */
.contact { background: var(--navy-deep); color: var(--white); position: relative; }
.contact .display { color: var(--white); font-size: clamp(2.4rem, 1.5rem + 3.5vw, 5rem); }
.contact .section-lead { color: rgba(255,255,255,.7); }
.contact-grid { display: grid; grid-template-columns: 6fr 7fr; gap: clamp(3rem, 7vw, 8rem); align-items: start; }
.contact-list { margin: 3rem 0 2.5rem; border-top: 1px solid var(--line-dark); }
.contact-list li { display: grid; grid-template-columns: 11rem 1fr; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line-dark); }
.contact-list span { font: 500 .68rem/1.9 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--bronze); }
.contact-list a, .contact-list address { font-size: 1.05rem; color: var(--white); transition: color .3s; }
.contact-list address { font-size: .95rem; color: rgba(255,255,255,.75); }
.contact-list a:hover { color: var(--bronze-light); }

.form { background: var(--navy); border: 1px solid var(--line-dark); padding: clamp(1.75rem, 4vw, 3.75rem); }
.form-title { font-size: clamp(1.8rem, 1.4rem + 1.2vw, 2.6rem); margin-bottom: 2.25rem !important; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem 1.75rem; }
.field { position: relative; display: block; }
.field.full { grid-column: 1 / -1; }
.field input, .field select, .field textarea {
	width: 100%; background: transparent; color: var(--white); border: 0; border-bottom: 1px solid rgba(227, 204, 154, .3);
	font: 300 1rem/1.4 var(--sans); padding: 1.6rem 0 .6rem; border-radius: 0; outline: none; -webkit-appearance: none; appearance: none;
	transition: border-color .4s;
}
.field textarea { resize: vertical; min-height: 5.5rem; }
.field select { cursor: pointer; }
.field select option { color: var(--navy); }
.field input[type="date"] { color-scheme: dark; }
.field.select::after { content: ""; position: absolute; right: .25rem; bottom: 1.1rem; width: 6px; height: 6px; border-right: 1px solid var(--bronze); border-bottom: 1px solid var(--bronze); transform: rotate(45deg); pointer-events: none; }
.field .wpcf7-form-control-wrap { display: block; }
.field > .lbl {
	position: absolute; left: 0; top: 1.6rem; font-size: 1rem; color: rgba(255,255,255,.5); pointer-events: none;
	transform-origin: left top; transition: transform .4s var(--ease), color .4s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--bronze-light); }
.field:has(:focus) > .lbl,
.field:has(input:not(:placeholder-shown)) > .lbl,
.field:has(textarea:not(:placeholder-shown)) > .lbl,
.field.select > .lbl, .field > .lbl.is-up {
	transform: translateY(-1.35rem) scale(.72); color: var(--bronze);
	letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
}
.field.is-invalid input { border-color: #e28b7b; }
.hp { position: absolute !important; left: -9999px; }
.consent { display: flex; gap: .9rem; align-items: flex-start; margin: 2rem 0; font-size: .85rem; color: rgba(255,255,255,.65); cursor: pointer; }
.consent input { -webkit-appearance: none; appearance: none; flex: none; width: 1.1rem; height: 1.1rem; margin-top: .2rem; border: 1px solid var(--bronze); position: relative; cursor: pointer; }
.consent input:checked { background: var(--bronze-light); }
.consent input:checked::after { content: ""; position: absolute; left: .33rem; top: .1rem; width: .3rem; height: .55rem; border-right: 1.5px solid var(--navy); border-bottom: 1.5px solid var(--navy); transform: rotate(45deg); }
.consent a { color: var(--bronze-light); border-bottom: 1px solid currentColor; }
.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem 2rem; }
.form-note { margin: 0 !important; font-size: .78rem; color: rgba(255,255,255,.45); }
.form-status { margin: 1.5rem 0 0 !important; font-size: .95rem; min-height: 1.5em; color: var(--bronze-light); }
.form-status.is-error { color: #f0a494; }
.form.is-sending button { opacity: .6; pointer-events: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.7); padding: 0 0 2rem; font-size: .92rem; }
.site-footer .wrap { border-top: 1px solid var(--line-dark); }
.footer-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; padding-block: 4rem 3rem; }
.ba .footer-brand .logo { height: clamp(48px, 5vw, 68px); }
.footer-tag { font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.4rem); color: var(--white); margin: 0 !important; font-style: italic; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding-bottom: 3rem; }
.site-footer .label { margin-bottom: 1rem; }
.site-footer a { transition: color .3s; }
.site-footer a:hover, .footer-langs a[aria-current] { color: var(--bronze-light); }
.footer-langs { display: flex; flex-wrap: wrap; gap: .4rem 1.25rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 2rem; border-top: 1px solid var(--line-dark); font-size: .78rem; color: rgba(255,255,255,.45); }
.footer-bottom p { margin: 0 !important; display: flex; gap: 1.75rem; }

.mobile-bar { display: none; }

/* ---------- Legal ---------- */
.legal-page { background: var(--mist); padding: calc(var(--header-h) + 6rem) 0 var(--section); min-height: 80vh; }
.ba-legal .site-header, body:has(.legal-page) .site-header { background: var(--navy); }
.legal-wrap { max-width: 56rem; }
.legal-title { font-size: clamp(2.8rem, 2rem + 3vw, 5rem); color: var(--navy); margin-bottom: 3rem; }
.legal-body { color: var(--ink-soft); margin-bottom: 3rem; }
.legal-body h2 { font: 400 1.6rem/1.2 var(--serif); color: var(--navy); margin: 2.5rem 0 .75rem; }
.legal-page .btn-line { color: var(--navy); border-color: var(--bronze); }

/* ---------- Motion (JS enhanced) ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(40px); }
.js [data-reveal-img] { clip-path: inset(18% 0 0 0); }
.js .hero [data-hero-in] { opacity: 0; transform: translateY(24px); }
.js .hero [data-hero-line] { transform: translateY(110%); }
.js [data-split] .line > span { transform: translateY(110%); }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
	.js [data-reveal], .js .hero [data-hero-in] { opacity: 1; transform: none; }
	.js [data-reveal-img] { clip-path: none; }
	.js .hero [data-hero-line], .js [data-split] .line > span { transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
	.nav { display: none; }
	.menu-btn { display: block; }
	.header-cta { display: none; }
	.svc { grid-template-columns: 1fr; }
	.svc-visual { display: none; }
	.svc-mobile-img { display: block; aspect-ratio: 16 / 10; overflow: hidden; margin-bottom: 1.75rem; }
	.svc-mobile-img img { width: 100%; height: 100%; object-fit: cover; }
	.pc12-story { grid-template-columns: 1fr; }
	.pc12-sticky { display: none; }
	.pc12-step { min-height: 0; opacity: 1; padding-bottom: 4rem; }
	.pc12-step-img { display: block; aspect-ratio: 4 / 3; overflow: hidden; margin-bottom: 2rem; }
	.pc12-step-img img { width: 100%; height: 100%; object-fit: cover; }
	.contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
	.intro-head, .intro-copy { grid-column: 1 / -1; }
	.intro-media { grid-column: 1 / -1; aspect-ratio: 4 / 3; }
	.hero-progress { display: none; }
}

@media (max-width: 700px) {
	:root { --header-h: 72px; }
	.ba .logo, .ba .is-scrolled .logo { height: 34px; }
	.header-tools { gap: .5rem; }
	.hero-title { font-size: clamp(3.2rem, 16vw, 5rem); }
	.hero-cta .btn { flex: 1 1 100%; }
	.hero-foot { flex-direction: column; align-items: flex-start; gap: 1.25rem; padding-bottom: 5.5rem; }
	.scroll-cue { display: none; }
	.svc-trigger { grid-template-columns: 2.5rem 1fr 1.5rem; }
	.svc-panel-inner { padding-left: 0; }
	.specs { grid-template-columns: 1fr; }
	.spec, .spec + .spec { border-right: 0; border-bottom: 1px solid var(--line-dark); padding: 2rem 0; }
	.band { min-height: 70vh; }
	.contact-list li { grid-template-columns: 1fr; gap: .15rem; }
	.form-grid { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; }
	.site-footer { padding-bottom: 5.5rem; }
	.mobile-bar {
		display: grid; grid-template-columns: 1fr 1.4fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
		background: rgba(2, 18, 29, .92); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
		border-top: 1px solid var(--line-dark);
		transform: translateY(110%); transition: transform .6s var(--ease);
		padding-bottom: env(safe-area-inset-bottom);
	}
	.mobile-bar.is-visible { transform: none; }
	.mobile-bar a { padding: 1.15rem 1rem; text-align: center; font: 500 .7rem/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--white); }
	.mobile-bar a.is-primary { background: var(--bronze-light); color: var(--navy); }
}

/* Astra leftovers + image focal points */
#ast-scroll-top, .ast-scroll-top-icon { display: none !important; }
.pc12-img[data-story-img="0"] img, .pc12-step:first-child .pc12-step-img img { object-position: center 78%; }
.svc-img[data-svc-img="0"] img { object-position: center 65%; }

/* ---------- Corner radius (8px everywhere) ---------- */
:root { --radius: 8px; }
.btn, .skip-link,
.lang-list, .lang-list a,
.intro-media, .svc-visual, .svc-mobile-img,
.pc12-frame, .pc12-step-img,
.form, .field textarea,
.legal-page .btn-line { border-radius: var(--radius); }
.intro-media, .svc-visual, .pc12-frame { isolation: isolate; }
.consent input { border-radius: 4px; }
.field textarea { border: 1px solid rgba(227, 204, 154, .3); padding: 1.6rem .9rem .6rem; }
.field:has(textarea) > .lbl { left: .9rem; }
.field textarea:focus { border-color: var(--bronze-light); }
.menu-btn { border-radius: var(--radius); }
@media (max-width: 700px) {
	.mobile-bar { border-radius: var(--radius) var(--radius) 0 0; }
	.mobile-bar { overflow: hidden; }
}

/* ---------- Contact Form 7 ---------- */
.ba-form .field.is-invalid input, .field .wpcf7-not-valid { border-color: #f0a494 !important; }
.wpcf7-not-valid-tip { display: block; margin-top: .45rem; font-size: .75rem; color: #f0a494; }
.form .consent { margin: 2rem 0; }
.form .wpcf7-acceptance label { display: flex; gap: .9rem; align-items: flex-start; cursor: pointer; }
.form .wpcf7-list-item { margin: 0; }
.form .wpcf7-acceptance input { -webkit-appearance: none; appearance: none; flex: none; width: 1.1rem; height: 1.1rem; margin: .2rem 0 0; border: 1px solid var(--bronze); border-radius: 4px; position: relative; cursor: pointer; }
.form .wpcf7-acceptance input:checked { background: var(--bronze-light); }
.form .wpcf7-acceptance input:checked::after { content: ""; position: absolute; left: .33rem; top: .1rem; width: .3rem; height: .55rem; border-right: 1.5px solid var(--navy); border-bottom: 1.5px solid var(--navy); transform: rotate(45deg); }
.form .wpcf7-list-item-label { font-size: .85rem; color: rgba(255,255,255,.65); }
.form .wpcf7-list-item-label a { color: var(--bronze-light); border-bottom: 1px solid currentColor; }
.wpcf7-submit.btn { -webkit-appearance: none; appearance: none; transition: background-color .5s var(--ease), color .5s var(--ease); }
.wpcf7-submit.btn:hover { background: var(--white); }
.wpcf7-submit:disabled { opacity: .5; cursor: not-allowed; }
.ba-form.submitting .wpcf7-submit { opacity: .6; pointer-events: none; }
.wpcf7-spinner { background-color: var(--bronze); margin: 0 0 0 .5rem; }
.ba-form .wpcf7-response-output { margin: 1.75rem 0 0 !important; padding: 1rem 1.25rem !important; border: 1px solid var(--line-dark) !important; border-radius: var(--radius); font-size: .92rem; color: var(--bronze-light); }
.ba-form.invalid .wpcf7-response-output, .ba-form.unaccepted .wpcf7-response-output, .ba-form.failed .wpcf7-response-output, .ba-form.aborted .wpcf7-response-output, .ba-form.spam .wpcf7-response-output { border-color: rgba(240, 164, 148, .5) !important; color: #f0a494; }
.ba-form.sent .wpcf7-response-output { border-color: var(--bronze) !important; }
.screen-reader-response { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
/* ---------- Button text colours (beat `.ba a { color: inherit }`) ---------- */
.ba .btn-gold, .ba .btn-gold:hover, .ba .btn-gold:focus-visible { color: var(--navy); }
.ba .btn-line { color: var(--white); }
.ba .btn-line:hover, .ba .btn-line:focus-visible { color: var(--navy); }
.ba .legal-page .btn-line { color: var(--navy); }
.ba .mobile-bar a.is-primary { color: var(--navy); }

/* ---------- CF7 layout polish ---------- */
.wpcf7 .hidden-fields-container { display: none; border: 0; margin: 0; padding: 0; }
.ba-form.init .wpcf7-response-output, .ba-form .wpcf7-response-output:empty { display: none; }
.field > .lbl { top: auto; bottom: .7rem; }
.field:has(:focus) > .lbl,
.field:has(input:not(:placeholder-shown)) > .lbl,
.field.select > .lbl, .field > .lbl.is-up { transform: translateY(-1.75rem) scale(.72); }
.field:has(textarea) > .lbl { top: 1.1rem; bottom: auto; }
.field:has(textarea:focus) > .lbl,
.field:has(textarea:not(:placeholder-shown)) > .lbl { transform: translateY(-.7rem) scale(.72); }
.field input[type="date"] { min-height: 3.1rem; }
.form .wpcf7-acceptance input { background: transparent; }
.form .wpcf7-acceptance input:checked { background: var(--bronze-light); }
.wpcf7-submit.btn:disabled { opacity: 1; cursor: pointer; }
.field input, .field select { padding-left: 0 !important; padding-right: 0 !important; }
.field .wpcf7-form-control-wrap { position: static; }
.field .wpcf7-not-valid-tip { position: absolute; left: 0; top: calc(100% + .35rem); margin: 0; white-space: nowrap; }
.field:has(textarea) .wpcf7-not-valid-tip { left: 0; }

/* ---------- Heading spacing (beat `.ba h1/h2/h3 { margin: 0 }`) ---------- */
.ba .hero-title {
	font-size: clamp(3rem, 1.2rem + 6.8vw, 8.25rem);
	line-height: .98;
	margin-bottom: clamp(1.75rem, 1rem + 2.2vw, 3rem);
}
/* room for descenders (g, y, p) inside the masked lines */
.ba .hero-title .line, .ba .display .line, .ba .band-quote .line { padding-bottom: .16em; margin-bottom: -.1em; }
.ba .hero-sub { margin-top: 0; }
.ba .display + .section-lead, .ba .display + .intro-lead { margin-top: clamp(1.75rem, 1rem + 1.6vw, 2.75rem) !important; }
.ba .pc12-step h3 { margin-bottom: 1.25rem; }
.ba .legal-title { margin-bottom: 3rem; }
@media (max-width: 700px) {
	.ba .hero-title { font-size: clamp(2.7rem, 13vw, 4.25rem); margin-bottom: 1.75rem; }
}
.ba-form .form-grid { row-gap: 2.5rem; }

/* ==========================================================================
   Intro — cinematic pinned scene
   ========================================================================== */
.intro-cine { position: relative; background: var(--navy-deep); color: var(--white); isolation: isolate; overflow: hidden; }
.cine-media { position: absolute; inset: 0; z-index: 0; }
.cine-frame { position: absolute; inset: 0; overflow: hidden; background: var(--navy-deep); will-change: clip-path; }
.cine-img { position: absolute; inset: -4%; will-change: transform; }
.ba .cine-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; transform-origin: 55% 62%; animation: cineDrift 28s ease-in-out infinite alternate; }
@keyframes cineDrift {
	0%   { transform: scale(1) translate3d(0, 0, 0); }
	50%  { transform: scale(1.07) translate3d(-1.6%, -1%, 0); }
	100% { transform: scale(1.12) translate3d(1.2%, -2.2%, 0); }
}
.cine-light {
	position: absolute; inset: -25%; pointer-events: none; mix-blend-mode: screen; opacity: .75;
	background: radial-gradient(circle at 50% 50%, rgba(255, 196, 120, .38) 0%, rgba(255, 170, 90, .12) 22%, rgba(255, 170, 90, 0) 42%);
	animation: cineLight 17s ease-in-out infinite alternate;
}
@keyframes cineLight { from { transform: translate3d(22%, -8%, 0) scale(.9); } to { transform: translate3d(-6%, 6%, 0) scale(1.25); } }
.cine-particles { position: absolute; inset: 0; width: 100%; height: 100%; mix-blend-mode: screen; pointer-events: none; }
.cine-shade {
	position: absolute; inset: 0; pointer-events: none;
	background:
		linear-gradient(90deg, rgba(2, 18, 29, .88) 0%, rgba(2, 18, 29, .55) 42%, rgba(2, 18, 29, .12) 100%),
		linear-gradient(0deg, rgba(2, 18, 29, .92) 0%, rgba(2, 18, 29, .35) 38%, rgba(2, 18, 29, 0) 60%),
		linear-gradient(180deg, rgba(2, 18, 29, .55) 0%, rgba(2, 18, 29, 0) 22%);
}
.cine-dim { position: absolute; inset: 0; background: rgba(2, 18, 29, .42); pointer-events: none; }
.cine-grain {
	position: absolute; inset: -50%; pointer-events: none; opacity: .1; mix-blend-mode: overlay;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%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)'/%3E%3C/svg%3E");
	animation: cineGrain .9s steps(6) infinite;
}
@keyframes cineGrain { 0% { transform: translate(0, 0); } 20% { transform: translate(-4%, 3%); } 40% { transform: translate(3%, -5%); } 60% { transform: translate(-6%, -2%); } 80% { transform: translate(5%, 4%); } 100% { transform: translate(0, 0); } }

.cine-content {
	position: relative; z-index: 1; min-height: 100vh; min-height: 100svh;
	display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: auto 1fr auto;
	column-gap: clamp(1rem, 2.5vw, 2.5rem);
	padding-top: calc(var(--header-h) + clamp(1.5rem, 6vh, 4.5rem));
	padding-bottom: clamp(2rem, 5vh, 3.5rem);
}
.cine-head { grid-column: 1 / span 10; }
.ba .cine-label { color: var(--bronze-light); margin-bottom: 1.5rem; }
.ba .cine-title { font-family: var(--serif); font-weight: 300; font-size: clamp(2.6rem, .8rem + 5.2vw, 6.6rem); line-height: .98; letter-spacing: -.02em; color: var(--white); margin: 0; text-shadow: 0 2px 40px rgba(2, 18, 29, .35); }
.cine-title .cl { display: block; overflow: hidden; padding-bottom: .16em; margin-bottom: -.1em; }
.cine-title .cl-in { display: block; }
.cine-title em { font-style: italic; color: var(--bronze-light); }

.cine-body { grid-column: 1 / -1; align-self: end; display: grid; grid-template-columns: repeat(12, 1fr); column-gap: inherit; margin-bottom: clamp(2rem, 5.5vh, 3.75rem); }
.ba .cine-lead { grid-column: 1 / span 6; margin: 0; font: 300 clamp(1.35rem, .95rem + 1.25vw, 2.2rem)/1.32 var(--serif); color: rgba(255, 255, 255, .94); }
.cine-copy { grid-column: 8 / span 5; align-self: end; display: grid; gap: 1.1rem; }
.ba .cine-copy p { margin: 0; font-size: clamp(.92rem, .88rem + .15vw, 1rem); line-height: 1.75; color: rgba(255, 255, 255, .74); }

.cine-values { grid-column: 1 / -1; position: relative; display: flex; align-items: center; flex-wrap: wrap; gap: 1rem clamp(1.5rem, 3vw, 3rem); padding-top: 1.6rem; border-top: 1px solid rgba(227, 204, 154, .16); }
.cine-values-line { position: absolute; left: 0; right: 0; top: -1px; height: 1px; background: linear-gradient(90deg, var(--bronze-light), rgba(227, 204, 154, .2)); transform-origin: left; }
.ba .cine-swiss { display: flex; align-items: center; gap: .9rem; margin: 0; font: 400 clamp(1rem, .9rem + .3vw, 1.2rem)/1.3 var(--serif); color: rgba(255, 255, 255, .88); }
.cine-swiss svg { width: 26px; height: 26px; flex: none; }
.cine-swiss rect { fill: #d52b1e; }
.cine-swiss path { fill: #fff; }
.cine-values ol { display: flex; flex-wrap: wrap; gap: .6rem clamp(1.25rem, 2.4vw, 2.5rem); margin-left: auto; }
.cine-values li { display: flex; align-items: baseline; gap: .6rem; font: 500 .7rem/1.4 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--white); }
.cine-values li span { font-size: .6rem; color: var(--bronze); letter-spacing: .1em; }

.cine-progress { position: absolute; z-index: 2; right: clamp(.75rem, 1.6vw, 1.75rem); top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; align-items: center; gap: .7rem; font: 500 .6rem/1 var(--sans); letter-spacing: .15em; color: rgba(255, 255, 255, .4); }
.cine-progress span { transition: color .5s var(--ease); }
.cine-progress span.is-active { color: var(--bronze-light); }
.cine-progress i { width: 1px; height: 3.5rem; background: rgba(255, 255, 255, .16); }

/* Tablet / phone / short screens: sticky background, text scrolls over it */
@media (max-width: 1023px) {
	.intro-cine { overflow: visible; }
	.cine-media { position: sticky; inset: auto; top: 0; height: 100vh; height: 100svh; }
	.cine-content { margin-top: -100vh; margin-top: -100svh; display: flex; flex-direction: column; padding-top: 30vh; padding-bottom: 20vh; }
	.cine-head { margin-bottom: 38vh; }
	.cine-body { display: flex; flex-direction: column; gap: 38vh; margin-bottom: 38vh; }
	.cine-copy { gap: 1.25rem; }
	.cine-values { flex-direction: column; align-items: flex-start; }
	.cine-values ol { margin-left: 0; }
	.cine-progress { display: none; }
	.cine-shade { background: linear-gradient(180deg, rgba(2, 18, 29, .55) 0%, rgba(2, 18, 29, .35) 40%, rgba(2, 18, 29, .8) 100%); }
	.ba .cine-lead, .ba .cine-copy p { text-shadow: 0 1px 24px rgba(2, 18, 29, .6); }
}
@media (prefers-reduced-motion: reduce) {
	.ba .cine-img img, .cine-light, .cine-grain { animation: none !important; }
}

/* ==========================================================================
   Custom select (Service)
   ========================================================================== */
.ba-select { position: relative; }
.ba-select select { position: absolute !important; opacity: 0; pointer-events: none; width: 1px !important; height: 1px !important; }
.field.select.is-enhanced::after { display: none; }
.ba-select-btn {
	width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
	background: transparent; color: var(--white); border: 0; border-bottom: 1px solid rgba(227, 204, 154, .3);
	font: 300 1rem/1.4 var(--sans); text-align: left; padding: 1.6rem 0 .6rem; cursor: pointer; transition: border-color .4s;
}
.ba-select-btn:hover, .ba-select.is-open .ba-select-btn, .ba-select-btn:focus-visible { border-color: var(--bronze-light); outline: none; }
.ba-select-chev { position: relative; width: 1.6rem; height: 1.6rem; flex: none; border: 1px solid rgba(227, 204, 154, .35); border-radius: 50%; transition: transform .5s var(--ease), background-color .4s, border-color .4s; }
.ba-select-chev::after { content: ""; position: absolute; left: 50%; top: 45%; width: 5px; height: 5px; border-right: 1px solid var(--bronze-light); border-bottom: 1px solid var(--bronze-light); transform: translate(-50%, -50%) rotate(45deg); }
.ba-select.is-open .ba-select-chev { transform: rotate(180deg); background: rgba(227, 204, 154, .1); border-color: var(--bronze-light); }
.ba-select-list {
	position: absolute; left: 0; right: 0; top: calc(100% + .6rem); z-index: 20; margin: 0; padding: .45rem;
	background: rgba(6, 30, 46, .96); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
	border: 1px solid rgba(227, 204, 154, .22); border-radius: var(--radius);
	box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .6);
	opacity: 0; visibility: hidden; transform: translateY(-8px) scale(.98); transform-origin: top center;
	transition: opacity .35s var(--ease), transform .45s var(--ease), visibility .35s;
}
.ba-select.is-open .ba-select-list { opacity: 1; visibility: visible; transform: none; }
.ba-select-list li {
	position: relative; display: flex; align-items: center; gap: 1rem; padding: .95rem 1rem; border-radius: 6px; cursor: pointer;
	font-size: .95rem; color: rgba(255, 255, 255, .78); transition: background-color .3s, color .3s;
}
.ba-select-list li + li { margin-top: 2px; }
.ba-select-list li .n { font: 500 .62rem var(--sans); letter-spacing: .15em; color: var(--bronze); width: 1.4rem; }
.ba-select-list li .tick { margin-left: auto; width: 8px; height: 13px; border-right: 1.5px solid var(--bronze-light); border-bottom: 1.5px solid var(--bronze-light); transform: rotate(45deg) translate(-2px, -2px); opacity: 0; transition: opacity .3s; }
.ba-select-list li:hover, .ba-select-list li.is-focus { background: rgba(227, 204, 154, .09); color: var(--white); }
.ba-select-list li[aria-selected="true"] { color: var(--bronze-light); }
.ba-select-list li[aria-selected="true"] .tick { opacity: 1; }
.field.select:has(.ba-select.is-open) { z-index: 30; }
.cine-dim { background: rgba(2, 18, 29, .3); }
@media (max-width: 1023px) {
	.cine-shade { background: linear-gradient(180deg, rgba(2, 18, 29, .5) 0%, rgba(2, 18, 29, .12) 35%, rgba(2, 18, 29, .12) 60%, rgba(2, 18, 29, .5) 100%); }
	.cine-dim { background: rgba(2, 18, 29, .28); }
	.ba .cine-img img { object-position: 50% 62%; }
	.ba .cine-lead, .ba .cine-copy p, .ba .cine-title, .ba .cine-swiss { text-shadow: 0 2px 18px rgba(2, 18, 29, .85), 0 0 2px rgba(2, 18, 29, .5); }
}

/* sticky needs a non-scrolling body: clip instead of hidden */
body.ba { overflow-x: clip; }
@supports not (overflow: clip) { body.ba { overflow-x: visible; } html { overflow-x: hidden; } }

/* ---------- Intro desktop: plane in the clear lower-right, text around it ---------- */
@media (min-width: 1024px) {
	.cine-img { inset: -4% -46% -4% 0; }
	.ba .cine-img img { object-position: 50% 92%; transform-origin: 50% 80%; }
	.cine-content { grid-template-rows: auto 1fr auto; }
	.cine-head { grid-column: 1 / span 7; grid-row: 1; }
	.ba .cine-title { font-size: clamp(2.6rem, .6rem + 4.3vw, 5.9rem); }
	.cine-body { display: contents; }
	.ba .cine-lead { grid-column: 1 / span 6; grid-row: 2; align-self: end; margin-bottom: clamp(2rem, 5.5vh, 3.75rem); font-size: clamp(1.25rem, .9rem + 1vw, 1.9rem); }
	.cine-copy { grid-column: 9 / span 4; grid-row: 1; align-self: start; padding-top: calc(1.5rem + 2.6em); gap: .9rem; }
	.ba .cine-copy p { font-size: clamp(.86rem, .8rem + .15vw, .95rem); line-height: 1.7; }
	.cine-values { grid-row: 3; }
	/* soften the shade on the right so the plane reads clearly */
	.cine-shade {
		background:
			linear-gradient(90deg, rgba(2, 18, 29, .9) 0%, rgba(2, 18, 29, .62) 38%, rgba(2, 18, 29, .1) 62%, rgba(2, 18, 29, .35) 100%),
			linear-gradient(0deg, rgba(2, 18, 29, .88) 0%, rgba(2, 18, 29, .2) 22%, rgba(2, 18, 29, 0) 40%),
			linear-gradient(180deg, rgba(2, 18, 29, .6) 0%, rgba(2, 18, 29, 0) 45%);
	}
}
@media (min-width: 1024px) {
	.cine-img { inset: -4% -46% -12% 0; }
	.ba .cine-img img { object-position: 50% 100%; }
}

/* ==========================================================================
   Hero — cinematic "video" slideshow
   ========================================================================== */
.hero-media { animation: camSway 11s ease-in-out infinite; will-change: transform; }
@keyframes camSway {
	0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
	25%      { transform: translate3d(-.35%, .25%, 0) rotate(-.12deg); }
	50%      { transform: translate3d(.25%, -.3%, 0) rotate(.1deg); }
	75%      { transform: translate3d(.3%, .2%, 0) rotate(-.06deg); }
}
.ba .hero-slide { opacity: 0; transition: none; overflow: hidden; }
.ba .hero-slide img, .ba .hero-slide.is-active img { animation: none; transform: none; width: 100%; height: 100%; object-fit: cover; }
.hs-move { position: absolute; inset: -6%; will-change: transform; }
.hero-slide.is-active { opacity: 1; z-index: 2; animation: cutIn 1.7s cubic-bezier(.3, .7, .2, 1) both; }
.hero-slide.is-leaving { z-index: 1; animation: cutOut 1.7s cubic-bezier(.5, 0, .7, .4) both; }
@keyframes cutIn  { from { opacity: 0; filter: blur(14px) brightness(1.35); } 60% { filter: blur(2px) brightness(1.08); } to { opacity: 1; filter: blur(0) brightness(1); } }
@keyframes cutOut { from { opacity: 1; filter: blur(0); transform: scale(1); } to { opacity: 0; filter: blur(10px); transform: scale(1.08); } }
.hero-slide:first-child.is-active { animation-duration: 0s; }

/* Per-shot camera moves (run while visible, incl. the fade-out) */
.hero-slide.is-active .hs-move, .hero-slide.is-leaving .hs-move { animation-duration: 8.8s; animation-timing-function: cubic-bezier(.25, .1, .25, 1); animation-fill-mode: both; }
.m-track.is-active .hs-move, .m-track.is-leaving .hs-move { animation-name: mTrack; transform-origin: 60% 55%; }
.m-push.is-active .hs-move, .m-push.is-leaving .hs-move { animation-name: mPush; transform-origin: 50% 58%; }
.m-aerial.is-active .hs-move, .m-aerial.is-leaving .hs-move { animation-name: mAerial; transform-origin: 40% 45%; }
@keyframes mTrack  { from { transform: scale(1.16) translate3d(-3.2%, 2.6%, 0) rotate(-.5deg); } to { transform: scale(1.04) translate3d(2.6%, -2.2%, 0) rotate(.35deg); } }
@keyframes mPush   { from { transform: scale(1.01) translate3d(0, 1.2%, 0); } to { transform: scale(1.22) translate3d(0, -1.4%, 0); } }
@keyframes mAerial { from { transform: scale(1.2) translate3d(3.4%, 3%, 0) rotate(1.4deg); } to { transform: scale(1.06) translate3d(-3%, -2.4%, 0) rotate(-.3deg); } }

/* Shot-specific atmosphere */
.fx { position: absolute; inset: 0; pointer-events: none; }
.fx-glint {
	mix-blend-mode: screen; opacity: .55;
	background:
		radial-gradient(ellipse 22% 9% at 30% 70%, rgba(255, 255, 255, .5), rgba(255, 255, 255, 0) 70%),
		radial-gradient(ellipse 14% 6% at 70% 82%, rgba(210, 235, 255, .45), rgba(210, 235, 255, 0) 70%);
	animation: glint 6s ease-in-out infinite alternate;
}
@keyframes glint { from { transform: translate3d(-8%, 2%, 0); opacity: .25; } 50% { opacity: .6; } to { transform: translate3d(10%, -3%, 0); opacity: .3; } }
.fx-dust {
	mix-blend-mode: screen; opacity: .7;
	background:
		radial-gradient(ellipse 45% 30% at 50% 78%, rgba(255, 200, 140, .35), rgba(255, 200, 140, 0) 70%),
		radial-gradient(ellipse 35% 25% at 20% 70%, rgba(255, 220, 180, .22), rgba(255, 220, 180, 0) 70%),
		radial-gradient(ellipse 35% 25% at 82% 72%, rgba(255, 220, 180, .22), rgba(255, 220, 180, 0) 70%);
	animation: dustDrift 9s ease-in-out infinite alternate;
}
@keyframes dustDrift { from { transform: translate3d(-4%, 1%, 0) scale(1); } to { transform: translate3d(5%, -2%, 0) scale(1.15); } }
.fx-clouds {
	opacity: .5; mix-blend-mode: multiply; inset: -30%;
	background:
		radial-gradient(ellipse 22% 16% at 25% 30%, rgba(4, 28, 44, .55), rgba(4, 28, 44, 0) 70%),
		radial-gradient(ellipse 28% 18% at 70% 65%, rgba(4, 28, 44, .45), rgba(4, 28, 44, 0) 70%),
		radial-gradient(ellipse 18% 12% at 55% 15%, rgba(4, 28, 44, .4), rgba(4, 28, 44, 0) 70%);
	animation: cloudPass 14s linear infinite;
}
@keyframes cloudPass { from { transform: translate3d(-12%, 8%, 0); } to { transform: translate3d(14%, -10%, 0); } }

/* Shared film layer */
.hero-particles { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 3; mix-blend-mode: screen; pointer-events: none; }
.hero-grain {
	position: absolute; inset: -50%; z-index: 4; pointer-events: none; opacity: .08; mix-blend-mode: overlay;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%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)'/%3E%3C/svg%3E");
	animation: cineGrain .9s steps(6) infinite;
}
.hero-flash { position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0; mix-blend-mode: screen; background: linear-gradient(105deg, rgba(255, 225, 180, 0) 30%, rgba(255, 225, 180, .45) 48%, rgba(255, 255, 255, .15) 52%, rgba(255, 225, 180, 0) 70%); transform: translateX(-60%); }
.hero-flash.is-on { animation: flashSweep 1.6s cubic-bezier(.4, 0, .2, 1) both; }
@keyframes flashSweep { 0% { opacity: 0; transform: translateX(-60%); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateX(60%); } }
.hero-shade { z-index: 5; }

@media (prefers-reduced-motion: reduce) {
	.hero-media, .hs-move, .fx, .hero-grain, .hero-flash, .hero-slide { animation: none !important; }
}
.ba .hero-content, .ba .hero-foot { z-index: 6; }
@media (min-width: 1024px) {
	.cine-copy { padding-top: .2rem; }
	.cine-img { inset: -4% -46% -16% 0; }
}

/* ---------- Intro desktop: height-based image = near-native sharpness ---------- */
@media (min-width: 1024px) {
	.cine-img {
		inset: auto; top: auto; left: auto;
		right: -41vh; bottom: -6vh;
		height: 110vh; width: auto; aspect-ratio: 1824 / 1216;
		-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 32%);
		mask-image: linear-gradient(90deg, transparent 0%, #000 32%);
	}
	.ba .cine-img img { object-position: 50% 50%; animation-name: cineDriftSoft; image-rendering: -webkit-optimize-contrast; }
	@keyframes cineDriftSoft {
		0%   { transform: scale(1) translate3d(0, 0, 0); }
		50%  { transform: scale(1.025) translate3d(-.6%, -.4%, 0); }
		100% { transform: scale(1.045) translate3d(.5%, -.9%, 0); }
	}
	.cine-dim { background: rgba(2, 18, 29, .18); }
}

/* ==========================================================================
   Slider cursor (hero)
   ========================================================================== */
.ba-cursor {
	position: fixed; left: 0; top: 0; z-index: 200; width: 112px; height: 112px; margin: -56px 0 0 -56px;
	border-radius: 50%; pointer-events: none; display: grid; place-items: center;
	background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .22);
	-webkit-backdrop-filter: blur(10px) saturate(130%); backdrop-filter: blur(10px) saturate(130%);
	box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .45);
	opacity: 0; transform: translate3d(-200px, -200px, 0) scale(.3);
	transition: opacity .35s var(--ease), scale .45s var(--ease), background-color .3s;
}
.ba-cursor.is-on { opacity: 1; }
.ba-cursor.is-down { background: rgba(227, 204, 154, .28); }
.ba-cursor svg { width: 26px; height: 16px; stroke: #fff; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transition: transform .4s var(--ease); }
.ba-cursor.is-down svg { transform: scaleX(1.25); }
@media (hover: hover) and (pointer: fine) {
	.hero.has-cursor, .hero.has-cursor .hero-media { cursor: none; }
	.hero.has-cursor a, .hero.has-cursor button { cursor: pointer; }
}
.hero.is-dragging { user-select: none; }
/* 4K intro image is 16:9 */
@media (min-width: 1024px) { .cine-img { aspect-ratio: 16 / 9; right: -52vh; } }
@media (min-width: 1024px) { .cine-img { height: 104vh; bottom: 9vh; right: -54vh; } }
@keyframes mAerial { from { transform: scale(1.1) translate3d(2.2%, 2%, 0) rotate(.9deg); } to { transform: scale(1.02) translate3d(-2%, -1.6%, 0) rotate(-.2deg); } }
@keyframes mTrack  { from { transform: scale(1.1) translate3d(-2.2%, 1.8%, 0) rotate(-.4deg); } to { transform: scale(1.02) translate3d(1.8%, -1.5%, 0) rotate(.3deg); } }
/* stacking: hero is its own layer; intro (pinned) always paints above it */
.ba .hero { z-index: 1; isolation: isolate; }
.ba .intro-cine { z-index: 3; }
.ba .pin-spacer { z-index: 3; position: relative; }

/* ==========================================================================
   Services — chapters over full-bleed imagery
   Default: stacked full-height cards (mobile, reduced motion, no JS)
   html.svx-pin: pinned cinematic stage (desktop, set by JS)
   ========================================================================== */
.svx { position: relative; z-index: 3; background: var(--navy-deep); color: var(--white); }
.svx-stage { position: relative; }
.svx-bgs, .svx-index { display: none; }

.svx-head { padding-top: var(--section); padding-bottom: clamp(3rem, 8vw, 5rem); max-width: 60rem; }
.ba .svx-label { color: var(--bronze-light); margin-bottom: 1.5rem; }
.ba .svx-h { font-family: var(--serif); font-weight: 300; font-size: clamp(2.6rem, 1rem + 4.6vw, 6rem); line-height: .98; letter-spacing: -.02em; color: var(--white); margin: 0; }
.svx-h .cl { display: block; overflow: hidden; padding-bottom: .16em; margin-bottom: -.1em; }
.svx-h .cl-in { display: block; }
.svx-h em { font-style: italic; color: var(--bronze-light); }
.ba .svx-lead { margin: 1.75rem 0 0; max-width: 32rem; color: rgba(255, 255, 255, .72); }

.svx-ch {
	position: relative; isolation: isolate; min-height: 100vh; min-height: 100svh;
	display: flex; flex-direction: column; justify-content: flex-end;
	padding-block: 8rem 3.5rem; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter);
	border-top: 1px solid rgba(227, 204, 154, .12);
}
.svx-ch-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.ba .svx-ch-bg img { width: 100%; height: 100%; object-fit: cover; }
.svx-ch-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2, 18, 29, .35) 0%, rgba(2, 18, 29, .15) 30%, rgba(2, 18, 29, .78) 62%, rgba(2, 18, 29, .96) 100%); }

.ba .svx-num { display: flex; align-items: baseline; gap: .7rem; margin: 0 0 1.1rem; }
.svx-num-big { font: 300 clamp(3rem, 2rem + 3vw, 5rem)/.9 var(--serif); color: var(--bronze-light); }
.svx-num-of { font: 500 .7rem/1 var(--sans); letter-spacing: .2em; color: rgba(255, 255, 255, .5); }
.ba .svx-title { font-family: var(--serif); font-weight: 300; font-size: clamp(2.2rem, 1rem + 3.6vw, 5rem); line-height: 1; letter-spacing: -.015em; color: var(--white); margin: 0 0 1rem; }
.ba .svx-short { margin: 0 0 1.5rem; font: 500 .72rem/1.5 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--bronze-light); }
.ba .svx-intro { margin: 0 0 1.75rem; max-width: 38rem; font-size: clamp(.98rem, .92rem + .2vw, 1.1rem); line-height: 1.7; color: rgba(255, 255, 255, .82); }
.svx-items { display: grid; grid-template-columns: 1fr; column-gap: 2.5rem; max-width: 46rem; }
.svx-items li { display: flex; gap: 1rem; align-items: baseline; padding: .85rem 0; border-top: 1px solid rgba(227, 204, 154, .16); font-size: .95rem; line-height: 1.5; color: rgba(255, 255, 255, .88); }
.svx-items li span { flex: none; font: 500 .62rem/1 var(--sans); letter-spacing: .12em; color: var(--bronze); }
.ba .svx-note { margin: 1.5rem 0 0; max-width: 38rem; font-size: .82rem; font-style: italic; color: rgba(255, 255, 255, .55); }

/* ---------- Pinned stage ---------- */
.svx-pin .svx-stage { height: 100vh; overflow: hidden; }
.svx-pin .svx-bgs { display: block; position: absolute; inset: 0; }
.svx-pin .svx-bg { position: absolute; inset: 0; overflow: hidden; will-change: clip-path; }
.svx-pin .svx-bg-in { position: absolute; inset: 0; will-change: transform; }
.svx-pin .svx-bg-in img { width: 100%; height: 100%; object-fit: cover; }
.svx-pin .svx-dim { position: absolute; inset: 0; background: rgba(2, 18, 29, .3); }
.svx-pin .svx-shade {
	position: absolute; inset: 0;
	background:
		linear-gradient(90deg, rgba(2, 18, 29, .92) 0%, rgba(2, 18, 29, .74) 34%, rgba(2, 18, 29, .2) 62%, rgba(2, 18, 29, .55) 100%),
		linear-gradient(0deg, rgba(2, 18, 29, .75) 0%, rgba(2, 18, 29, 0) 45%),
		linear-gradient(180deg, rgba(2, 18, 29, .55) 0%, rgba(2, 18, 29, 0) 25%);
}
.svx-pin .svx-grain {
	position: absolute; inset: -50%; opacity: .08; mix-blend-mode: overlay; pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%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)'/%3E%3C/svg%3E");
	animation: cineGrain .9s steps(6) infinite;
}
.svx-pin .svx-ui { position: relative; z-index: 2; height: 100%; }
.svx-pin .svx-head { position: absolute; left: var(--gutter); bottom: 16vh; padding: 0; }
.svx-pin .svx-ch {
	position: absolute; left: var(--gutter); bottom: 8vh; width: min(56%, 52rem);
	min-height: 0; margin: 0; padding: 0; border: 0; display: block; visibility: hidden;
}
.svx-pin .svx-ch-bg { display: none; }
.svx-pin .svx-items { grid-template-columns: 1fr 1fr; }
.svx-pin .svx-index {
	display: flex; flex-direction: column; justify-content: center; gap: .15rem;
	position: absolute; right: var(--gutter); top: 0; bottom: 0; width: 15.5rem; padding-left: 1.5rem;
}
.svx-index-track { position: absolute; left: 0; top: 50%; height: 12.5rem; transform: translateY(-50%); width: 1px; background: rgba(255, 255, 255, .15); }
.svx-index-fill { position: absolute; inset: 0; background: var(--bronze-light); transform: scaleY(0); transform-origin: top; }
.svx-index button {
	display: flex; align-items: baseline; gap: .9rem; width: 100%; padding: .95rem 0; background: none; border: 0; cursor: pointer; text-align: left;
	font: 500 .68rem/1.4 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: rgba(255, 255, 255, .42);
	transition: color .5s var(--ease), transform .5s var(--ease);
}
.svx-index button .n { color: rgba(227, 204, 154, .5); transition: color .5s var(--ease); }
.svx-index button:hover { color: rgba(255, 255, 255, .8); }
.svx-index button.is-active { color: var(--white); transform: translateX(.5rem); }
.svx-index button.is-active .n { color: var(--bronze-light); }

@media (max-height: 820px) {
	.svx-pin .svx-ch { bottom: 5vh; }
	.svx-pin .svx-num-big { font-size: 3rem; }
	.svx-pin .svx-title { font-size: clamp(2rem, 1rem + 2.6vw, 3.6rem); }
	.svx-pin .svx-intro { margin-bottom: 1.1rem; }
	.svx-pin .svx-items li { padding: .6rem 0; font-size: .88rem; }
}
.svx-pin .svx-bg[data-i="3"] img, .svx-ch[data-i="3"] .svx-ch-bg img { filter: brightness(1.45) contrast(1.05); }
.svx-pin .svx-index { width: 18.5rem; }
.svx-pin .svx-index button .t { white-space: nowrap; }
/* Bullets: one line each (single column, no wrapping) from tablet up */
@media (min-width: 768px) {
	.svx-items, .svx-pin .svx-items { grid-template-columns: 1fr; max-width: none; }
	.svx-items li { white-space: nowrap; }
}
.svx-pin .svx-ch { width: min(62%, 56rem); }
.svx-pin .svx-items li { padding: .72rem 0; }
@media (max-height: 820px) { .svx-pin .svx-items li { padding: .5rem 0; } .svx-pin .svx-intro { margin-bottom: .9rem; } .svx-pin .svx-note { margin-top: .9rem; } }

/* ==========================================================================
   Services — "video" layer: camera moves, per-shot atmosphere, film look
   Animations only run on the live shot (.is-live) to keep it smooth.
   ========================================================================== */
.svx-cam { position: absolute; inset: -6%; will-change: transform; animation: none 16s cubic-bezier(.45, .05, .55, .95) infinite alternate; animation-play-state: paused; }
.ba .svx-cam img { width: 100%; height: 100%; object-fit: cover; }
.svx-fx { position: absolute; inset: 0; pointer-events: none; animation-play-state: paused; }
.is-live .svx-cam, .is-live .svx-fx { animation-play-state: running; }

/* 01 Flight — dust take-off: push-in toward the aircraft, rolling dust */
[data-i="0"] .svx-cam { animation-name: camPush; transform-origin: 56% 52%; }
@keyframes camPush { 0% { transform: scale(1) translate3d(0, 0, 0); } 100% { transform: scale(1.14) translate3d(-.8%, .6%, 0); } }
[data-i="0"] .svx-fx { mix-blend-mode: screen; opacity: .8; background: radial-gradient(ellipse 50% 28% at 50% 72%, rgba(255, 210, 160, .34), transparent 70%), radial-gradient(ellipse 30% 20% at 22% 68%, rgba(255, 225, 190, .22), transparent 70%), radial-gradient(ellipse 30% 20% at 80% 70%, rgba(255, 225, 190, .22), transparent 70%); animation: dustRoll 7s ease-in-out infinite alternate; }
[data-i="0"] .svx-fx-b { opacity: .55; background: radial-gradient(ellipse 60% 18% at 30% 88%, rgba(230, 190, 140, .35), transparent 70%); animation: hazeSlide 11s linear infinite; }
@keyframes dustRoll { from { transform: translate3d(-5%, 2%, 0) scale(1); } to { transform: translate3d(6%, -3%, 0) scale(1.2); } }
@keyframes hazeSlide { from { transform: translate3d(-30%, 0, 0); } to { transform: translate3d(40%, -4%, 0); } }

/* 02 Ground — taxi towards camera: slow truck + sun flare drifting */
[data-i="1"] .svx-cam { animation-name: camTruck; transform-origin: 50% 60%; }
@keyframes camTruck { 0% { transform: scale(1.06) translate3d(2.2%, .8%, 0) rotate(.35deg); } 100% { transform: scale(1.12) translate3d(-2.2%, -.6%, 0) rotate(-.25deg); } }
[data-i="1"] .svx-fx { mix-blend-mode: screen; background: radial-gradient(circle at 50% 50%, rgba(255, 214, 150, .5) 0%, rgba(255, 190, 120, .16) 14%, transparent 34%); animation: flareDrift 13s ease-in-out infinite alternate; }
[data-i="1"] .svx-fx-b { mix-blend-mode: screen; opacity: .6; background: radial-gradient(ellipse 45% 22% at 52% 80%, rgba(240, 170, 110, .3), transparent 70%); animation: dustRoll 9s ease-in-out infinite alternate-reverse; }
@keyframes flareDrift { from { transform: translate3d(28%, -32%, 0) scale(.9); opacity: .55; } 50% { opacity: .9; } to { transform: translate3d(10%, -24%, 0) scale(1.2); opacity: .65; } }

/* 03 Cabin — dolly forward, window light sweeping across seats, exposure breathing */
[data-i="2"] .svx-cam { animation-name: camDolly; transform-origin: 62% 50%; }
@keyframes camDolly { 0% { transform: scale(1.02) translate3d(1.5%, 0, 0); } 100% { transform: scale(1.13) translate3d(-1.2%, -.8%, 0); } }
[data-i="2"] .svx-fx { mix-blend-mode: soft-light; background: linear-gradient(100deg, transparent 20%, rgba(255, 244, 225, .75) 42%, rgba(255, 244, 225, .2) 50%, transparent 66%); animation: lightSweep 9s cubic-bezier(.45, 0, .55, 1) infinite; }
[data-i="2"] .svx-fx-b { background: rgba(255, 236, 205, .1); mix-blend-mode: overlay; animation: breathe 6s ease-in-out infinite alternate; }
@keyframes lightSweep { 0% { transform: translate3d(-70%, 0, 0); opacity: 0; } 25% { opacity: 1; } 75% { opacity: 1; } 100% { transform: translate3d(70%, 0, 0); opacity: 0; } }
@keyframes breathe { from { opacity: 0; } to { opacity: 1; } }

/* 04 Medical — night: slow tilt up the sky, twinkling stars, beacon glint */
[data-i="3"] .svx-cam { animation-name: camTilt; transform-origin: 45% 70%; }
@keyframes camTilt { 0% { transform: scale(1.1) translate3d(0, 2.4%, 0) rotate(-.4deg); } 100% { transform: scale(1.04) translate3d(-1.2%, -1.6%, 0) rotate(.3deg); } }
[data-i="3"] .svx-fx {
	mix-blend-mode: screen;
	background-image:
		radial-gradient(1.5px 1.5px at 12% 18%, #fff, transparent), radial-gradient(1px 1px at 28% 9%, #fff, transparent),
		radial-gradient(1.5px 1.5px at 46% 22%, #cfe3ff, transparent), radial-gradient(1px 1px at 63% 12%, #fff, transparent),
		radial-gradient(2px 2px at 78% 26%, #fff, transparent), radial-gradient(1px 1px at 88% 8%, #cfe3ff, transparent),
		radial-gradient(1.5px 1.5px at 36% 34%, #fff, transparent), radial-gradient(1px 1px at 55% 40%, #fff, transparent),
		radial-gradient(1.5px 1.5px at 70% 5%, #fff, transparent), radial-gradient(1px 1px at 5% 38%, #fff, transparent);
	animation: twinkle 3.2s ease-in-out infinite alternate;
}
[data-i="3"] .svx-fx-b { mix-blend-mode: screen; background: radial-gradient(circle at 57% 62%, rgba(255, 90, 80, .55) 0, rgba(255, 90, 80, .12) 1.2%, transparent 3%); animation: beacon 1.8s steps(1) infinite; }
@keyframes twinkle { 0% { opacity: .25; } 40% { opacity: .9; } 70% { opacity: .45; } 100% { opacity: 1; } }
@keyframes beacon { 0%, 70% { opacity: 0; } 72%, 82% { opacity: 1; } }

/* Shared film layer on the pinned stage */
.svx-pin .svx-bgs { --vel: 0; }

.svx-particles { display: none; }
.svx-pin .svx-particles { display: block; position: absolute; inset: 0; width: 100%; height: 100%; mix-blend-mode: screen; pointer-events: none; }
.svx-flash { display: none; }
.svx-pin .svx-flash { display: block; position: absolute; inset: 0; opacity: 0; pointer-events: none; mix-blend-mode: screen; background: linear-gradient(100deg, transparent 32%, rgba(255, 228, 185, .5) 48%, rgba(255, 255, 255, .18) 52%, transparent 68%); }
.svx-pin .svx-shade::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 50%, transparent 45%, rgba(2, 18, 29, .45) 100%); animation: vignette 8s ease-in-out infinite alternate; }
@keyframes vignette { from { opacity: .7; } to { opacity: 1; } }

/* Mobile cards: same shots, live while on screen */
.svx-ch-bg .svx-cam { inset: -8%; }
.svx-ch-bg .svx-fx { z-index: 0; }
.svx-ch-bg::after { z-index: 1; }

@media (prefers-reduced-motion: reduce) {
	.svx-cam, .svx-fx, .svx-bgs, .svx-shade::after { animation: none !important; }
}
/* Overlay locked to viewport; only image layers move (with bleed so no edge shows) */
.svx-pin .svx-bgs { transform: none !important; overflow: hidden; }
.svx-pin .svx-bg { inset: -5% -2%; }
.svx-pin .svx-bg-in { transform-origin: 50% 50%; }
.svx-pin .svx-bg-in img { transform: scale(calc(1 + var(--vel) * .018)); transition: transform .4s; }
.svx-pin .svx-dim, .svx-pin .svx-shade, .svx-pin .svx-grain, .svx-pin .svx-flash { z-index: 1; }
.svx-pin .svx-dim { inset: -2px; }
.svx-pin .svx-shade { inset: -2px; }
/* Seal stage edges: images never peek out at top/bottom (sub-pixel pin offsets) */
.svx-pin .svx-stage { background: var(--navy-deep); }
.svx-pin .svx-bgs { inset: 0; clip-path: inset(0); }
.svx-pin .svx-stage::before, .svx-pin .svx-stage::after { content: ""; position: absolute; left: 0; right: 0; height: 4px; z-index: 5; background: var(--navy-deep); pointer-events: none; }
.svx-pin .svx-stage::before { top: -1px; }
.svx-pin .svx-stage::after { bottom: -1px; }
.svx-pin .svx-shade { background:
	linear-gradient(90deg, rgba(2, 18, 29, .92) 0%, rgba(2, 18, 29, .74) 34%, rgba(2, 18, 29, .2) 62%, rgba(2, 18, 29, .55) 100%),
	linear-gradient(0deg, rgba(2, 18, 29, 1) 0%, rgba(2, 18, 29, .75) 6%, rgba(2, 18, 29, 0) 45%),
	linear-gradient(180deg, rgba(2, 18, 29, .7) 0%, rgba(2, 18, 29, 0) 25%); }
/* No white ever shows behind pinned scenes (e.g. while zooming the browser) */
html:has(body.ba), body.ba { background: var(--navy-deep); }
.ba main > section:not(.hero):not(.intro-cine):not(.svx):not(.pc12):not(.band):not(.contact) { background: var(--white); }
.ba .pin-spacer { background: var(--navy-deep); }
.ba .legal-page { background: var(--mist); }

/* ==========================================================================
   Lighter overlays: images read clearly; darkness only behind text
   ========================================================================== */
/* Hero */
.ba .hero-shade {
	background:
		linear-gradient(90deg, rgba(4, 28, 44, .72) 0%, rgba(4, 28, 44, .38) 34%, rgba(4, 28, 44, 0) 58%),
		linear-gradient(0deg, rgba(4, 28, 44, .82) 0%, rgba(4, 28, 44, 0) 22%),
		linear-gradient(180deg, rgba(4, 28, 44, .45) 0%, rgba(4, 28, 44, 0) 16%);
}
.ba .hero-title, .ba .hero-sub, .ba .hero .eyebrow { text-shadow: 0 2px 30px rgba(2, 18, 29, .45); }

/* Intro */
@media (min-width: 1024px) {
	.cine-dim { background: rgba(2, 18, 29, .06) !important; }
	.cine-shade {
		background:
			linear-gradient(90deg, rgba(2, 18, 29, .88) 0%, rgba(2, 18, 29, .5) 34%, rgba(2, 18, 29, 0) 56%),
			linear-gradient(0deg, rgba(2, 18, 29, .75) 0%, rgba(2, 18, 29, 0) 20%),
			linear-gradient(180deg, rgba(2, 18, 29, .45) 0%, rgba(2, 18, 29, 0) 20%) !important;
	}
	.ba .cine-copy p { text-shadow: 0 1px 18px rgba(2, 18, 29, .8), 0 0 2px rgba(2, 18, 29, .6); }
}

/* Services stage */
.svx-pin .svx-dim { background: rgba(2, 18, 29, .04); }
.svx-pin .svx-shade {
	background:
		linear-gradient(90deg, rgba(2, 18, 29, .8) 0%, rgba(2, 18, 29, .55) 30%, rgba(2, 18, 29, .12) 52%, rgba(2, 18, 29, 0) 70%, rgba(2, 18, 29, .28) 100%),
		linear-gradient(0deg, rgba(2, 18, 29, 1) 0%, rgba(2, 18, 29, .45) 7%, rgba(2, 18, 29, 0) 30%),
		linear-gradient(180deg, rgba(2, 18, 29, .5) 0%, rgba(2, 18, 29, 0) 16%);
}
.svx-pin .svx-shade::after { background: radial-gradient(ellipse at 60% 50%, transparent 60%, rgba(2, 18, 29, .3) 100%); }
.svx-pin .svx-ch .svx-title, .svx-pin .svx-ch .svx-intro, .svx-pin .svx-ch .svx-items li, .svx-pin .svx-head .svx-h, .svx-pin .svx-head .svx-lead { text-shadow: 0 2px 22px rgba(2, 18, 29, .55), 0 0 2px rgba(2, 18, 29, .35); }
.svx-pin .svx-index button { text-shadow: 0 1px 12px rgba(2, 18, 29, .9); }
.svx-pin .svx-bg[data-i="3"] img { filter: brightness(1.6) contrast(1.05); }

/* Mobile cards */
.svx-ch-bg::after { background: linear-gradient(180deg, rgba(2, 18, 29, .2) 0%, rgba(2, 18, 29, 0) 30%, rgba(2, 18, 29, .55) 58%, rgba(2, 18, 29, .92) 100%); }
/* Swiss values divider: one even, full-width hairline */
.cine-values { border-top: 0; }
.cine-values-line { top: 0; height: 1px; background: rgba(227, 204, 154, .55); }

/* ==========================================================================
   Services legibility: frosted glass panels behind text (image stays bright)
   ========================================================================== */
.svx-pin .svx-ch {
	left: calc(var(--gutter) - 2.25rem); bottom: 6vh; width: min(58%, 54rem);
	padding: 2.1rem 2.25rem 1.6rem; border-radius: var(--radius);
	background: linear-gradient(135deg, rgba(2, 18, 29, .72), rgba(2, 18, 29, .52));
	-webkit-backdrop-filter: blur(18px) saturate(120%); backdrop-filter: blur(18px) saturate(120%);
	border: 1px solid rgba(227, 204, 154, .16);
	box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .6);
}
.svx-pin .svx-ch .svx-title, .svx-pin .svx-ch .svx-intro, .svx-pin .svx-ch .svx-items li { text-shadow: none; }
.svx-pin .svx-ch .svx-intro { color: rgba(255, 255, 255, .9); }
.svx-pin .svx-ch .svx-items li { color: #fff; border-top-color: rgba(227, 204, 154, .2); }
.svx-pin .svx-ch .svx-items li span { color: var(--bronze-light); }
.svx-pin .svx-ch .svx-note { color: rgba(255, 255, 255, .7); }

.svx-pin .svx-index {
	top: 50%; bottom: auto; transform: translateY(-50%); height: auto;
	width: 21rem; padding: 1.1rem 1.4rem 1.1rem 2rem; border-radius: var(--radius);
	background: rgba(2, 18, 29, .58);
	-webkit-backdrop-filter: blur(16px) saturate(120%); backdrop-filter: blur(16px) saturate(120%);
	border: 1px solid rgba(227, 204, 154, .16);
}
.svx-pin .svx-index-track { left: 1rem; height: calc(100% - 2.6rem); }
.svx-pin .svx-index button { color: rgba(255, 255, 255, .78); text-shadow: none; padding: .8rem 0; }
.svx-pin .svx-index button .n { color: var(--bronze); }
.svx-pin .svx-index button.is-active { color: #fff; }
.svx-pin .svx-index button.is-active .n { color: var(--bronze-light); }

/* Opening heading: soft local shade instead of darkening the whole image */
.svx-pin .svx-head { padding: 2rem 2.25rem; left: calc(var(--gutter) - 2.25rem); border-radius: var(--radius); background: radial-gradient(ellipse at 30% 50%, rgba(2, 18, 29, .6), rgba(2, 18, 29, 0) 75%); }

@media (max-height: 820px) { .svx-pin .svx-ch { padding: 1.5rem 1.9rem 1.2rem; bottom: 4vh; } }
/* Swiss values divider: edge-to-edge */
.cine-values-line { left: calc(50% - 50vw); right: auto; width: 100vw; }
/* Intro image: fade the bottom edge too (no hard cut above the divider) */
@media (min-width: 1024px) {
	.cine-img {
		-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 32%), linear-gradient(0deg, transparent 0%, #000 22%);
		-webkit-mask-composite: source-in;
		mask-image: linear-gradient(90deg, transparent 0%, #000 32%), linear-gradient(0deg, transparent 0%, #000 22%);
		mask-composite: intersect;
	}
}

/* Services chapter title: one line */
.svx-pin .svx-ch .svx-title { font-size: clamp(2rem, 1rem + 2.2vw, 3.4rem); white-space: nowrap; }

/* ==========================================================================
   PC-12 — masonry grid: 1 wide card, then 2 columns
   ========================================================================== */
.pc12-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2vw, 1.75rem); }
.pcg-card { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--navy-deep); isolation: isolate; aspect-ratio: 4 / 5; }
.pcg-card.is-wide { grid-column: 1 / -1; aspect-ratio: 21 / 9; }
.pcg-media { position: absolute; inset: 0; overflow: hidden; }
.pcg-img { position: absolute; inset: -8% 0; will-change: transform; }
.ba .pcg-img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform 1.6s var(--ease); animation: pcgDrift 18s ease-in-out infinite alternate; }
@keyframes pcgDrift { from { object-position: 50% 45%; } to { object-position: 50% 58%; } }
.pcg-card:hover .pcg-img img { transform: scale(1.08); }
.pcg-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2, 18, 29, .88) 0%, rgba(2, 18, 29, .35) 38%, rgba(2, 18, 29, 0) 62%); transition: opacity .8s var(--ease); }
.pcg-card.is-wide .pcg-media::after { background: linear-gradient(90deg, rgba(2, 18, 29, .85) 0%, rgba(2, 18, 29, .35) 40%, rgba(2, 18, 29, 0) 65%), linear-gradient(0deg, rgba(2, 18, 29, .5) 0%, rgba(2, 18, 29, 0) 40%); }

.pcg-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: clamp(1.5rem, 3vw, 2.75rem); }
.pcg-card.is-wide .pcg-body { right: auto; top: 0; width: min(46%, 34rem); display: flex; flex-direction: column; justify-content: flex-end; }
.pcg-num { display: flex; align-items: center; gap: .9rem; font: 500 .7rem/1 var(--sans); letter-spacing: .2em; color: var(--bronze-light); margin-bottom: 1.1rem; }
.pcg-num i { display: block; height: 1px; width: 2.5rem; background: var(--bronze-light); transform-origin: left; transition: width .9s var(--ease); }
.pcg-card:hover .pcg-num i { width: 4.5rem; }
.ba .pcg-title { font-family: var(--serif); font-weight: 300; font-size: clamp(1.9rem, 1.2rem + 1.8vw, 3.1rem); line-height: 1.05; color: #fff; margin: 0 0 .9rem; }
.pcg-card.is-wide .pcg-title { font-size: clamp(2.2rem, 1.2rem + 2.8vw, 4.2rem); }
.ba .pcg-text { margin: 0; max-width: 30rem; color: rgba(255, 255, 255, .85); font-size: clamp(.95rem, .9rem + .2vw, 1.05rem); line-height: 1.65; }

/* Reveal (JS adds .is-in) */
.js .pcg-card .pcg-media { clip-path: inset(100% 0 0 0 round var(--radius)); transition: clip-path 1.4s var(--ease); }
.js .pcg-card .pcg-body > * { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform 1.1s var(--ease); }
.js .pcg-card.is-in .pcg-media { clip-path: inset(0 0 0 0 round var(--radius)); }
.js .pcg-card.is-in .pcg-body > * { opacity: 1; transform: none; }
.js .pcg-card.is-in .pcg-body > :nth-child(1) { transition-delay: .45s; }
.js .pcg-card.is-in .pcg-body > :nth-child(2) { transition-delay: .55s; }
.js .pcg-card.is-in .pcg-body > :nth-child(3) { transition-delay: .65s; }
.pcg-card + .pcg-card + .pcg-card .pcg-media { transition-delay: .15s; }

@media (max-width: 899px) {
	.pc12-grid { grid-template-columns: 1fr; }
	.pcg-card, .pcg-card.is-wide { aspect-ratio: 4 / 5; }
	.pcg-card.is-wide .pcg-body { width: auto; top: auto; right: 0; }
	.pcg-card.is-wide .pcg-media::after { background: linear-gradient(0deg, rgba(2, 18, 29, .88) 0%, rgba(2, 18, 29, .35) 38%, rgba(2, 18, 29, 0) 62%); }
}
@media (prefers-reduced-motion: reduce) {
	.js .pcg-card .pcg-media { clip-path: none; }
	.js .pcg-card .pcg-body > * { opacity: 1; transform: none; }
	.ba .pcg-img img { animation: none; }
}

/* ==========================================================================
   Services v3 — editorial split: solid navy text column | clean image window
   (no panels, no overlays on text)
   ========================================================================== */
.svx-pin .svx-stage { --col: 44%; background: var(--navy-deep); }
.svx-pin .svx-bgs {
	left: var(--col); top: 1.25rem; right: 1.25rem; bottom: 1.25rem;
	border-radius: var(--radius); overflow: hidden; clip-path: inset(0 round var(--radius));
}
.svx-pin .svx-dim { background: transparent; }
.svx-pin .svx-shade { background: linear-gradient(0deg, rgba(2, 18, 29, .35) 0%, rgba(2, 18, 29, 0) 22%); }
.svx-pin .svx-shade::after { background: radial-gradient(ellipse at 50% 50%, transparent 70%, rgba(2, 18, 29, .22) 100%); }
.svx-pin .svx-bg[data-i="3"] img { filter: brightness(1.35) contrast(1.05); }
.svx-pin .svx-stage::before, .svx-pin .svx-stage::after { display: none; }

/* text column */
.svx-pin .svx-ch, .svx-pin .svx-head {
	left: var(--gutter); right: auto; width: calc(var(--col) - var(--gutter) - clamp(2rem, 3.5vw, 4rem));
	top: 50%; bottom: auto; transform: translateY(-42%);
	padding: 0; border: 0; border-radius: 0; background: none; box-shadow: none;
	-webkit-backdrop-filter: none; backdrop-filter: none;
}
.svx-pin .svx-head { transform: translateY(-50%); }
.svx-pin .svx-ch .svx-title { font-size: clamp(2.1rem, .9rem + 2.2vw, 3.5rem); white-space: normal; }
.svx-pin .svx-ch .svx-intro { font-size: .98rem; color: rgba(255, 255, 255, .78); }
.svx-pin .svx-items { grid-template-columns: 1fr; }
.svx-pin .svx-ch .svx-items li { font-size: .86rem; padding: .62rem 0; white-space: nowrap; color: rgba(255, 255, 255, .92); }
.svx-pin .svx-h, .svx-pin .svx-lead, .svx-pin .svx-title, .svx-pin .svx-intro, .svx-pin .svx-items li { text-shadow: none !important; }

/* index: numbers row pinned to the top of the text column */
.svx-pin .svx-index {
	top: calc(var(--header-h) + 1.5rem); bottom: auto; left: var(--gutter); right: auto; transform: none;
	width: calc(var(--col) - var(--gutter) - clamp(2rem, 3.5vw, 4rem));
	flex-direction: row; justify-content: space-between; gap: 0; padding: 0 0 .9rem;
	background: none; border: 0; border-radius: 0; -webkit-backdrop-filter: none; backdrop-filter: none;
}
.svx-pin .svx-index-track { left: 0; right: 0; top: auto; bottom: 0; width: auto; height: 1px; transform: none; background: rgba(227, 204, 154, .18); }
.svx-pin .svx-index-fill { transform: scaleX(0); transform-origin: left; }
.svx-pin .svx-index button { width: auto; padding: .4rem 0; flex-direction: column; gap: .35rem; transform: none !important; text-shadow: none; }
.svx-pin .svx-index button .n { font: 300 1.5rem/1 var(--serif); letter-spacing: 0; color: rgba(255, 255, 255, .35); transition: color .5s var(--ease); }
.svx-pin .svx-index button .t { font-size: .56rem; letter-spacing: .16em; color: rgba(255, 255, 255, .38); max-width: 7.5rem; white-space: normal; line-height: 1.35; }
.svx-pin .svx-index button.is-active .n { color: var(--bronze-light); }
.svx-pin .svx-index button.is-active .t { color: #fff; }

/* ---------- Tablet / mobile cards: image frame on top, text on navy below ---------- */
.svx-ch { justify-content: flex-start; padding-block: 1.25rem 4rem; min-height: 0; border-top: 0; }
.svx-ch-bg { position: relative; inset: auto; z-index: 0; aspect-ratio: 4 / 3; border-radius: var(--radius); margin-bottom: 2rem; }
.svx-ch-bg::after { background: none; }
@media (min-width: 700px) and (max-width: 1199px) { .svx-ch-bg { aspect-ratio: 16 / 9; } }
/* Text column measured from the viewport (matches the image window edge) */
.svx-pin .svx-ui { max-width: none; padding-inline: var(--gutter); }
.svx-pin .svx-stage { --colw: 44vw; }
.svx-pin .svx-bgs { left: var(--colw); }
.svx-pin .svx-ch, .svx-pin .svx-head, .svx-pin .svx-index { left: var(--gutter); width: calc(var(--colw) - var(--gutter) - clamp(2rem, 3vw, 3.5rem)); }
@media (max-width: 1600px) { .svx-pin .svx-stage { --colw: 48vw; } }
@media (max-width: 1366px) { .svx-pin .svx-stage { --colw: 52vw; } .svx-pin .svx-ch .svx-items li { font-size: .8rem; } .svx-pin .svx-ch .svx-intro { font-size: .92rem; } }

/* ==========================================================================
   Services v4 — full-bleed background images, image fades into navy on the
   left where the text sits (no panels), index as a single row at the bottom
   ========================================================================== */
.svx-pin .svx-bgs { left: 0; top: 0; right: 0; bottom: 0; border-radius: 0; clip-path: none; }
.svx-pin .svx-bg-in {
	left: 22%;
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .55) 14%, #000 34%);
	mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .55) 14%, #000 34%);
}
.svx-pin .svx-shade {
	background:
		linear-gradient(90deg, rgba(2, 18, 29, .55) 0%, rgba(2, 18, 29, .25) 30%, rgba(2, 18, 29, 0) 48%),
		linear-gradient(0deg, rgba(2, 18, 29, .85) 0%, rgba(2, 18, 29, .3) 12%, rgba(2, 18, 29, 0) 26%),
		linear-gradient(180deg, rgba(2, 18, 29, .45) 0%, rgba(2, 18, 29, 0) 14%);
}
.svx-pin .svx-bg[data-i="3"] img { filter: brightness(1.45) contrast(1.05); }

/* chapter + head: vertically centred in the space above the index row */
.svx-pin .svx-ch, .svx-pin .svx-head { top: calc(50% - 2.5rem); transform: translateY(-50%); width: calc(40vw - var(--gutter)); }
@media (max-width: 1600px) { .svx-pin .svx-ch, .svx-pin .svx-head { width: calc(46vw - var(--gutter)); } }
@media (max-width: 1366px) { .svx-pin .svx-ch, .svx-pin .svx-head { width: calc(50vw - var(--gutter)); } }
.svx-pin .svx-ch .svx-title { font-size: clamp(2.1rem, .9rem + 2vw, 3.4rem); }

/* index row along the bottom */
.svx-pin .svx-index {
	top: auto; bottom: clamp(1.25rem, 3vh, 2.25rem); left: var(--gutter); right: var(--gutter); width: auto;
	flex-direction: row; justify-content: flex-start; gap: clamp(1.5rem, 3vw, 3.5rem); padding: 1.1rem 0 0;
}
.svx-pin .svx-index-track { top: 0; bottom: auto; left: 0; right: 0; height: 1px; background: rgba(255, 255, 255, .18); }
.svx-pin .svx-index button { flex-direction: row; align-items: baseline; gap: .7rem; padding: .2rem 0; }
.svx-pin .svx-index button .n { font: 300 1.35rem/1 var(--serif); color: rgba(255, 255, 255, .45); }
.svx-pin .svx-index button .t { font-size: .64rem; letter-spacing: .16em; white-space: nowrap; max-width: none; color: rgba(255, 255, 255, .6); }
.svx-pin .svx-index button:hover .t { color: #fff; }
.svx-pin .svx-index button.is-active .n { color: var(--bronze-light); }
.svx-pin .svx-index button.is-active .t { color: #fff; }
@media (max-width: 1366px) { .svx-pin .svx-index button .t { font-size: .58rem; } }
.svx-pin .svx-ch, .svx-pin .svx-head { top: calc(50% + 1.25rem); }
/* Services v4: deeper shade only across the text column, right side untouched */
.svx-pin .svx-shade {
	background:
		linear-gradient(90deg, rgba(2, 18, 29, .88) 0%, rgba(2, 18, 29, .78) 28%, rgba(2, 18, 29, .45) 42%, rgba(2, 18, 29, .12) 52%, rgba(2, 18, 29, 0) 60%),
		linear-gradient(0deg, rgba(2, 18, 29, .88) 0%, rgba(2, 18, 29, .3) 13%, rgba(2, 18, 29, 0) 26%),
		linear-gradient(180deg, rgba(2, 18, 29, .45) 0%, rgba(2, 18, 29, 0) 14%);
}
.svx-pin .svx-ch .svx-items li, .svx-pin .svx-ch .svx-intro, .svx-pin .svx-lead { text-shadow: 0 1px 14px rgba(2, 18, 29, .7) !important; }

/* ---------- Quote band: aerial "video" ---------- */
.band-cam { position: absolute; inset: -6%; animation: bandFly 22s ease-in-out infinite alternate; will-change: transform; }
.ba .band-cam img { width: 100%; height: 100%; object-fit: cover; }
@keyframes bandFly { 0% { transform: scale(1.02) translate3d(2%, 1.5%, 0) rotate(-.6deg); } 100% { transform: scale(1.12) translate3d(-2.5%, -2%, 0) rotate(.5deg); } }
.band-shimmer { position: absolute; inset: -20%; mix-blend-mode: soft-light; opacity: .55; pointer-events: none;
	background: repeating-linear-gradient(115deg, rgba(255,255,255,0) 0 22px, rgba(255,255,255,.35) 26px, rgba(255,255,255,0) 32px);
	animation: shimmer 9s linear infinite; }
@keyframes shimmer { from { transform: translate3d(-6%, 0, 0); } to { transform: translate3d(6%, 3%, 0); } }
.band-clouds { position: absolute; inset: -40%; pointer-events: none; mix-blend-mode: multiply; opacity: .55;
	background: radial-gradient(ellipse 20% 14% at 30% 40%, rgba(2,18,29,.6), transparent 70%), radial-gradient(ellipse 26% 16% at 70% 60%, rgba(2,18,29,.5), transparent 70%);
	animation: cloudPass 18s linear infinite; }
.band-particles { position: absolute; inset: 0; width: 100%; height: 100%; mix-blend-mode: screen; pointer-events: none; }
.ba .band-shade { background: radial-gradient(ellipse at center, rgba(4,28,44,.3) 0%, rgba(4,28,44,.6) 100%); }
@media (prefers-reduced-motion: reduce) { .band-cam, .band-shimmer, .band-clouds { animation: none; } }

/* ==========================================================================
   Contact — minimal: centred heading, borderless form below
   ========================================================================== */
.ctx { background: var(--navy-deep); }
.ctx-wrap { max-width: 64rem; }
.ctx-head { text-align: center; margin-bottom: clamp(3.5rem, 7vw, 6rem); }
.ctx-head .label { justify-content: center; }
.ctx-head .label::after { content: ""; width: 2.5rem; height: 1px; background: currentColor; opacity: .7; }
.ba .ctx-head .display { color: #fff; font-size: clamp(2.6rem, 1.2rem + 4.4vw, 6rem); }
.ba .ctx-head .display .line { text-align: center; }
.ba .ctx-lead { max-width: 36rem; margin: 2rem auto 0; color: rgba(255,255,255,.62); }

.ctx-form .form-title { display: none; }
.ba .ctx-form .form-grid { grid-template-columns: 1fr 1fr; column-gap: clamp(2rem, 4vw, 3.5rem); row-gap: 2.75rem; }
.ctx-form .field input, .ctx-form .field select, .ctx-form .ba-select-btn { font-size: 1.05rem; border-bottom-color: rgba(255,255,255,.14); }
.ctx-form .field textarea { border: 0; border-bottom: 1px solid rgba(255,255,255,.14); border-radius: 0; padding: 1.6rem 0 .6rem; min-height: 3.2rem; }
.ctx-form .field:has(textarea) > .lbl { left: 0; top: auto; bottom: .7rem; }
.ctx-form .field:has(textarea:focus) > .lbl, .ctx-form .field:has(textarea:not(:placeholder-shown)) > .lbl { transform: translateY(-1.75rem) scale(.72); }
.ctx-form .field::before { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--bronze-light); transform: scaleX(0); transform-origin: left; transition: transform .7s var(--ease); z-index: 1; pointer-events: none; }
.ctx-form .field:has(:focus)::before { transform: scaleX(1); }
.ctx-form .consent { justify-content: center; margin: 3rem 0 2.5rem; text-align: center; }
.ctx-form .form-foot { flex-direction: column; gap: 1.1rem; }
.ctx-form .wpcf7-submit.btn { --pad: 1.35rem 3.25rem; }
.ba .ctx-form .form-note { text-align: center; }
.ctx-form .wpcf7-response-output { text-align: center; }
@media (max-width: 700px) { .ba .ctx-form .form-grid { grid-template-columns: 1fr; row-gap: 2.25rem; } }

/* ==========================================================================
   Responsive: desktop scenes at any height (zoom-safe), scale by viewport
   ========================================================================== */
/* Intro — short screens */
@media (min-width: 1024px) and (max-height: 760px) {
	.cine-content { padding-top: calc(var(--header-h) + 1rem); padding-bottom: 1.25rem; }
	.ba .cine-title { font-size: clamp(2rem, 7.2vh, 5.9rem); }
	.ba .cine-lead { font-size: clamp(1rem, 2.6vh, 1.9rem); margin-bottom: 1.25rem; }
	.ba .cine-copy p { font-size: clamp(.74rem, 1.9vh, .95rem); line-height: 1.55; }
	.cine-copy { gap: .5rem; }
	.cine-values { padding-top: 1rem; }
}
/* Services — narrow desktops + short screens */
@media (min-width: 1024px) and (max-width: 1365px) {
	.svx-pin .svx-ch, .svx-pin .svx-head { width: calc(56vw - var(--gutter)); }
	.svx-pin .svx-ch .svx-items li { font-size: .76rem; }
	.svx-pin .svx-index { gap: 1.25rem; }
	.svx-pin .svx-index button .t { font-size: .52rem; }
	.svx-pin .svx-bg-in { left: 30%; }
}
@media (min-width: 1024px) and (max-height: 760px) {
	.svx-pin .svx-num-big { font-size: clamp(1.8rem, 5vh, 3rem); }
	.svx-pin .svx-ch .svx-title { font-size: clamp(1.5rem, 5.4vh, 3.4rem); margin-bottom: .5rem; }
	.svx-pin .svx-short { margin-bottom: .6rem; font-size: .62rem; }
	.svx-pin .svx-ch .svx-intro { font-size: clamp(.78rem, 2vh, .98rem); margin-bottom: .6rem; line-height: 1.5; }
	.svx-pin .svx-ch .svx-items li { padding: clamp(.2rem, .8vh, .62rem) 0; font-size: clamp(.7rem, 1.9vh, .86rem); }
	.svx-pin .svx-note { margin-top: .5rem; font-size: .7rem; }
	.ba .svx-pin .svx-h { font-size: clamp(2rem, 8vh, 6rem); }
	.svx-pin .svx-index { bottom: .75rem; padding-top: .6rem; }
	.svx-pin .svx-ch, .svx-pin .svx-head { top: calc(50% + .75rem); }
}
/* Tablet 700–1023: two-column service cards text width */
@media (min-width: 700px) and (max-width: 1023px) {
	.svx-ch { padding-inline: var(--gutter); }
	.pc12-grid { grid-template-columns: 1fr 1fr; }
	.pcg-card.is-wide { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
	.pcg-card.is-wide .pcg-body { width: min(60%, 34rem); top: 0; right: auto; }
}

/* ---------- GTranslate ---------- */
.lang-list a { cursor: pointer; }
.lang-list a.gt-current-lang, .mobile-langs a.gt-current-lang, .footer-langs a.gt-current-lang { color: var(--bronze-light); }
.lang-list img, .mobile-langs img, .footer-langs img { display: none; }
/* hide Google's injected UI */
body.ba { top: 0 !important; position: static !important; }
.skiptranslate iframe, .goog-te-banner-frame, #goog-gt-tt, .goog-te-balloon-frame, .VIpgJd-ZVi9od-ORHb-OEVmcd, .VIpgJd-ZVi9od-aZ2wEe-wOHMyf { display: none !important; visibility: hidden !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
font[style*="vertical-align"] { vertical-align: inherit !important; }

/* ==========================================================================
   Lucide icons
   ========================================================================== */
.ba-ic { width: 1.1em; height: 1.1em; flex: none; display: inline-block; vertical-align: -.18em; stroke: currentColor; }
.arrow, .chev { display: none !important; }
.btn .ba-ic-arrow-right { width: 1.15rem; height: 1.15rem; transition: transform .5s var(--ease); }
.btn:hover .ba-ic-arrow-right { transform: translateX(5px); }
.lang { display: flex; align-items: center; gap: .45rem; }
.lang-globe { width: 1rem; height: 1rem; opacity: .75; }
.lang-chev { width: .9rem; height: .9rem; margin-left: .25rem; transition: transform .4s var(--ease); }
.lang.is-open .lang-chev { transform: rotate(180deg); }
.menu-btn i { display: none; }
.menu-btn .ba-ic { position: absolute; left: 50%; top: 50%; width: 1.5rem; height: 1.5rem; transform: translate(-50%, -50%); transition: opacity .35s, transform .5s var(--ease); }
.menu-btn .ic-close { opacity: 0; transform: translate(-50%, -50%) rotate(-90deg); }
.menu-open .menu-btn .ic-open { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }
.menu-open .menu-btn .ic-close { opacity: 1; transform: translate(-50%, -50%) rotate(0); }
.mobile-wa { display: inline-flex; align-items: center; gap: .6rem; }
.scroll-cue i { display: none; }
.cue-ic { width: 1rem; height: 1rem; animation: cueBob 2.2s var(--ease) infinite; color: var(--bronze-light); }
@keyframes cueBob { 0%, 100% { transform: translateY(-3px); opacity: .5; } 50% { transform: translateY(4px); opacity: 1; } }
/* footer contacts */
.ic-line { display: flex; gap: .75rem; }
.ic-list { display: grid; gap: .5rem; }
.ic-list a, .ic-line { align-items: flex-start; }
.ic-list a { display: inline-flex; gap: .75rem; align-items: center; }
.site-footer .ba-ic { color: var(--bronze); width: 1rem; height: 1rem; margin-top: .2em; }
.ic-list .ba-ic { margin-top: 0; }
/* mobile bar */
.mobile-bar a { display: flex; align-items: center; justify-content: center; gap: .55rem; }
.mobile-bar .ba-ic { width: 1rem; height: 1rem; }
/* custom select */
.ba-select-chev { display: grid; place-items: center; }
.ba-select-chev::after { display: none; }
.ba-select-ic { width: .9rem; height: .9rem; color: var(--bronze-light); }
.ba-select-list li .tick { border: 0; transform: none; width: auto; height: auto; display: grid; place-items: center; }
.ba-select-check { width: 1rem; height: 1rem; color: var(--bronze-light); }
/* slider cursor */
.ba-cursor { gap: 0; }
.ba-cursor .ba-ic { width: 1.25rem; height: 1.25rem; color: #fff; stroke-width: 1.6; transition: transform .4s var(--ease); }
.ba-cursor.is-down .ba-ic-chevron-left { transform: translateX(-3px); }
.ba-cursor.is-down .ba-ic-chevron-right { transform: translateX(3px); }
.ba-cursor { display: flex; align-items: center; justify-content: center; }
/* CF7 submit (input) → arrow via mask; consent checkbox tick; confidential note lock */
.ctx-form .form-foot { position: relative; }
.ctx-form .form-foot > p.form-note { display: inline-flex; align-items: center; gap: .5rem; }
.ctx-form .form-foot > p.form-note::before { content: ""; width: .85rem; height: .85rem; background: currentColor; -webkit-mask: var(--ic-lock) center / contain no-repeat; mask: var(--ic-lock) center / contain no-repeat; }
.ctx-form .wpcf7-form-control-wrap:has(.wpcf7-submit), .ctx-form .form-foot .wpcf7-submit + .wpcf7-spinner { display: none; }
.form .wpcf7-acceptance input:checked::after { border: 0; transform: none; left: 1px; top: 1px; width: calc(100% - 2px); height: calc(100% - 2px); background: var(--navy); -webkit-mask: var(--ic-check) center / 80% no-repeat; mask: var(--ic-check) center / 80% no-repeat; }

/* ==========================================================================
   Performance: no text animations — only background imagery moves
   ========================================================================== */
.js [data-reveal], .js .hero [data-hero-in], .js [data-reveal-img] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
.js .hero [data-hero-line], .js [data-split] .line > span, .cine-title .cl-in, .svx-h .cl-in { transform: none !important; }
.js .pcg-card .pcg-body > * { opacity: 1 !important; transform: none !important; transition: none !important; }
.cine-progress { display: none; }
.cine-values-line { transform: none !important; }
.svx-index button { transition: color .3s; }/* ==========================================================================
   Contact line (address · coordinates · phone · WhatsApp · email)
   Thin, centred row under the contact heading — no box, no panel.
   ========================================================================== */
.ctx-info {
	display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
	gap: .6rem clamp(1.25rem, 2.4vw, 2.5rem);
	margin: 0 auto clamp(3rem, 6vw, 4.5rem);
	padding-bottom: clamp(2rem, 4vw, 3rem);
	border-bottom: 1px solid rgba(227, 204, 154, .16);
	font: 400 .82rem/1.5 var(--sans);
	letter-spacing: .06em;
	color: rgba(255, 255, 255, .72);
	text-align: center;
}
.ctx-info > * { display: inline-flex; align-items: center; gap: .5rem; margin: 0; }
.ctx-info .ba-ic { width: .95rem; height: .95rem; color: var(--bronze); }
.ctx-info a { transition: color .3s; }
.ctx-info a:hover { color: var(--bronze-light); }
.ctx-info .ctx-sep { width: 1px; height: 1rem; background: rgba(227, 204, 154, .25); }
@media (max-width: 860px) {
	.ctx-info { gap: .85rem 1.5rem; font-size: .78rem; }
	.ctx-info .ctx-sep { display: none; }
}

/* ==========================================================================
   Contact section background — aircraft tail (Air Village / SGAV)
   ========================================================================== */
.ctx { position: relative; isolation: isolate; overflow: hidden; }
.ctx-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.ctx-bg-in { position: absolute; inset: -8%; animation: ctxDrift 26s ease-in-out infinite alternate; will-change: transform; }
.ba .ctx-bg-in img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 42%; }
@keyframes ctxDrift {
	0%   { transform: scale(1.04) translate3d(0, 0, 0); }
	100% { transform: scale(1.14) translate3d(-1.6%, -1.2%, 0); }
}
.ctx-bg::after {
	content: ""; position: absolute; inset: 0;
	background:
		linear-gradient(90deg, rgba(2, 18, 29, .94) 0%, rgba(2, 18, 29, .86) 42%, rgba(2, 18, 29, .6) 100%),
		linear-gradient(0deg, rgba(2, 18, 29, .95) 0%, rgba(2, 18, 29, .55) 40%, rgba(2, 18, 29, .35) 100%);
}
.ctx-grain {
	position: absolute; inset: -50%; z-index: -1; opacity: .06; mix-blend-mode: overlay; pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%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)'/%3E%3C/svg%3E");
	animation: cineGrain .9s steps(6) infinite;
}

/* ==========================================================================
   PC-12 specs strip background — brass compass on an old map
   ========================================================================== */
.pc12-specs { position: relative; isolation: isolate; overflow: hidden; border-radius: var(--radius); }
.specs-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.specs-bg-in { position: absolute; inset: -10%; animation: specsDrift 34s ease-in-out infinite alternate; will-change: transform; }
.ba .specs-bg-in img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; filter: saturate(.7); }
@keyframes specsDrift {
	0%   { transform: scale(1.02) rotate(-.4deg); }
	100% { transform: scale(1.12) rotate(.5deg); }
}
.specs-bg::after {
	content: ""; position: absolute; inset: 0;
	background:
		linear-gradient(90deg, rgba(4, 28, 44, .93) 0%, rgba(4, 28, 44, .82) 55%, rgba(4, 28, 44, .9) 100%),
		radial-gradient(ellipse at 50% 50%, rgba(4, 28, 44, .55) 0%, rgba(4, 28, 44, .92) 100%);
}
.ba .pc12-specs .specs { margin-top: 0; padding-inline: clamp(1.25rem, 3vw, 2.5rem); border-top: 0; }
.ba .pc12-specs .specs-source { padding-inline: clamp(1.25rem, 3vw, 2.5rem); padding-bottom: 1.5rem; }

/* ==========================================================================
   Bondo Aviation — second brand mark in the footer bottom row
   ========================================================================== */
.footer-marks { display: flex; align-items: center; gap: 1rem; }
.ba .footer-mark { height: 30px; width: auto; opacity: .62; transition: opacity .4s; }
.footer-marks:hover .footer-mark { opacity: .9; }
.footer-mark-label { font: 500 .6rem/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 255, 255, .35); }

@media (prefers-reduced-motion: reduce) {
	.ctx-bg-in, .specs-bg-in, .ctx-grain { animation: none !important; }
}
/* contact line: no hanging dividers, tighter rhythm */
.ctx-info .ctx-sep { display: none; }
.ctx-info { gap: .55rem clamp(1.1rem, 2.2vw, 2.25rem); }
/* new photo backgrounds: let the imagery read a little more */
.ctx-bg::after {
	background:
		linear-gradient(90deg, rgba(2, 18, 29, .9) 0%, rgba(2, 18, 29, .78) 45%, rgba(2, 18, 29, .5) 100%),
		linear-gradient(0deg, rgba(2, 18, 29, .92) 0%, rgba(2, 18, 29, .42) 45%, rgba(2, 18, 29, .22) 100%);
}
.specs-bg::after {
	background:
		linear-gradient(90deg, rgba(4, 28, 44, .88) 0%, rgba(4, 28, 44, .7) 55%, rgba(4, 28, 44, .85) 100%),
		radial-gradient(ellipse at 50% 50%, rgba(4, 28, 44, .35) 0%, rgba(4, 28, 44, .86) 100%);
}
.ba .specs-bg-in img { filter: saturate(.85) brightness(1.1); }
@media (max-width: 860px) {
	.ctx-info > p { flex: 0 0 100%; justify-content: center; align-items: flex-start; text-align: center; }
	.ctx-info > p .ba-ic { margin-top: .2em; }
}
/* tighter gap between the lead paragraph and the contact line */
.ctx-head { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.ctx-info { margin-top: 0; }
/* compass background removed from the specs strip — restore the plain navy strip */
.specs-bg { display: none !important; }
.pc12-specs { overflow: visible; border-radius: 0; }
.ba .pc12-specs .specs { margin-top: clamp(4rem, 9vw, 7rem); padding-inline: 0; border-top: 1px solid var(--line-dark); }
.ba .pc12-specs .specs-source { padding-inline: 0; padding-bottom: 0; }
/* Swiss mark → Lucide icon in the brand palette (replaces the red flag square) */
.cine-swiss rect, .cine-swiss path { fill: none; }
.ba .cine-swiss .swiss-mark { width: 30px; height: 30px; stroke: var(--bronze-light); stroke-width: 1.35; }
.cine-swiss { gap: 1rem; }
/* ==========================================================================
   PC-12 key figures — contained premium panel
   ========================================================================== */
.spx {
	margin-top: clamp(3.5rem, 8vw, 6rem);
	border: 1px solid rgba(227, 204, 154, .16);
	border-radius: var(--radius);
	background: linear-gradient(160deg, rgba(227, 204, 154, .05) 0%, rgba(2, 18, 29, .25) 55%);
	overflow: hidden;
}
.ba .spx-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; }
.spx-item {
	position: relative; display: flex; flex-direction: column; align-items: center; text-align: center;
	padding: clamp(2rem, 4vw, 3.25rem) clamp(1rem, 2vw, 2rem) clamp(1.75rem, 3vw, 2.5rem);
}
.spx-item + .spx-item::before { content: ""; position: absolute; left: 0; top: 18%; bottom: 18%; width: 1px; background: rgba(227, 204, 154, .16); }
.spx-ic {
	display: grid; place-items: center; width: 2.9rem; height: 2.9rem; margin-bottom: 1.35rem;
	border: 1px solid rgba(227, 204, 154, .3); border-radius: 50%;
	transition: border-color .5s var(--ease), background-color .5s var(--ease);
}
.spx-ic .ba-ic { width: 1.2rem; height: 1.2rem; color: var(--bronze-light); stroke-width: 1.35; }
.spx-item:hover .spx-ic { border-color: var(--bronze-light); background: rgba(227, 204, 154, .08); }
.ba .spx-label { font: 500 .66rem/1.4 var(--sans); letter-spacing: .24em; text-transform: uppercase; color: var(--bronze); margin: 0 0 .9rem; }
.ba .spx-val { display: flex; align-items: baseline; justify-content: center; gap: .45rem; margin: 0; }
.ba .spx-val .serif { font-size: clamp(2.9rem, 1.8rem + 3vw, 4.6rem); line-height: 1; color: #fff; font-variant-numeric: tabular-nums; letter-spacing: -.01em; }
.ba .spx-val small { font: 400 .8rem/1 var(--sans); letter-spacing: .12em; color: rgba(255, 255, 255, .55); }
.ba .spx-source {
	margin: 0; padding: .9rem 1.5rem; text-align: center;
	border-top: 1px solid rgba(227, 204, 154, .12);
	font: 400 .7rem/1.5 var(--sans); letter-spacing: .12em; color: rgba(255, 255, 255, .38);
}
@media (max-width: 760px) {
	.ba .spx-grid { grid-template-columns: 1fr; }
	.spx-item + .spx-item::before { left: 12%; right: 12%; top: 0; bottom: auto; width: auto; height: 1px; }
	.spx-item { padding-block: 2rem 1.75rem; }
}
/* contact line: no divider rule underneath */
.ctx-info { border-bottom: 0; padding-bottom: 0; margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }
/* contact background: landscape source, no upscale-stretch; gentle drift only */
.ctx-bg-in { inset: -4%; animation-duration: 34s; }
.ba .ctx-bg-in img { object-position: 50% 45%; }
@keyframes ctxDrift { 0% { transform: scale(1.02) translate3d(0, 0, 0); } 100% { transform: scale(1.08) translate3d(-1%, -.8%, 0); } }

/* ---------- Contact background: viewport-height window (16:9 photo never over-cropped) ---------- */
.ctx { overflow: clip; }
.ctx-bg { overflow: clip; }
.ctx-bg-in { position: sticky; inset: auto; top: 0; width: 100%; height: 100vh; height: 100svh; }
.ba .ctx-bg-in img { object-position: 50% 50%; }
@keyframes ctxDrift {
	0%   { transform: scale(1.03) translate3d(0, 0, 0); }
	100% { transform: scale(1.07) translate3d(-1%, -.6%, 0); }
}

/* Contact overlay: lighter on the left so the compass motif reads; darkness kept behind the text band */
.ctx-bg::after {
	background:
		linear-gradient(90deg, rgba(2, 18, 29, .62) 0%, rgba(2, 18, 29, .74) 38%, rgba(2, 18, 29, .6) 70%, rgba(2, 18, 29, .48) 100%),
		linear-gradient(0deg, rgba(2, 18, 29, .92) 0%, rgba(2, 18, 29, .45) 45%, rgba(2, 18, 29, .3) 100%),
		radial-gradient(ellipse 65% 45% at 50% 32%, rgba(2, 18, 29, .55) 0%, rgba(2, 18, 29, 0) 100%);
}

/* ==========================================================================
   Footer — compass background (image right, text over deep navy)
   ========================================================================== */
.site-footer { position: relative; isolation: isolate; overflow: clip; }
.footer-bg { position: absolute; inset: 0; z-index: -1; overflow: clip; }
.footer-bg-in { position: absolute; inset: -3%; animation: footDrift 46s ease-in-out infinite alternate; will-change: transform; }
.ba .footer-bg-in img { width: 100%; height: 100%; object-fit: cover; object-position: 86% 50%; }
@keyframes footDrift {
	0%   { transform: scale(1.02) translate3d(0, 0, 0); }
	100% { transform: scale(1.06) translate3d(-.8%, -.5%, 0); }
}
.footer-bg::after {
	content: ""; position: absolute; inset: 0; pointer-events: none;
	background:
		linear-gradient(90deg, rgba(2, 18, 29, .97) 0%, rgba(2, 18, 29, .95) 40%, rgba(2, 18, 29, .8) 66%, rgba(2, 18, 29, .55) 100%),
		linear-gradient(0deg, rgba(2, 18, 29, .88) 0%, rgba(2, 18, 29, .5) 55%, rgba(2, 18, 29, .8) 100%);
}
.site-footer .wrap { position: relative; }
.ba .site-footer .footer-tag,
.ba .site-footer address,
.ba .site-footer .ic-list,
.ba .site-footer .footer-langs,
.ba .site-footer .label { text-shadow: 0 1px 12px rgba(2, 18, 29, .85); }
@media (max-width: 860px) {
	.ba .footer-bg-in img { object-position: 88% 32%; }
	.footer-bg::after {
		background:
			linear-gradient(90deg, rgba(2, 18, 29, .96) 0%, rgba(2, 18, 29, .9) 60%, rgba(2, 18, 29, .72) 100%),
			linear-gradient(0deg, rgba(2, 18, 29, .92) 0%, rgba(2, 18, 29, .7) 55%, rgba(2, 18, 29, .86) 100%);
	}
}
@media (prefers-reduced-motion: reduce) { .footer-bg-in { animation: none !important; } }

/* Chapter titles carry the client's full service names — keep them on one line */
@media (min-width: 1024px) {
	.svx-pin .svx-ch .svx-title { font-size: clamp(1.9rem, .7rem + 1.85vw, 2.95rem); }
}

/* Client's own phone labels in the footer contact column */
.site-footer .c-lbl { color: rgba(255, 255, 255, .45); margin-right: .45rem; }
.site-footer .c-lbl::after { content: ":"; }


/* ==========================================================================
   Complianz documents (cookie policy) — brand typography, plugin keeps layout
   ========================================================================== */
/* WordPress' screen-reader class: Astra's CSS is dequeued here, so provide it */
.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.legal-body-document { max-width: 62rem; }
.ba .legal-body-document h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(1.45rem, 1.1rem + 1vw, 2.05rem); margin: 2.6rem 0 .8rem; color: var(--navy); }
.ba .legal-body-document h3 { font-family: var(--serif); font-weight: 400; font-size: 1.15rem; color: var(--navy); margin: 0; }
.ba .legal-body-document h4 { font: 500 .72rem/1.4 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--bronze); margin: 0 0 .4rem; }
.ba .legal-body-document h5 { font: 500 .68rem/1.4 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: rgba(4, 28, 44, .5); margin: 0; }
.ba .legal-body-document p, .ba .legal-body-document li, .ba .legal-body-document div { font-size: .93rem; line-height: 1.75; color: rgba(4, 28, 44, .78); }
.ba .legal-body-document a { color: var(--navy); text-decoration: underline; text-underline-offset: .18em; text-decoration-color: var(--bronze); }
.ba .legal-body-document a:hover { color: var(--bronze); }

/* the service cards */
.legal-body-document details.cmplz-dropdown {
	border: 1px solid rgba(4, 28, 44, .12); border-radius: var(--radius);
	background: #fff; margin: 0 0 .75rem; overflow: hidden;
}
.legal-body-document details.cmplz-dropdown summary { cursor: pointer; padding: 1rem 1.25rem; }
.legal-body-document details.cmplz-dropdown[open] summary { border-bottom: 1px solid rgba(4, 28, 44, .1); }
.legal-body-document details.cmplz-dropdown > div:not(summary > div) { padding: 0 1.25rem; }
.legal-body-document .cmplz-service-description,
.legal-body-document .cmplz-sharing-data { padding-top: 1rem; }
.legal-body-document .cookies-per-purpose { padding-bottom: 1.25rem; }
.legal-body-document #cmplz-cookies-overview { margin: 1.25rem 0 2rem; }
.legal-body-document .cmplz-manage-consent-container { margin: 2rem 0; }
.legal-body-document .cmplz-manage-consent-container button,
.legal-body-document button { border-radius: var(--radius); }
/* Footer: the top hairline spans the full width */
.site-footer { border-top: 1px solid var(--line-dark); }
.site-footer .wrap { border-top: 0; }

/* ==========================================================================
   Background music toggle
   ========================================================================== */
.sound-btn {
	position: relative; flex: none; display: inline-flex; align-items: center; justify-content: center;
	width: 38px; height: 38px; padding: 0; border: 0; background: none; cursor: pointer;
	color: rgba(255, 255, 255, .72); border-radius: var(--radius);
	transition: color .4s var(--ease), background-color .4s var(--ease);
}
.sound-btn:hover, .sound-btn:focus-visible { color: var(--bronze-light); background: rgba(255, 255, 255, .06); }
.sound-btn .ba-ic { width: 1.05rem; height: 1.05rem; }
.sound-btn .ic-sound-on { display: none; }          /* off state shows the muted icon */
.sound-btn.is-on .ic-sound-off { display: none; }     /* playing state shows the bars */
.sound-btn.is-on { color: var(--bronze-light); }

/* three little bars that pulse while the music plays */
.sound-bars { display: none; align-items: flex-end; gap: 2px; height: 14px; }
.sound-btn.is-on .sound-bars { display: inline-flex; }
.sound-bars i { display: block; width: 2px; height: 4px; background: currentColor; border-radius: 1px; animation: soundBar 1.1s ease-in-out infinite; }
.sound-bars i:nth-child(2) { animation-delay: .18s; }
.sound-bars i:nth-child(3) { animation-delay: .36s; }
@keyframes soundBar {
	0%, 100% { height: 4px; }
	50%      { height: 13px; }
}
@media (prefers-reduced-motion: reduce) {
	.sound-bars i { animation: none; height: 9px; }
}
@media (max-width: 700px) {
	.sound-btn { width: 34px; height: 34px; }
}
/* contact line: the address <p> picked up the global paragraph margin and sat
   higher than its neighbours — keep every item on one baseline */
.ba .ctx-info > p { margin: 0; }
/* small phones: logo + sound + language + menu needed ~396px, so on 360–393px
   screens the menu button ran past the right edge — tighten the header row */
@media (max-width: 480px) {
	.header-inner { gap: .75rem; }
	.ba .logo, .ba .is-scrolled .logo { height: 30px; }
	.header-tools { gap: .25rem; }
	.lang > svg { display: none; }
	.lang-btn { padding-inline: .4rem; }
}
@media (max-width: 359px) {
	.header-inner { gap: .5rem; }
	.ba .logo, .ba .is-scrolled .logo { height: 26px; }
}
