/* ============================================================
   HOME.CSS — Dom Opieki Jantar
   ------------------------------------------------------------
   Style specyficzne dla STRONY GŁÓWNEJ (index.html):
   • Hero (sekcja powitalna)
   • Trust bar (pasek zaufania)
   • Tile (kafelki opieki)
   • Kitchen (sekcja kuchni)
   • Story (sekcja "O nas")
   • CTA banners (#1 ciemny i #2 jasny)
   • Location (sekcja otoczenia)
   • Opinions, Reviews
   • Facebook tiles
   • Contact (kontakt + formularz)
   ------------------------------------------------------------
   Importuj PO global.css:
     <link rel="stylesheet" href="css/global.css">
     <link rel="stylesheet" href="css/home.css">
   ------------------------------------------------------------
   ARCHITEKTURA: mobile-first, breakpointy Bootstrap 5
============================================================ */

/* ============ HERO (FULL-BLEED, NOWOCZESNY) ============ */
  .hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }

.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    animation: heroZoom 24s ease-in-out infinite alternate;
  }

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(95deg,
        rgba(20, 24, 19, 0.82) 0%,
        rgba(20, 24, 19, 0.55) 35%,
        rgba(20, 24, 19, 0.2) 65%,
        rgba(20, 24, 19, 0.05) 100%),
      linear-gradient(180deg, rgba(20,24,19,0.1) 0%, rgba(20,24,19,0.35) 100%);
    z-index: 1;
  }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  padding: 80px 0 120px;
  color: var(--white);
  animation: fadeUp 1.1s ease-out;
}

.hero .eyebrow {
    color: var(--sage-light);
  }

.hero .eyebrow.eyebrow-line::before { background: var(--sage-light); }

.hero h1 {
    color: var(--white);
    font-size: clamp(44px, 6.2vw, 88px);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
  }

.hero h1 em {
    font-style: italic;
    color: var(--sage-light);
    font-weight: 400;
    position: relative;
    display: inline-block;
  }

/* Animowane podkreślenie pod kursywnym fragmentem H1 */
  .hero h1 em::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    bottom: -2px;
    height: 2px;
    background: var(--sage-light);
    transform-origin: left;
    transform: scaleX(0);
    animation: drawUnderline 1.4s cubic-bezier(0.65, 0, 0.35, 1) 0.9s forwards;
  }

.hero-lead {
    font-size: clamp(16px, 1.3vw, 19px);
    color: rgba(255,255,255,0.88);
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.7;
  }

.hero-lead strong {
    color: var(--white);
    font-weight: 600;
    border-bottom: 1px solid rgba(189,204,196,0.55);
    padding-bottom: 1px;
  }

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  flex-direction: row;
  align-items: stretch;
}
@media (max-width: 575px) {
  .hero-cta { flex-direction: column; }
}

.hero-microsupport {
    font-size: 12.5px;
    color: rgba(255,255,255,0.72);
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    letter-spacing: 0.02em;
  }

.hero-microsupport span::before {
    content: '— ';
    color: var(--sage-light);
    font-weight: 600;
  }

/* Scroll indicator */
  .hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-align: center;
  animation: scrollHint 2.4s ease-in-out infinite;
  display: none;
}

.hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, rgba(255,255,255,0.7), transparent);
    margin: 12px auto 0;
  }

/* ============ MID-PAGE CTA BANNER ============ */
  .cta-banner {
    background: var(--sage-deep);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }

/* ZDJĘCIE W TLE bannera CTA — naturalne kolory zachowane */
  .cta-banner .cta-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    z-index: 0;
    opacity: 0.92;
    pointer-events: none;
  }

/* Gradient maskujący — chroni lewą stronę gdzie jest tekst,
     po prawej zdjęcie pokazuje swoje naturalne kolory */
  .cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(95deg,
      var(--sage-deep) 0%,
      var(--sage-deep) 30%,
      rgba(80, 105, 48, 0.85) 45%,
      rgba(80, 105, 48, 0.35) 75%,
      rgba(80, 105, 48, 0.15) 100%);
    z-index: 1;
  }

