/* ============================================================
   STRONA: Dom Opieki Jantar — strona główna
   PALETA:
     --sage: #93B273 (główny akcent — pistacjowy)
     --sage-dark: #6E8E50 (hover, podkreślenia)
     --sage-deep: #506930 (ciemne tła, banner CTA)
     --sage-light: #CFDDB1 (delikatny akcent)
     --sage-bg: #EEF1DF (jasne tła sekcji)
     --teal: #6E8E50 (mocny CTA — oliwkowo-zielony)
     --amber: #C9933D (rzadki trzeci akcent)
   FONTY: Cormorant Garamond (nagłówki) + Manrope (tekst)
============================================================ */


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

  :root {
    /* Baza: biel + chłodne szarości (subtelny mineralny ton) */
    --white: #FFFFFF;
    --off-white: #F8FAF9;
    --cream: #F4F5F4;
    --cream-deep: #E8EBE9;
    --gray-bg: #F0F2F1;
    --gray-line: #DCE0DE;
    --gray-mid: #B0B5B2;
    --gray-stone: #6F7672;       /* nowy: ciemniejszy ton dla detali */

    /* Akcent: eukaliptusowa zieleń — chłodna, subtelna, świeża */
    --sage: #93B273;             /* główny akcent — eukaliptus mineralny */
    --sage-dark: #6E8E50;        /* hover, podkreślenia */
    --sage-deep: #506930;        /* ciemne tła, kontakt */
    --sage-light: #CFDDB1;       /* delikatny akcent, kursywne em */
    --sage-bg: #EEF1DF;          /* bardzo jasne tło */

    /* Mocny akcent CTA: deep teal — głęboka zieleń z niebieskim podtonem */
    --teal: #6E8E50;             /* mocny CTA — oliwkowo-zielony, „Umów wizytę" */
    --teal-dark: #506930;        /* hover */
    --teal-light: #93B273;

    /* Trzeci akcent: bursztyn (jantar) — ciepły kontrapunkt, używany rzadko */
    --amber: #C9933D;            /* drobne akcenty, plakietki, hover detale */
    --amber-dark: #A87A2D;       /* hover */
    --amber-light: #E8C98F;      /* delikatne tła plakietek */

    /* Ciemna sekcja kontaktowa */
    --charcoal: #2A2D2B;

    /* Tekst */
    --text-dark: #1F211E;
    --text-mid: #5C5F5C;         /* też lekko chłodniejszy */
    --text-light: #8E908D;

    --shadow-soft: 0 1px 3px rgba(40,40,38,0.04), 0 8px 30px rgba(40,40,38,0.05);
    --shadow-card: 0 24px 60px rgba(40,40,38,0.08), 0 2px 8px rgba(40,40,38,0.04);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Manrope', system-ui, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4, .serif {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--text-dark);
  }

  a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
  img { max-width: 100%; display: block; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  input, textarea { font-family: inherit; font-size: inherit; }

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

  /* Eyebrow / podnagłówek z numerem */
  .eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 28px;
    display: inline-block;
  }
  .eyebrow-line::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--sage);
    margin-right: 16px;
    vertical-align: middle;
  }

  /* Section header centered */
  .section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 80px;
  }
  .section-head h2 {
    font-size: clamp(40px, 5vw, 64px);
    margin-bottom: 24px;
  }
  .section-head h2 em { font-style: italic; color: var(--sage-dark); font-weight: 400; }
  .section-head p {
    font-size: 17px;
    color: var(--text-mid);
    max-width: 600px;
    margin: 0 auto;
  }

  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    line-height: 1;
  }
  .btn-primary { background: var(--sage); color: var(--white); border: 1px solid var(--sage); }
  .btn-primary:hover { background: var(--sage-dark); border-color: var(--sage-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(110,142,80,0.25); }
  .btn-teal { background: var(--teal); color: var(--white); border: 1px solid var(--teal); }
  .btn-teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(110,142,80,0.32); }
  .btn-ghost { background: transparent; color: var(--text-dark); border: 1px solid var(--gray-line); }
  .btn-ghost:hover { background: var(--text-dark); color: var(--white); border-color: var(--text-dark); }
  .btn-light { background: var(--white); color: var(--sage-dark); border: 1px solid var(--white); }
  .btn-light:hover { background: transparent; color: var(--white); border-color: var(--white); }
  .btn-light-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.5); }
  .btn-light-outline:hover { background: var(--white); color: var(--sage-dark); border-color: var(--white); }

  .link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--sage-dark);
    text-transform: uppercase;
    transition: gap 0.3s ease, color 0.3s ease;
  }
  .link-arrow:hover { gap: 14px; color: var(--amber-dark); }

  /* ============ TOP BAR ============ */
  .topbar {
    background: var(--cream);
    border-bottom: 1px solid var(--gray-line);
    font-size: 13px;
    color: var(--text-mid);
  }
  .topbar-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0;
    gap: 24px;
    flex-wrap: wrap;
  }
  .topbar-left { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
  .topbar-item { display: flex; align-items: center; gap: 8px; }
  .topbar a:hover { color: var(--sage-dark); }


  /* ============ NAVIGATION ============ */
  .nav {
    border-bottom: 1px solid var(--gray-line);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.95);
  }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; gap: 32px; }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
  }
  .logo img {
    height: 56px;
    width: auto;
    display: block;
  }
  .nav-menu { display: flex; gap: 26px; list-style: none; align-items: center; }
  .nav-menu a { font-size: 14px; font-weight: 500; color: var(--text-dark); position: relative; padding: 8px 0; }
  .nav-menu a:hover { color: var(--sage-dark); }
  .nav-menu a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--sage); transition: width 0.3s ease; }
  .nav-menu a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--teal);
    color: var(--white) !important;
    padding: 13px 22px !important;
    border-radius: 2px;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 12px rgba(46, 92, 92, 0.22), 0 0 0 0 rgba(46, 92, 92, 0.45);
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .nav-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
  }
  .nav-cta:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 92, 92, 0.32), 0 0 0 4px rgba(46, 92, 92, 0.12);
  }
  .nav-cta:hover::before { left: 100%; }
  .nav-cta svg {
    width: 14px; height: 14px;
    stroke-width: 2;
  }
  .nav-cta::after { display: none; }
  .nav-toggle { display: none; }

  /* ============ HERO (FULL-BLEED, NOWOCZESNY) ============ */
  .hero {
    position: relative;
    min-height: calc(100vh - 100px);
    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;
  }
  @keyframes heroZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
  }
  .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: 660px;
    padding: 100px 0 140px;
    color: var(--white);
    animation: fadeUp 1.1s ease-out;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .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;
  }
  @keyframes drawUnderline {
    to { transform: scaleX(1); }
  }
  .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; }
  .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;
  }
  .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;
  }
  @keyframes scrollHint {
    0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
    50%     { transform: translateX(-50%) translateY(6px); opacity: 1; }
  }

  /* ============ 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: 1.4fr 1fr;
    gap: 60px;
    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);
    border-bottom: 1px solid var(--gray-line);
    padding: 64px 0;
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    padding: 0 32px;
    border-right: 1px solid var(--gray-line);
  }
  .trust-item:last-child { border-right: none; }
  .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: repeat(4, 1fr);
    gap: 0;
    margin-top: 40px;
  }
  .amenity {
    padding: 0 36px;
    border-right: 1px solid var(--gray-line);
    text-align: left;
  }
  .amenity:first-child { padding-left: 0; }
  .amenity:last-child { border-right: none; 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 1fr;
    gap: 80px;
    align-items: center;
    padding: 50px 0;
  }
  .tile.reversed .tile-image-wrapper { order: 2; }
  .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(4, 1fr);
    grid-template-rows: 220px 220px;
    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 2; }
  .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;
  }
  .stars { color: var(--sage); letter-spacing: 2px; font-size: 14px; }

  /* 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 -32px;
    padding-left: 32px;
    padding-right: 32px;
    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 380px;
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--gray-line);
    padding: 36px;
    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); }

  .carousel-controls {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    justify-content: flex-end;
  }
  .carousel-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gray-line);
    background: var(--white);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .carousel-btn:hover { background: var(--sage); color: var(--white); border-color: var(--sage); }
  .carousel-btn svg { width: 16px; height: 16px; }

  /* INSTAGRAM-STYLE GRID */
  .fb-grid {
    display: grid;
    grid-template-columns: repeat(3, 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: 48px;
    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 1fr; gap: 16px; }
  .form-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.55;
    margin-bottom: 24px;
  }
  .form-checkbox input { margin-top: 3px; flex-shrink: 0; }
  .form-checkbox a { color: var(--sage-dark); text-decoration: underline; }
  .form-submit { width: 100%; justify-content: center; }
  .form-success {
    display: none;
    padding: 16px;
    background: var(--sage-bg);
    border: 1px solid var(--sage-light);
    color: var(--sage-deep);
    font-size: 14px;
    margin-top: 16px;
  }

  /* ============ FOOTER ============ */
  footer {
    background: var(--off-white);
    padding: 80px 0 0;
    color: var(--text-mid);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.4fr;
    gap: 60px;
    padding-bottom: 64px;
  }
  .footer-col h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-line);
  }
  .footer-col p, .footer-col li, .footer-col a {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.75;
  }
  .footer-col a:hover { color: var(--sage-dark); }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 8px; }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 500;
  }
  .footer-logo img {
    max-height: 80px;
    width: auto;
    display: block;
    /* delikatne rozjaśnienie - logo jest na ciemnym tle stopki */
    filter: brightness(1.05);
  }
  .footer-mission {
    font-style: italic;
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 320px;
    margin-bottom: 24px;
  }
  .footer-krdo {
    display: inline-block;
    padding: 8px 14px;
    background: var(--white);
    border: 1px solid var(--amber-light);
    border-left: 3px solid var(--amber);
    font-size: 12px;
    color: var(--amber-dark);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
  }
  .footer-social { display: flex; gap: 12px; }
  .footer-social a {
    width: 36px; height: 36px;
    border: 1px solid var(--gray-line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-mid);
    transition: all 0.3s ease;
  }
  .footer-social a:hover { background: var(--sage); color: var(--white); border-color: var(--sage); }
  .nav-list-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }

  .footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: flex-start;
  }
  .footer-contact-item svg {
    flex-shrink: 0;
    color: var(--sage);
    margin-top: 3px;
  }
  .footer-contact-item strong {
    color: var(--text-dark);
    font-weight: 600;
    display: block;
  }
  .footer-mini-map {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid var(--gray-line);
  }
  .footer-mini-map iframe { width: 100%; height: 100%; border: none; filter: saturate(0.85); }

  .footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--gray-line);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: var(--text-light);
  }
  .footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
  .footer-bottom-links a:hover { color: var(--sage-dark); }

  /* ============ BACK TO TOP ============ */
  .back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.2,0.8,0.2,1);
    z-index: 99;
    box-shadow: 0 8px 28px rgba(46,92,92,0.4), 0 0 0 0 rgba(46,92,92,0.45);
    cursor: pointer;
    animation: btnPulse 2.6s ease-in-out infinite;
  }
  @keyframes btnPulse {
    0%,100% { box-shadow: 0 8px 28px rgba(46,92,92,0.4), 0 0 0 0 rgba(46,92,92,0.45); }
    50%     { box-shadow: 0 8px 28px rgba(46,92,92,0.4), 0 0 0 12px rgba(46,92,92,0); }
  }
  .back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .back-to-top:hover { background: var(--teal-dark); transform: translateY(-3px) scale(1.05); }
  .back-to-top svg { width: 20px; height: 20px; stroke-width: 2; }

  /* Reveal on scroll */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s ease, transform 0.9s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 1100px) {
    .nav-menu { gap: 16px; font-size: 13px; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 0 0; }
    .amenity { padding: 32px 24px !important; border-bottom: 1px solid var(--gray-line); }
    .amenity:nth-child(odd) { border-right: 1px solid var(--gray-line); padding-left: 0 !important; }
    .amenity:nth-child(even) { border-right: none; padding-right: 0 !important; }
  }
  @media (max-width: 980px) {
    .nav-menu { display: none; }
    .nav-toggle {
      display: flex;
      flex-direction: column;
      gap: 5px;
      width: 28px;
      cursor: pointer;
      padding: 4px;
    }
    .nav-toggle span { width: 100%; height: 1.5px; background: var(--text-dark); transition: all 0.3s ease; }
    .hero-content { padding: 80px 0 120px; max-width: 100%; }
    .hero-scroll { display: none; }
    .cta-banner-inner { grid-template-columns: 1fr; gap: 32px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-item { padding: 20px 16px; border-right: none !important; border-bottom: 1px solid var(--gray-line); }
    .trust-item:nth-child(odd) { border-right: 1px solid var(--gray-line) !important; }
    .trust-item:nth-last-child(-n+2) { border-bottom: none; }
    .tile { grid-template-columns: 1fr; gap: 48px; padding: 60px 0; }
    .tile.reversed .tile-image-wrapper { order: 0; }
    .tile.reversed .tile-content { order: 1; }
    .kitchen-grid, .story-grid, .location-grid, .contact-grid {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: 200px 200px 200px;
    }
    .gallery-item.large { grid-column: span 2; grid-row: span 1; }
    .fb-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .container { padding: 0 20px; }
    .topbar { font-size: 12px; }
    .topbar-inner { justify-content: center; }
    .topbar-left { display: none; }
    .hero { min-height: 85vh; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { justify-content: center; }
    .amenities-grid { grid-template-columns: 1fr; }
    .amenity { border-right: none !important; border-bottom: 1px solid var(--gray-line); padding: 28px 0 !important; }
    .amenity:last-child { border-bottom: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 32px 24px; }
    .form-row-half { grid-template-columns: 1fr; }
    .review-card { flex: 0 0 280px; padding: 28px; }
    .reviews-track { padding-left: 20px; padding-right: 20px; margin: 0 -20px; }
    .back-to-top { bottom: 20px; right: 20px; width: 48px; height: 48px; }
    .amenities, .care, .kitchen, .story, .gallery, .location, .opinions, .contact, .cta-banner { padding: 80px 0; }
  }


/* ============================================================
   HELPER CLASSES (zamiana inline styles)
============================================================ */

.phone-bold {
  color: var(--text-dark);
  margin-left: 4px;
}


/* Dodatkowe klasy helper */
.text-light { color: var(--text-light); }
.small-light-mt4 {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}
.small-mt8 {
  font-size: 12px;
  margin-top: 8px;
}
.mt-16 { margin-top: 16px; }
