/* ============================================================
   RESTAURACJA TARTAK – LUXURY / GLAMOUR LAYER
   Nadpisuje i rozszerza main.css + style.css o wyrafinowany styl
   ============================================================ */

/* ── Google Fonts – importuj jeśli nie ma w functions.php ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

/* ──────────────────────────────────────────────────────────
   ZMIENNE LUKSUSOWE
   ────────────────────────────────────────────────────────── */
:root {
  /* Głębsze, bogatsze złoto */
  --gold-shimmer-1: #f0d98a;
  --gold-shimmer-2: #c9a84c;
  --gold-shimmer-3: #a07828;
  --gold-gradient: linear-gradient(135deg, #f0d98a 0%, #c9a84c 40%, #a07828 70%, #c9a84c 100%);
  --gold-gradient-h: linear-gradient(90deg, transparent 0%, #c9a84c 30%, #f0d98a 50%, #c9a84c 70%, transparent 100%);

  /* Luksusowe cienie złote */
  --shadow-gold:   0 8px 40px rgba(201,168,76,0.18);
  --shadow-gold-lg: 0 16px 60px rgba(201,168,76,0.25);

  /* Elegancka czcionka nagłówkowa */
  --font-heading: 'Cormorant Garamond', 'Playfair Display', 'Georgia', serif;

  /* Odstęp sekcji */
  --section-pad: 96px;
}

/* ──────────────────────────────────────────────────────────
   TYPOGRAFIA – LUKSUSOWA
   ────────────────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 400; }

p {
  font-family: 'Lato', sans-serif;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-medium);
}

/* ──────────────────────────────────────────────────────────
   OZDOBNIK EYEBROW (mały napis nad tytułem)
   ────────────────────────────────────────────────────────── */
.section-eyebrow,
.about-home__eyebrow {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 14px;
}

/* ──────────────────────────────────────────────────────────
   TYTUŁY SEKCJI – LUKSUSOWE
   ────────────────────────────────────────────────────────── */
.section-title {
  font-family: var(--font-heading);
  font-weight: 400;
  text-align: center;
  color: var(--green-darkest);
  margin-bottom: 0;
  letter-spacing: 0.01em;
}

/* Zastąp zwykłą linię pod tytułem elegancką ornamentyką */
.section-title::after {
  display: none;
}

/* ──────────────────────────────────────────────────────────
   ZŁOTA LINIA OZDOBNA – z diamentem
   ────────────────────────────────────────────────────────── */
.gold-line {
  width: 80px;
  height: 1px;
  background: var(--gold-gradient-h);
  margin: 18px 0;
  border-radius: 0;
  position: relative;
}

.gold-line--center {
  margin: 18px auto 24px;
}

/* Diament pośrodku linii */
.gold-line::before {
  content: '◆';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.5rem;
  color: var(--gold-primary);
  background: inherit;
  line-height: 1;
}

.gold-line--center::before {
  background: var(--off-white, #f8f5f0);
}

/* W sekcjach białych */
.section .gold-line--center::before {
  background: var(--white);
}

/* W sekcjach alt */
.section--alt .gold-line--center::before {
  background: var(--off-white);
}

/* Na banerachstron (ciemne tło) */
.page-banner .gold-line--center::before,
.section--dark .gold-line--center::before,
.cta-banner .gold-line--center::before {
  background: transparent;
}

/* ──────────────────────────────────────────────────────────
   PRZYCISKI – ELEGANCKIE
   ────────────────────────────────────────────────────────── */
.btn {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 0;
  padding: 16px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn--primary {
  background: transparent;
  color: var(--green-darkest);
  border: 2px solid var(--gold-primary);
  background: var(--gold-primary);
}

.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f0d98a 0%, #c9a84c 50%, #a07828 100%);
  z-index: -1;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.btn--primary:hover {
  background: var(--gold-medium);
  border-color: var(--gold-medium);
  color: var(--green-darkest);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
}

.btn--outline:hover {
  background: var(--gold-primary);
  color: var(--green-darkest);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.3);
}

.btn--outline-white {
  border: 1px solid rgba(255,255,255,0.7);
  letter-spacing: 0.2em;
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn--green {
  background: var(--green-primary);
  border: 1px solid var(--green-primary);
  color: var(--white);
}

.btn--green:hover {
  background: var(--green-darkest);
  border-color: var(--green-darkest);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(15,36,16,0.35);
}

/* ──────────────────────────────────────────────────────────
   HERO – LUKSUSOWY
   ────────────────────────────────────────────────────────── */
.hero {
  background: var(--green-darkest);
}

/* Zdjęcie bardziej widoczne */
.hero__bg-img {
  opacity: 0.55 !important;
}

/* Mocniejszy overlay dla czytelności tekstu na zdjęciu */
.hero__overlay {
  background: linear-gradient(
    160deg,
    rgba(8, 18, 8, 0.72) 0%,
    rgba(10, 24, 10, 0.45) 45%,
    rgba(8, 18, 8, 0.78) 100%
  ) !important;
}

.hero__eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--gold-primary);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 0;
  padding: 8px 28px;
  text-transform: uppercase;
}

.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: 0.01em;
  line-height: 1.18;
  color: var(--white);
  text-shadow: 0 3px 32px rgba(0,0,0,0.65);
  margin-bottom: 12px;
}

.hero__title span {
  font-weight: 700;
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__divider {
  width: 160px;
  height: 1px;
  background: var(--gold-gradient-h);
  margin: 24px auto;
  position: relative;
}

.hero__divider::before {
  content: '◆';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.55rem;
  color: var(--gold-primary);
  background: var(--green-darkest);
  padding: 0 4px;
  line-height: 1;
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.8vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.03em;
}

.hero__desc {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
}

/* ──────────────────────────────────────────────────────────
   PAGE BANNER – LUKSUSOWY
   ────────────────────────────────────────────────────────── */
.page-banner {
  background: linear-gradient(160deg, var(--green-darkest) 0%, #1c3d1c 50%, var(--green-darkest) 100%);
  position: relative;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-gradient-h);
}

.page-banner h1 {
  font-weight: 300;
  letter-spacing: 0.03em;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

/* ──────────────────────────────────────────────────────────
   KARTY – ELEGANCKIE
   ────────────────────────────────────────────────────────── */
.card {
  border-radius: 0;
  border: 1px solid rgba(201,168,76,0.12);
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  transition: box-shadow 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
}

.card:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.14), 0 0 0 1px rgba(201,168,76,0.3);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}

.event-card {
  border-radius: 0;
  border: 1px solid rgba(201,168,76,0.12);
  transition: all 0.4s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201,168,76,0.35);
}

