/* ============================================================================
   IKARUS PICTURES - Luftbildfotografie Glonn
   Design System  ·  Navy #003B60  ·  Gold #FFD44A  ·  Bristone + Inter Tight
   ========================================================================== */

/* ----------------------------------------------------------------- FONTS */
@font-face {
  font-family: "Bristone";
  src: url("../fonts/bristone.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/inter-tight.woff2") format("woff2");
  font-weight: 100 900;            /* variable */
  font-style: normal;
  font-display: swap;
}

/* ----------------------------------------------------------------- TOKENS */
:root {
  /* brand */
  --navy: #003B60;
  --navy-700: #013653;
  --navy-800: #012A45;
  --navy-900: #011d31;
  --navy-950: #01131f;
  --gold: #FFD44A;
  --gold-600: #f3c02b;
  --gold-200: #fbe6a4;

  /* neutrals / text on light */
  --ink: #0b1b27;
  --text: #354752;
  --text-soft: #5c6d77;
  --bg: #ffffff;
  --bg-soft: #f2f7fa;
  --bg-soft-2: #e8f0f5;

  /* text on navy */
  --on-navy: #eaf2f8;
  --on-navy-soft: #a3bacb;
  --on-navy-faint: #5f7b8e;

  /* lines */
  --line: rgba(0, 59, 96, .12);
  --line-strong: rgba(0, 59, 96, .22);
  --line-on-navy: rgba(255, 255, 255, .14);

  /* layout */
  --container: 1240px;
  --container-wide: 1460px;
  --header-h: 78px;
  --section-pad: clamp(4.5rem, 9vw, 8rem);
  --gut: clamp(1.25rem, 4vw, 2.5rem);

  /* radius */
  --r-xs: 6px;
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-pill: 999px;

  /* shadows (navy tinted) */
  --shadow-sm: 0 1px 2px rgba(0, 40, 66, .06), 0 2px 8px rgba(0, 40, 66, .06);
  --shadow: 0 20px 45px -22px rgba(0, 40, 66, .30);
  --shadow-lg: 0 44px 80px -34px rgba(0, 40, 66, .42);
  --shadow-gold: 0 16px 34px -14px rgba(214, 168, 30, .55);

  /* motion */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-in: cubic-bezier(.5, 0, .75, 0);
  --t-fast: .18s;
  --t: .32s;
  --t-slow: .6s;

  /* type scale */
  --fs-eyebrow: .78rem;
  --fs-body: 1.0625rem;
  --fs-lead: clamp(1.15rem, 1.6vw, 1.35rem);
  --fs-h3: clamp(1.3rem, 2.2vw, 1.7rem);
  --fs-h2: clamp(2rem, 4.3vw, 3.3rem);
  --fs-display: clamp(2.7rem, 7.4vw, 6rem);

  --z-header: 100;
  --z-drawer: 200;
  --z-lightbox: 300;
}

/* ----------------------------------------------------------------- RESET */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.js body { } /* hook */
body {
  font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
img { font-style: italic; color: var(--text-soft); } /* alt-text styling if broken */
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}
::selection { background: var(--gold); color: var(--navy); }

/* ----------------------------------------------------------------- TYPOGRAPHY */
h1, h2, h3, h4 { color: var(--ink); line-height: 1.08; font-weight: 700; letter-spacing: -.01em; }
.display, h1.display {
  font-family: "Bristone", "Inter Tight", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .005em;
  line-height: .98;
}
.h2 { font-size: var(--fs-h2); }
.h3 { font-size: var(--fs-h3); line-height: 1.18; }
p { text-wrap: pretty; }
strong { color: var(--ink); font-weight: 600; }

/* ----------------------------------------------------------------- LAYOUT */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gut); }
.container--wide { max-width: var(--container-wide); }
.container--narrow { max-width: 820px; }
.section { padding-block: var(--section-pad); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--navy { background: var(--navy); color: var(--on-navy); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--soft { background: var(--bg-soft); }
.bleed { width: 100%; }

/* section heading block */
.shead { max-width: 720px; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.shead--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: var(--fs-eyebrow); font-weight: 600;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--navy);
}
.eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--gold); border-radius: 2px;
}
.eyebrow--center::after {
  content: ""; width: 28px; height: 2px; background: var(--gold); border-radius: 2px;
}
.section--navy .eyebrow { color: var(--gold); }
.section--navy .eyebrow::before, .section--navy .eyebrow--center::after { background: var(--gold); }
.shead h2 { margin-top: 1rem; font-size: var(--fs-h2); }
.shead .lead { margin-top: 1.1rem; font-size: var(--fs-lead); color: var(--text-soft); }
.section--navy .shead .lead { color: var(--on-navy-soft); }

