/* =========================================================
   Auto centar Kos — Global stylesheet
   Light theme with red accents
   ========================================================= */

:root {
  --red: #e1141d;
  --red-dark: #b40e15;
  --red-soft: #fdecec;
  --ink: #14171c;
  --ink-2: #3a4049;
  --muted: #6b727c;
  --line: #e7e9ee;
  --bg: #ffffff;
  --bg-2: #f6f7f9;
  --bg-3: #eef0f4;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(20, 23, 28, .08);
  --shadow: 0 10px 30px rgba(20, 23, 28, .10);
  --shadow-lg: 0 24px 60px rgba(20, 23, 28, .16);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --header-h: 84px;
  --container: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --font: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; letter-spacing: -.02em; color: var(--red); }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.3rem; }
p { color: var(--ink-2); }
section { position: relative; }
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }

/* ---------- Utilities ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); border-radius: 2px; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tint { background: var(--bg-2); }
.section-head { max-width: 720px; margin-bottom: 46px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 14px; font-size: 1.06rem; }
.text-red { color: var(--red); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: .95rem;
  cursor: pointer; border: 2px solid transparent; transition: transform .25s var(--ease), background .25s, box-shadow .25s, color .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(225, 20, 29, .28); }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(225, 20, 29, .36); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 17px 34px; font-size: 1rem; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 255, 255, .86);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .35s var(--ease), background .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .6);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  box-shadow: var(--shadow-sm);
  border-bottom-color: rgba(20, 23, 28, .06);
}
.nav {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav__brand { display: flex; align-items: center; flex-shrink: 0; }
.nav__brand svg, .nav__brand img { height: 34px; width: auto; }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 11px; font-weight: 600; font-size: .875rem; color: var(--ink-2);
  border-radius: 10px; transition: color .2s, background .2s; white-space: nowrap;
}
.nav__link:hover, .nav__item.is-active > .nav__link { color: var(--red); }
.nav__link .caret { width: 11px; height: 11px; transition: transform .3s var(--ease); }
.nav__item.has-dropdown:hover .caret { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 250px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .24s var(--ease), transform .24s var(--ease), visibility .24s;
}
.nav__item.has-dropdown:hover .dropdown,
.nav__item.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: 10px; font-weight: 600; font-size: .92rem; color: var(--ink-2);
  transition: background .2s, color .2s, padding .2s;
}
.dropdown a:hover { background: var(--red-soft); color: var(--red); padding-left: 18px; }
.dropdown a .db {
  width: 54px; height: 42px; border-radius: 10px; background: transparent;
  display: grid; place-items: center; flex-shrink: 0;
}
.dropdown a .db img { height: 26px; max-width: 46px; width: auto; object-fit: contain; }
.dropdown a .db--icon svg { width: 24px; height: 24px; color: var(--red); }
.dropdown a > span:not(.db) { white-space: nowrap; }
.dropdown a small { display: block; font-weight: 500; color: var(--muted); font-size: .76rem; white-space: nowrap; }
.dropdown a .ext { margin-left: auto; opacity: .4; width: 13px; height: 13px; flex-shrink: 0; }

.nav__cta { flex-shrink: 0; }

/* Hamburger */
.nav__burger {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: #fff; border-radius: 12px; cursor: pointer; position: relative; flex-shrink: 0;
  transition: border-color .2s;
}
.nav__burger:hover { border-color: var(--red); }
.nav__burger span {
  position: absolute; left: 50%; top: 50%; width: 20px; height: 2px; background: var(--ink);
  border-radius: 2px; transform: translate(-50%, -50%); transition: transform .35s var(--ease), opacity .2s, width .3s var(--ease);
}
.nav__burger span:nth-child(1) { transform: translate(-50%, -8px); }
.nav__burger span:nth-child(3) { transform: translate(-50%, 6px); }