.event-card__image {
  border-radius: 0;
}

.box-product-card {
  border-radius: 0;
  border: 1px solid rgba(201,168,76,0.15);
  transition: all 0.4s ease;
}

.box-product-card:hover {
  box-shadow: var(--shadow-gold);
  border-color: rgba(201,168,76,0.4);
}

.box-product-card::before {
  background: var(--gold-gradient);
}

/* ──────────────────────────────────────────────────────────
   SEKCJA CTA / BANNER
   ────────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(160deg, #0a1a0a 0%, #1a3a1a 40%, #0f2410 100%);
  position: relative;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-gradient-h);
}

.cta-banner h2 {
  font-weight: 300;
  letter-spacing: 0.03em;
}

/* ──────────────────────────────────────────────────────────
   SEKCJA STATYSTYK
   ────────────────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(90deg, var(--green-darkest) 0%, #1a3a1a 50%, var(--green-darkest) 100%);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.stat-item__num {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ──────────────────────────────────────────────────────────
   SEKCJA "DLACZEGO MY" – NOWY STYL
   ────────────────────────────────────────────────────────── */
.why-us-section {
  background: var(--off-white);
  padding: var(--section-pad) 0;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.15);
}

.why-us-card {
  background: var(--white);
  padding: 40px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.why-us-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 1px;
  background: rgba(201,168,76,0.12);
}

