@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Syne:wght@600;700;800&display=swap');

/* ── RESET & PREMENNÉ ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy:      #0d2d5e;
  --navy-dark: #081e40;
  --navy-lt:   #1a3f7a;
  --navy-bg:   #eef2fa;
  --navy-soft: #f0f4fb;
  --white:     #ffffff;
  --gray-50:   #f8faff;
  --gray-100:  #eaecef;
  --gray-200:  #d1d5db;
  --gray-500:  #6b7280;
  --gray-900:  #0f1923;
  --header-h:  64px;
  --font-body: 'Inter', sans-serif;
  --font-disp: 'Syne', sans-serif;
  --radius:    8px;
  --radius-lg: 10px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--white); color: var(--gray-900); overflow-x: hidden; }

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
p { color: var(--gray-500); font-size: 14px; line-height: 1.75; font-weight: 300; }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sec-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  flex-shrink: 0;
}

.sec-h {
  font-family: var(--font-disp);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.5px;
  line-height: 1.08;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s;
  border: none;
  white-space: nowrap;
}
.btn-navy  { background: var(--navy); color: #fff; }
.btn-navy:hover  { background: var(--navy-lt); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--navy-bg); }
.btn-ghost {
  background: transparent;
  color: var(--gray-500);
  border: 1px solid var(--gray-100);
}
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }

/* ── NAV ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 500;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--gray-100);
  backdrop-filter: blur(6px);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav__logo img { height: 38px; width: auto; }

.nav__list {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
}
.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%;
  padding: 0 15px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  border-bottom: 2px solid transparent;
  transition: color .18s, border-color .18s;
  cursor: pointer;
  white-space: nowrap;
}
.nav__link:hover, .nav__link.active { color: var(--navy); border-bottom-color: var(--navy); }
.nav__link .arrow { font-size: 12px; transition: transform .25s; }

/* Dropdown */
.dropdown__item { position: relative; height: 100%; display: flex; align-items: center; }
.dropdown__menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 190px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-top: 2px solid var(--navy);
  border-radius: 0 0 var(--radius) var(--radius);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .18s, transform .18s;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(13,45,94,.08);
}
.dropdown__item:hover .dropdown__menu { opacity: 1; pointer-events: initial; transform: translateY(0); }
.dropdown__item:hover .arrow { transform: rotate(180deg); }

.dropdown__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  transition: background .15s, color .15s;
}
.dropdown__link:hover { background: var(--gray-50); color: var(--navy); }
.dropdown__link i { font-size: 14px; color: var(--navy); width: 16px; }

.nav__badge img { height: 38px; width: auto; opacity: .8; transition: opacity .18s; }
.nav__badge img:hover { opacity: 1; }

/* Burger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--gray-900); border-radius: 1px; transition: all .3s; }
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: var(--header-h);
}
.hero__left {
  padding: 80px 64px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-bg);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  width: fit-content;
}
.hero__pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--navy); flex-shrink: 0; }
.hero__title {
  font-family: var(--font-disp);
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -1.5px;
  color: var(--gray-900);
  margin-bottom: 20px;
}
.hero__title span { color: var(--navy); }
.hero__sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 36px;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--gray-100);
}
.stat__val {
  font-family: var(--font-disp);
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat__lbl { font-size: 11px; color: var(--gray-500); margin-top: 4px; font-weight: 400; }

.hero__right {
  position: relative;
  overflow: hidden;
  background: var(--navy-soft);
}
.hero__right img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.hero__badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  border: 1px solid var(--gray-100);
}
.hero__badge-lbl { font-size: 10px; font-weight: 600; color: var(--gray-500); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; }
.hero__badge-val { font-family: var(--font-disp); font-size: 15px; font-weight: 700; color: var(--navy); }

/* ── TICKER ── */
.ticker { background: var(--navy); padding: 13px 0; overflow: hidden; white-space: nowrap; }
.ticker__track { display: inline-flex; animation: ticker 26s linear infinite; }
.ticker__item { font-size: 12px; font-weight: 500; color: rgba(255,255,255,.65); padding: 0 28px; letter-spacing: .05em; }
.ticker__dot { color: rgba(255,255,255,.25); padding: 0 4px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SERVICES ── */
.services { padding: 96px 0; }
.services__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.services__desc { font-size: 14px; color: var(--gray-500); line-height: 1.8; max-width: 300px; font-weight: 300; }

.srv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-100);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.srv-card {
  background: var(--white);
  padding: 32px 24px;
  transition: background .2s;
  cursor: default;
  position: relative;
}
.srv-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.srv-card:hover { background: var(--gray-50); }
.srv-card:hover::after { transform: scaleX(1); }
.srv-card__num { font-size: 11px; font-weight: 600; color: var(--navy); letter-spacing: .1em; margin-bottom: 20px; }
.srv-card__icon {
  width: 40px; height: 40px;
  background: var(--navy-bg);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.srv-card__icon svg { width: 18px; height: 18px; stroke: var(--navy); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.srv-card__name { font-family: var(--font-disp); font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.srv-card__text { font-size: 13px; color: var(--gray-500); line-height: 1.7; font-weight: 300; }

/* ── FEATURE ── */
.feature { display: grid; grid-template-columns: 1fr 1fr; }
.feature__visual { position: relative; overflow: hidden; background: var(--navy-soft); min-height: 440px; }
.feature__visual img { width: 100%; height: 100%; object-fit: cover; opacity: .8; display: block; transition: opacity .4s; }
.feature__visual:hover img { opacity: .9; }
.feature__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  padding: 20px 28px;
  display: flex;
  gap: 32px;
}
.fov__val { font-family: var(--font-disp); font-size: 22px; font-weight: 800; color: #fff; }
.fov__lbl { font-size: 10px; color: rgba(255,255,255,.5); margin-top: 2px; }

.feature__content {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--gray-50);
}
.feature__body { font-size: 14px; color: var(--gray-500); line-height: 1.8; margin-bottom: 28px; font-weight: 300; }
.cert-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.cert-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  background: var(--navy-bg);
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: .04em;
}

/* ── GALLERY ── */
.gallery { padding: 96px 0; background: var(--gray-50); }
.gallery__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.gal-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.filter-btn {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-500);
  padding: 7px 16px;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  transition: all .18s;
}
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gal-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  aspect-ratio: 4/3;
  background: var(--navy-soft);
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s, opacity .3s; opacity: .88; display: block; }
.gal-item:hover img { transform: scale(1.04); opacity: 1; }
.gal-item__tag {
  position: absolute;
  bottom: 12px; left: 12px;
  background: var(--white);
  color: var(--navy);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: .05em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .25s;
}
.gal-item:hover .gal-item__tag { opacity: 1; }