/* Cienka linia ozdobna na górze bannera */
  .cta-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--sage-light) 30%, var(--sage-light) 70%, transparent 100%);
    opacity: 0.5;
    z-index: 2;
  }

.cta-banner-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-banner .eyebrow {
    color: var(--sage-light);
  }

.cta-banner h2 {
    font-size: clamp(36px, 4.4vw, 56px);
    color: inherit;
    line-height: 1.1;
    margin-bottom: 20px;
  }

.cta-banner h2 em {
    font-style: italic;
    color: var(--sage-light);
    font-weight: 400;
  }

.cta-banner p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    max-width: 540px;
  }

.cta-banner-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

.cta-banner-actions .btn {
    justify-content: center;
  }

/* Główny CTA na ciemnym tle — biały button z ciemnym tekstem (silny kontrast) */
  .cta-banner-actions .btn-teal {
    background: var(--white);
    color: var(--sage-deep);
    border-color: var(--white);
  }

.cta-banner-actions .btn-teal:hover {
    background: var(--sage-light);
    color: var(--sage-deep);
    border-color: var(--sage-light);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  }

/* Ghost CTA na ciemnym tle — biały border, biały tekst */
  .cta-banner-actions .btn-ghost {
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
    background: transparent;
  }

.cta-banner-actions .btn-ghost:hover {
    background: var(--white);
    color: var(--sage-deep);
    border-color: var(--white);
  }

/* Numer telefonu jako wizualny bohater bannera CTA #1 */
  .cta-phone-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

.cta-phone-label {
    font-size: 11.5px;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 4px;
  }

.cta-phone-number {
    font-family: 'Cormorant Garamond', 'Cormorant', serif;
    font-size: clamp(38px, 5.2vw, 64px);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    transition: color 0.3s ease;
    display: inline-block;
  }

.cta-phone-number:hover {
    color: var(--sage-light);
  }

.cta-phone-secondary {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 2px;
    margin-top: 8px;
    transition: all 0.25s ease;
    display: inline-block;
  }

.cta-phone-secondary:hover {
    color: var(--white);
    border-bottom-color: var(--white);
  }

/* Checklista 3 konkretów pod opisem */
  .cta-checklist {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

.cta-checklist li {
    font-size: 14.5px;
    color: rgba(255,255,255,0.92);
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.45;
  }

.cta-checklist li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--sage-light);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2.5 6.5l2 2 5-5' fill='none' stroke='%23506930' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
    margin-top: 2px;
  }

/* Banner #2 (light variant) — zostaje jasnoszary z ciemnym tekstem,
     przywracam oryginalne style wewnątrz */
  .cta-banner.cta-banner-light {
    background: var(--off-white);
    color: var(--text-dark);
    border-top: 1px solid var(--gray-line);
    border-bottom: 1px solid var(--gray-line);
  }

/* Banner #2 — jasny variant: zdjęcie z większą widocznością + jasny gradient */
  .cta-banner.cta-banner-light .cta-bg-img {
    opacity: 0.65;
    mix-blend-mode: normal;
  }

.cta-banner.cta-banner-light::before {
    background: linear-gradient(95deg,
      var(--off-white) 0%,
      var(--off-white) 30%,
      rgba(248, 247, 244, 0.85) 50%,
      rgba(248, 247, 244, 0.3) 90%,
      rgba(248, 247, 244, 0.1) 100%);
  }

.cta-banner.cta-banner-light::after {
    background: linear-gradient(90deg, transparent 0%, var(--sage) 30%, var(--sage) 70%, transparent 100%);
    opacity: 0.4;
  }

.cta-banner.cta-banner-light .eyebrow { color: var(--sage-dark); }

.cta-banner.cta-banner-light h2 em { color: var(--sage-dark); }

.cta-banner.cta-banner-light p { color: var(--text-mid); }

.cta-banner.cta-banner-light .btn-teal {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
  }

.cta-banner.cta-banner-light .btn-teal:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
  }

.cta-banner.cta-banner-light .btn-ghost {
    color: var(--text-dark);
    border-color: var(--gray-line);
    background: transparent;
  }