.why-us-card:hover {
  background: var(--gold-pale);
  box-shadow: inset 0 0 0 1px rgba(201,168,76,0.3);
}

.why-us-card:hover .why-us-card__num {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 1;
}

.why-us-card__num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 300;
  color: rgba(201,168,76,0.25);
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
  transition: all 0.35s ease;
}

.why-us-card__content h3 {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--green-darkest);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.why-us-card__content p {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--text-light);
  margin: 0;
}

@media (max-width: 1024px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  .why-us-card {
    padding: 28px 24px;
  }
}

/* ──────────────────────────────────────────────────────────
   SEKCJA "O NAS" NA GŁÓWNEJ
   ────────────────────────────────────────────────────────── */
.about-home__img {
  border-radius: 0;
  position: relative;
}

.about-home__img::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(201,168,76,0.3);
  z-index: 0;
  pointer-events: none;
}

.about-home__img img,
.about-home__img-placeholder {
  position: relative;
  z-index: 1;
  border-radius: 0;
}

.about-home__badge {
  border-radius: 0;
  background: linear-gradient(135deg, #c9a84c 0%, #f0d98a 50%, #a07828 100%);
  box-shadow: 0 8px 32px rgba(201,168,76,0.4);
}

/* ──────────────────────────────────────────────────────────
   FEATURE ICONS – ELEGANCKIE
   ────────────────────────────────────────────────────────── */
.feature-icon-item__icon {
  width: 72px;
  height: 72px;
  border-radius: 0;
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.35);
  font-size: 1.8rem;
  transition: all 0.35s ease;
  box-shadow: 0 4px 16px rgba(201,168,76,0.1);
  transform: rotate(45deg);
}

.feature-icon-item__icon span {
  display: block;
  transform: rotate(-45deg);
}

.feature-icon-item:hover .feature-icon-item__icon {
  background: var(--gold-pale);
  border-color: var(--gold-primary);
  box-shadow: 0 8px 24px rgba(201,168,76,0.25);
}

.feature-icon-item__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ──────────────────────────────────────────────────────────
   HIGHLIGHT BOX – ELEGANCKI
   ────────────────────────────────────────────────────────── */
.highlight-box {
  border-left: 2px solid var(--gold-primary);
  border-radius: 0;
  background: linear-gradient(to right, rgba(250,246,237,0.9) 0%, rgba(250,246,237,0.3) 100%);
  padding: 24px 28px;
}

.highlight-box p {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--green-dark);
  letter-spacing: 0.01em;
}

/* ──────────────────────────────────────────────────────────
   SERVICES LIST – ELEGANCKA
   ────────────────────────────────────────────────────────── */
.services-list li::before {
  background: none;
  content: '◆';
  font-size: 0.45rem;
  color: var(--gold-primary);
  border-radius: 0;
  width: auto;
  height: auto;
  position: relative;
  top: -1px;
}

/* ──────────────────────────────────────────────────────────
   SEKCJA INTRO / CYTAT
   ────────────────────────────────────────────────────────── */
.intro-section {
  background: linear-gradient(160deg, #0a1a0a 0%, #1a3a1a 100%);
  padding: 72px 0;
  position: relative;
}

.intro-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold-gradient-h);
}

.intro-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold-gradient-h);
}

.intro-section__quote {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.4rem, 3.5vw, 2.1rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.01em;
}

.intro-section__quote::before {
  content: '\201C';
  font-size: 4rem;
  color: rgba(201,168,76,0.4);
  line-height: 0;
  vertical-align: -0.5em;
  margin-right: 4px;
  font-family: Georgia, serif;
}

/* ──────────────────────────────────────────────────────────
   CONTENT IMAGE – ELEGANCKIE OPRAWIENIE
   ────────────────────────────────────────────────────────── */
.content-image {
  border-radius: 0;
  position: relative;
}

.content-image::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(201,168,76,0.25);
  z-index: 0;
  pointer-events: none;
}

.content-image img {
  position: relative;
  z-index: 1;
  border-radius: 0;
}

