/* ===========================================================
   Falisada – Outside & Inside
   Premium, mobile-first stylesheet
   =========================================================== */

:root {
  --bg: #f5f3ef;
  --bg-alt: #ece8e1;
  --surface: #ffffff;
  --ink: #1c1b19;
  --ink-soft: #3a3833;
  --muted: #76716a;
  --line: #ddd8d0;
  --concrete: #b9b3aa;
  --accent: #a9763f;        /* ciepły bronz / drewno */
  --accent-dark: #8a5e30;
  --dark: #1c1b19;
  --dark-2: #26241f;
  --wa: #25d366;
  --wa-dark: #1ebe5a;

  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 18px 40px -22px rgba(20, 18, 15, 0.45);
  --shadow-lg: 0 30px 70px -30px rgba(20, 18, 15, 0.55);
  --container: 1160px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-head: 'Space Grotesk', 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0 0 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

/* ===== Helpers ===== */
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 0.9rem;
}
.eyebrow--light { color: #d8a979; }

.section { padding: 84px 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--dark); color: #e9e6e0; }

.section__head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section__title {
  font-size: clamp(1.85rem, 5vw, 2.8rem);
  margin-bottom: 1rem;
}
.section__title--light { color: #fff; }
.section__intro { color: var(--muted); font-size: 1.05rem; margin: 0; }
.section__intro--light { color: #b6b1a8; }

/* ===== Buttons ===== */
.btn {
  --pad-y: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: var(--pad-y) 1.5rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--sm { --pad-y: 0.55rem; font-size: 0.85rem; padding: var(--pad-y) 1.05rem; }
.btn--lg { --pad-y: 1rem; font-size: 1.02rem; padding: var(--pad-y) 1.9rem; }

.btn--solid { background: var(--ink); color: #fff; box-shadow: var(--shadow); }
.btn--solid:hover { background: var(--accent); }

.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }

.btn--whatsapp { background: var(--wa); color: #08331a; }
.btn--whatsapp:hover { background: var(--wa-dark); color: #042a13; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
  padding: 10px 0;
}
.site-header.is-scrolled {
  background: rgba(245, 243, 239, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -24px rgba(0,0,0,0.5);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.65rem; color: var(--ink); }
.brand__mark {
  display: inline-flex;
  color: var(--accent);
  flex: none;
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.16em;
}
.brand__sub {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

/* hero state: header text light when not scrolled */
.site-header:not(.is-scrolled) .brand__name { color: #fff; }
.site-header:not(.is-scrolled) .brand__sub { color: rgba(255,255,255,0.7); }
.site-header:not(.is-scrolled) .brand__mark { color: #fff; }
.site-header:not(.is-scrolled) .nav__link { color: rgba(255,255,255,0.88); }
.site-header:not(.is-scrolled) .nav-toggle span { background: #fff; }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.25s var(--ease);
}
.nav__link:hover::after { width: 100%; }
.nav__link:hover { color: var(--accent); }
.nav__cta { margin-left: 0.4rem; }
.site-header:not(.is-scrolled) .nav__cta { background: #fff; color: var(--ink); }
.site-header:not(.is-scrolled) .nav__cta:hover { background: var(--accent); color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 10px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(18,16,14,0.85) 0%, rgba(18,16,14,0.25) 45%, rgba(18,16,14,0.45) 100%),
    linear-gradient(to right, rgba(18,16,14,0.6) 0%, rgba(18,16,14,0.05) 70%);
}
.hero__content { position: relative; z-index: 2; padding: 120px 22px 110px; max-width: 760px; }
.hero__eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: #e7c79e;
  margin-bottom: 1.1rem;
}
.hero__title {
  font-size: clamp(2.3rem, 8vw, 4.4rem);
  line-height: 1.04;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.hero__lead {
  font-size: clamp(1rem, 2.5vw, 1.22rem);
  color: rgba(255,255,255,0.9);
  max-width: 620px;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero__scroll {
  position: absolute;
  left: 22px; bottom: 28px;
  width: 26px; height: 44px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 14px;
  display: none;
}
.hero__scroll span {
  position: absolute;
  left: 50%; top: 8px;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: #fff;
  border-radius: 2px;
  animation: scrolly 1.8s infinite;
}
@keyframes scrolly {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; }
}

/* ===== Trust strip ===== */
.trust { background: var(--dark); color: #efece6; }
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0;
}
.trust__item {
  text-align: center;
  padding: 30px 18px;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.trust__item:first-child { border-left: none; }
.trust__num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: #e7c79e;
  margin-bottom: 0.35rem;
}
.trust__label { font-size: 0.9rem; color: #b6b1a8; }

/* ===== About ===== */
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about__media { position: relative; }
.about__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about__badge {
  position: absolute;
  right: -14px; bottom: 28px;
  background: var(--ink);
  color: #fff;
  padding: 16px 22px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  text-align: center;
}
.about__badge-top {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 1.05rem;
}
.about__badge-bottom {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #d8a979;
  margin-top: 3px;
}
.about__body p { color: var(--ink-soft); }
.about__quote {
  font-family: var(--font-head);
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--ink);
  border-left: 3px solid var(--accent);
  padding-left: 1.1rem;
  margin: 1.6rem 0;
}
.about__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.4rem; }

/* ===== Services cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--bg-alt);
  color: var(--accent);
  margin-bottom: 1.1rem;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.card:hover .card__icon { background: var(--accent); color: #fff; }
.card__title { font-size: 1.18rem; margin-bottom: 0.5rem; }
.card__text { color: var(--muted); font-size: 0.96rem; margin: 0; }
.card--accent {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.card--accent .card__icon { background: rgba(255,255,255,0.1); color: #e7c79e; }
.card--accent .card__text { color: #b6b1a8; }
.card--accent:hover .card__icon { background: var(--accent); color: #fff; }

/* ===== Gallery ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 16px;
}
.gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--bg-alt);
}
.gallery__item--lg { grid-column: span 2; grid-row: span 2; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 16px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(to top, rgba(15,13,11,0.85), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery__item:hover figcaption { opacity: 1; transform: translateY(0); }
.gallery__item::after {
  content: '+';
  position: absolute;
  top: 12px; right: 14px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  background: rgba(20,18,15,0.45);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.gallery__item:hover::after { opacity: 1; }

/* ===== Dlaczego (steps) ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.step {
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  background: var(--dark-2);
}
.step__num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: #e7c79e;
  display: block;
  margin-bottom: 0.6rem;
}
.step__title { color: #fff; font-size: 1.15rem; margin-bottom: 0.5rem; }
.step__text { color: #b6b1a8; font-size: 0.95rem; margin: 0; }
.dlaczego__cta {
  margin-top: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.dlaczego__cta p { color: #d6d1c8; font-size: 1.15rem; margin: 0; max-width: 540px; }

/* ===== Kontakt ===== */
.kontakt__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-list { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 14px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.contact-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.contact-item__icon {
  flex: none;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--bg-alt);
  color: var(--accent);
}
.contact-item__icon--wa { background: rgba(37,211,102,0.12); color: var(--wa-dark); }
.contact-item__label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.contact-item__value { display: block; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; word-break: break-word; }

/* ===== Form ===== */
.kontakt__form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form__title { font-size: 1.4rem; margin-bottom: 0.4rem; }
.form__hint { color: var(--muted); font-size: 0.92rem; margin-bottom: 1.4rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__field { display: block; margin-bottom: 14px; }
.form__field > span {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink-soft);
}
.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(169,118,63,0.15);
}
.form__field textarea { resize: vertical; }
.form__submit { width: 100%; margin-top: 6px; }
.form__alt { text-align: center; font-size: 0.88rem; color: var(--muted); margin: 1rem 0 0; }
.form__alt a { color: var(--accent); font-weight: 600; }
.form__field.has-error input,
.form__field.has-error textarea { border-color: #c0392b; }

/* ===== Footer ===== */
.footer { background: #141210; color: #cfcabf; padding-top: 54px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 36px;
  align-items: start;
}
.footer__brand { display: flex; gap: 12px; align-items: center; color: #fff; }
.footer__brand .brand__mark { color: #e7c79e; }
.footer__brand .brand__name { font-family: var(--font-head); font-weight: 700; letter-spacing: 0.16em; display: block; }
.footer__brand .brand__sub { font-size: 0.7rem; letter-spacing: 0.14em; color: #9a958b; text-transform: uppercase; }
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a, .footer__contact a { color: #cfcabf; transition: color 0.2s var(--ease); }
.footer__nav a:hover, .footer__contact a:hover { color: #e7c79e; }
.footer__contact { display: flex; flex-direction: column; gap: 10px; }
.footer__contact a { font-family: var(--font-head); font-weight: 500; }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  text-align: center;
  font-size: 0.82rem;
  color: #847f76;
}
.footer__bar .container { padding: 0 22px; }

/* ===== Mobile sticky CTA ===== */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 55;
  display: none;
  gap: 1px;
  background: rgba(20,18,15,0.12);
  box-shadow: 0 -8px 24px -10px rgba(0,0,0,0.4);
}
.mobile-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
}
.mobile-cta__btn--call { background: var(--ink); color: #fff; }
.mobile-cta__btn--wa { background: var(--wa); color: #08331a; }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(12,11,9,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  padding: 30px;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: 90vw;
  max-height: 86vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s var(--ease);
}
.lightbox__close {
  top: 20px; right: 22px;
  width: 46px; height: 46px;
  font-size: 1.8rem;
  line-height: 1;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  font-size: 2rem;
  line-height: 1;
}
.lightbox__nav--prev { left: 18px; }
.lightbox__nav--next { right: 18px; }
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255,255,255,0.25); }

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(odd) { border-left: none; }
  .trust__item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.08); }
}

@media (max-width: 880px) {
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 340px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.4rem;
    background: var(--bg);
    padding: 96px 28px 28px;
    box-shadow: -20px 0 60px -30px rgba(0,0,0,0.6);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
  }
  .nav.is-open { transform: translateX(0); }
  .nav__link { color: var(--ink-soft) !important; font-size: 1.1rem; padding: 0.5rem 0; width: 100%; }
  .site-header:not(.is-scrolled) .nav__link { color: var(--ink-soft); }
  .nav__cta { margin: 0.8rem 0 0; }
  .site-header:not(.is-scrolled) .nav__cta { background: var(--ink); color: #fff; }
  .nav-toggle { display: flex; z-index: 70; }
  body.nav-open { overflow: hidden; }
  .nav-overlay {
    position: fixed; inset: 0;
    background: rgba(10,9,8,0.5);
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
    z-index: 50;
  }
  .nav-overlay.is-open { opacity: 1; visibility: visible; }

  .about__grid { grid-template-columns: 1fr; gap: 36px; }
  .about__media { max-width: 460px; }
  .kontakt__grid { grid-template-columns: 1fr; gap: 36px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery__item--lg { grid-column: span 2; grid-row: span 1; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .hero { min-height: 92svh; }
  .hero__content { padding: 110px 22px 90px; }
  .hero__actions .btn { flex: 1; min-width: 0; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; gap: 10px; }
  .gallery__item figcaption { opacity: 1; transform: none; font-size: 0.78rem; padding: 18px 10px 8px; }
  .footer__inner { grid-template-columns: 1fr; gap: 22px; }
  .about__badge { right: 12px; bottom: 12px; padding: 12px 16px; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 56px; }
  .hero__scroll { display: none; }
  .lightbox__nav { width: 42px; height: 42px; }
}

@media (min-width: 601px) and (max-width: 880px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 56px; }
}