/* ── VIDEOS ── */
.videos { padding: 80px 0; border-top: 1px solid var(--gray-100); }
.videos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.video-card { position: relative; }
.video-open {
  display: block; width: 100%;
  padding: 0; border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.video-open img { width: 100%; height: 200px; object-fit: cover; opacity: .8; transition: opacity .3s, transform .4s; display: block; }
.video-open:hover img { opacity: 1; transform: scale(1.03); }
.play-badge {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: var(--white);
  text-shadow: 0 2px 12px rgba(13,45,94,.4);
}
.video-title { margin-top: 10px; font-size: 13px; font-weight: 500; color: var(--gray-500); }

/* ── VIDEO MODAL ── */
.video-modal[aria-hidden="true"] { display: none; }
.video-modal[aria-hidden="false"] { display: block; }
.video-modal__backdrop { position: fixed; inset: 0; background: rgba(13,29,61,.75); z-index: 1000; }
.video-modal__dialog {
  position: fixed;
  inset: 50% auto auto 50%;
  transform: translate(-50%,-50%);
  width: min(900px,92vw);
  background: var(--white);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--navy);
  padding: 20px;
  z-index: 1001;
}
.video-modal__close { position: absolute; top: 12px; right: 14px; border: 0; background: transparent; color: var(--gray-500); font-size: 20px; cursor: pointer; }
.video-modal__close:hover { color: var(--gray-900); }
.video-modal__title { font-family: var(--font-disp); font-size: 22px; font-weight: 700; margin-bottom: 14px; color: var(--gray-900); }
.video-modal__player video { width: 100%; height: auto; border-radius: var(--radius); }

/* ── PRESS ── */
.press { padding: 80px 0; }
.press__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.press-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--white);
  transition: border-color .2s;
}
.press-card:hover { border-color: var(--navy); }
.press-card__cover { width: 100%; height: 150px; object-fit: cover; border-radius: var(--radius); margin-bottom: 18px; opacity: .85; }
.press-card__src { font-size: 11px; font-weight: 600; color: var(--navy); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px; }
.press-card__title { font-size: 15px; font-weight: 500; color: var(--gray-900); line-height: 1.55; margin-bottom: 16px; }
.press-card__link { font-size: 12px; font-weight: 500; color: var(--navy); display: inline-flex; align-items: center; gap: 4px; transition: gap .18s; }
.press-card__link:hover { gap: 8px; }

/* ── CERTIFIKÁTY ── */
.certs { padding: 80px 0; border-top: 1px solid var(--gray-100); background: var(--gray-50); text-align: center; }
.certs .sec-tag { justify-content: center; }
.certs #owl-testimonials { margin-top: 40px; }
.certs .item img { max-height: 400px; width: auto; margin: 0 auto; }

/* ── EU FONDY ── */
.eu-section { padding: 80px 0; border-top: 1px solid var(--gray-100); }
.eu-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: center; }
.eu-grid img { opacity: .85; transition: opacity .2s; border-radius: var(--radius); }
.eu-grid img:hover { opacity: 1; }