/* =========================================================
   MOBILE DRAWER (right side, animated)
   ========================================================= */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(15, 18, 22, .48);
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s; z-index: 1100;
  backdrop-filter: blur(2px);
}
.mobile-drawer {
  position: fixed; top: 0; right: 0; height: 100dvh; width: min(86vw, 380px);
  background: #fff; z-index: 1200; box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .45s var(--ease);
  display: flex; flex-direction: column;
}
body.drawer-open .mobile-drawer { transform: translateX(0); }
body.drawer-open .drawer-overlay { opacity: 1; visibility: visible; }
body.drawer-open { overflow: hidden; }
/* burger -> X */
body.drawer-open .nav__burger span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
body.drawer-open .nav__burger span:nth-child(2) { opacity: 0; width: 0; }
body.drawer-open .nav__burger span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; border-bottom: 1px solid var(--line); flex-shrink: 0;
}
.drawer__head svg, .drawer__head img { height: 28px; width: auto; }
.drawer__close {
  width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); background: #fff;
  cursor: pointer; display: grid; place-items: center; color: var(--ink); transition: .2s;
}
.drawer__close:hover { background: var(--red); color: #fff; border-color: var(--red); }
.drawer__body { overflow-y: auto; padding: 12px 14px 24px; flex: 1; }
/* staggered reveal of items */
.drawer__body .m-item {
  opacity: 0; transform: translateX(24px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
body.drawer-open .drawer__body .m-item { opacity: 1; transform: translateX(0); }
.m-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 14px; font-weight: 700; font-size: 1.05rem; color: var(--ink);
  border-radius: 10px; transition: background .2s, color .2s;
}
.m-link:hover { background: var(--bg-2); color: var(--red); }
.m-item.has-sub > .m-link { cursor: pointer; }
.m-toggle { background: none; border: none; }
.m-link .m-caret { width: 16px; height: 16px; color: var(--muted); transition: transform .35s var(--ease); flex-shrink: 0; }
.m-item.open > .m-link .m-caret { transform: rotate(180deg); color: var(--red); }
.m-sub { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.m-item.open > .m-sub { max-height: 640px; }
.m-sub a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px 11px 16px; font-weight: 600; color: var(--ink-2); font-size: .95rem; border-radius: 10px;
}
.m-sub a:hover { color: var(--red); background: var(--bg-2); }
.m-sub a .m-logo { width: 42px; height: 28px; display: grid; place-items: center; flex-shrink: 0; }
.m-sub a .m-logo img { height: 22px; max-width: 38px; width: auto; object-fit: contain; }
.m-sub a .m-logo--icon svg { width: 20px; height: 20px; color: var(--red); }
.m-sub a .ext { width: 13px; height: 13px; opacity: .45; margin-left: auto; }
.drawer__foot { padding: 18px 22px; border-top: 1px solid var(--line); flex-shrink: 0; }
.drawer__foot .btn { width: 100%; }
.drawer__contact { margin-top: 16px; font-size: .88rem; color: var(--muted); }
.drawer__contact a { color: var(--ink-2); font-weight: 600; display: block; margin-top: 4px; }

/* =========================================================
   HERO SLIDER (homepage)
   ========================================================= */
.hero-slider { position: relative; height: calc(100vh - var(--header-h)); min-height: 560px; max-height: 820px; overflow: hidden; background: #0d0f13; }
.slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 1s var(--ease), visibility 1s;
  display: flex; align-items: center;
}
.slide.active { opacity: 1; visibility: visible; }
.slide__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.slide__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10,12,16,.86) 0%, rgba(10,12,16,.55) 48%, rgba(10,12,16,.2) 100%); }
.slide .container { position: relative; z-index: 2; width: 100%; }
.slide__inner { max-width: 620px; color: #fff; }
.slide__logo {
  height: clamp(68px, 8vw, 104px); margin-bottom: 28px;
  filter: brightness(0) invert(1);
  opacity: 0; transform: translateY(24px);
}
.slide__badge {
  display: inline-block; padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
  background: var(--red); color: #fff; font-weight: 700; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  opacity: 0; transform: translateY(24px);
}
.slide h2 { color: #fff; font-size: clamp(2.1rem, 5.4vw, 4rem); margin-bottom: 16px; opacity: 0; transform: translateY(24px); }
.slide__inner p { color: rgba(255,255,255,.82); font-size: 1.12rem; max-width: 500px; margin-bottom: 30px; opacity: 0; transform: translateY(24px); }
.slide__actions { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; transform: translateY(24px); }
.slide.active .slide__badge { animation: slideUp .7s var(--ease) .2s forwards; }
.slide.active .slide__logo { animation: slideUp .7s var(--ease) .32s forwards; }
.slide.active h2 { animation: slideUp .7s var(--ease) .44s forwards; }
.slide.active .slide__inner p { animation: slideUp .7s var(--ease) .56s forwards; }
.slide.active .slide__actions { animation: slideUp .7s var(--ease) .68s forwards; }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }

.slider-arrows { position: absolute; z-index: 5; bottom: 40px; right: max(22px, calc((100vw - var(--container)) / 2 + 22px)); display: flex; gap: 12px; }
.slider-arrows button {
  width: 54px; height: 54px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.06); color: #fff; cursor: pointer; display: grid; place-items: center;
  transition: .25s; backdrop-filter: blur(4px);
}
.slider-arrows button:hover { background: var(--red); border-color: var(--red); transform: scale(1.06); }
.slider-dots { position: absolute; z-index: 5; bottom: 40px; left: max(22px, calc((100vw - var(--container)) / 2 + 22px)); display: flex; gap: 10px; align-items: center; }
.slider-dots button {
  width: 30px; height: 4px; border-radius: 4px; border: none; background: rgba(255,255,255,.35); cursor: pointer; transition: .3s; padding: 0;
}
.slider-dots button.active { background: var(--red); width: 46px; }
.slide__count { position: absolute; z-index: 5; top: 40px; right: max(22px, calc((100vw - var(--container)) / 2 + 22px)); color: #fff; font-weight: 700; letter-spacing: .1em; font-size: .9rem; }
.slide__count b { font-size: 1.3rem; }
.slide__count span { opacity: .5; }

/* =========================================================
   PAGE HEADER (inner pages – classic)
   ========================================================= */
.page-header {
  position: relative; padding: clamp(56px, 9vw, 104px) 0 clamp(48px, 7vw, 76px);
  background: linear-gradient(120deg, #0b0d11 0%, #14171c 55%, #0b0d11 100%);
  border-bottom: 1px solid rgba(255, 255, 255, .07); overflow: hidden;
}
.page-header::before {
  content: ""; position: absolute; top: -140px; right: -60px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(225, 20, 29, .38), transparent 62%); pointer-events: none;
}
.page-header::after {
  content: ""; position: absolute; bottom: -180px; left: -120px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(225, 20, 29, .16), transparent 65%); pointer-events: none;
}
.page-header .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .86rem; color: var(--muted); margin-bottom: 16px; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); font-weight: 600; transition: color .2s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span.sep { opacity: .5; }
.breadcrumb .current { color: var(--red); font-weight: 700; }
.page-header h1 { margin-bottom: 12px; color: #fff; }
.page-header .lead { font-size: 1.14rem; max-width: 680px; color: rgba(255, 255, 255, .82); }
.page-header .breadcrumb, .page-header .breadcrumb a { color: rgba(255, 255, 255, .6); }
.page-header .breadcrumb a:hover { color: #fff; }
.page-header .breadcrumb .current { color: #ff5a60; }

/* =========================================================
   GRID / CARDS
   ========================================================= */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
  text-align: center;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon {
  width: 58px; height: 58px; border-radius: 14px; background: var(--red-soft); color: var(--red);
  display: grid; place-items: center; margin: 0 auto 20px;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .96rem; }
.card__link { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; color: var(--red); font-weight: 700; font-size: .9rem; }
.card__link svg { width: 15px; height: 15px; transition: transform .25s; }
.card:hover .card__link svg { transform: translateX(4px); }

/* Brand cards */
.brand-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 26px; text-align: center; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
  display: flex; flex-direction: column; align-items: center;
}
.brand-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--red); }
.brand-card__logo { height: 74px; display: grid; place-items: center; margin-bottom: 20px; }
.brand-card__logo img { height: 50px; max-width: 132px; width: auto; object-fit: contain; }
.brand-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.brand-card p { font-size: .88rem; margin-bottom: 16px; }
.brand-card .card__link { margin-top: auto; }

