
    /* ============================
       CSS CUSTOM PROPERTIES
    ============================ */
    :root {
      --teal-main:  #5EDED1;  /* kolor logo — używaj z czarnym tekstem */
      --teal-dark:  #0F6B63;  /* głęboki turkus — używaj z białym tekstem */
      --teal-light: #B2F0EC;  /* jasny odcień — tła kart */
      --cream:      #FAFAF7;
      --black:      #1A1A1A;
      --white:      #FFFFFF;
      --shadow:     rgba(0,0,0,0.08);
      --radius:     16px;
      --transition: 0.3s ease;
      --font-h:     'Playfair Display', Georgia, serif;
      --font-b:     'Inter', system-ui, sans-serif;
    }

    /* ============================
       RESET & BASE
    ============================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-b);
      color: var(--black);
      background: var(--white);
      overflow-x: hidden;
      font-size: 16px;
      line-height: 1.6;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    button { font-family: var(--font-b); }

    :focus-visible {
      outline: 3px solid var(--teal-main);
      outline-offset: 3px;
      border-radius: 4px;
    }

    /* ============================
       KEYFRAME ANIMATIONS
    ============================ */
    @keyframes fadeSlideUp {
      from { opacity: 0; transform: translateY(40px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes pulse {
      0%,100% { transform: scale(1);    box-shadow: 0 0 0 0   rgba(94,222,209,.5); }
      50%      { transform: scale(1.04); box-shadow: 0 0 0 14px rgba(94,222,209,0); }
    }

    /* Scroll-reveal */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-d1 { transition-delay: .1s; }
    .reveal-d2 { transition-delay: .2s; }
    .reveal-d3 { transition-delay: .3s; }
    .reveal-d4 { transition-delay: .4s; }
    .reveal-d5 { transition-delay: .5s; }
    .reveal-d6 { transition-delay: .6s; }

    /* prefers-reduced-motion */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
      .reveal { opacity: 1; transform: none; }
    }

    /* ============================
       UTILITY
    ============================ */
    .container { max-width: 1200px; margin: 0 auto; }
    .section-pad { padding: 80px 24px; }

    .section-header { text-align: center; margin-bottom: 56px; }
    .section-header h2 {
      font-family: var(--font-h);
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 12px;
    }
    .section-header p { font-size: 1.05rem; color: #444; max-width: 580px; margin: 0 auto; line-height: 1.7; }

    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      min-height: 48px; padding: 12px 28px; border-radius: 50px;
      font-weight: 600; font-size: .95rem; cursor: pointer; border: 2px solid transparent;
      transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.18); }
    .btn-primary  { background: var(--teal-main); color: var(--black); }
    .btn-outline  { background: transparent; border-color: var(--white); color: var(--white); }
    .btn-outline:hover { background: var(--white); color: var(--black); }
    .btn-teal-outline { background: transparent; border-color: var(--teal-main); color: var(--teal-dark); }
    .btn-teal-outline:hover { background: var(--teal-main); color: var(--black); }

    /* ============================
       NAVIGATION
    ============================ */
    #nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      display: flex; align-items: center; justify-content: space-between;
      padding: 10px 24px;
      background: transparent;
      transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
    }
    #nav.scrolled {
      background: var(--teal-main);
      box-shadow: 0 2px 20px rgba(0,0,0,.15);
      padding: 8px 24px;
    }
    /* Czarne teksty gdy nav na jasnym tle #5EDED1 (tylko desktop — mobile dropdown ma ciemne tło) */
    @media (min-width: 769px) {
      #nav.scrolled .nav-center a { color: var(--black); text-shadow: none; }
    }
    #nav.scrolled .lang-toggle    { color: var(--black); text-shadow: none; }
    #nav.scrolled .hamburger span { background: var(--black); }

    .nav-logo img { max-height: 50px; width: auto; }

    .nav-center {
      display: flex; align-items: center; gap: 32px; list-style: none;
    }
    .nav-center a {
      font-weight: 600; font-size: .9rem; color: var(--espresso);
      letter-spacing: .03em; opacity: .95;
      transition: opacity var(--transition), color var(--transition);
      white-space: nowrap;
    }
    .nav-center a:hover { opacity: .75; }

    .nav-right { display: flex; align-items: center; gap: 12px; }

    .lang-toggle {
      display: flex; align-items: center; gap: 2px;
      background: none; border: none; cursor: pointer;
      color: var(--white); font-family: var(--font-b); font-size: .9rem; font-weight: 600;
      padding: 6px 4px; min-height: 44px; min-width: 44px;
      text-shadow: 0 1px 4px rgba(0,0,0,.35);
      transition: color var(--transition);
    }
    .lang-toggle .lsep { opacity: .5; margin: 0 3px; }
    .lang-toggle .lbtn { transition: opacity var(--transition); opacity: .6; }
    .lang-toggle .lbtn.active { opacity: 1; text-decoration: underline; font-weight: 700; }

    /* Hamburger */
    .hamburger {
      display: none; flex-direction: column; gap: 5px; justify-content: center; align-items: center;
      background: none; border: none; cursor: pointer; padding: 8px;
      min-width: 48px; min-height: 48px;
    }
    .hamburger span {
      display: block; width: 24px; height: 2px; background: var(--white);
      transition: transform .3s ease, opacity .3s ease;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile nav */
    @media (max-width: 768px) {
      .hamburger { display: flex; }
      .nav-center {
        display: none; position: fixed; top: 64px; left: 0; right: 0;
        background: var(--teal-main); flex-direction: column; gap: 0;
        z-index: 999;
      }
      .nav-center.open { display: flex; }
      .nav-center li { width: 100%; }
      .nav-center a {
        display: block; padding: 14px 28px; font-size: 1rem;
        border-top: 1px solid var(--espresso);
      }
    }
    @media (max-width: 480px) {
      #nav { padding: 8px 16px; }
    }

    /* ============================
       HERO
    ============================ */
    #hero {
      position: relative; height: 100dvh; min-height: 600px;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: url('https://images.pexels.com/photos/1855214/pexels-photo-1855214.jpeg?auto=compress&cs=tinysrgb&w=1200') center/cover no-repeat;
      will-change: transform;
    }
    .hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
    .hero-content {
      position: relative; z-index: 1; text-align: center; padding: 24px;
      color: var(--white);
      animation: fadeSlideUp 1s ease .1s both;
    }
    .hero-logo {
      max-height: 140px; width: auto; margin: 0 auto 28px;
      animation: fadeIn 1.2s ease both;
    }
    .hero-tagline {
      font-family: var(--font-h);
      font-size: clamp(1.5rem, 4.5vw, 3rem);
      font-weight: 700; margin-bottom: 12px;
      text-shadow: 0 2px 12px rgba(0,0,0,.35);
      max-width: 720px;
    }
    .hero-sub {
      font-size: clamp(.85rem, 2vw, 1.05rem);
      letter-spacing: .18em; text-transform: uppercase;
      opacity: .88; margin-bottom: 40px;
    }
    .hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    /* ============================
       STATS BAR
    ============================ */
    #stats {
      background: var(--teal-main);
      padding: 52px 24px;
    }
    .stats-grid {
      display: flex; justify-content: center; gap: 56px; flex-wrap: wrap;
      max-width: 900px; margin: 0 auto;
    }
    .stat-item { text-align: center; color: var(--black); }
    .stat-num {
      font-family: var(--font-h);
      font-size: clamp(2.4rem, 5vw, 3.6rem);
      font-weight: 700; line-height: 1; margin-bottom: 8px;
      display: block;
    }
    .stat-lbl {
      font-size: .9rem; font-weight: 600;
      letter-spacing: .06em; text-transform: uppercase; opacity: .9;
    }
    @media (max-width: 480px) {
      .stats-grid { gap: 32px; }
    }

    /* ============================
       ABOUT / WHY CUD
    ============================ */
    #about { background: var(--cream); }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
      max-width: 1100px; margin: 0 auto;
    }
    .feat-card {
      background: var(--white); border-radius: var(--radius);
      padding: 36px 28px; text-align: center;
      box-shadow: 0 4px 20px var(--shadow);
      transition: transform var(--transition), box-shadow var(--transition);
      cursor: default;
    }
    .feat-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
    .feat-icon {
      width: 72px; height: 72px; border-radius: 50%;
      background: var(--teal-light); display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
    }
    .feat-icon svg { width: 36px; height: 36px; stroke: var(--teal-dark); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
    .feat-card h3 { font-family: var(--font-h); font-size: 1.35rem; margin-bottom: 12px; }
    .feat-card p { font-size: .95rem; color: #333; line-height: 1.75; }

    /* ============================
       MENU
    ============================ */
    #menu { background: var(--white); }

    .tabs-wrap {
      display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px;
    }
    .tab-btn {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 10px 20px; min-height: 48px;
      border: 2px solid #e0e0e0; border-radius: 50px;
      background: transparent; font-size: .88rem; font-weight: 600;
      color: var(--black); cursor: pointer;
      transition: all var(--transition);
      white-space: nowrap;
    }
    .tab-btn.active {
      background: var(--teal-main); border-color: var(--teal-main); color: var(--black);
    }
    .tab-btn:not(.active):hover { border-color: var(--teal-main); color: var(--teal-dark); }

    .tab-panel { display: none; max-width: 860px; margin: 0 auto; animation: fadeIn .3s ease; }
    .tab-panel.active { display: block; }

    .menu-intro {
      text-align: center; font-style: italic; font-size: .95rem;
      color: #444; line-height: 1.7; margin-bottom: 32px;
    }
    .menu-sec { margin-bottom: 32px; }
    .menu-sec-title {
      font-family: var(--font-h); font-size: 1.15rem; color: var(--teal-dark);
      padding-bottom: 8px; margin-bottom: 14px;
      border-bottom: 2px solid var(--teal-dark);
    }
    .menu-rows { display: grid; gap: 0; }
    .menu-rows.two-col { }
    @media (min-width: 768px) {
      .menu-rows.two-col { grid-template-columns: 1fr 1fr; gap: 0 32px; }
    }
    .mi {
      display: flex; justify-content: space-between; align-items: flex-start;
      gap: 12px; padding: 11px 0;
      border-bottom: 1px solid var(--teal-dark);
    }
    .mi:last-child { border-bottom: none; }
    .mi-left { flex: 1; min-width: 0; }
    .mi-name { font-weight: 600; font-size: .93rem; }
    .mi-desc { font-size: .84rem; color: #505050; margin-top: 3px; line-height: 1.55; }
    .mi-price { font-weight: 700; color: var(--teal-dark); white-space: nowrap; font-size: .92rem; }

    .menu-note {
      background: rgba(190,137,90,.12); border-radius: 10px;
      padding: 12px 16px; font-size: .86rem; color: #3a3a3a;
      margin-top: 8px; line-height: 1.65;
    }
    .menu-cakes-note {
      background: rgba(190,137,90,.12); border-radius: var(--radius);
      padding: 28px; text-align: center; font-size: .95rem; line-height: 1.8;
    }
    .menu-cakes-note strong { font-family: var(--font-h); font-size: 1.15rem; display: block; margin-bottom: 8px; }

    .menu-footer {
      background: linear-gradient(135deg, var(--teal-light), #8ee8e1);
      border-radius: var(--radius); padding: 22px 28px; margin-top: 36px;
      text-align: center; font-size: .9rem; color: #1a1a1a; line-height: 1.75;
    }
    .menu-legend {
      font-size: .84rem; color: #555; text-align: center; margin-top: 10px;
    }

    /* ============================
       REVIEWS CAROUSEL
    ============================ */
    #reviews {
      background: var(--teal-main);
      padding: 80px 24px; overflow: hidden;
    }
    #reviews .section-header h2 { color: var(--black); }
    #reviews .section-header p   { color: var(--espresso); }

    .reviews-badge {
      display: inline-block; background: var(--white); color: var(--black);
      border-radius: 50px; padding: 8px 22px; font-weight: 700; font-size: .9rem;
      margin-bottom: 44px; margin-top: -20px;
      box-shadow: 0 2px 12px rgba(0,0,0,.12);
    }

    .carousel { max-width: 760px; margin: 0 auto; position: relative; }
    .carousel-track { overflow: hidden; }
    .c-slide { display: none; }
    .c-slide.active { display: block; animation: fadeIn .5s ease; }

    .review-card {
      background: var(--white); border-radius: var(--radius);
      padding: 36px; box-shadow: 0 4px 24px rgba(0,0,0,.1);
    }
    .review-stars { color: #FFB800; font-size: 1.15rem; margin-bottom: 14px; letter-spacing: 2px; }
    .review-text  {
      font-size: 1rem; line-height: 1.75; color: var(--black);
      font-style: italic; margin-bottom: 16px;
    }
    .review-author { font-weight: 700; font-size: .9rem; color: var(--black); }

    .carousel-ctrl {
      display: flex; align-items: center; justify-content: center;
      gap: 12px; margin-top: 24px;
    }
    .c-btn {
      background: rgba(0,0,0,.12); border: none; border-radius: 50%;
      width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
      cursor: pointer; color: var(--black); transition: background var(--transition);
    }
    .c-btn:hover { background: rgba(0,0,0,.22); }
    .c-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

    .c-dots { display: flex; gap: 8px; align-items: center; }
    .dot {
      width: 10px; height: 10px; border-radius: 50%;
      background: rgba(0,0,0,.2); cursor: pointer; border: none;
      transition: background var(--transition), transform var(--transition);
      padding: 0;
    }
    .dot.active { background: var(--black); transform: scale(1.25); }

    @media (max-width: 480px) {
      .review-card { padding: 24px 20px; }
      .review-text { font-size: .92rem; }
    }

    /* ============================
       GALLERY
    ============================ */
    #gallery { background: var(--white); }
    #gallery .section-header h2 { color: var(--black); }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      max-width: 1100px; margin: 0 auto;
    }
    @media (min-width: 768px) {
      .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    }
    .g-item {
      overflow: hidden; border-radius: var(--radius);
      aspect-ratio: 1/1; cursor: pointer; position: relative;
    }
    .g-item img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .4s ease;
    }
    .g-item:hover img { transform: scale(1.07); }
    .g-overlay {
      position: absolute; inset: 0;
      background: rgba(0,0,0,.28);
      opacity: 0; transition: opacity var(--transition);
      display: flex; align-items: center; justify-content: center;
    }
    .g-item:hover .g-overlay { opacity: 1; }
    .g-overlay svg { width: 40px; height: 40px; stroke: var(--white); fill: none; stroke-width: 1.8; }

    /* Lightbox */
    #lightbox {
      display: none; position: fixed; inset: 0; z-index: 3000;
      background: rgba(0,0,0,.92);
      align-items: center; justify-content: center;
    }
    #lightbox.open { display: flex; }
    #lightbox img {
      max-width: 90vw; max-height: 88vh;
      object-fit: contain; border-radius: 10px;
      animation: fadeIn .3s ease;
    }
    #lb-close {
      position: absolute; top: 20px; right: 20px;
      background: rgba(255,255,255,.12); border: none; border-radius: 50%;
      width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
      cursor: pointer; color: var(--white); font-size: 1.6rem;
      transition: background var(--transition);
    }
    #lb-close:hover { background: rgba(255,255,255,.25); }

    /* ============================
       SOCIAL
    ============================ */
    #social {
      background: var(--teal-dark);
      padding: 80px 24px; text-align: center;
    }
    #social h2 {
      font-family: var(--font-h);
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      color: var(--white); margin-bottom: 14px;
    }
    .social-sub { color: rgba(255,255,255,.8); margin-bottom: 40px; font-size: 1rem; }
    .social-btns {
      display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    }
    .social-btn {
      display: inline-flex; align-items: center; gap: 12px;
      background: var(--white); color: var(--teal-dark);
      padding: 16px 36px; border-radius: 50px;
      font-weight: 700; font-size: 1.05rem;
      min-height: 56px; will-change: transform;
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .social-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.25); }
    .social-btn svg { width: 24px; height: 24px; flex-shrink: 0; }
    .social-btn--ig { animation: pulse 3s infinite; }
    .social-btn--ig:hover { animation: none; }
    .social-btn--fb { animation: pulse 3s 1.5s infinite; }
    .social-btn--fb:hover { animation: none; }

    /* ============================
       CONTACT
    ============================ */
    #contact { background: var(--cream); }

    .contact-grid {
      display: grid; grid-template-columns: 1fr;
      gap: 44px; max-width: 1100px; margin: 0 auto;
    }
    @media (min-width: 768px) {
      .contact-grid { grid-template-columns: 1fr 1fr; align-items: center; }
    }

    .contact-info h2 {
      font-family: var(--font-h);
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      margin-bottom: 28px;
    }
    .c-item {
      display: flex; align-items: flex-start; gap: 14px;
      margin-bottom: 18px; font-size: .97rem; line-height: 1.6;
    }
    .c-item .ci { font-size: 1.2rem; margin-top: 1px; flex-shrink: 0; }
    .c-item a:hover { color: var(--teal-dark); text-decoration: underline; }

    .hours-box {
      background: var(--white); border-radius: var(--radius);
      padding: 22px 26px; margin-top: 24px;
      box-shadow: 0 4px 20px var(--shadow);
    }
    .hours-box h3 { font-family: var(--font-h); font-size: 1.1rem; margin-bottom: 8px; }
    .hours-box p  { font-size: .9rem; color: #444; line-height: 1.7; }

    .map-wrap iframe {
      width: 100%; height: 420px;
      border: none; border-radius: var(--radius);
      box-shadow: 0 4px 20px var(--shadow);
    }

    /* ============================
       FOOTER
    ============================ */
    footer {
      background: var(--teal-dark);
      padding: 44px 24px 28px;
      color: var(--white);
    }
    .footer-grid {
      display: flex; flex-wrap: wrap; gap: 28px;
      justify-content: space-between; align-items: center;
      max-width: 1100px; margin: 0 auto 20px;
    }
    .footer-logo img { max-height: 60px; border-radius: 8px; }
    .footer-art { flex: 1; min-height: 60px; max-width: 200px; /* placeholder for illustration */ }
    .footer-info { font-size: .88rem; opacity: .82; line-height: 1.8; }
    .footer-social { display: flex; gap: 14px; align-items: center; }
    .footer-social a {
      display: flex; align-items: center; justify-content: center;
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--teal-main);
      transition: background var(--transition);
    }
    .footer-social svg { width: 22px; height: 22px; fill: var(--espresso); }
    .footer-copy {
      text-align: center; font-size: .78rem; opacity: .55;
      padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18);
      max-width: 1100px; margin: 0 auto;
    }

    /* ============================
       MOBILE FAB — FLOATING CALL BUTTON
    ============================ */
    #mobile-cta {
      display: none;
      position: fixed; bottom: 24px; right: 24px; z-index: 998;
      width: 58px; height: 58px; border-radius: 50%;
      background: var(--teal-main);
      color: var(--espresso);
      align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(0,0,0,.28);
      animation: pulse 2.8s ease infinite;
      transition: transform .2s ease, box-shadow .2s ease;
      text-decoration: none;
    }
    #mobile-cta:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(0,0,0,.35); }
    #mobile-cta svg { width: 26px; height: 26px; fill: var(--espresso); }
    #mobile-cta.hidden { display: none !important; }
    @media (max-width: 768px) { #mobile-cta { display: flex; } }

    /* ============================
       LANGUAGE BLOCKS
       Widoczność zarządzana wyłącznie przez JS (el.style.display),
       NIE przez CSS — CSS-owy display:none nadpisywałby JS toggle.
    ============================ */

    /* ============================
       RESPONSIVE TWEAKS
    ============================ */
    @media (max-width: 480px) {
      .section-pad { padding: 60px 16px; }
      .hero-cta { flex-direction: column; align-items: center; }
      .hero-logo { max-height: 110px; }
      .tabs-wrap { gap: 6px; }
      .tab-btn { padding: 9px 14px; font-size: .82rem; }
    }
    @media (min-width: 1200px) {
      .cards-grid { grid-template-columns: repeat(3, 1fr); }
    }

    /* ============================
       NOWE ZMIENNE — CIEPŁA PALETA
    ============================ */
    :root {
      --espresso:     #1A0D08;   /* ciemne tło dramatycznych sekcji */
      --espresso-mid: #2E1610;   /* nieco jaśniejszy */
      --sand:         #F2E6D5;   /* ciepły piasek */
      --caramel:      #BE895A;   /* drugi akcent — miedziany brąz */
      --caramel-light:#F2E0CE;   /* jasna wersja — tło kart */
    }

    /* ============================
       ZAAWANSOWANE ANIMACJE SCROLL
    ============================ */
    /* Clip reveal — od dołu do góry (styl GTA VI) */
    .reveal-clip {
      clip-path: inset(0 0 100% 0);
      transition: clip-path 1s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-clip.visible { clip-path: inset(0 0 0% 0); }

    /* Wejście ze skalowaniem */
    .reveal-scale {
      opacity: 0;
      transform: scale(0.93) translateY(24px);
      transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal-scale.visible { opacity: 1; transform: scale(1) translateY(0); }

    /* Slide z lewej */
    .slide-left {
      opacity: 0; transform: translateX(-56px);
      transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .slide-left.visible { opacity: 1; transform: translateX(0); }

    /* Slide z prawej */
    .slide-right {
      opacity: 0; transform: translateX(56px);
      transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .slide-right.visible { opacity: 1; transform: translateX(0); }

    /* ============================
       HERO — fallback kolor + overlay mocniejszy
    ============================ */
    .hero-bg {
      background-color: var(--espresso);
    }

    /* ============================
       STATS — KREMOWE, NIE TURKUSOWE
    ============================ */
    #stats {
      background: var(--cream);
      border-top: 5px solid var(--teal-main);
      border-bottom: 1px solid rgba(0,0,0,.06);
      padding: 48px 24px;
    }
    #stats .stat-item { color: var(--black); }
    #stats .stat-num  { color: var(--teal-dark); }
    #stats .stat-lbl  { color: #555; opacity: 1; }
    .stats-sep {
      width: 1px; height: 64px; background: rgba(0,0,0,.12);
      align-self: center; flex-shrink: 0;
    }
    @media (max-width: 480px) { .stats-sep { display: none; } }

    /* ============================
       SEKCJA O KAWIE — NOWA IDENTYFIKACJA
    ============================ */
    #coffee-features {
      background: var(--cream);
    }
    #coffee-features .section-header h2 { color: var(--black); }

    /* ============================
       STICKY STORY — O NAS (GTA VI STYLE)
    ============================ */
    #story-scroll {
      position: relative;
      height: 290vh;
    }
    .story-sticky {
      position: sticky; top: 0;
      height: 100vh; overflow: hidden;
      display: flex; align-items: center;
      background: var(--espresso);
    }
    .story-bg {
      position: absolute; inset: 0;
      background-size: cover;
      background-repeat: no-repeat;
      opacity: 0;           /* kontrolowane przez JS via .active */
      will-change: opacity;
    }
    .story-gradient {
      position: absolute; inset: 0;
      background: linear-gradient(
        105deg,
        rgba(26,13,8,.98) 20%,
        rgba(26,13,8,.55) 50%,
        rgba(26,13,8,.2)  80%
      );
      opacity: 0;           /* kontrolowane przez JS via .active */
    }
    .story-panel {
      position: absolute; inset: 0;
      z-index: 2;
      display: flex; flex-direction: column; justify-content: center;
      padding: 0 48px;
      max-width: 680px; /* content width limit — inherits from left edge */
      opacity: 0; transform: translateY(32px);
      transition: opacity .55s ease, transform .55s ease;
      pointer-events: none;
    }
    .story-panel.active {
      opacity: 1; transform: translateY(0);
      pointer-events: auto;
    }
    @media (max-width: 768px) { .story-panel { padding: 0 24px; } }

    .story-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: .78rem; font-weight: 700; letter-spacing: .18em;
      text-transform: uppercase; color: var(--teal-main);
      margin-bottom: 20px;
    }
    .story-eyebrow::before {
      content: ''; display: block; width: 28px; height: 2px;
      background: var(--teal-main); flex-shrink: 0;
    }
    .story-heading {
      font-family: var(--font-h);
      font-size: clamp(2rem, 5vw, 3.6rem);
      color: var(--white); font-weight: 700;
      line-height: 1.12; margin-bottom: 20px;
    }
    .story-text {
      font-size: clamp(.95rem, 1.5vw, 1.05rem);
      color: rgba(255,255,255,.7);
      line-height: 1.8; max-width: 520px;
    }

    /* Progress bar na dole sticky sekcji */
    .story-progress-bar {
      position: absolute; bottom: 40px; left: 48px; z-index: 3;
      display: flex; gap: 8px; align-items: center;
    }
    @media (max-width: 768px) { .story-progress-bar { left: 24px; } }
    .sp-dot {
      width: 32px; height: 3px; border-radius: 2px;
      background: rgba(255,255,255,.25);
      transition: background .4s ease, width .4s ease;
      border: none; cursor: pointer; padding: 0;
    }
    .sp-dot.active {
      background: var(--teal-main); width: 52px;
    }

    /* Scroll hint */
    .story-scroll-hint {
      position: absolute; bottom: 40px; right: 48px; z-index: 3;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: rgba(255,255,255,.4); font-size: .72rem; letter-spacing: .1em;
      text-transform: uppercase;
    }
    .scroll-arrow {
      width: 20px; height: 20px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(45deg);
      animation: bounce-down 1.5s ease infinite;
    }
    @keyframes bounce-down {
      0%,100% { transform: rotate(45deg) translateY(0); }
      50%      { transform: rotate(45deg) translateY(6px); }
    }

    /* ============================
       REVIEWS — CIEMNE ESPRESSO
    ============================ */

    .reviews-badge {
      background: var(--teal-main); color: var(--black);
      box-shadow: none;
    }
    .reviews-badge .star-gold { color: #FFB800; }

    .c-btn {
      background: rgba(255,255,255,.1);
      color: var(--white);
    }
    .c-btn:hover { background: rgba(255,255,255,.2); }
    .dot { background: rgba(255,255,255,.2); }
    .dot.active { background: var(--teal-main); }
    .review-author { color: var(--teal-main); font-weight: 700; }

    /* ============================
       SOCIAL — MNIEJ NUDNY TEAL
    ============================ */
    #social {
      background: var(--espresso-mid, #2E1610);
      position: relative; overflow: hidden;
    }
    #social::before {
      content: '';
      position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(94,222,209,.12) 0%, transparent 70%);
      pointer-events: none;
    }
    #social h2  { color: var(--white); }
    #social .social-sub { color: rgba(255,255,255,.65); }

    /* ============================
       KONTAKT — KREATYWNE KARTY
    ============================ */
    #contact { background: var(--sand); }

    .contact-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: .78rem; font-weight: 700; letter-spacing: .18em;
      text-transform: uppercase; color: var(--teal-dark);
      margin-bottom: 16px;
    }
    .contact-eyebrow::before {
      content: ''; width: 28px; height: 2px;
      background: var(--teal-main); display: block;
    }
    .contact-lead {
      font-size: 1rem; color: #555; margin-bottom: 32px;
      line-height: 1.75; max-width: 400px;
    }
    .c-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    @media (max-width: 480px) { .c-cards { grid-template-columns: 1fr; } }

    .c-card {
      background: var(--white); border-radius: 14px;
      padding: 20px 18px;
      display: flex; align-items: flex-start; gap: 14px;
      box-shadow: 0 2px 16px rgba(0,0,0,.06);
      transition: transform var(--transition), box-shadow var(--transition);
      border: 1px solid var(--teal-dark);
    }
    .c-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.1); }
    .c-card-wide { grid-column: 1 / -1; }

    .c-card-ico {
      width: 44px; height: 44px; border-radius: 12px;
      background: var(--teal-light);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .c-card-ico svg { width: 22px; height: 22px; stroke: var(--teal-dark); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .c-card-ico.ico-caramel { background: #FDEFD3; }
    .c-card-ico.ico-caramel svg { stroke: #9A6420; }

    .c-card-body h4 {
      font-weight: 700; font-size: .82rem; letter-spacing: .05em;
      text-transform: uppercase; color: #888; margin-bottom: 4px;
    }
    .c-card-body p, .c-card-body a {
      font-size: .95rem; font-weight: 600; color: var(--black); line-height: 1.5;
    }
    .c-card-body a:hover { color: var(--teal-dark); text-decoration: underline; }
    .c-card-body .hours-row {
      display: flex; justify-content: space-between; align-items: center;
      padding: 6px 0; border-bottom: 1px solid #f0f0f0; font-size: .9rem;
    }
    .c-card-body .hours-row:last-child { border-bottom: none; padding-bottom: 0; }
    .c-card-body .hours-badge {
      background: var(--teal-light); color: var(--teal-dark);
      font-size: .75rem; font-weight: 700; padding: 3px 8px; border-radius: 20px;
    }

    /* ============================
       FOOTER — CIEMNE ESPRESSO
    ============================ */
    footer { background: var(--espresso); }
    .footer-copy { border-top-color: rgba(255,255,255,.1); }

    /* FAB nie blokuje treści — brak potrzeby padding-bottom */

    /* ============================
       AKTUALIZACJA SEKCJI HERO BTN
    ============================ */
    .hero-bg {
      background-image: url('https://images.pexels.com/photos/1855214/pexels-photo-1855214.jpeg?auto=compress&cs=tinysrgb&w=1200');
    }

    /* ============================
       FEATURE CARDS z ikonami — ciepłe tło
    ============================ */
    .feat-icon { background: var(--sand); }
    .feat-icon svg { stroke: var(--caramel); }

    /* Accent line pod nagłówkami sekcji */
    .section-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: .78rem; font-weight: 700; letter-spacing: .18em;
      text-transform: uppercase; color: var(--teal-dark);
      margin-bottom: 12px;
    }
    .section-eyebrow::before {
      content: ''; width: 24px; height: 2px;
      background: var(--teal-main); display: block;
    }

    /* ============================
       GALERIA — slight shadow on items
    ============================ */
    .g-item { box-shadow: 0 2px 12px rgba(0,0,0,.1); }

    /* ============================
       GLOBALNY KOLOR TEKSTU → --espresso
    ============================ */
    body { color: var(--espresso); }
    .mi-desc { color: #5C3D2A; }
    #nav.scrolled .nav-center a { color: var(--espresso) !important; }
    #nav.scrolled .lang-toggle   { color: var(--espresso) !important; }
    #nav.scrolled .hamburger span { background: var(--espresso) !important; }

    /* Usuń podkreślenie aktywnego języka */
    .lang-toggle .lbtn.active { text-decoration: none; font-weight: 700; }

    /* ============================
       EYEBROW LINES — teal-dark na białych sekcjach
    ============================ */
    .section-eyebrow { color: var(--teal-dark); }
    .section-eyebrow::before { background: var(--teal-dark); }

    /* ============================
       NOTA TEMPERATURY — bardziej widoczna
    ============================ */
    .menu-note {
      background: rgba(190,137,90,.12);
      border-left: 3px solid var(--caramel);
      border-radius: 0 8px 8px 0;
      color: var(--espresso);
      font-weight: 500;
    }

    /* ============================
       OPINIE — NOWY WIELOKOLUMNOWY STYL
    ============================ */
    #reviews {
      background: var(--caramel);
      padding: 80px 24px 60px;
      overflow: hidden;
    }
    #reviews .section-header { margin-bottom: 40px; }
    #reviews .section-header h2 { color: var(--white); }
    .reviews-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--white); color: var(--espresso);
      padding: 8px 20px; border-radius: 99px;
      font-weight: 700; font-size: .9rem;
      box-shadow: 0 2px 12px rgba(0,0,0,.1);
    }
    .reviews-badge .star-gold { color: #FFB800; }

    /* Carousel wrapper */
    .rev-outer {
      display: flex; flex-direction: column;
      max-width: 1240px; margin: 0 auto;
    }
    .rev-clip { overflow: hidden; width: 100%; }
    .rev-controls {
      display: flex; align-items: center; justify-content: center;
      gap: 14px; margin-top: 28px;
    }
    .rev-track {
      display: flex;
      transition: transform .5s cubic-bezier(.25,1,.5,1);
      align-items: stretch;
    }
    /* override old single-slide hide — multi-col carousel always shows slides */
    .rev-clip .c-slide {
      display: block !important; /* widths set by JS, visibility by transform */
      flex-shrink: 0;
      padding: 0 8px;
      box-sizing: border-box;
    }
    .review-card {
      background: var(--white);
      border-radius: 16px;
      padding: 28px 22px;
      height: 100%;
      box-shadow: 0 4px 20px rgba(0,0,0,.08);
      display: flex; flex-direction: column;
    }
    .review-text { flex: 1; color: var(--espresso); }
    .review-author { color: var(--espresso-mid) !important; margin-top: 12px; }

    /* Arrow buttons */
    .rev-arr {
      background: rgba(255,255,255,.9);
      color: var(--espresso);
      border: none; cursor: pointer;
      width: 44px; height: 44px; flex-shrink: 0;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: background var(--transition), transform var(--transition);
      box-shadow: 0 2px 12px rgba(0,0,0,.12);
    }
    .rev-arr:hover { background: var(--white); transform: scale(1.08); }
    .rev-arr svg { width: 20px; height: 20px; stroke: var(--espresso); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

    /* Dots — inside .rev-controls, no extra margin */
    .rev-dots {
      display: flex; justify-content: center; align-items: center;
      gap: 6px; flex-wrap: wrap;
    }
    .rev-dots .dot {
      width: 8px; height: 8px; border-radius: 4px;
      background: rgba(255,255,255,.4);
      border: none; cursor: pointer; padding: 0;
      transition: all .3s ease;
    }
    .rev-dots .dot.active {
      background: var(--espresso);
      width: 24px;
    }

    /* ============================
       SOCIAL — PARALLAX TŁO
    ============================ */
    .social-bg {
      position: absolute;
      inset: -15% 0;
      background-size: cover;
      background-position: center;
      opacity: .08;
      will-change: transform;
      pointer-events: none;
    }

    /* ============================
       STICKY STORY — FIX PANELU 1
    ============================ */
    .story-panel--right .story-eyebrow { flex-direction: row; }
    .story-panel--right .story-eyebrow::before { display: block; }

    /* ============================
       MIEDZIANY AKCENT #BE895A
    ============================ */
    /* Feature card icons — miedziany brąz */
    .feat-icon { background: var(--caramel); }
    .feat-icon svg { stroke: var(--white); fill: none; }

    /* Contact cards ico-caramel */
    .c-card-ico.ico-caramel { background: var(--caramel); }
    .c-card-ico.ico-caramel svg { stroke: var(--white); }

    /* Eyebrow lines — caramel alternative */
    .contact-eyebrow { color: var(--teal-dark); }
    .contact-eyebrow::before { background: var(--teal-dark); }

    /* ============================
       KONTAKT — BIAŁE TŁO
    ============================ */
    #contact { background: var(--white); }
    .c-card { box-shadow: 0 2px 16px rgba(0,0,0,.07); }

    /* ============================
       OPINIE — AUTOR W KOLORZE ESPRESSO
    ============================ */
    /* review-card ma białe tło, więc espresso będzie świetnie wyglądać */
    .review-author { color: var(--espresso-mid) !important; font-weight: 700; }

    /* ============================
       STORY BG — wiele zdjęć per panel
    ============================ */
    .story-bg { opacity: 0; transition: opacity .8s ease; }
    .story-bg.active { opacity: .38; }
    .story-gradient { opacity: 0; transition: opacity .8s ease; }
    .story-gradient.active { opacity: 1; }

    /* Gradient od prawej — dla panelu wysuniętego w prawo */
    .story-gradient--right {
      background: linear-gradient(
        -105deg,
        rgba(26,13,8,.98) 20%,
        rgba(26,13,8,.60) 50%,
        rgba(26,13,8,.15) 80%
      );
    }

    /* Panel z tekstem po prawej stronie */
    .story-panel--right {
      padding: 0 6% 0 52%;
      max-width: none;
    }
    @media (max-width: 768px) {
      .story-panel--right { padding: 0 24px; max-width: none; }
    }

    /* ============================
       FOOTER — BEZ LOGO, TEKST LEWO
    ============================ */
    .footer-grid {
      justify-content: space-between;
      align-items: center;
    }
    .footer-info { opacity: .88; }
    .footer-info strong { font-size: .95rem; color: var(--white); }
    .footer-info a { color: var(--teal-main); }
    .footer-info a:hover { text-decoration: underline; }

  
/* ============================
   NAV — BIAŁE TEKSTY NA HERO, ESPRESSO PO SCROLLU
============================ */
/* Domyślnie biały tekst — nav jest na transparentnym/hero tle */
.nav-center a {
  color: var(--white);
}
/* Desktop scrolled — espresso na turkusowym tle */
@media (min-width: 769px) {
  #nav.scrolled .nav-center a { color: var(--espresso); text-shadow: none; }
  #nav.scrolled .lang-toggle  { color: var(--espresso); text-shadow: none; }
  #nav.scrolled .hamburger span { background: var(--espresso); }
}
/* Mobile nav dropdown — zawsze espresso (ciemne tło turkusu) */
@media (max-width: 768px) {
  .nav-center.open a { color: var(--espresso) !important; }
  /* hamburger na transparentnym nav — biały */
  .hamburger span { background: var(--white); }
  /* hamburger po scrollu — espresso */
  #nav.scrolled .hamburger span { background: var(--espresso) !important; }
}

/* ============================
   SECTION-EYEBROW — PODWÓJNA LINIA (wszędzie, bo nagłówki są wyśrodkowane)
============================ */
.section-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal-dark);
  flex-shrink: 0;
}

/* Contact eyebrow ::after — tylko na mobile (gdy wyśrodkowane).
   Na desktop lewa kolumna = brak kreski po prawej. */
@media (max-width: 768px) {
  .section-eyebrow {
    flex-direction: row;
    justify-content: center;
  }
  .contact-eyebrow {
    justify-content: center;
  }
  .contact-eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--teal-main);
    flex-shrink: 0;
  }
}