/* ----------------------------------------------------------------- BUTTONS */
.btn {
  --b-bg: var(--navy); --b-fg: #fff; --b-bd: var(--navy);
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: .92em 1.6em; min-height: 48px;
  font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  color: var(--b-fg); background: var(--b-bg);
  border: 1.5px solid var(--b-bd); border-radius: var(--r-pill);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t) var(--ease),
              background var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn .ico { width: 1.1em; height: 1.1em; transition: transform var(--t) var(--ease); }
.btn:hover .ico { transform: translateX(3px); }

.btn--gold { --b-bg: var(--gold); --b-fg: var(--navy); --b-bd: var(--gold); font-weight: 700; }
.btn--gold:hover { --b-bg: var(--gold-600); --b-bd: var(--gold-600); box-shadow: var(--shadow-gold); }

.btn--ghost { --b-bg: transparent; --b-fg: var(--navy); --b-bd: var(--line-strong); }
.btn--ghost:hover { --b-bg: var(--navy); --b-fg: #fff; --b-bd: var(--navy); }

.btn--on-navy { --b-bg: transparent; --b-fg: #fff; --b-bd: rgba(255,255,255,.4); }
.btn--on-navy:hover { --b-bg: #fff; --b-fg: var(--navy); --b-bd: #fff; }

.btn--lg { padding: 1.05em 2em; min-height: 56px; font-size: 1.02rem; }

/* arrow text link */
.tlink {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; color: var(--navy);
  padding-bottom: 2px; background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 0% 2px; background-position: 0 100%; background-repeat: no-repeat;
  transition: background-size var(--t) var(--ease);
}
.tlink .ico { width: 1.05em; height: 1.05em; transition: transform var(--t) var(--ease); }
.tlink:hover { background-size: 100% 2px; }
.tlink:hover .ico { transform: translateX(4px); }
.section--navy .tlink { color: var(--gold); }

/* ----------------------------------------------------------------- HEADER / NAV */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-header);
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease), height var(--t) var(--ease);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; width: 100%;
}
/* transparent variant over a dark hero */
.site-header--over { background: transparent; border-color: transparent; }
.site-header--over.is-scrolled {
  background: rgba(255, 255, 255, .86);
  border-color: var(--line);
}

.brand { display: inline-flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.brand-logos { position: relative; display: inline-block; height: 36px; }
.brand-logos img { height: 36px; width: auto; display: block; transition: opacity var(--t) var(--ease); }
.brand-logos .logo-white { position: absolute; inset: 0; opacity: 0; }
.site-header--over:not(.is-scrolled) .brand-logos .logo-color { opacity: 0; }
.site-header--over:not(.is-scrolled) .brand-logos .logo-white { opacity: 1; }
.brand-name {
  font-family: "Bristone", sans-serif; text-transform: uppercase;
  font-size: 1.16rem; letter-spacing: .045em; color: var(--navy); line-height: 1; padding-top: 3px;
  white-space: nowrap;
}
.site-header--over:not(.is-scrolled) .brand-name { color: #fff; }
.footer-brand .brand-logos { height: 46px; } .footer-brand .brand-logos img { height: 46px; }
@media (max-width: 560px) { .brand-name { display: none; } }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav-links { display: flex; align-items: center; gap: clamp(.6rem, 1.6vw, 1.7rem); }
.nav-links a {
  position: relative; font-weight: 500; font-size: .98rem; color: var(--ink);
  padding: .4rem 0; transition: color var(--t) var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--navy); font-weight: 600; }
.site-header--over:not(.is-scrolled) .nav-links a { color: rgba(255,255,255,.92); }
.site-header--over:not(.is-scrolled) .nav-links a[aria-current="page"] { color: #fff; }

.nav .btn { padding: .62em 1.25em; min-height: 42px; }
.site-header--over:not(.is-scrolled) .nav .btn--gold { box-shadow: 0 0 0 1px rgba(255,255,255,.08); }

/* hamburger */
.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: var(--r-sm);
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
  border: 1px solid var(--line);
}
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform var(--t) var(--ease), opacity var(--t-fast) var(--ease); }
.site-header--over:not(.is-scrolled) .nav-toggle { border-color: rgba(255,255,255,.3); }
.site-header--over:not(.is-scrolled) .nav-toggle span { background: #fff; }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: var(--z-drawer);
  background: var(--navy); color: #fff;
  padding: calc(var(--header-h) + 2rem) var(--gut) 2rem;
  display: flex; flex-direction: column;
  transform: translateY(-100%); opacity: 0; visibility: hidden;
  transition: transform var(--t-slow) var(--ease), opacity var(--t) var(--ease), visibility var(--t);
  overflow-y: auto;
}
.drawer.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.drawer-close {
  position: absolute; top: 1.2rem; right: var(--gut); width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center; border-radius: var(--r-sm);
  border: 1px solid var(--line-on-navy); color: #fff;
}
.drawer-links { display: flex; flex-direction: column; gap: .25rem; margin-top: 1rem; }
.drawer-links a {
  font-family: "Bristone", sans-serif; text-transform: uppercase; letter-spacing: .03em;
  font-size: clamp(1.7rem, 8vw, 2.6rem); color: #fff; padding: .5rem 0;
  border-bottom: 1px solid var(--line-on-navy);
  transition: color var(--t) var(--ease), padding-left var(--t) var(--ease);
}
.drawer-links a:hover, .drawer-links a[aria-current="page"] { color: var(--gold); padding-left: .5rem; }
.drawer-foot { margin-top: auto; padding-top: 2rem; display: grid; gap: 1rem; }
.drawer-foot .btn { width: 100%; }
.drawer-meta { color: var(--on-navy-soft); font-size: .95rem; display: grid; gap: .3rem; }
.drawer-meta a:hover { color: var(--gold); }

