﻿:root {
  --bg: #edf7f8;
  --bg-soft: #f8fcfc;
  --ink: #17272a;
  --muted: #607277;
  --line: rgba(23, 107, 119, 0.14);
  --brand: #2faaba;
  --brand-deep: #176b77;
  --accent: #238f9e;
  --card: rgba(249, 253, 253, 0.92);
  --shadow: 0 24px 60px rgba(16, 68, 76, 0.15);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(47, 170, 186, 0.18), transparent 28%),
    linear-gradient(180deg, #f7fcfc 0%, #eaf5f6 100%);
}

img {
  display: block;
  max-width: 100%;
}

a,
button {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  background: transparent;
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(248, 252, 252, 0.9);
  border-bottom: 1px solid rgba(23, 107, 119, 0.1);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 165px;
  height: 66px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.hero h1,
.intro-copy h2,
.section-head h2,
.contact-copy h2,
.cta-band h2,
.offer-card h3,
.contact-card h3,
.footer-brand h3,
.footer-column h4 {
  font-family: Georgia, 'Times New Roman', serif;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.96rem;
}

.site-nav a,
.footer-column a,
.footer-bottom a,
.language-toggle {
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.site-nav > a,
.language-toggle {
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-column a:hover,
.footer-column a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible,
.language-toggle:hover,
.language-toggle:focus-visible {
  color: var(--brand-deep);
}

.language-switcher {
  position: relative;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(249, 253, 253, 0.84);
  cursor: pointer;
}

.language-toggle strong {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brand-deep);
}

.language-toggle img,
.lang-link img {
  width: 24px;
  height: 16px;
  flex: 0 0 auto;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(23, 107, 119, 0.14);
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  width: 260px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.2rem;
  padding: 0.8rem;
  border-radius: 20px;
  background: rgba(249, 253, 253, 0.98);
  box-shadow: 0 22px 42px rgba(16, 68, 76, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  max-height: 60vh;
  overflow: auto;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.language-menu a:hover,
.language-menu a:focus-visible,
.language-menu a.is-current {
  background: rgba(47, 170, 186, 0.1);
}

.site-nav .nav-cta {
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: 0 16px 34px rgba(23, 107, 119, 0.28);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 0.9rem;
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brand-deep);
}

.nav-toggle-line + .nav-toggle-line {
  margin-top: 0.35rem;
}

.hero {
  padding: 0;
}

.hero-slider {
  position: relative;
  height: calc(100svh - 82px);
  min-height: 560px;
  margin-top: -1px;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
  background: #102d32;
}

.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.85s ease, transform 5.5s ease;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(7, 28, 32, 0.18), rgba(7, 28, 32, 0.76)),
    linear-gradient(120deg, rgba(47, 170, 186, 0.2), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  align-content: center;
  gap: 1.15rem;
  padding: clamp(2.5rem, 6vh, 4.5rem) 0;
  color: #f7feff;
}

.eyebrow,
.section-kicker {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.94;
}

.hero-lead {
  max-width: 720px;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(247, 254, 255, 0.88);
}

.hero-actions,
.cta-band-inner,
.footer-bottom,
.intro-card ul,
.contact-actions {
  display: flex;
}

.hero-actions,
.contact-actions {
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.6rem;
}

.button,
.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-size: 0.96rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible,
.contact-button:hover,
.contact-button:focus-visible,
.footer-column a:hover,
.footer-column a:focus-visible,
.offer-card:hover,
.offer-card:focus-visible {
  transform: translateY(-2px);
}

.button-primary,
.contact-button {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--brand) 100%);
  box-shadow: 0 18px 35px rgba(23, 107, 119, 0.26);
}

.button-secondary {
  color: #fff;
  background: rgba(247, 254, 255, 0.12);
  border: 1px solid rgba(247, 254, 255, 0.32);
}

.slider-dots {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 1;
  display: flex;
  gap: 0;
}

.slider-dot {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  touch-action: manipulation;
}

.slider-dot::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  transition: transform 0.2s ease, background 0.2s ease;
}

.slider-dot.is-active::before {
  background: #fff;
  transform: scale(1.18);
}

.slider-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -8px;
}

section {
  padding: 5.5rem 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.75fr);
  gap: 2rem;
}

.section-head,
.contact-copy {
  max-width: 780px;
}

.intro-copy h2,
.section-head h2,
.contact-copy h2,
.cta-band h2,
.promo-strip h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.02;
}

.intro-copy p,
.section-head p,
.contact-copy p,
.offer-body p,
.intro-card li,
.story-card p,
.story-note p,
.advantage-group li,
.contact-card p,
.contact-card a,
.footer-brand p,
.footer-column span,
.footer-bottom p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}

