* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  background-color: #d6d3cc;
  color: #2e2a28;
  line-height: 1.5;
  padding-top: 20px;
}

h1, h2, h3, h4, .serif {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* STICKY NAV */
.sticky-nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  margin-bottom: 20px;
}

/* SEKCJE */
.section-block {
  background: linear-gradient(145deg, #fffbf9 0%, #f9efe8 100%);
  border-radius: 32px;
  padding: 48px 40px;
  margin: 30px 0;
  box-shadow: 0 0 0 1px rgba(164, 169, 146, 0.2),
              inset 0 0 0 1px rgba(255, 255, 255, 0.6),
              0 8px 20px -8px rgba(100, 80, 70, 0.08);
  scroll-margin-top: 100px;
  position: relative;
  isolation: isolate;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-block.has-bg {
  background: none;
  position: relative;
  z-index: 1;
}

.section-block.has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg-url);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: inherit;
  opacity: 0.12;
  z-index: -1;
}

.section-block.has-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 251, 245, 0.8);
  border-radius: inherit;
  z-index: -1;
}

/* Tło dla OFERTY */
.offer-bg {
  background-image: url('galeria/szablon/liscie.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* HEADER */
.header-block {
  background: rgba(255, 249, 245, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 40px;
  padding: 12px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03),
              inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  order: 1;
  margin-right: 20px;
}

.logo img {
  height: 100px;
  width: auto;
  display: block;
}

.social-nav {
  order: 2;
  display: flex;
  gap: 12px;
  margin-right: auto;
}

.social-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #a4a992;
  color: #5e624f;
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.25s;
}

.social-nav a:hover {
  background: #7b8069;
  border-color: #7b8069;
  color: white;
}

.nav-desktop {
  order: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.nav-desktop a {
  text-decoration: none;
  color: #3a3431;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color 0.2s;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-desktop a:hover {
  color: #7b8069;
  border-bottom-color: #7b8069;
}

/* HAMBURGER */
.hamburger {
  order: 4;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #3a2e28;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: #fbf4ee;
  box-shadow: -5px 0 30px rgba(0,0,0,0.05);
  padding: 24px 24px 20px;
  transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(15px);
  background: rgba(255, 249, 244, 0.95);
  border-left: 1px solid rgba(164, 169, 146, 0.15);
  overflow-y: auto;
}

.mobile-menu.open { right: 0; }

.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: #3a2e28;
  padding: 8px;
  transition: color 0.2s;
}

.mobile-menu-close:hover { color: #7b8069; }

.mobile-menu .menu-links {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mobile-menu a {
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  color: #2e2a28;
  border-bottom: 1px solid rgba(164, 169, 146, 0.2);
  padding: 14px 0;
  letter-spacing: 2px;
}

.mobile-menu a:hover { color: #7b8069; }

.mobile-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(164, 169, 146, 0.3);
  opacity: 1 !important;
  transform: none !important;
}

.mobile-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #a4a992;
  color: #5e624f;
  background: rgba(255,255,255,0.4);
  font-size: 1.4rem;
  border-bottom: none;
  padding: 0;
}

.mobile-social a:hover {
  background: #7b8069;
  border-color: #7b8069;
  color: white;
}

.menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.15);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1040;
}
.menu-backdrop.show { opacity: 1; visibility: visible; }