/* ----------------------------------------------------------------- HERO */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: #fff; overflow: clip; isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(1,19,31,.55) 0%, rgba(1,19,31,.15) 35%, rgba(1,19,31,.55) 100%),
    linear-gradient(90deg, rgba(1,19,31,.78) 0%, rgba(1,19,31,.35) 45%, rgba(1,19,31,0) 75%);
}
.hero__content { padding-block: calc(var(--header-h) + 4vh) 8vh; max-width: 940px; }
.hero .eyebrow { color: var(--gold); }
.hero .eyebrow::before { background: var(--gold); }
.hero h1 {
  color: #fff; font-size: var(--fs-display); margin-top: 1.2rem;
  text-shadow: 0 2px 40px rgba(0,0,0,.25);
}
.hero h1 .accent { color: var(--gold); }
.hero__lead {
  margin-top: 1.6rem; max-width: 580px; font-size: var(--fs-lead);
  color: rgba(255,255,255,.86);
}
.hero__cta { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__stats {
  margin-top: clamp(2.5rem, 6vh, 4rem); display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 5vw, 3.5rem);
  padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.16);
}
.hero__stats .stat strong {
  font-family: "Inter Tight", sans-serif; color: #fff; font-weight: 800;
  font-feature-settings: "tnum" 1; letter-spacing: -.015em;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem); display: block; line-height: 1;
}
.hero__stats .stat span { color: var(--on-navy-soft); font-size: .92rem; letter-spacing: .02em; }
.hero__scroll {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  display: grid; justify-items: center; gap: .5rem; color: rgba(255,255,255,.7);
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
}
.hero__scroll .mouse {
  width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px; position: relative;
}
.hero__scroll .mouse::after {
  content: ""; position: absolute; top: 7px; left: 50%; width: 4px; height: 7px; margin-left: -2px;
  background: var(--gold); border-radius: 2px; animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot { 0%{opacity:0;transform:translateY(0)} 30%{opacity:1} 70%{opacity:1;transform:translateY(9px)} 100%{opacity:0;transform:translateY(12px)} }

/* page hero (inner pages) */
.pagehero {
  position: relative; color: #fff; overflow: clip; isolation: isolate;
  padding-block: calc(var(--header-h) + clamp(3rem,8vw,6rem)) clamp(3rem,8vw,6rem);
  background: var(--navy);
}
.pagehero__media { position: absolute; inset: 0; z-index: -2; opacity: .5; }
.pagehero__media img { width: 100%; height: 100%; object-fit: cover; }
.pagehero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(1,19,31,.6), rgba(0,42,69,.85));
}
.pagehero .eyebrow { color: var(--gold); }
.pagehero .eyebrow::before { background: var(--gold); }
.pagehero h1 { color: #fff; font-size: clamp(2.4rem, 6vw, 4.4rem); margin-top: 1rem; }
.pagehero .lead { margin-top: 1.2rem; max-width: 640px; color: rgba(255,255,255,.85); font-size: var(--fs-lead); }
.breadcrumb { display: flex; gap: .5rem; font-size: .85rem; color: var(--on-navy-soft); margin-bottom: .4rem; }
.breadcrumb a:hover { color: var(--gold); }

/* ----------------------------------------------------------------- GRID HELPERS */
.grid { display: grid; gap: clamp(1.2rem, 2.4vw, 2rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }

/* ----------------------------------------------------------------- CARDS / FEATURES */
.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(1.5rem, 2.5vw, 2.1rem); transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
  height: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card .ic {
  width: 54px; height: 54px; border-radius: var(--r-sm); display: grid; place-items: center;
  background: var(--bg-soft); color: var(--navy); margin-bottom: 1.1rem;
}
.card .ic svg { width: 26px; height: 26px; }
.card h3 { font-size: var(--fs-h3); margin-bottom: .5rem; }
.card p { color: var(--text-soft); }
.card--navy { background: var(--navy-700); border-color: var(--line-on-navy); color: var(--on-navy); }
.card--navy h3 { color: #fff; } .card--navy p { color: var(--on-navy-soft); }
.card--navy .ic { background: rgba(255,255,255,.08); color: var(--gold); }

/* service card with image */
.svc {
  position: relative; border-radius: var(--r); overflow: hidden; isolation: isolate;
  min-height: 360px; display: flex; align-items: flex-end; color: #fff;
  border: 1px solid var(--line);
}
.svc img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .9s var(--ease); }
.svc::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(1,19,31,0) 30%, rgba(1,19,31,.82) 100%); }
.svc:hover img { transform: scale(1.06); }
.svc__body { padding: clamp(1.4rem, 2.4vw, 2rem); }
.svc__body h3 { color: #fff; font-size: var(--fs-h3); }
.svc__body p { color: rgba(255,255,255,.84); margin-top: .4rem; }
.svc__tag { display: inline-block; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; font-weight: 600; }

/* ----------------------------------------------------------------- IMAGE+TEXT FEATURE */
.feature__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.feature__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.feature__media--wide img { aspect-ratio: 4/3; }
.badge-float {
  position: absolute; background: #fff; color: var(--navy); border-radius: var(--r);
  padding: 1rem 1.2rem; box-shadow: var(--shadow); display: flex; align-items: center; gap: .8rem;
}
.badge-float .n { font-family: "Inter Tight", sans-serif; font-weight: 800; font-size: 1.6rem; color: var(--navy); }
.badge-float small { display: block; font-size: .8rem; color: var(--text-soft); line-height: 1.3; }
.feature ul.checks { margin-top: 1.6rem; display: grid; gap: .85rem; }
.checks li { display: flex; gap: .75rem; align-items: flex-start; }
.checks li svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--gold); margin-top: 3px; }
.checks li b { color: var(--ink); font-weight: 600; }