.cta-banner.cta-banner-light .btn-ghost:hover {
    background: var(--text-dark);
    color: var(--white);
    border-color: var(--text-dark);
  }

/* ============ TRUST BAR ============ */
  .trust-bar {
    background: var(--white);
    padding: 64px 0;
  }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 20px 16px;
}

.trust-item:last-child { border-right: none !important; }

.trust-icon {
    width: 54px; height: 54px;
    color: var(--sage-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

.trust-item:hover .trust-icon { transform: scale(1.08); }

.trust-icon svg { width: 36px; height: 36px; stroke-width: 1.3; }

.trust-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--text-dark);
    font-weight: 500;
  }

.trust-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.55;
  }

/* ============ AMENITIES (lekki układ z cienkimi liniami) ============ */
  .amenities {
    background: var(--white);
    padding: 140px 0;
  }

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 0;
  margin-top: 40px;
}

.amenity {
  padding: 28px 0 !important;
  text-align: left;
}

.amenity:first-child { padding-left: 0; }

.amenity:last-child {
  border-right: none !important;
  padding-right: 0;
}

.amenity-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: var(--sage);
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
  }

.amenity-icon {
    width: 44px; height: 44px;
    margin-bottom: 24px;
    color: var(--sage-dark);
  }

.amenity-icon svg { width: 100%; height: 100%; stroke-width: 1.2; }

.amenity-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 12px;
  }

.amenity-desc {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.65;
  }

/* ============ OPIEKA / KAFELKI NAPRZEMIENNE ============ */
  .care {
    padding: 120px 0 40px;
    background: var(--white);
  }

.tile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px 0;
}

.tile.reversed .tile-image-wrapper {
  order: 0;
}

.tile.reversed .tile-content {
  order: 1;
}

.tile-image-wrapper {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--cream);
    position: relative;
  }

.tile-image {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.4s cubic-bezier(0.2,0.8,0.2,1);
  }

.tile-image-wrapper:hover .tile-image { transform: scale(1.05); }

.tile-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: var(--amber-dark);
    font-weight: 500;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    font-style: italic;
  }

.tile-content h3 {
    font-size: clamp(32px, 3.4vw, 44px);
    margin-bottom: 20px;
    max-width: 440px;
  }

.tile-content h3 em { font-style: italic; color: var(--sage-dark); font-weight: 400; }

.tile-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--sage), var(--sage-light));
    margin-bottom: 28px;
  }

.tile-content p {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 440px;
  }

.tile-content p strong { color: var(--text-dark); font-weight: 600; }

/* ============ KUCHNIA (biel z cienką górną kreską) ============ */
  .kitchen {
    background: var(--white);
    padding: 110px 0;
    border-top: 1px solid var(--gray-line);
  }

.kitchen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }

.kitchen-text h2 {
    font-size: clamp(40px, 4.8vw, 60px);
    margin-bottom: 28px;
    max-width: 480px;
  }

.kitchen-text h2 em { font-style: italic; color: var(--sage-dark); font-weight: 400; }

.kitchen-text > p {
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 460px;
  }

.kitchen-text > p strong { color: var(--text-dark); font-weight: 600; }

.kitchen-pill {
    display: inline-block;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--amber-light);
    border-left: 3px solid var(--amber);
    border-radius: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--amber-dark);
    letter-spacing: 0.06em;
    margin-bottom: 24px;
  }

.kitchen-pill::before { content: '✓ '; }

.diet-list {
    list-style: none;
    margin: 32px 0;
    padding: 0;
    border-top: 1px solid var(--gray-line);
  }

.diet-list li {
    padding: 18px 0;
    border-bottom: 1px solid var(--gray-line);
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 15px;
    color: var(--text-dark);
  }

.diet-list li::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--sage);
    flex-shrink: 0;
  }

.diet-list li span { color: var(--text-light); margin-left: auto; font-size: 13px; font-style: italic; }

.kitchen-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-card);
  }

.kitchen-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s; }

.kitchen-image:hover img { transform: scale(1.05); }

.kitchen-caption {
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
    text-align: right;
    letter-spacing: 0.02em;
  }

/* ============ STORY ============ */
  .story {
    background: var(--white);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--gray-line);
  }