/* ============================
   KONTAKT — WYŚRODKOWANIE TEKSTU NA MOBILE
============================ */
@media (max-width: 767px) {
  .contact-info {
    text-align: center;
  }
  .contact-eyebrow {
    justify-content: center;
  }
  .contact-lead {
    margin-left: auto;
    margin-right: auto;
  }
  /* Karty zachowują wyrównanie do lewej wewnątrz */
  .c-cards { text-align: left; }
  .c-card-body h4, .c-card-body p, .c-card-body a { text-align: left; }
}

/* ============================
   STOPKA — WYŚRODKOWANIE NA MOBILE
============================ */
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .footer-info { text-align: center; }
  .footer-social { justify-content: center; }
  .footer-art { display: none; }
}

/* ============================
   BACK TO TOP BUTTON
============================ */
#back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 997;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal-main);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.22);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, box-shadow .2s ease;
  pointer-events: none;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#back-to-top:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.32);
  transform: translateY(-3px);
}
#back-to-top svg {
  width: 22px;
  height: 22px;
  stroke: var(--espresso);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* na mobile — nad przyciskiem FAB (call), który jest na right: 24px, bottom: 24px, h: 58px */
@media (max-width: 768px) {
  #back-to-top { width: 58px; height: 58px; bottom: 100px; right: 24px; }
}

/* ============================
   STORY BG — MOCNIEJSZA WIDOCZNOŚĆ PANELU 1
============================ */
.story-bg.active { opacity: .45; }

/* ============================
   FOOTER — ATTRIBUTION
============================ */
.footer-attr {
  display: block;
  margin-top: 6px;
  font-size: .72rem;
  letter-spacing: .02em;
}