/* ----------------------------------------------------------------- STATS STRIP */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stats .stat strong {
  font-family: "Inter Tight", sans-serif; font-weight: 800; color: var(--navy);
  font-feature-settings: "tnum" 1; letter-spacing: -.015em;
  font-size: clamp(2.3rem, 5vw, 3.7rem); display: block; line-height: 1;
}
.section--navy .stats .stat strong { color: var(--gold); }
.stats .stat span { color: var(--text-soft); font-size: .95rem; }
.section--navy .stats .stat span { color: var(--on-navy-soft); }

/* ----------------------------------------------------------------- PROCESS / ABLAUF */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); position: relative; }
.step { position: relative; }
.step__n {
  width: 58px; height: 58px; border-radius: var(--r-pill); display: grid; place-items: center;
  font-family: "Inter Tight", sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--navy);
  background: var(--gold); margin-bottom: 1.1rem; position: relative; z-index: 1;
}
.steps--line .step:not(:last-child)::after {
  content: ""; position: absolute; top: 29px; left: 58px; right: -1rem; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--line));
}
.step h3 { font-size: 1.18rem; margin-bottom: .4rem; }
.step p { color: var(--text-soft); font-size: .98rem; }
.section--navy .step h3 { color: #fff; }
.section--navy .step p { color: var(--on-navy-soft); }

/* ----------------------------------------------------------------- PORTFOLIO */
.filterbar { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.chip {
  padding: .55em 1.1em; border-radius: var(--r-pill); border: 1.5px solid var(--line-strong);
  font-weight: 500; font-size: .92rem; color: var(--text); transition: all var(--t) var(--ease);
}
.chip:hover { border-color: var(--navy); color: var(--navy); }
.chip.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }

.gallery { columns: 3; column-gap: clamp(1rem, 2vw, 1.6rem); }
.shot {
  position: relative; display: block; width: 100%; margin-bottom: clamp(1rem, 2vw, 1.6rem);
  break-inside: avoid; border-radius: var(--r); overflow: hidden; isolation: isolate;
  background: var(--bg-soft); box-shadow: var(--shadow-sm);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
}
.shot img { width: 100%; height: auto; transition: transform .8s var(--ease); }
.shot::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(1,19,31,0) 45%, rgba(1,19,31,.78));
  opacity: 0; transition: opacity var(--t) var(--ease);
}
.shot__cap {
  position: absolute; left: 0; bottom: 0; z-index: 2; padding: 1.2rem; color: #fff;
  transform: translateY(8px); opacity: 0; transition: all var(--t) var(--ease);
}
.shot__cap .t { font-weight: 600; font-size: 1.05rem; }
.shot__cap .c { font-size: .82rem; color: var(--gold); letter-spacing: .04em; }
.shot__zoom {
  position: absolute; top: 1rem; right: 1rem; z-index: 2; width: 42px; height: 42px;
  border-radius: var(--r-pill); background: rgba(255,255,255,.16); backdrop-filter: blur(6px);
  display: grid; place-items: center; color: #fff; opacity: 0; transform: scale(.8);
  transition: all var(--t) var(--ease);
}
.shot:hover img { transform: scale(1.05); }
.shot:hover::after, .shot:hover .shot__cap, .shot:hover .shot__zoom { opacity: 1; transform: none; }
.shot.is-hidden { display: none; }