/* =========================================================
   STATS / COUNTERS
   ========================================================= */
.stats { background: var(--ink); color: #fff; }
.stats .grid { gap: 20px; }
.stat { text-align: center; padding: 20px; }
.stat__num { font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -.03em; color: #fff; line-height: 1; }
.stat__num .suffix { color: var(--red); }
.stat__label { margin-top: 12px; color: rgba(255,255,255,.6); font-weight: 600; font-size: .95rem; }
.stat__line { width: 40px; height: 3px; background: var(--red); border-radius: 3px; margin: 16px auto 0; }

/* =========================================================
   SPLIT (image + text)
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split__media .badge-float {
  position: absolute; left: 22px; bottom: 22px; background: #fff; border-radius: var(--radius);
  padding: 16px 22px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px;
}
.split__media .badge-float b { font-size: 1.8rem; color: var(--red); line-height: 1; }
.split__media .badge-float small { color: var(--muted); font-weight: 600; }
.split ul.ticks { margin-top: 22px; display: grid; gap: 12px; }
.split ul.ticks li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-2); font-weight: 500; }
.split ul.ticks li svg { width: 22px; height: 22px; color: var(--red); flex-shrink: 0; margin-top: 1px; }
.split__text > .btn { margin-top: 28px; }

/* image placeholder (for photos to be added later) */
.media-placeholder {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border: 2px dashed #cfd4dc; display: grid; place-items: center; text-align: center; padding: 24px;
}
.media-placeholder__in { display: grid; place-items: center; gap: 6px; }
.media-placeholder svg { width: 48px; height: 48px; color: var(--red); opacity: .55; }
.media-placeholder strong { color: var(--ink-2); font-weight: 700; }
.media-placeholder small { color: var(--muted); font-size: .85rem; }

/* =========================================================
   BRAND HERO (brand pages)
   ========================================================= */
.brand-hero { padding: clamp(48px, 8vw, 92px) 0; color: #fff; position: relative; overflow: hidden; }
.brand-hero .container { position: relative; z-index: 2; }
.brand-hero__logo { height: 60px; margin-bottom: 26px; }
.brand-hero__logo img { height: 100%; width: auto; }
.brand-hero h1 { color: #fff; margin-bottom: 16px; }
.brand-hero p { color: rgba(255,255,255,.85); font-size: 1.14rem; max-width: 560px; }
.brand-hero .breadcrumb, .brand-hero .breadcrumb a { color: rgba(255,255,255,.7); }
.brand-hero .breadcrumb .current { color: #fff; }

.model-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s; display: flex; flex-direction: column;
}
.model-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.model-card__media { aspect-ratio: 16/10; display: grid; place-items: center; position: relative; }
.model-card__media span { font-weight: 800; font-size: 1.4rem; color: rgba(255,255,255,.9); }
.model-card__body { padding: 22px; }
.model-card__body h3 { font-size: 1.1rem; margin-bottom: 6px; }
.model-card__body p { font-size: .9rem; }
.tag { display: inline-block; padding: 4px 11px; border-radius: 999px; background: var(--red-soft); color: var(--red); font-weight: 700; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band { background: linear-gradient(120deg, var(--red), var(--red-dark)); color: #fff; border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 60px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before, .cta-band::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.08); }
.cta-band::before { width: 260px; height: 260px; top: -120px; left: -60px; }
.cta-band::after { width: 200px; height: 200px; bottom: -110px; right: -40px; }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 560px; margin: 14px auto 26px; }
.cta-band .btn--light { color: var(--red); }
.cta-band .btn--light:hover { background: var(--ink); color: #fff; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.info-box { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: border-color .3s, transform .3s; }
.info-box:hover { border-color: var(--red); transform: translateY(-3px); }
.info-box__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--red-soft); color: var(--red); display: grid; place-items: center; flex-shrink: 0; }
.info-box__ic svg { width: 22px; height: 22px; }
.info-box h4 { font-size: 1rem; margin-bottom: 4px; }
.info-box p, .info-box a { font-size: .94rem; color: var(--ink-2); }
.info-box a:hover { color: var(--red); }

.form { display: grid; gap: 16px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-weight: 600; font-size: .86rem; margin-bottom: 7px; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; font-family: inherit;
  font-size: .95rem; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px var(--red-soft); }
.form .consent { display: flex; gap: 10px; align-items: flex-start; font-size: .84rem; color: var(--muted); }
.form .consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--red); flex-shrink: 0; }
.form-note { font-size: .82rem; color: var(--muted); }

.map-embed { border: 0; width: 100%; height: 420px; border-radius: var(--radius); filter: grayscale(.2); }

/* ---- Contact directory (kontakt.html) ---- */
.info-bar { display: flex; flex-wrap: wrap; gap: 14px 34px; padding: 20px 24px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 40px; }
.info-bar .item { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink-2); font-size: .94rem; }
.info-bar .item svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; }
.info-bar .item a { color: var(--ink-2); }
.info-bar .item a:hover { color: var(--red); }

