/* ============================================================
   FITNALUZIE — style.css
   Kolory: Pomarańcz #F47B1E | Biel #FFFFFF | Ciemny #1A1A1A
   ============================================================ */

:root {
  --orange: #f47b1e;
  --orange-lt: #ff9b45;
  --orange-dk: #d6650f;
  --orange-pale: #fff3e8;
  --orange-pale2: #fde8d0;
  --white: #ffffff;
  --dark: #1a1a1a;
  --dark2: #2d2d2d;
  --gray: #666666;
  --gray-lt: #f5f5f5;
  --border: #e8e8e8;

  --ff-head: "Playfair Display", serif;
  --ff-body: "Montserrat", sans-serif;

  --sh-sm: 0 2px 12px rgba(244, 123, 30, 0.12);
  --sh-md: 0 8px 32px rgba(244, 123, 30, 0.22);
  --sh-lg: 0 20px 60px rgba(244, 123, 30, 0.28);

  --r: 16px;
  --rl: 32px;
  --tr: all 0.3s ease;
}

/* ──────────────────────────────────────
   RESET
────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--ff-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--tr);
}
ul {
  list-style: none;
}

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

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  position: relative;
}
.tag--light {
  color: var(--orange-lt);
}
.tag--light::before {
  background: var(--orange-lt);
}

.section__hd {
  text-align: center;
  margin-bottom: 60px;
}
.section__title {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}
.section__title--light {
  color: var(--white);
}
.section__sub {
  font-size: 1rem;
  color: var(--gray);
}
.section__body {
  font-size: 0.97rem;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 18px;
}
.section__body--light {
  color: rgba(255, 255, 255, 0.65);
}
.section__body--light strong {
  color: var(--orange-lt);
}

.accent {
  color: var(--orange);
  font-style: italic;
}

/* ──────────────────────────────────────
   BUTTONS
────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--tr);
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: var(--sh-md);
}
.btn--primary:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  box-shadow: var(--sh-lg);
  transform: translateY(-2px);
}
.btn--primary:disabled,
.btn--primary[disabled] {
  background: #b0b0b0;
  border-color: #b0b0b0;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
  opacity: 0.65;
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn--ghost:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn--block {
  width: 100%;
  justify-content: center;
}

/* ──────────────────────────────────────
   HEADER
────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 0;
  transition: var(--tr);
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  padding: 6px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav__link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}
.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}
.nav__link:hover {
  color: var(--orange);
}
.header.scrolled .nav__link {
  color: var(--dark);
}

.nav__cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 11px 26px;
  border-radius: 50px;
}
.nav__cta:hover {
  background: var(--orange-dk);
  transform: translateY(-1px);
}
.nav__cta::after {
  display: none;
}

.nav__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__social {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-size: 0.8rem;
  transition: var(--tr);
}
.nav__social:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
}
.header.scrolled .nav__social {
  border-color: var(--border);
  color: var(--dark);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--white);
  margin-left: auto;
}
.header.scrolled .nav__toggle {
  color: var(--dark);
}

/* ──────────────────────────────────────
   HERO
────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2e1a0e 45%, #3d2210 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  background: var(--orange);
  filter: blur(1px);
}
.hero__orb--1 {
  width: 580px;
  height: 580px;
  opacity: 0.08;
  top: -220px;
  right: -80px;
  animation: float 8s ease-in-out infinite;
}
.hero__orb--2 {
  width: 350px;
  height: 350px;
  opacity: 0.06;
  bottom: -130px;
  left: -80px;
  animation: float 10s ease-in-out infinite reverse;
}
.hero__orb--3 {
  width: 200px;
  height: 200px;
  opacity: 0.05;
  top: 40%;
  left: 30%;
  animation: float 12s ease-in-out infinite 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.04);
  }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding-top: 100px;
  position: relative;
  z-index: 1;
}

.hero__text {
  color: var(--white);
}
.hero__title {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin: 14px 0 22px;
}
.hero__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-num {
  display: block;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-lbl {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.hero__stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
}

/* Hero visual */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero__img-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
}
.hero__ring {
  position: absolute;
  width: 96%;
  height: 96%;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  border: 2px solid rgba(244, 123, 30, 0.3);
  top: 2%;
  left: 2%;
  animation: ring-pulse 3s ease-in-out infinite;
}
@keyframes ring-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.03);
    opacity: 0.6;
  }
}
.hero__photo {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: linear-gradient(160deg, var(--orange-pale2), var(--orange));
  position: relative;
  z-index: 1;
}
.hero__badge {
  position: absolute;
  bottom: 50px;
  right: -18px;
  width: 96px;
  height: 96px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: var(--sh-lg);
  padding: 8px;
  animation: spin 22s linear infinite;
}
.hero__badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.1rem;
  animation: bounce 2s ease infinite;
  z-index: 2;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* ──────────────────────────────────────
   SPLIT LAYOUT
────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.split--reverse {
  direction: rtl;
}
.split--reverse > * {
  direction: ltr;
}

/* ──────────────────────────────────────
   IMAGE FRAME
────────────────────────────────────── */
.frame {
  position: relative;
}
.frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--rl);
  background: linear-gradient(135deg, var(--orange-pale2), var(--orange-pale));
}