.intro-card,
.story-card,
.offer-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow);
}

.intro-card {
  padding: 2rem;
}

.intro-card h3,
.story-card h3,
.advantages h3,
.advantage-group h4,
.offer-card h3,
.contact-card h3,
.footer-brand h3,
.footer-column h4 {
  margin: 0 0 1rem;
}

.intro-card ul {
  flex-direction: column;
  gap: 0.8rem;
  margin: 0;
  padding-left: 1.1rem;
}

.story {
  padding-top: 1rem;
  background: rgba(255, 255, 255, 0.34);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.story-card {
  padding: 1.6rem;
}

.story-card span {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.story-card h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.65rem;
}

.story-card p,
.story-note p {
  margin-bottom: 0;
}

.story-note {
  margin-top: 1.2rem;
  padding: 1.4rem 1.6rem;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(47, 170, 186, 0.1);
}

.story-note a,
.official-site-link {
  color: var(--brand-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.advantages {
  margin-top: 3rem;
}

.advantages-head {
  max-width: 680px;
}

.advantages-head h3 {
  margin-top: 0.45rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.advantage-group {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(249, 253, 253, 0.76);
}

.advantage-group h4 {
  font-size: 1.45rem;
}

.advantage-group ul {
  margin: 0;
  padding-left: 1.2rem;
}

.advantage-group li + li {
  margin-top: 0.55rem;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.offer-card {
  overflow: hidden;
  display: block;
}

.offer-link-label {
  display: inline-block;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease;
}

.offer-card:hover .offer-link-label,
.offer-card:focus-visible .offer-link-label {
  border-bottom-color: currentColor;
}

.offer-media {
  min-height: 220px;
  background: #d9eef1;
}

.offer-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.offer-body {
  padding: 1.5rem;
}

.offer-meta {
  margin-top: -0.35rem;
  color: var(--accent) !important;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  min-height: 240px;
  box-shadow: var(--shadow);
}

.gallery-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  cursor: pointer;
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 100%;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item-tall {
  grid-row: span 2;
  min-height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.cta-band {
  padding-top: 0;
}

.promo-strip {
  padding: 0 0 5.5rem;
}

.promo-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: 0 14px 34px rgba(16, 68, 76, 0.1);
}

.promo-strip h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.cta-band-inner {
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.2rem;
  border-radius: var(--radius-lg);
  color: #f7feff;
  background: linear-gradient(135deg, #124f59 0%, #2faaba 100%);
  box-shadow: var(--shadow);
}

.contact {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-image: url('../img/tlo.webp');
  background-size: cover;
  background-position: center;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(7, 38, 43, 0.9), rgba(23, 107, 119, 0.68)),
    linear-gradient(180deg, rgba(47, 170, 186, 0.2), transparent 45%);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem;
}

.contact-copy p,
.contact-copy h2,
.contact-card p,
.contact-card a {
  color: rgba(247, 254, 255, 0.92);
}

.contact-panel {
  display: grid;
  gap: 1rem;
}

.contact-card {
  background: rgba(247, 254, 255, 0.12);
  border: 1px solid rgba(247, 254, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 1.6rem;
}

.contact-methods {
  display: grid;
  justify-items: start;
  gap: 0.45rem;
}

.contact-methods a {
  display: block;
  padding: 0.35rem 0.65rem;
  border-radius: 10px;
  line-height: 1.45;
  background: rgba(247, 254, 255, 0.08);
  transition: background 180ms ease, transform 180ms ease;
}

.contact-methods a:hover,
.contact-methods a:focus-visible {
  background: rgba(247, 254, 255, 0.17);
  transform: translateX(3px);
}

.contact-card .official-site-label {
  margin: 0.8rem 0 0;
  color: rgba(247, 254, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.contact-card .official-site-link {
  color: #f7feff;
}

.back-to-top {
  cursor: pointer;
}

.reveal-ready .reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 420ms ease-out var(--reveal-delay, 0ms),
    transform 420ms ease-out var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  padding: 4rem 0 2rem;
  background:
    linear-gradient(180deg, rgba(18, 79, 89, 0.99), rgba(7, 31, 35, 1)),
    #071f23;
  color: #f2fdfe;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.7fr));
  gap: 1.5rem;
}

.footer-brand p,
.footer-column a,
.footer-column span,
.footer-bottom p,
.footer-bottom a {
  color: rgba(242, 253, 254, 0.82);
}

.footer-column {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.footer-bottom {
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(242, 253, 254, 0.14);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 19, 22, 0.84);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1100px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.lightbox-figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #071f23;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.lightbox-image {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  background: #071f23;
}

.lightbox-caption {
  padding: 1rem 1.2rem 1.2rem;
  color: #f2fdfe;
  background: rgba(7, 31, 35, 0.94);
}

.lightbox-close,
.lightbox-nav {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  color: #fff;
  background: rgba(242, 253, 254, 0.16);
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: -0.8rem;
  right: -0.8rem;
  z-index: 2;
  font-size: 2rem;
}

.lightbox-nav {
  font-size: 2rem;
}

body.lightbox-open {
  overflow: hidden;
}

/* Polityka prywatności */
.legal-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: 430px;
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  overflow: hidden;
  color: #f7feff;
  background:
    linear-gradient(115deg, rgba(7, 38, 43, 0.94), rgba(23, 107, 119, 0.72)),
    url('../img/hero/hero-03.webp') center 44% / cover no-repeat;
}

.legal-hero::after {
  content: '';
  position: absolute;
  inset: auto -8% -45% auto;
  z-index: -1;
  width: min(520px, 62vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(47, 170, 186, 0.22);
  filter: blur(2px);
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.legal-hero h1 {
  margin: 0.45rem 0 1rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.98;
}

.legal-hero p:not(.section-kicker) {
  max-width: 700px;
  margin: 0;
  color: rgba(247, 254, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.75;
}

.legal-main {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.3fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.legal-toc,
.legal-content {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.legal-toc {
  position: sticky;
  top: 108px;
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.legal-toc h2 {
  margin: 0 0 1rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.65rem;
}

.legal-toc nav {
  display: grid;
  gap: 0.25rem;
}

.legal-toc a {
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--brand-deep);
  background: rgba(47, 170, 186, 0.1);
  transform: translateX(3px);
}

.legal-content {
  padding: clamp(1.5rem, 4vw, 3.2rem);
  border-radius: var(--radius-lg);
}

.legal-lead {
  margin: 0 0 2.5rem;
  padding: 1.25rem 1.4rem;
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--brand-deep);
  background: rgba(47, 170, 186, 0.1);
  line-height: 1.75;
}

.legal-section {
  scroll-margin-top: 110px;
}

.legal-section + .legal-section {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 1rem;
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.legal-section h3 {
  margin: 1.5rem 0 0.65rem;
  color: var(--brand-deep);
  font-size: 1.05rem;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  line-height: 1.8;
}

.legal-section p {
  margin: 0.75rem 0;
}

.legal-section ul {
  margin: 0.75rem 0;
  padding-left: 1.25rem;
}

.legal-section li + li {
  margin-top: 0.55rem;
}

.legal-section a {
  color: var(--brand-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.legal-meta {
  display: inline-flex;
  margin-top: 1.25rem;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(247, 254, 255, 0.24);
  border-radius: 999px;
  color: rgba(247, 254, 255, 0.82);
  background: rgba(247, 254, 255, 0.1);
  font-size: 0.88rem;
}

@media (max-width: 820px) {
  .legal-hero {
    min-height: 360px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

  .legal-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .legal-toc nav {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-ready .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1080px) {
  .offer-grid,
  .advantages-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(249, 253, 253, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .language-menu {
    position: static;
    width: 100%;
    margin-top: 0.5rem;
    box-shadow: inset 0 0 0 1px rgba(23, 107, 119, 0.1);
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
    max-height: 220px;
  }

  .language-switcher.is-open .language-menu {
    display: grid;
  }

  .intro-grid,
  .contact-grid,
  .offer-grid,
  .story-grid,
  .advantages-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-large,
  .gallery-item-wide,
  .gallery-item-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .cta-band-inner,
  .promo-strip-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .lightbox-dialog {
    display: block;
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .lightbox-prev {
    left: 0.5rem;
  }

  .lightbox-next {
    right: 0.5rem;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 138px;
    height: 54px;
  }

  .hero-slider,
  .hero-content {
    height: calc(100svh - 82px);
    min-height: 540px;
  }

  .hero-content {
    gap: 0.8rem;
    padding: 2rem 0 3.5rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 2.7rem;
  }

  .hero-lead {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 0.6rem;
    margin-top: 0.25rem;
  }

  .hero-actions .button {
    min-height: 46px;
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
  }

  .slider-dots {
    right: 1rem;
    bottom: 1rem;
  }

  section {
    padding: 4.2rem 0;
  }

  .promo-strip {
    padding: 0 0 4.2rem;
  }

  .lightbox {
    padding: 0.8rem;
  }

  .lightbox-close,
  .lightbox-nav {
    width: 48px;
    height: 48px;
  }
}