.brand-contacts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.brand-contact { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.brand-contact:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--red); }
.brand-contact__logo { height: 48px; display: grid; place-items: center; margin-bottom: 16px; }
.brand-contact__logo img { height: 40px; max-width: 120px; width: auto; object-fit: contain; }
.brand-contact__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 2px; border-top: 1px solid var(--line); }
.brand-contact__row .lbl { display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.brand-contact__row .lbl svg { width: 16px; height: 16px; color: var(--red); }
.brand-contact__row a { font-weight: 800; font-size: 1.05rem; color: var(--ink); white-space: nowrap; }
.brand-contact__row a:hover { color: var(--red); }
.brand-contact__row .soon { font-weight: 700; font-size: .82rem; color: var(--muted); font-style: italic; }

.hours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 44px; }
.hours-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; }
.hours-card h4 { font-size: 1rem; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.hours-card h4 svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }
.hours-card .hrow { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; font-size: .92rem; color: var(--ink-2); border-top: 1px solid var(--line); }
.hours-card .hrow:first-of-type { border-top: none; }
.hours-card .hrow b { color: var(--ink); font-weight: 700; }

.dept { margin-bottom: 42px; }
.dept:last-child { margin-bottom: 0; }
.dept-head { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 22px; padding: 16px 24px; background: linear-gradient(100deg, var(--red), var(--red-dark)); border: none; border-radius: var(--radius); box-shadow: 0 10px 24px rgba(225, 20, 29, .22); }
.dept-head h3 { font-size: 1.25rem; color: #fff; }
.dept-logos { display: flex; align-items: center; gap: 18px; flex-shrink: 0; margin-left: auto; }
.dept-logos img { height: 46px; width: auto; max-width: 116px; object-fit: contain; filter: brightness(0) invert(1); }

.people { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
/* center groups that have only one or two people */
.people:has(.person:nth-child(2):last-child),
.people:has(.person:only-child) { display: flex; flex-wrap: wrap; justify-content: center; }
.people:has(.person:nth-child(2):last-child) > .person,
.people:has(.person:only-child) > .person { flex: 1 1 300px; max-width: 380px; }
.person { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.person:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--red); }
.person__name { font-weight: 800; color: var(--ink); font-size: 1.02rem; }
.person__role { color: var(--muted); font-size: .85rem; margin: 4px 0 14px; }
.person__row { display: flex; align-items: center; gap: 9px; font-size: .92rem; margin-top: 8px; }
.person__row svg { width: 15px; height: 15px; color: var(--red); flex-shrink: 0; }
.person__row a { color: var(--ink-2); font-weight: 600; word-break: break-word; }
.person__row a:hover { color: var(--red); }

/* ---- Gallery + lightbox ---- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery__item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 4 / 3; background: var(--bg-2); box-shadow: var(--shadow-sm); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(20, 23, 28, .4)); opacity: 0; transition: opacity .3s; }
.gallery__item:hover::after { opacity: 1; }
.gallery__zoom { position: absolute; right: 14px; bottom: 14px; z-index: 2; width: 42px; height: 42px; border-radius: 50%; background: rgba(255, 255, 255, .92); color: var(--red); display: grid; place-items: center; opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s; }
.gallery__zoom svg { width: 20px; height: 20px; }
.gallery__item:hover .gallery__zoom { opacity: 1; transform: translateY(0); }

.lightbox { position: fixed; inset: 0; z-index: 1400; background: rgba(9, 11, 15, .95); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox button { background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .28); color: #fff; cursor: pointer; display: grid; place-items: center; border-radius: 50%; transition: background .2s, border-color .2s, transform .2s; position: absolute; }
.lightbox button svg { width: 22px; height: 22px; }
.lightbox button:hover { background: var(--red); border-color: var(--red); }
.lightbox__close { top: 22px; right: 22px; width: 48px; height: 48px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 56px; height: 56px; }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__nav.prev { left: 22px; } .lightbox__nav.next { right: 22px; }
.lightbox__counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255, 255, 255, .8); font-weight: 700; letter-spacing: .08em; font-size: .9rem; }

/* ---- FAQ (accordion) ---- */
.faq { max-width: 840px; margin: 0 auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: 14px; overflow: hidden; transition: box-shadow .25s, border-color .25s; }
.faq__item[open] { border-color: var(--red); box-shadow: var(--shadow-sm); }
.faq__item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 700; font-size: 1.05rem; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .faq__ic { width: 24px; height: 24px; flex-shrink: 0; color: var(--red); transition: transform .3s var(--ease); }
.faq__item[open] summary .faq__ic { transform: rotate(135deg); }
.faq__item .faq__a { padding: 0 24px 22px; color: var(--ink-2); font-size: .96rem; }
.faq__item .faq__a a { color: var(--red); font-weight: 600; }

/* =========================================================
   LOGO STRIP
   ========================================================= */
.logo-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(28px, 5vw, 64px); }
.logo-strip img { height: 36px; max-width: 120px; width: auto; opacity: .55; filter: grayscale(1); transition: .3s; }
.logo-strip a:hover img { opacity: 1; filter: grayscale(0); transform: scale(1.05); }