/* ── MAPA ── */
.map-wrap { border-top: 1px solid var(--gray-100); filter: grayscale(30%); transition: filter .4s; }
.map-wrap:hover { filter: grayscale(0); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy);
  padding: 80px 0;
}
.cta-band__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.cta-band h2 {
  font-family: var(--font-disp);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.5px;
}
.cta-band p { color: rgba(255,255,255,.5); margin-top: 10px; font-size: 14px; font-weight: 300; }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--gray-100); padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer__logo img { height: 34px; width: auto; margin-bottom: 14px; }
.footer__desc { font-size: 13px; color: var(--gray-500); line-height: 1.7; max-width: 220px; font-weight: 300; }
.footer__col h4 { font-size: 11px; font-weight: 600; color: var(--navy); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col li { margin-bottom: 10px; }
.footer__col a { font-size: 13px; color: var(--gray-500); transition: color .18s; }
.footer__col a:hover { color: var(--navy); }
.footer__col address { font-style: normal; font-size: 13px; color: var(--gray-500); line-height: 1.8; }
.footer__bottom {
  border-top: 1px solid var(--gray-100);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--gray-500);
}

/* ── PAGE HERO (kontakt, kariéra) ── */
.page-hero { padding: calc(var(--header-h) + 72px) 0 64px; border-bottom: 1px solid var(--gray-100); }
.page-hero h1 { font-family: var(--font-disp); font-size: clamp(44px, 6vw, 72px); font-weight: 800; color: var(--gray-900); letter-spacing: -1.5px; margin-bottom: 14px; line-height: 1; }
.page-hero p { font-size: 15px; color: var(--gray-500); font-weight: 300; max-width: 520px; }

/* ── KONTAKT KARTY ── */
.contacts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.contact-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: border-color .2s;
}
.contact-card:hover { border-color: var(--navy); }
.contact-card__bar { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--navy); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.contact-card__role { font-size: 11px; font-weight: 600; color: var(--navy); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.contact-card h2 { font-family: var(--font-disp); font-size: 22px; font-weight: 700; color: var(--gray-900); margin-bottom: 16px; }
.contact-card p { font-size: 13px; color: var(--gray-500); margin-bottom: 4px; }
.contact-card a { color: var(--navy); transition: opacity .18s; }
.contact-card a:hover { opacity: .75; }

.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 20px; }
.info-card { background: var(--gray-50); border-radius: var(--radius); padding: 20px; }
.info-card__lbl { font-size: 10px; font-weight: 600; color: var(--navy); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.info-card__val { font-size: 14px; font-weight: 500; color: var(--gray-900); margin-bottom: 4px; }
.info-card__sub { font-size: 12px; color: var(--gray-500); }

/* ── KARIÉRA ── */
.jobs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.job-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--white);
  transition: border-color .2s;
}
.job-card:hover { border-color: var(--navy); }
.job-card__badge {
  display: inline-flex;
  background: var(--navy-bg);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.job-card h2 { font-family: var(--font-disp); font-size: 24px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.job-card__salary { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 16px; }
.job-card p { font-size: 13px; color: var(--gray-500); line-height: 1.7; margin-bottom: 24px; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-top: 2px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 560px;
  width: calc(100% - 40px);
  box-shadow: 0 8px 32px rgba(13,45,94,.1);
}
.cookie-banner p { font-size: 13px; margin: 0; }
.cookie-banner__actions { display: flex; gap: 8px; flex-shrink: 0; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__left { padding: calc(var(--header-h) + 48px) 0 48px; }
  .hero__right { height: 360px; }
  .srv-grid { grid-template-columns: 1fr 1fr; }
  .feature { grid-template-columns: 1fr; }
  .feature__visual { min-height: 300px; }
  .feature__content { padding: 52px 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-band__inner { grid-template-columns: 1fr; }
  .eu-grid { grid-template-columns: 1fr; gap: 32px; }
  .info-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .container { padding: 0 20px; }
  .nav__list { display: none; }
  .nav__list.open {
    display: flex; flex-direction: column;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--gray-100);
    padding: 12px 0; height: auto; z-index: 100;
  }
  .nav__link { height: auto; padding: 13px 20px; border-bottom: none; border-left: 3px solid transparent; }
  .nav__link.active, .nav__link:hover { border-left-color: var(--navy); border-bottom: none; }
  .dropdown__menu { position: static; opacity: 1; pointer-events: initial; transform: none; box-shadow: none; border: none; border-radius: 0; display: none; }
  .dropdown__item.open .dropdown__menu { display: block; }
  .nav__toggle { display: flex; }
  .nav__cta, .nav__badge { display: none; }
  .hero__right { height: 280px; }
  .hero__stats { gap: 20px; flex-wrap: wrap; }
  .srv-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; gap: 6px; text-align: center; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .press__grid { grid-template-columns: 1fr; }
}