/* ----------------------------------------------------------------- LIGHTBOX */
.lightbox {
  position: fixed; inset: 0; z-index: var(--z-lightbox); display: grid; place-items: center;
  background: rgba(1,13,21,.92); backdrop-filter: blur(8px); padding: clamp(1rem, 4vw, 3rem);
  opacity: 0; visibility: hidden; transition: opacity var(--t) var(--ease), visibility var(--t);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img { max-width: min(1100px, 92vw); max-height: 82vh; border-radius: var(--r); box-shadow: var(--shadow-lg); transform: scale(.96); transition: transform var(--t) var(--ease); }
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__cap { position: absolute; bottom: clamp(1rem,3vw,2rem); left: 0; right: 0; text-align: center; color: #fff; }
.lightbox__cap .c { color: var(--gold); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; }
.lb-btn {
  position: absolute; width: 54px; height: 54px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff;
  display: grid; place-items: center; transition: background var(--t) var(--ease), transform var(--t) var(--ease);
}
.lb-btn:hover { background: rgba(255,255,255,.22); }
.lb-close { top: clamp(1rem,3vw,2rem); right: clamp(1rem,3vw,2rem); }
.lb-prev { left: clamp(.5rem,2vw,2rem); top: 50%; transform: translateY(-50%); }
.lb-next { right: clamp(.5rem,2vw,2rem); top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lb-next:hover { transform: translateY(-50%) translateX(3px); }

/* ----------------------------------------------------------------- PRICING */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.4vw, 1.8rem); align-items: stretch; }
.plan {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem); display: flex; flex-direction: column;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.plan--featured { background: var(--navy); color: var(--on-navy); border-color: var(--navy); box-shadow: var(--shadow-lg); position: relative; }
.plan--featured h3, .plan--featured .price b { color: #fff; }
.plan__tag { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; color: var(--navy); }
.plan--featured .plan__tag { color: var(--gold); }
.plan__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy); font-weight: 700; font-size: .76rem;
  letter-spacing: .1em; text-transform: uppercase; padding: .35em 1em; border-radius: var(--r-pill);
}
.plan h3 { font-size: 1.5rem; margin: .5rem 0 .2rem; }
.plan .price { display: flex; align-items: baseline; gap: .3rem; margin: 1rem 0 .2rem; }
.plan .price b { font-family: "Inter Tight", sans-serif; font-weight: 800; font-feature-settings: "tnum" 1; letter-spacing: -.02em; font-size: 2.7rem; color: var(--navy); }
.plan--featured .price b { color: #fff; }
.plan .price .pre { font-size: .9rem; color: var(--text-soft); }
.plan--featured .price .pre { color: var(--on-navy-soft); }
.plan .desc { color: var(--text-soft); font-size: .96rem; margin-bottom: 1.2rem; }
.plan--featured .desc { color: var(--on-navy-soft); }
.plan ul.feat { display: grid; gap: .7rem; margin: 1.2rem 0 1.8rem; border-top: 1px solid var(--line); padding-top: 1.4rem; }
.plan--featured ul.feat { border-color: var(--line-on-navy); }
.plan ul.feat li { display: flex; gap: .6rem; align-items: flex-start; font-size: .96rem; }
.plan ul.feat li svg { flex: 0 0 auto; width: 19px; height: 19px; color: var(--gold); margin-top: 4px; }
.plan .btn { margin-top: auto; width: 100%; }

/* feature-group label inside plan/tier cards */
.feat .grp { list-style: none; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); font-weight: 700; padding-top: .6rem; }
.feat .grp:first-child { padding-top: 0; }
.plan--featured .feat .grp { color: var(--gold); }