/* ── Slideshow (galeria przemian) ─────────────────────────── */
.slideshow {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: var(--rl);
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.slideshow__slides {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--orange-pale);
}
.slideshow__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.slideshow__slide.active {
  opacity: 1;
}
.slideshow__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.slideshow__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  box-shadow: var(--sh-sm);
  transition: var(--tr);
  padding: 0;
}
.slideshow__btn:hover {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--sh-md);
}
.slideshow__btn--prev {
  left: 12px;
}
.slideshow__btn--next {
  right: 12px;
}
.slideshow__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.slideshow__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: var(--tr);
  padding: 0;
  flex-shrink: 0;
}
.slideshow__dot.active {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.3);
}
.frame__border {
  position: absolute;
  inset: 0;
  border: 3px solid var(--orange);
  border-radius: var(--rl);
  top: 20px;
  left: -20px;
  z-index: -1;
  opacity: 0.7;
}
.frame--right .frame__border,
.frame__border--right {
  left: auto;
  right: -20px;
}

/* ──────────────────────────────────────
   ABOUT
────────────────────────────────────── */
.about {
  background: var(--white);
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--orange-pale);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange-dk);
}
.badge i {
  color: var(--orange);
  font-size: 0.8rem;
}

/* ──────────────────────────────────────
   SERVICES / CARDS
────────────────────────────────────── */
.services {
  background: var(--gray-lt);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--rl);
  padding: 40px 30px;
  position: relative;
  border: 2px solid transparent;
  transition: var(--tr);
}
.card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: var(--sh-lg);
}
.card--featured {
  background: var(--orange);
  transform: translateY(-10px);
  box-shadow: var(--sh-lg);
}
.card--featured:hover {
  background: var(--orange-dk);
  transform: translateY(-16px);
}

.card__ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  white-space: nowrap;
}
.card__icon {
  width: 60px;
  height: 60px;
  background: var(--orange-pale);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: 22px;
}
.card--featured .card__icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.card--featured .card__title {
  color: var(--white);
}
.card__body {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 22px;
}
.card--featured .card__body {
  color: rgba(255, 255, 255, 0.82);
}
.card__list {
  margin-bottom: 26px;
}
.card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 9px;
}
.card--featured .card__list li {
  color: rgba(255, 255, 255, 0.88);
}
.card__list li i {
  color: var(--orange);
  font-size: 0.65rem;
  flex-shrink: 0;
}
.card--featured .card__list li i {
  color: var(--white);
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.card--featured .card__link {
  color: var(--white);
}
.card__link:hover {
  gap: 14px;
}

/* ──────────────────────────────────────
   TRAINING
────────────────────────────────────── */
.training {
  background: var(--white);
}
.features {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 28px 0 36px;
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.feature__icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: var(--orange-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
}
.feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.feature p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ──────────────────────────────────────
   DIET
────────────────────────────────────── */
.diet {
  background: var(--orange-pale);
}
.diet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0 32px;
}
.diet-tags span {
  padding: 8px 18px;
  background: var(--white);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange-dk);
  border: 1.5px solid var(--orange);
  transition: var(--tr);
  cursor: default;
}
.diet-tags span:hover {
  background: var(--orange);
  color: var(--white);
}

/* ──────────────────────────────────────
   TRANSFORMATIONS / TESTIMONIALS
────────────────────────────────────── */
.transformations {
  background: var(--gray-lt);
}
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 24px 0 32px;
}
.testimonial {
  background: var(--white);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 18px 22px;
}
.testimonial p {
  font-size: 0.88rem;
  color: var(--gray);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 6px;
}
.testimonial cite {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  font-style: normal;
}

/* ──────────────────────────────────────
   GALLERY / INSTAGRAM
────────────────────────────────────── */
.gallery {
  background: var(--white);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 44px;
}
.gallery__item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery__item > a {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--orange-pale2), var(--orange-pale));
  transition: transform 0.4s ease;
}
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(244, 123, 30, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--white);
  font-size: 1.8rem;
}
.gallery__item:hover .gallery__overlay {
  opacity: 1;
}
.gallery__item:hover img {
  transform: scale(1.08);
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 700;
  border: 2px solid var(--border);
  transition: var(--tr);
}
.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}
.social-btn--ig {
  color: #e1306c;
  border-color: #e1306c;
}
.social-btn--ig:hover {
  background: #e1306c;
  color: var(--white);
}
.social-btn--fb {
  color: #1877f2;
  border-color: #1877f2;
}
.social-btn--fb:hover {
  background: #1877f2;
  color: var(--white);
}
.social-btn--tt {
  color: #000;
  border-color: #000;
}
.social-btn--tt:hover {
  background: #000;
  color: var(--white);
}
.social-btn--yt {
  color: #ff0000;
  border-color: #ff0000;
}
.social-btn--yt:hover {
  background: #ff0000;
  color: var(--white);
}