.story::before {
    content: '"';
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-size: 380px;
    color: var(--gray-bg);
    top: -80px;
    left: 5%;
    line-height: 1;
    pointer-events: none;
  }

.story-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
  }

.story-text h2 {
    font-size: clamp(40px, 4.8vw, 60px);
    margin-bottom: 32px;
  }

.story-text h2 em { font-style: italic; color: var(--sage-dark); font-weight: 400; }

.story-text p {
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 22px;
  }

.story-text p strong { color: var(--text-dark); font-weight: 600; }

.story-image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    box-shadow: var(--shadow-card);
  }

.story-image img { width: 100%; height: 100%; object-fit: cover; }

.story-caption {
    margin-top: 16px;
    font-size: 12.5px;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    letter-spacing: 0.02em;
  }

/* ============ GALLERY ============ */
  .gallery {
    padding: 140px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-line);
  }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 200px 200px 200px;
  gap: 14px;
  margin-bottom: 56px;
}

.gallery-item {
    overflow: hidden;
    cursor: pointer;
    position: relative;
  }

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.3s cubic-bezier(0.2,0.8,0.2,1);
  }

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

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-cta { text-align: center; }

/* ============ LOCATION ============ */
  .location {
    background: var(--white);
    padding: 140px 0;
    border-top: 1px solid var(--gray-line);
  }

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
  }

.location-text h2 {
    font-size: clamp(40px, 4.6vw, 58px);
    margin-bottom: 28px;
  }

.location-text h2 em { font-style: italic; color: var(--sage-dark); font-weight: 400; }

.location-text > p {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 24px;
  }

.location-features {
    list-style: none;
    padding: 0;
    margin: 28px 0;
    border-top: 1px solid var(--gray-line);
  }

.location-features li {
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-line);
    font-size: 14.5px;
    color: var(--text-mid);
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

.location-features li::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--sage);
    margin-top: 9px;
    flex-shrink: 0;
  }

.location-features strong { color: var(--text-dark); font-weight: 600; }

.location-photo {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    box-shadow: var(--shadow-card);
  }

.location-photo img { width: 100%; height: 100%; object-fit: cover; }

.location-map {
    width: 100%;
    aspect-ratio: 21 / 9;
    overflow: hidden;
    border: 1px solid var(--gray-line);
    box-shadow: var(--shadow-soft);
  }

.location-map iframe { width: 100%; height: 100%; border: none; filter: saturate(0.85); }

/* ============ OPINIONS — Google carousel + FB grid ============ */
  .opinions {
    padding: 140px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-line);
  }

.opinions-block { margin-bottom: 100px; }

.opinions-block:last-child { margin-bottom: 0; }

.opinions-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 32px;
    flex-wrap: wrap;
  }

.opinions-head h2 { font-size: clamp(32px, 3.8vw, 48px); }

.opinions-head h2 em { font-style: italic; color: var(--sage-dark); font-weight: 400; }

.opinions-head .stars-block {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-mid);
  }

.opinions-head .rating-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1;
  }

/* CAROUSEL Google */
  .reviews-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 0 24px;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-line) transparent;
}

.reviews-track::-webkit-scrollbar { height: 4px; }

.reviews-track::-webkit-scrollbar-track { background: transparent; }

.reviews-track::-webkit-scrollbar-thumb { background: var(--gray-line); border-radius: 2px; }

.review-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--gray-line);
  padding: 28px;
  transition: all 0.3s ease;
}

.review-card:hover { border-color: var(--sage-light); box-shadow: var(--shadow-card); transform: translateY(-2px); }

.review-stars { margin-bottom: 18px; }

.review-text {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 24px;
  }

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-line);
    font-size: 13px;
  }

.review-author strong { color: var(--text-dark); font-weight: 600; }

.review-author span { color: var(--text-light); }

/* INSTAGRAM-STYLE GRID */
  .fb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.fb-tile {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }

.fb-tile img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.2,0.8,0.2,1);
  }

.fb-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(31,33,30,0.85) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
  }

.fb-tile:hover .fb-tile-overlay { opacity: 1; }

.fb-tile:hover img { transform: scale(1.06); }