/* HERO */
.hero-block {
  background: linear-gradient(0deg, rgba(40, 30, 25, 0.25), rgba(20, 15, 10, 0.45)), 
              url('galeria/szablon/banner.png') center/cover no-repeat;
  border-radius: 60px 60px 30px 30px;
  padding: 80px 50px;
  margin: 20px 0 30px;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  box-shadow: 0 0 0 1px rgba(164, 169, 146, 0.15),
              inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  scroll-margin-top: 100px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-block.visible { opacity: 1; transform: translateY(0); }
.hero-block .hero-subtitle,
.hero-block h1,
.hero-block p { color: #fff; }

/* PRZYCISKI */
.btn {
  display: inline-block;
  background-color: #7b8069;
  border: 1.5px solid #7b8069;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 34px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 40px;
  font-family: 'Raleway', sans-serif;
}

.btn:hover {
  background-color: #5e624f;
  border-color: #5e624f;
  color: #fff;
}

.hero-block .btn { background-color: #7b8069; border-color: #7b8069; color: white; }
.btn-light { background-color: #7b8069; border-color: #7b8069; color: white; }

.hero-subtitle {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 6px;
  margin-bottom: 16px;
  font-weight: 400;
}
.hero h1 { font-size: 4.2rem; font-weight: 600; line-height: 1.2; margin-bottom: 24px; }
.hero h1 span { display: block; font-size: 3.2rem; font-weight: 400; font-style: italic; }
.hero p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 36px; }

.section-title { font-size: 2.5rem; margin-bottom: 16px; font-weight: 600; color: #2a241f; text-align: center; }
.section-subtitle { text-align: center; color: #7f6a5c; font-size: 1.1rem; margin-bottom: 40px; text-transform: uppercase; letter-spacing: 3px; }

/* OFERTA - karty */
.offer-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  padding: 32px 16px;
  border-radius: 28px;
  box-shadow: 0 0 0 1px rgba(164, 169, 146, 0.2),
              inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  text-align: center;
  transition: all 0.25s;
}
.offer-card:hover {
  background: #fff;
  box-shadow: 0 0 0 1px #a4a992,
              inset 0 0 0 1px #fff,
              0 16px 28px -8px rgba(110, 70, 50, 0.1);
}
.offer-image {
  width: 100%;
  height: 180px;
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #f3e7e0;
}
.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.offer-card:hover .offer-image img { transform: scale(1.03); }
.offer-card h3 { font-size: 1.7rem; font-weight: 500; margin-bottom: 18px; color: #3f2e24; }
.offer-card p { color: #5f534b; margin-bottom: 24px; font-size: 0.95rem; }
.offer-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #7b8069;
  border-bottom: 1px solid #cfd3c2;
  padding-bottom: 4px;
  cursor: pointer;
}

/* O MNIE */
.about-wrapper { width: 100%; }
.about-text { max-width: 800px; margin: 0 auto; text-align: center; }
.about-text h2 { font-size: 2.2rem; margin-bottom: 16px; }
.about-highlight {
  font-size: 1.3rem;
  font-family: 'Playfair Display', serif;
  color: #7b8069;
  margin-bottom: 20px;
}
.about-text p { margin-bottom: 24px; font-size: 1.05rem; text-align: left; }

/* DLACZEGO WARTO */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 20px 0 10px;
}
.feature-item {
  text-align: center;
  padding: 20px 10px;
  background: rgba(255,255,245,0.5);
  border-radius: 28px;
  backdrop-filter: blur(2px);
  box-shadow: 0 0 0 1px rgba(164, 169, 146, 0.15),
              inset 0 0 0 1px rgba(255,255,255,0.6);
}
.feature-icon { font-size: 2.5rem; margin-bottom: 18px; color: #7b8069; }

/* OPINIE */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
}
.testimonial-card {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
  padding: 30px 20px;
  border-radius: 28px;
  box-shadow: 0 0 0 1px rgba(164, 169, 146, 0.2),
              inset 0 0 0 1px rgba(255,255,255,0.7);
  text-align: center;
}
.testimonial-card i { font-size: 2.5rem; color: #7b8069; opacity: 0.5; margin-bottom: 15px; }
.testimonial-text { font-style: italic; margin-bottom: 20px; color: #3e332d; }
.testimonial-author { font-weight: 600; color: #5e624f; }

/* KONTAKT */
.contact-social {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 30px 0 10px;
}
.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #a4a992;
  color: #5e624f;
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
  font-size: 1.8rem;
  text-decoration: none;
  transition: all 0.25s;
}
.contact-social a:hover { background: #7b8069; border-color: #7b8069; color: white; }

/* CTA */
.cta-block {
  background: linear-gradient(135deg, #342b26 0%, #251f1b 100%);
  border-radius: 60px 60px 30px 30px;
  padding: 64px 40px;
  margin: 30px 0;
  color: #f3ebe4;
  text-align: center;
  box-shadow: 0 0 0 1px rgba(164, 169, 146, 0.3),
              inset 0 0 0 1px rgba(255,255,240,0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.cta-block.visible { opacity: 1; transform: translateY(0); }
.cta-block h2 { font-size: 2.8rem; margin-bottom: 16px; color: #fff; }

/* FOOTER */
.footer-block {
  background: linear-gradient(to right, #f4e9e2, #fdf7f2);
  border-radius: 30px 30px 60px 60px;
  padding: 28px 32px;
  margin: 30px 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: #5f4e44;
  box-shadow: 0 0 0 1px rgba(164, 169, 146, 0.2),
              inset 0 0 0 1px rgba(255,255,255,0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.footer-block.visible { opacity: 1; transform: translateY(0); }
.footer-links a { text-decoration: none; color: #5f4e44; margin-left: 30px; }

/* DWIE KOLUMNY */
.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0;
}
.bg-why { background: #f5ede6; }
.bg-opinions { background: #e6e4dd; }

/* ============================================= */
/* POZIOMY SLIDER OFERT (PC + MOBILE)            */
/* ============================================= */

.offer-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin: 20px 0 10px;
}

.offer-grid {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  gap: 25px;
  padding: 10px 5px 20px 5px;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.offer-grid::-webkit-scrollbar {
  display: none;
}

.offer-card {
  flex: 0 0 calc(25% - 19px);
  min-width: 220px;
  scroll-snap-align: start;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #7b8069;
  border: 1.5px solid #7b8069;
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0.9;
}

.slider-arrow:hover {
  background: #5e624f;
  border-color: #5e624f;
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
}

.slider-arrow:active {
  transform: translateY(-50%) scale(0.98);
}

.slider-arrow-left {
  left: -20px;
}

.slider-arrow-right {
  right: -20px;
}

/* ============================================= */
/* GALERIA - POZIOMY SLIDER (PC + MOBILE)        */
/* ============================================= */

.gallery-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin: 20px 0 10px;
}

.gallery-grid {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 10px 5px 20px 5px;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-grid::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 calc(16.666% - 17px);
  min-width: 150px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  aspect-ratio: 1 / 1;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 2001;
  transition: all 0.2s;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: white;
  font-size: 1.5rem;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

/* ============================================= */
/* MODAL DLA PEŁNEGO OPISU OFERTY                */
/* ============================================= */

.offer-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
}

.offer-modal.active {
  display: flex;
}

.offer-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}

.offer-modal-content {
  position: relative;
  background: rgba(255, 251, 245, 0.98);
  backdrop-filter: blur(15px);
  border-radius: 40px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(164, 169, 146, 0.3);
  animation: modalFadeIn 0.3s ease;
  scrollbar-width: thin;
  scrollbar-color: #7b8069 #e8e4de;
}

.offer-modal-content::-webkit-scrollbar {
  width: 6px;
}

.offer-modal-content::-webkit-scrollbar-track {
  background: #e8e4de;
  border-radius: 10px;
}

.offer-modal-content::-webkit-scrollbar-thumb {
  background: #7b8069;
  border-radius: 10px;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.offer-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(123, 128, 105, 0.1);
  border: none;
  color: #3a2e28;
  font-size: 1.8rem;
  cursor: pointer;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}

.offer-modal-close:hover {
  background: #7b8069;
  color: white;
  transform: rotate(90deg);
}

.offer-modal-image {
  width: 100%;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.offer-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offer-modal-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #3a2e28;
  margin-bottom: 20px;
  font-weight: 500;
  text-align: center;
}

.offer-modal-description {
  color: #5f534b;
  font-size: 1.05rem;
  line-height: 1.7;
  white-space: pre-line;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 1100px) {
  .gallery-item {
    flex: 0 0 calc(33.333% - 14px);
  }
}

@media (max-width: 1000px) {
  .offer-card {
    flex: 0 0 calc(33.33% - 17px);
  }
}

@media (max-width: 780px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; margin-left: auto; margin-right: 1px; }
  .header { justify-content: flex-start; }
  .logo { margin-right: 15px; }
  .social-nav { margin-right: 0; }
  .logo img { height: 60px; }
  .header-block { padding: 12px 20px; }
  .container { padding: 0 20px; }
  .hero h1 { font-size: 3rem; }
  .hero h1 span { font-size: 2.5rem; }
  .section-block, .hero-block, .cta-block { padding: 40px 20px; }
  
  .slider-arrow {
    display: none;
  }
  
  .offer-card {
    flex: 0 0 85%;
    min-width: 260px;
  }
  
  .offer-slider-wrapper {
    margin-left: -20px;
    margin-right: -20px;
  }
  
  .offer-grid {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  #oferta {
    background-position: 90% center !important;
    min-height: 100%;
  }
  
  .hero-block { background-position: 65% center !important; }
  .two-columns { grid-template-columns: 1fr; gap: 30px; }
  .features-grid { grid-template-columns: 1fr; }
  
  .gallery-item {
    flex: 0 0 85%;
    min-width: 260px;
  }
  
  .gallery-slider-wrapper {
    margin-left: -20px;
    margin-right: -20px;
  }
  
  .gallery-grid {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .lightbox-prev, .lightbox-next {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .lightbox-prev { left: 15px; }
  .lightbox-next { right: 15px; }
  .lightbox-close { top: 20px; right: 20px; }
  
  .offer-modal-content {
    padding: 30px 20px;
    max-width: 95%;
  }
  
  .offer-modal-content h3 {
    font-size: 1.6rem;
  }
  
  .offer-modal-image {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.5rem; }
  .hero h1 span { font-size: 2rem; }
  .social-nav a { width: 36px; height: 36px; font-size: 1rem; }
  .offer-card { flex: 0 0 90%; }
  .gallery-item { flex: 0 0 90%; }
}