/* ----------------------------------------------------------------- PRICE TABLES */
.pwrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r); box-shadow: var(--shadow-sm); }
.ptable { width: 100%; border-collapse: collapse; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; min-width: 340px; }
.ptable th, .ptable td { padding: .85rem 1.15rem; text-align: left; border-bottom: 1px solid var(--line); }
.ptable th:not(:first-child), .ptable td:not(:first-child) { text-align: right; }
.ptable thead th { background: var(--navy); color: #fff; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }
.ptable thead th.is-feat { background: var(--gold); color: var(--navy); }
.ptable tbody td:first-child { font-weight: 600; color: var(--ink); }
.ptable tbody td.price { font-weight: 800; color: var(--navy); font-variant-numeric: tabular-nums; white-space: nowrap; }
.ptable tbody td.is-feat { background: rgba(255, 212, 74, .12); }
.ptable tbody tr:last-child td { border-bottom: 0; }
.ptable tbody tr:hover td { background: var(--bg-soft); }
.ptable tbody tr:hover td.is-feat { background: rgba(255, 212, 74, .2); }
.ptitle { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.ptitle .ic { width: 44px; height: 44px; border-radius: var(--r-sm); display: grid; place-items: center; background: var(--bg-soft); color: var(--navy); flex: 0 0 auto; }
.ptitle .ic svg { width: 22px; height: 22px; }
.ptitle h3 { font-size: var(--fs-h3); }

/* intro-offer badge */
.badge-pill { display: inline-flex; align-items: center; gap: .45rem; background: var(--gold); color: var(--navy); font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; padding: .4em 1em; border-radius: var(--r-pill); }
.pricenote { color: var(--text-soft); font-size: .9rem; margin-top: .9rem; }

/* feature comparison table */
.ptable--compare th:not(:first-child), .ptable--compare td:not(:first-child) { text-align: center; }
.ptable--compare td.val { font-weight: 700; color: var(--navy); white-space: nowrap; }
.ptable--compare .yes { color: var(--gold-600); display: inline-flex; }
.ptable--compare .no { color: var(--text-soft); font-weight: 700; opacity: .55; }

/* ----------------------------------------------------------------- PRICE CONFIGURATOR */
.config { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(1.5rem, 3vw, 2.5rem); background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow); }
.config__form { display: grid; gap: 1.1rem; align-content: start; }
.config__form .field-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cfield label { display: block; font-weight: 600; font-size: .92rem; color: var(--ink); margin-bottom: .4rem; }
.cfield select { width: 100%; padding: .85rem 1rem; min-height: 48px; background: var(--bg-soft); border: 1.5px solid transparent; border-radius: var(--r-sm); color: var(--ink); cursor: pointer; transition: border-color var(--t) var(--ease), background var(--t) var(--ease); }
.cfield select:focus { outline: none; border-color: var(--navy); background: #fff; }
.cfg-toggle { margin-top: .2rem; font-size: .95rem; }
.cfg-toggle .muted { font-size: .85rem; }
.config__summary { background: var(--navy); color: var(--on-navy); border-radius: var(--r); padding: clamp(1.4rem, 2.5vw, 2rem); align-self: start; position: sticky; top: calc(var(--header-h) + 1rem); }
.config__summary h3 { color: #fff; font-size: 1.25rem; margin-bottom: 1.1rem; }
.config__lines { display: grid; gap: .55rem; border-bottom: 1px solid var(--line-on-navy); padding-bottom: 1.1rem; margin-bottom: 1.1rem; min-height: 44px; }
.config__lines li { display: flex; justify-content: space-between; gap: 1rem; font-size: .92rem; color: var(--on-navy-soft); }
.config__lines li b { color: #fff; font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.config__lines .empty { color: var(--on-navy-faint); font-style: italic; }
.config__total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1.2rem; }
.config__total span { color: var(--on-navy-soft); font-weight: 600; }
.config__total strong { font-size: clamp(1.9rem, 4vw, 2.4rem); color: var(--gold); font-weight: 800; font-variant-numeric: tabular-nums; }
.config__summary .btn { width: 100%; }
.config__note { color: var(--on-navy-faint); font-size: .8rem; margin-top: .85rem; text-align: center; }
@media (max-width: 820px) { .config { grid-template-columns: 1fr; } .config__summary { position: static; } }

/* ----------------------------------------------------------------- FAQ */
.faq { display: grid; gap: .8rem; max-width: 860px; }
.qa { border: 1px solid var(--line); border-radius: var(--r); background: var(--bg); overflow: hidden; transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease); }
.qa[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.qa summary {
  list-style: none; cursor: pointer; padding: 1.2rem 1.4rem; display: flex; gap: 1rem;
  align-items: center; justify-content: space-between; font-weight: 600; color: var(--ink); font-size: 1.06rem;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary .pm { flex: 0 0 auto; width: 26px; height: 26px; position: relative; transition: transform var(--t) var(--ease); color: var(--navy); }
.qa summary .pm::before, .qa summary .pm::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.qa summary .pm::before { top: 12px; left: 4px; right: 4px; height: 2px; }
.qa summary .pm::after { left: 12px; top: 4px; bottom: 4px; width: 2px; transition: transform var(--t) var(--ease); }
.qa[open] summary .pm { color: var(--gold-600); }
.qa[open] summary .pm::after { transform: scaleY(0); }
.qa__body { padding: 0 1.4rem; }
.qa__body p { color: var(--text-soft); padding-bottom: 1.3rem; }

/* ----------------------------------------------------------------- TESTIMONIAL */
.quote { max-width: 880px; margin-inline: auto; text-align: center; }
.quote .mark { font-family: "Bristone", sans-serif; color: var(--gold); font-size: 4rem; line-height: .5; }
.quote blockquote { font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 1.4; color: #fff; font-weight: 500; margin: 1.2rem 0 1.6rem; }
.quote cite { font-style: normal; color: var(--on-navy-soft); }
.quote cite b { color: var(--gold); font-weight: 600; display: block; }

/* ----------------------------------------------------------------- CTA BAND */
.cta-band { position: relative; overflow: hidden; isolation: isolate; border-radius: clamp(0px, 0px, 0px); color: #fff; }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(110deg, rgba(0,42,69,.92), rgba(1,19,31,.7)); }
.cta-band .inner { text-align: center; max-width: 720px; margin-inline: auto; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); margin-top: 1rem; font-size: var(--fs-lead); }
.cta-band .hero__cta { justify-content: center; margin-top: 2rem; }

/* ----------------------------------------------------------------- CONTACT FORM */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.info-list { display: grid; gap: 1.4rem; margin-top: 2rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-item .ic { flex: 0 0 auto; width: 48px; height: 48px; border-radius: var(--r-sm); display: grid; place-items: center; background: var(--bg-soft); color: var(--navy); }
.section--navy .info-item .ic { background: rgba(255,255,255,.08); color: var(--gold); }
.info-item .ic svg { width: 22px; height: 22px; }
.info-item h4 { font-size: 1.02rem; color: var(--ink); margin-bottom: .15rem; }
.section--navy .info-item h4 { color: #fff; }
.info-item p, .info-item a { color: var(--text-soft); }
.section--navy .info-item p, .section--navy .info-item a { color: var(--on-navy-soft); }
.info-item a:hover { color: var(--gold-600); }
.section--navy .info-item a:hover { color: var(--gold); }

.form { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow); }
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-weight: 600; font-size: .92rem; color: var(--ink); margin-bottom: .4rem; }
.field label .req { color: var(--gold-600); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; min-height: 48px; background: var(--bg-soft);
  border: 1.5px solid transparent; border-radius: var(--r-sm); color: var(--ink);
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-soft); opacity: .8; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); background: #fff; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #d64545; background: #fdf3f3; }
.field .err { display: none; color: #c23b3b; font-size: .85rem; margin-top: .35rem; }
.field.has-error .err { display: block; }
.field .hint { color: var(--text-soft); font-size: .85rem; margin-top: .35rem; }
.check { display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; color: var(--text-soft); }
.check input { width: 20px; height: 20px; min-height: 0; flex: 0 0 auto; margin-top: 2px; accent-color: var(--navy); }
.check a { color: var(--navy); text-decoration: underline; }
.form-status { margin-top: 1rem; padding: .9rem 1.1rem; border-radius: var(--r-sm); font-size: .95rem; display: none; }
.form-status.is-ok { display: block; background: #e8f6ee; color: #1f7a44; border: 1px solid #b7e3c8; }
.form-status.is-err { display: block; background: #fdecec; color: #b23636; border: 1px solid #f3c4c4; }

/* ----------------------------------------------------------------- MAP */
.map-embed { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); aspect-ratio: 16/8; position: relative; }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2) contrast(1.02); }
.map-consent { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .9rem; text-align: center; padding: 1.5rem; background: var(--navy); color: var(--on-navy); }
.map-consent p { margin: 0; max-width: 40ch; font-size: .95rem; line-height: 1.5; color: var(--on-navy-soft); }
.map-consent p strong { color: #fff; }
.map-consent__note { font-size: .8rem !important; }
.map-consent a { color: var(--gold); }
.map-embed.is-consented .map-consent { display: none; }

/* Cookie-/Consent-Banner */
.cookie-banner { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 1000; max-width: 660px; margin-inline: auto; background: var(--navy); color: var(--on-navy); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-lg); box-shadow: 0 18px 55px rgba(0,0,0,.4); padding: 1.15rem 1.3rem; transform: translateY(160%); transition: transform .5s cubic-bezier(.16,1,.3,1); }
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p { margin: 0 0 .95rem; font-size: .88rem; line-height: 1.55; color: var(--on-navy-soft); }
.cookie-banner p strong { color: #fff; }
.cookie-banner a { color: var(--gold); }
.cookie-banner__actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.cookie-banner__actions .btn { flex: 1 1 auto; justify-content: center; }
@media (max-width: 520px) { .cookie-banner__actions { flex-direction: column; } }

/* ----------------------------------------------------------------- FOOTER */
.site-footer { background: var(--navy-900); color: var(--on-navy-soft); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(1.6rem, 3vw, 2.5rem); padding-bottom: 3rem; border-bottom: 1px solid var(--line-on-navy); }
.footer-brand img { height: 46px; margin-bottom: 1.1rem; }
.footer-brand p { color: var(--on-navy-soft); max-width: 320px; }
.footer-soc { display: flex; gap: .7rem; margin-top: 1.4rem; }
.footer-soc a { width: 42px; height: 42px; border-radius: var(--r-sm); border: 1px solid var(--line-on-navy); display: grid; place-items: center; color: #fff; transition: all var(--t) var(--ease); }
.footer-soc a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: .65rem; }
.footer-col a:hover { color: var(--gold); }
.footer-col .row { display: flex; gap: .6rem; align-items: flex-start; }
.footer-col .row svg { width: 18px; height: 18px; color: var(--gold); flex: 0 0 auto; margin-top: 4px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; padding: 1.6rem 0; font-size: .88rem; }
.footer-bottom .links { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--gold); }

/* ----------------------------------------------------------------- MISC */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 2.4rem 0 1rem; }
.prose h3 { font-size: 1.25rem; margin: 1.8rem 0 .6rem; color: var(--navy); }
.prose p, .prose li { color: var(--text); margin-bottom: 1rem; }
.prose ul { list-style: disc; padding-left: 1.3rem; display: grid; gap: .4rem; margin-bottom: 1rem; }
.prose a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--gold-600); }
.prose strong { color: var(--ink); }
.muted { color: var(--text-soft); }
.center { text-align: center; }
.mt-l { margin-top: 2.5rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.tag { padding: .4em .9em; border-radius: var(--r-pill); background: var(--bg-soft); color: var(--navy); font-size: .82rem; font-weight: 500; }
.section--navy .tag { background: rgba(255,255,255,.08); color: var(--on-navy); }

/* logo banner / trust strip */
.trust { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.5rem, 5vw, 3.5rem); opacity: .9; }
.trust .item { display: flex; align-items: center; gap: .6rem; color: var(--text-soft); font-weight: 600; font-size: .95rem; }
.trust .item svg { width: 22px; height: 22px; color: var(--navy); }

/* ----------------------------------------------------------------- REVEAL ANIMATIONS */
.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.js [data-reveal="left"] { transform: translateX(-32px); }
.js [data-reveal="right"] { transform: translateX(32px); }
.js [data-reveal="scale"] { transform: scale(.94); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
[data-stagger] > * { transition-delay: calc(var(--i, 0) * 80ms); }

/* ----------------------------------------------------------------- RESPONSIVE */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .gallery { columns: 2; }
}
@media (max-width: 900px) {
  .nav-links, .nav > .btn { display: none; }
  .nav-toggle { display: flex; }
  .split { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps--line .step::after { display: none; }
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .plan--featured { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
}
@media (max-width: 560px) {
  :root { --header-h: 66px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .8rem; }
}

/* ----------------------------------------------------------------- REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__scroll .mouse::after { animation: none; }
}

/* print */
@media print {
  .site-header, .drawer, .hero__scroll, .cta-band, .nav-toggle { display: none !important; }
  body { color: #000; }
}