.fb-tile-text {
    color: var(--white);
    font-size: 13px;
    line-height: 1.45;
  }

.fb-tile-text strong { display: block; font-weight: 600; margin-bottom: 4px; }

/* ============ KONTAKT (jasne tło, biała karta formularza) ============ */
  .contact {
    background: var(--off-white);
    color: var(--text-dark);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--gray-line);
  }

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--sage) 30%, var(--sage) 70%, transparent 100%);
    opacity: 0.4;
  }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
  }

.contact-info .eyebrow { color: var(--sage-dark); }

.contact-info h2 {
    font-size: clamp(40px, 5vw, 64px);
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.1;
  }

.contact-info h2 em { font-style: italic; color: var(--sage-dark); font-weight: 400; }

.contact-info > p {
    font-size: 17px;
    color: var(--text-mid);
    margin-bottom: 40px;
    line-height: 1.7;
  }

.contact-channel {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 0;
    border-bottom: 1px solid var(--gray-line);
  }

.contact-channel:last-child { border-bottom: none; }

.contact-channel-icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    background: var(--sage-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage-dark);
  }

.contact-channel-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 4px;
    font-weight: 600;
  }

.contact-channel-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--text-dark);
    font-weight: 500;
  }

.contact-channel-value a { color: var(--text-dark); }

.contact-channel-value a:hover { color: var(--sage-dark); }

.contact-channel-sub { font-size: 13px; color: var(--text-light); margin-top: 4px; }

.contact-form-wrapper {
  background: var(--white);
  padding: 32px 24px;
  box-shadow: 0 24px 60px rgba(40,40,35,0.08), 0 4px 12px rgba(40,40,35,0.04);
  color: var(--text-dark);
  border: 1px solid var(--gray-line);
}

.contact-form-wrapper h3 {
    font-size: 30px;
    margin-bottom: 8px;
  }

.contact-form-wrapper > p {
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 32px;
  }

.form-row { margin-bottom: 20px; }

.form-row label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 8px;
  }

.form-row input,
  .form-row textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-line);
    background: var(--off-white);
    color: var(--text-dark);
    font-size: 15px;
    transition: all 0.2s ease;
    border-radius: 2px;
  }

.form-row input:focus,
  .form-row textarea:focus {
    outline: none;
    border-color: var(--sage);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(143,168,159,0.1);
  }

.form-row textarea { resize: vertical; min-height: 110px; }

.form-row-half {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}


/* ============================================================
   SM BREAKPOINT — @media (min-width: 576px)
============================================================ */
@media (min-width: 576px) {
  .hero {
    min-height: calc(100vh - 100px);
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenity {
    padding: 32px 24px !important;
    border-right: 1px solid var(--gray-line) !important;
  }
  .amenity:last-child {
    border-right: none !important;
  }

  .reviews-track {
    padding-right: 32px;
    padding-left: 32px;
    margin: 0 -32px;
  }

  .review-card {
    padding: 36px;
    flex: 0 0 380px;
  }

  .contact-form-wrapper {
    padding: 48px;
  }

  .form-row-half {
    grid-template-columns: 1fr 1fr;
  }
}


/* ============================================================
   LG BREAKPOINT — @media (min-width: 992px)
============================================================ */
@media (min-width: 992px) {
  .hero-content {
    max-width: 660px;
    padding: 100px 0 140px;
  }

  .cta-banner-inner {
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-item {
    padding: 0 32px;
    border-right: 1px solid var(--gray-line);
  }

  .amenities-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0 !important;
  }

  .amenity {
    padding: 0 24px !important;
    border-right: 1px solid var(--gray-line) !important;
  }

  .amenity:last-child {
    border-right: none !important;
  }

  .tile {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 50px 0;
  }

  .tile.reversed .tile-image-wrapper {
    order: 2;
  }

  .gallery-grid {
    grid-template-rows: 220px 220px;
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-item.large {
    grid-row: span 2;
  }

  .fb-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ============================================================
   XL BREAKPOINT — @media (min-width: 1200px)
============================================================ */
@media (min-width: 1200px) {
  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .amenity {
    padding: 0 36px;
  }
}