/* =========================================================
   NEWS
   ========================================================= */
.news-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s; display: flex; flex-direction: column; }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.news-card__media { aspect-ratio: 16/10; position: relative; }
.news-card__media .tag { position: absolute; top: 14px; left: 14px; background: #fff; }
.news-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-card__date { font-size: .82rem; color: var(--muted); font-weight: 600; margin-bottom: 8px; }
.news-card h3 { font-size: 1.14rem; margin-bottom: 10px; }
.news-card p { font-size: .93rem; flex: 1; }
.news-card .card__link { margin-top: 16px; }

/* =========================================================
   PROSE (legal pages)
   ========================================================= */
.prose { max-width: 820px; }
.prose h2 { font-size: 1.5rem; margin: 40px 0 14px; }
.prose h3 { font-size: 1.15rem; margin: 26px 0 10px; }
.prose p { margin-bottom: 14px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.prose ul li { margin-bottom: 8px; color: var(--ink-2); }
.prose a { color: var(--red); font-weight: 600; text-decoration: underline; }
.prose a.btn { text-decoration: none; }
.prose a.btn--primary { color: #fff; }
.prose a.btn--primary:hover { color: #fff; }
.prose table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: .92rem; }
.prose th, .prose td { border: 1px solid var(--line); padding: 12px 14px; text-align: left; }
.prose th { background: var(--bg-2); font-weight: 700; }
.prose .toc { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 28px; margin-bottom: 34px; }
.prose .toc h3 { margin-top: 0; }
.prose .toc ol { padding-left: 20px; }
.prose .toc a { text-decoration: none; }
.prose .last-updated { margin-top: 40px; padding-top: 18px; border-top: 1px solid var(--line); font-size: .85rem; color: var(--ink-2); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding-top: 70px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-col h4 { color: var(--red); font-size: 1rem; margin-bottom: 20px; letter-spacing: .02em; }
.footer-brand__logo { height: 34px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .92rem; color: rgba(255,255,255,.6); max-width: 300px; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul a { font-size: .92rem; color: rgba(255,255,255,.66); transition: color .2s, padding .2s; }
.footer-col ul a:hover { color: #fff; padding-left: 5px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 9px; font-size: .92rem; color: rgba(255,255,255,.66); }
.footer-contact svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: rgba(255,255,255,.66); }
.footer-contact a:hover { color: #fff; }
.footer-cta { margin-top: 22px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: .25s; }
.footer-social a:hover { background: var(--red); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; display: flex; flex-direction: row; align-items: center; justify-content: space-between; text-align: left; gap: 16px 24px; flex-wrap: wrap; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.55); }
.footer-bottom a { color: rgba(255,255,255,.8); font-weight: 600; }
.footer-bottom a:hover { color: var(--red); }
.footer-legal { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.footer-legal a { font-size: .72rem; color: rgba(255,255,255,.55); font-weight: 500; white-space: nowrap; }
.footer-legal a:hover { color: #fff; }

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie-banner {
  position: fixed; right: 22px; bottom: 22px; z-index: 1300; max-width: 460px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 26px; transform: translateY(150%); opacity: 0; transition: transform .5s var(--ease), opacity .5s;
}
.cookie-banner.show { transform: translateY(0); opacity: 1; }
.cookie-banner h4 { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 1.1rem; }
.cookie-banner h4 svg { width: 22px; height: 22px; color: var(--red); }
.cookie-banner p { font-size: .88rem; margin-bottom: 18px; }
.cookie-banner p a { color: var(--red); font-weight: 600; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 11px 20px; font-size: .88rem; flex: 1; min-width: 120px; }
.cookie-prefs { margin-top: 16px; display: none; border-top: 1px solid var(--line); padding-top: 16px; }
.cookie-prefs.show { display: block; }
.cookie-row { display: flex; align-items: flex-start; gap: 12px; justify-content: space-between; padding: 10px 0; }
.cookie-row div { flex: 1; }
.cookie-row strong { font-size: .9rem; }
.cookie-row small { display: block; color: var(--muted); font-size: .8rem; }
.switch { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .track { position: absolute; inset: 0; background: var(--line); border-radius: 999px; transition: .3s; cursor: pointer; }
.switch .track::before { content: ""; position: absolute; left: 3px; top: 3px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: .3s; box-shadow: var(--shadow-sm); }
.switch input:checked + .track { background: var(--red); }
.switch input:checked + .track::before { transform: translateX(20px); }
.switch input:disabled + .track { background: var(--red); opacity: .5; cursor: not-allowed; }

/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1120px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .people { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  :root { --header-h: 72px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .lightbox__nav { width: 46px; height: 46px; }
  .lightbox__nav.prev { left: 10px; } .lightbox__nav.next { right: 10px; }
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .people, .brand-contacts, .hours-grid { grid-template-columns: 1fr; }
  .dept-head { align-items: center; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .form .row { grid-template-columns: 1fr; }
  .slider-dots { bottom: 26px; }
  .slider-arrows { bottom: 24px; }
  .slide__count { display: none; }
  .slide__inner { text-align: center; }
  .slide__inner p { margin-left: auto; margin-right: auto; }
  .slide__actions { justify-content: center; }
  .slide__logo { height: 88px; margin-left: auto; margin-right: auto; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 22px; }
  /* centered footer on mobile */
  .footer-top { text-align: center; }
  .footer-brand__logo { margin-left: auto; margin-right: auto; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-social { justify-content: center; }
  .footer-contact li { justify-content: center; text-align: left; }
  .footer-col ul a:hover { padding-left: 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}
@media (max-width: 460px) {
  .footer-top { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .slide__actions { flex-direction: column; }
  .slide__actions .btn { width: 100%; }
}