/* ──────────────────────────────────────────────────────────
   FOOTER – ELEGANCKI
   ────────────────────────────────────────────────────────── */
#site-footer {
  border-top: 1px solid rgba(201,168,76,0.2);
}

#site-footer h4 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-primary);
}

#site-footer a:hover {
  color: var(--gold-shimmer-1);
}

/* ──────────────────────────────────────────────────────────
   SCROLL TO TOP
   ────────────────────────────────────────────────────────── */
#scroll-top {
  border-radius: 0;
  background: var(--gold-primary);
  border: 1px solid transparent;
  transition: all 0.35s ease;
}

#scroll-top:hover {
  background: transparent;
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}

/* ──────────────────────────────────────────────────────────
   MENU NAWIGACYJNE – ELEGANCKIE PODKREŚLENIE
   ────────────────────────────────────────────────────────── */
#main-nav ul li a {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
}

#main-nav ul li a::after {
  background: var(--gold-gradient-h);
  height: 1px;
}

/* ──────────────────────────────────────────────────────────
   ANIMACJE
   ────────────────────────────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

.gold-shimmer-text {
  background: linear-gradient(90deg, var(--gold-primary) 0%, #f0d98a 40%, var(--gold-primary) 60%, var(--gold-shimmer-3) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ──────────────────────────────────────────────────────────
   LUKSUSOWY SEPARATOR SEKCJI
   ────────────────────────────────────────────────────────── */
.luxury-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 0;
}

.luxury-divider::before,
.luxury-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  max-width: 200px;
  background: var(--gold-gradient-h);
}

.luxury-divider__icon {
  color: var(--gold-primary);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
}

/* ──────────────────────────────────────────────────────────
   GODZINY OTWARCIA – ELEGANCKIE
   ────────────────────────────────────────────────────────── */
.lunch-hours {
  border-radius: 0;
  background: linear-gradient(160deg, var(--green-darkest) 0%, var(--green-dark) 100%);
  border: 1px solid rgba(201,168,76,0.2);
  position: relative;
}

.lunch-hours::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-gradient);
}

.lunch-hours h3 {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ──────────────────────────────────────────────────────────
   KONTAKT STRONA – ELEGANCKA
   ────────────────────────────────────────────────────────── */
.contact-info-box {
  border-radius: 0;
  border: 1px solid rgba(201,168,76,0.2);
}

/* ──────────────────────────────────────────────────────────
   SECTION SUBTITLE
   ────────────────────────────────────────────────────────── */
.section-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 1.0rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--text-light);
  line-height: 1.8;
}

/* ──────────────────────────────────────────────────────────
   EVENT CARD BODY – ELEGANCKI
   ────────────────────────────────────────────────────────── */
.event-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  color: var(--green-darkest);
}

.event-card__link {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
}

.event-card__link:hover {
  color: var(--gold-primary);
}

/* ──────────────────────────────────────────────────────────
   KARTY – ZŁOTE OZDOBNIKI (zastąp emoji)
   ────────────────────────────────────────────────────────── */
.card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 0;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Złoty romb jako tło ozdobnika */
.card__icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-primary);
  transform: rotate(45deg) scale(0.75);
  opacity: 0.6;
  transition: all 0.35s ease;
}

.card:hover .card__icon::before {
  opacity: 1;
  transform: rotate(45deg) scale(0.82);
  border-color: var(--gold-shimmer-1);
  box-shadow: 0 0 12px rgba(201,168,76,0.25);
}

/* Wewnętrzny symbol złoty */
.card__icon-symbol {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
  letter-spacing: 0;
}

/* ──────────────────────────────────────────────────────────
   GALERIA – ELEGANCKA
   ────────────────────────────────────────────────────────── */
.gallery-item {
  border-radius: 0;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.gallery-item:hover {
  box-shadow: 0 0 0 2px var(--gold-primary), var(--shadow-gold);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(10,24,10,0.45) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ──────────────────────────────────────────────────────────
   RESPONSYWNOŚĆ
   ────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  .hero__title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .why-us-card__num {
    font-size: 2rem;
  }
}