/* ──────────────────────────────────────
   CONTACT
────────────────────────────────────── */
.contact {
  background: var(--dark2);
}
.contact .section__title {
  color: var(--white);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 22px;
}
.contact-info__item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}
.contact-info__item i {
  width: 38px;
  height: 38px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.contact-socials {
  display: flex;
  gap: 10px;
}
.contact-social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--tr);
}
.contact-social:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

/* Contact form */
.contact-form {
  background: var(--white);
  border-radius: var(--rl);
  padding: 42px 40px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: var(--ff-body);
  font-size: 0.88rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: var(--tr);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(244, 123, 30, 0.1);
}
.form-group textarea {
  height: 115px;
  resize: vertical;
}
.form-group .input--error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.15);
}
.form-group .form-error {
  display: block;
  margin-top: 5px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #e53e3e;
}
.form-group--checkbox {
  margin-top: 4px;
}
.form-group--checkbox label.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.62);
}
.form-group--checkbox label.checkbox-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--orange);
  cursor: pointer;
}
.form-group--checkbox label.checkbox-label span {
  flex: 1;
}
.form-group--checkbox label.checkbox-label a {
  color: var(--orange);
  text-decoration: underline;
}
.form-group--checkbox label.checkbox-label a:hover {
  opacity: 0.8;
}

/* ──────────────────────────────────────
   FOOTER
────────────────────────────────────── */
.footer {
  background: #0f0f0f;
  color: rgba(255, 255, 255, 0.5);
  padding: 70px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer__logo {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer__brand p {
  font-size: 0.82rem;
  line-height: 1.8;
  margin-top: 8px;
}
.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer__socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--tr);
}
.footer__socials a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.footer__col h4 {
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}
.footer__col a {
  display: block;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 9px;
  transition: var(--tr);
}
.footer__col a:hover {
  color: var(--orange);
  padding-left: 5px;
}

.footer__newsletter h4 {
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.footer__newsletter p {
  font-size: 0.82rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.newsletter {
  display: flex;
  gap: 8px;
}
.newsletter input {
  flex: 1;
  padding: 11px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.82rem;
  outline: none;
  transition: var(--tr);
}
.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.newsletter input:focus {
  border-color: var(--orange);
}
.newsletter .btn {
  padding: 11px 22px;
  font-size: 0.78rem;
}

.footer__bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  font-size: 0.78rem;
}

/* ──────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal--right {
  transform: translateX(44px);
}
.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ──────────────────────────────────────
   RESPONSIVE — 1024px
────────────────────────────────────── */
@media (max-width: 1024px) {
  .cards {
    grid-template-columns: 1fr 1fr;
    max-width: 700px;
    margin: 0 auto;
  }
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* ──────────────────────────────────────
   RESPONSIVE — 768px
────────────────────────────────────── */
@media (max-width: 768px) {
  /* Mobile Nav */
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 40px;
    gap: 22px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }
  .nav__menu.open {
    right: 0;
  }
  .nav__link {
    color: var(--dark);
    font-size: 0.95rem;
  }
  .nav__socials {
    display: none;
  }
  .nav__toggle {
    display: block;
  }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding-top: 90px;
  }
  .hero__visual {
    order: -1;
  }
  .hero__photo {
    height: 320px;
  }
  .hero__desc {
    margin-inline: auto;
  }
  .hero__btns {
    justify-content: center;
  }
  .hero__stats {
    justify-content: center;
  }

  /* Split */
  .split,
  .split--reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }
  .frame img {
    height: 380px;
  }
  .slideshow {
    height: 380px;
  }

  /* Cards */
  .cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .card--featured {
    transform: none;
  }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact form */
  .contact-form {
    padding: 28px 22px;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
  }

  /* Social row */
  .social-row {
    flex-direction: column;
    align-items: center;
  }
}

/* ──────────────────────────────────────
   RESPONSIVE — 480px
────────────────────────────────────── */
@media (max-width: 480px) {
  .section {
    padding: 70px 0;
  }
  .hero__stats {
    gap: 18px;
  }
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__grid {
    gap: 30px;
  }
}

/* ──────────────────────────────────────
   RESPONSIVE — 390px (małe telefony)
────────────────────────────────────── */
@media (max-width: 390px) {
  .container {
    padding: 0 18px;
  }

  /* Hero */
  .hero__title {
    font-size: 2rem;
  }
  .hero__btns {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__btns .btn {
    justify-content: center;
  }
  .hero__stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
  }
  .hero__stat-divider {
    display: none;
  }
  .stat-num {
    font-size: 1.65rem;
  }
  .hero__badge {
    width: 76px;
    height: 76px;
    right: -6px;
  }

  /* Ukryj dekoracyjną ramkę, żeby nie wychodziła poza viewport */
  .frame__border {
    display: none;
  }

  /* Przyciski */
  .btn {
    padding: 13px 22px;
    font-size: 0.8rem;
  }

  /* Karty */
  .card {
    padding: 28px 18px;
  }

  /* Formularz kontaktowy */
  .contact-form {
    padding: 24px 16px;
  }

  /* Galeria — 2 kolumny zamiast 3 */
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  /* Sekcja tytułów */
  .section__title {
    font-size: 1.75rem;
  }
}
