:root{
      --bg:#fbf8f3;
      --bg-soft:#f4ecdf;
      --bg-ivory:#fffdfa;
      --champagne:#d4bb8a;
      --champagne-deep:#b99861;
      --gold-soft:#cdb17b;
      --ink:#221c18;
      --ink-soft:#5f564f;
      --line:rgba(34,28,24,.12);
      --line-strong:rgba(34,28,24,.2);
      --white:#ffffff;
      --shadow:0 18px 60px rgba(42, 29, 13, .08);
      --shadow-hover:0 24px 80px rgba(42, 29, 13, .14);
      --radius-xl:30px;
      --radius-lg:24px;
      --radius-md:18px;
      --radius-sm:14px;
      --header-h:76px;
      --topbar-h:74px;
      --container:1280px;
      --ease:cubic-bezier(.22,1,.36,1);
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:'Manrope',sans-serif;
      color:var(--ink);
      background:var(--bg);
      line-height:1.65;
      overflow-x:hidden;
    }
    img{display:block;max-width:100%}
    a{text-decoration:none;color:inherit}
    button{font:inherit}
    .no-scroll{overflow:hidden}

    body::before,
    body::after{
      content:"";
      position:fixed;
      inset:auto;
      z-index:-2;
      pointer-events:none;
      filter:blur(80px);
      opacity:.35;
      border-radius:50%;
    }
    body::before{
      width:360px;height:360px;right:-100px;top:120px;
      background:radial-gradient(circle, rgba(212,187,138,.55), transparent 70%);
    }
    body::after{
      width:320px;height:320px;left:-110px;top:720px;
      background:radial-gradient(circle, rgba(255,255,255,.9), transparent 70%);
    }

    .page-shell{position:relative;isolation:isolate}
    .page-shell::before,
    .page-shell::after{
      content:"✦";
      position:absolute;
      font-size:18px;
      color:rgba(185,152,97,.22);
      z-index:-1;
    }
    .page-shell::before{top:760px;left:5%}
    .page-shell::after{top:2100px;right:8%}

    .container{width:min(calc(100% - 32px), var(--container));margin-inline:auto}
    .section{padding:48px 0;position:relative}
    .section--alt{background:linear-gradient(180deg, rgba(255,253,250,.4), rgba(244,236,223,.82))}
    .section--light{background:rgba(255,255,255,.72)}
    .section--champagne{background:linear-gradient(180deg, rgba(244,236,223,.78), rgba(251,248,243,.9))}
    .section-title-wrap{max-width:760px;margin-bottom:34px}
    .eyebrow{
      display:inline-flex;align-items:center;gap:10px;
      text-transform:uppercase;letter-spacing:.22em;font-size:.72rem;font-weight:800;
      color:var(--champagne-deep);margin-bottom:14px;
    }
    .eyebrow::before{
      content:"";width:34px;height:1px;background:linear-gradient(90deg,var(--champagne-deep),transparent);
    }
    h1,h2,h3,h4{margin:0 0 14px;font-family:'Cormorant Garamond',serif;line-height:.96;letter-spacing:-.02em}
    h1{font-size:clamp(3rem,8vw,6rem);font-weight:700}
    h2{font-size:clamp(2.2rem,4.4vw,4rem);font-weight:700}
    h3{font-size:clamp(1.55rem,2.6vw,2.15rem);font-weight:700}
    p{margin:0 0 16px;color:var(--ink-soft)}
    .lead{font-size:1.06rem;max-width:66ch}
    .muted{color:rgba(34,28,24,.64)}
    .section-desc{font-size:1.02rem;max-width:70ch}

    .btn-row{display:flex;flex-wrap:wrap;gap:14px}
    .btn{
      display:inline-flex;align-items:center;justify-content:center;gap:10px;
      min-height:52px;padding:0 22px;border-radius:999px;border:1px solid transparent;
      transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
      cursor:pointer;font-weight:700;letter-spacing:.02em
    }
    .btn:hover{transform:translateY(-3px);box-shadow:var(--shadow-hover)}
    .btn-primary{
      background:linear-gradient(135deg,var(--champagne),var(--champagne-deep));
      color:var(--white);box-shadow:0 14px 40px rgba(185,152,97,.28)
    }
    .btn-secondary{
      background:rgba(255,255,255,.85);border-color:rgba(185,152,97,.3);color:var(--ink)
    }
    .btn-ghost{
      background:transparent;border-color:rgba(34,28,24,.16);color:var(--ink)
    }
    .btn-small{min-height:44px;padding:0 18px;font-size:.92rem}

    .card{
      background:rgba(255,255,255,.78);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
      border:1px solid rgba(255,255,255,.72);box-shadow:var(--shadow);border-radius:var(--radius-lg)
    }
    .soft-card{padding:26px}

    /* header */
    .site-header{
      position:fixed;inset:0 0 auto 0;z-index:1000;transform:translateY(0);
      transition:transform .35s var(--ease), box-shadow .35s var(--ease);
    }
    .site-header.is-hidden{transform:translateY(calc(-100% - 6px))}
    .site-header.is-scrolled{box-shadow:0 18px 50px rgba(29,22,18,.12)}
    .desktop-header{display:none}
    .mobile-header{
      background:rgba(212,187,138,.93);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(255,255,255,.28)
    }
    .mobile-bar{min-height:78px;display:flex;align-items:center;justify-content:space-between;gap:18px}
    .brand-logo{
      font-family:'Cormorant Garamond',serif;font-size:1.7rem;font-weight:700;letter-spacing:.04em;
      display:flex;align-items:center;gap:10px;color:var(--ink)
    }
    .brand-logo .crest{
      width:36px;height:36px;border-radius:50%;display:grid;place-items:center;
      background:rgba(255,255,255,.36);border:1px solid rgba(255,255,255,.44);font-size:1rem
    }
    .menu-toggle{
      width:50px;height:50px;border-radius:50%;border:1px solid rgba(255,255,255,.38);
      background:rgba(255,255,255,.2);display:grid;place-items:center;cursor:pointer;position:relative;
      box-shadow:0 12px 30px rgba(56,35,14,.08)
    }
    .menu-toggle span,.menu-toggle::before,.menu-toggle::after{
      content:"";position:absolute;width:22px;height:2px;background:var(--ink);transition:all .3s var(--ease)
    }
    .menu-toggle span{transform:translateY(0)}
    .menu-toggle::before{transform:translateY(-7px)}
    .menu-toggle::after{transform:translateY(7px)}
    .menu-toggle.active span{opacity:0}
    .menu-toggle.active::before{transform:rotate(45deg)}
    .menu-toggle.active::after{transform:rotate(-45deg)}

    .mobile-menu{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100dvh;
  z-index:9999;

  background:rgba(251,248,243,.96);
  backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px);

  transform:translateX(100%);
  transition:transform .45s var(--ease);

  padding:100px 16px 34px; /* offset na header */
  overflow-y:auto;
}
    .mobile-menu.open{transform:translateX(0)}
    .mobile-menu-panel{display:grid;gap:14px}
    .mobile-nav-link,.mobile-sub-link{
      display:flex;align-items:center;justify-content:space-between;padding:16px 18px;border-radius:18px;
      background:rgba(255,255,255,.74);border:1px solid rgba(34,28,24,.08);font-weight:700
    }
    .mobile-submenu{display:grid;gap:0px;padding-left:10px}
    .mobile-sub-link{font-weight:600;font-size:.96rem;padding:14px 16px}
    .mobile-booking{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:10px}
    .mobile-backdrop{
      position:fixed;inset:78px 0 0 0;background:rgba(15,11,8,.18);opacity:0;visibility:hidden;transition:.3s;z-index:997
    }
    .mobile-backdrop.show{opacity:1;visibility:visible}

    main{padding-top:78px}

    /* desktop header */
    @media (min-width: 880px){
      main{padding-top:148px}
      .mobile-header,.mobile-menu,.mobile-backdrop{display:none}
      .desktop-header{display:block}
      .desktop-topbar{
        background:rgba(212,187,138,.94);backdrop-filter:blur(18px);border-bottom:1px solid rgba(255,255,255,.28)
      }
      .desktop-topbar .inner{min-height:72px;display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:18px}
      .topbar-booking,.topbar-socials{display:flex;align-items:center;gap:12px}
      .topbar-socials{justify-content:flex-end}
      .top-pill{
        min-height:44px;padding:0 16px;border-radius:999px;background:rgba(255,255,255,.26);
        border:1px solid rgba(255,255,255,.34);display:inline-flex;align-items:center;justify-content:center;font-weight:700
      }
      .social-icon{
        width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:rgba(255,255,255,.26);
        border:1px solid rgba(255,255,255,.34);transition:.3s var(--ease)
      }
      .social-icon:hover{transform:translateY(-2px);background:rgba(255,255,255,.42)}
      .desktop-navbar{background:rgba(255,255,255,.94);backdrop-filter:blur(20px);border-bottom:1px solid var(--line)}
      .desktop-nav{min-height:76px;display:flex;align-items:center;justify-content:center}
      .nav-list{display:flex;align-items:center;gap:2px;list-style:none;padding:0;margin:0;flex-wrap:wrap}
      .nav-item{position:relative}
      .nav-link{
        min-height:52px;padding:0 16px;display:inline-flex;align-items:center;gap:8px;border-radius:999px;
        font-size:.95rem;font-weight:700;color:var(--ink-soft);transition:.3s var(--ease)
      }
      .nav-link:hover,.nav-link.active{background:rgba(212,187,138,.18);color:var(--ink)}
      .has-dropdown .nav-link::after{content:'▾';font-size:.75rem;color:var(--champagne-deep)}
      .dropdown{
        position:absolute;top:calc(100% + 12px);left:0;min-width:240px;padding:14px;background:rgba(255,255,255,.95);
        border:1px solid var(--line);border-radius:22px;box-shadow:var(--shadow);display:grid;gap:6px;opacity:0;
        visibility:hidden;transform:translateY(8px);transition:.28s var(--ease)
      }
      .has-dropdown:hover .dropdown,.has-dropdown:focus-within .dropdown{opacity:1;visibility:visible;transform:translateY(0)}
      .dropdown a{padding:12px 14px;border-radius:14px;font-weight:600;color:var(--ink-soft)}
      .dropdown a:hover{background:rgba(212,187,138,.14);color:var(--ink)}
    }

    /* hero */
    .hero{padding-top:28px}
    .hero-grid{display:grid;gap:24px;align-items:stretch}
    .hero-copy{padding:32px 0 10px}
    .hero-note{
      display:inline-flex;gap:10px;align-items:center;padding:10px 16px;border-radius:999px;background:rgba(255,255,255,.72);
      border:1px solid rgba(212,187,138,.28);box-shadow:var(--shadow);margin-bottom:18px;font-weight:700;color:var(--ink-soft)
    }
    .hero-copy p{max-width:58ch}
    .hero-media{
      min-height:420px;border-radius:34px;overflow:hidden;position:relative;border:1px solid rgba(255,255,255,.75);box-shadow:var(--shadow-hover);
      background:
        linear-gradient(180deg, rgba(26,18,14,.10), rgba(26,18,14,.46)),
        url('https://images.unsplash.com/photo-1522338242992-e1a54906a8da?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    }
    .hero-media::before{
      content:'';position:absolute;inset:0;background:radial-gradient(circle at 22% 16%, rgba(255,255,255,.32), transparent 28%)
    }
    .hero-video-badge{
      position:absolute;left:18px;bottom:18px;padding:12px 16px;border-radius:16px;background:rgba(255,255,255,.16);
      border:1px solid rgba(255,255,255,.34);backdrop-filter:blur(10px);color:#fff;font-weight:700
    }
    .hero-floral{
      position:absolute;right:-20px;bottom:-18px;width:130px;height:130px;border-radius:50%;
      background:radial-gradient(circle, rgba(255,255,255,.65), rgba(255,255,255,0));filter:blur(2px)
    }

    /* grids */
    .two-col,.split-grid,.contact-grid,.gift-grid,.consult-grid,.branch-grid,.about-story,.service-row,.experience-grid,.review-grid,.footer-grid{display:grid;gap:24px}
    .discover-media,.story-media,.gift-card-visual,.preview-photo,.category-card,.gallery-item,.team-card,.insight-card,.cta-strip,.service-hero,.map-box,.branch-photo,.offer-strip,.home-offer-card,.consult-point{position:relative;overflow:hidden}

    .story-media,.preview-photo,.service-hero,.cta-strip,.branch-photo{
      min-height:60vh;border-radius:0 0 28px 28px;background-size:cover;background-position:center;box-shadow:var(--shadow)
    }
    .discover-media::after,.story-media::after,.gift-card-visual::after,.preview-photo::after,.service-hero::after,.cta-strip::after,.branch-photo::after{
      content:'';position:absolute;inset:0;background:linear-gradient(180deg, rgba(24,17,12,.03), rgba(24,17,12,.19))
    }
    
    

    .discover-copy,.story-copy{align-self:center}
    .floating-shape{
      position:absolute;z-index:-1;width:180px;height:180px;border-radius:40% 60% 62% 38%/44% 39% 61% 56%;
      background:linear-gradient(180deg, rgba(212,187,138,.22), rgba(255,255,255,.22));filter:blur(.5px)
    }
    .shape-1{top:-40px;right:-40px}
    .shape-2{bottom:-20px;left:-30px}

    /* service categories */
    .service-category-grid{
      display:grid;grid-template-columns:repeat(2,1fr);gap:14px
    }
    .category-card{
  position:relative;
  overflow:hidden;

  aspect-ratio:1 / 1; /* 🔥 KLUCZ */
  min-height:auto;

  border-radius:24px;
  box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,.6);

  transform:translateY(0);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
.category-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
    .category-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-hover)}
    .category-card::after{
      content:'';position:absolute;inset:0;background:linear-gradient(180deg, rgba(20,14,10,.04), rgba(20,14,10,.58))
    }
    .category-card span{
      position:absolute;left:18px;bottom:18px;z-index:2;color:#fff;font-weight:800;font-size:1.02rem;letter-spacing:.03em
    }
    
    /* service sections */
    .service-section{scroll-margin-top:100px}
    .service-hero{min-height:480px;display:flex;align-items:flex-end;padding:22px;background-position:center}
    .service-hero h2{position:relative;z-index:1;color:#fff;font-size:clamp(2.3rem,5vw,4.4rem)}
    .service-intro{margin-top:22px;margin-bottom:22px}
    .service-list{display:grid;gap:18px}
    .service-row{grid-template-columns:1fr;align-items:stretch}
    .service-copy,.service-image{border-radius:26px}
    .service-copy{padding:28px;background:rgba(255,255,255,.84);border:1px solid rgba(34,28,24,.08);box-shadow:var(--shadow)}
    .service-image{
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  aspect-ratio: 3 / 4; /* 🔥 KLUCZ */
}

.service-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 880px){
  .service-image{
    aspect-ratio: 3 / 4;   /* 🔥 PION */
    max-width: 360px;
    margin: 0 auto;
  }
}

.service-image{
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  aspect-ratio: 3 / 4;

  max-width: 300px;   /* 🔥 KLUCZ */
  width: 100%;
  margin-left: auto;  /* 🔥 przykleja do prawej */
}

@media (min-width: 880px){

  /* 🔥 OBRAZ W LEWO */
  .service-image{
    transform: translateX(-225px);
    z-index: 1;
  }

  /* 🔥 KARTA W PRAWO */
  .service-copy{
    transform: translateX(8px);
    z-index: 2;
  }

}


    .price-tag{
      display:inline-flex;align-items:center;min-height:42px;padding:0 16px;border-radius:999px;margin-top:10px;
      background:linear-gradient(135deg, rgba(212,187,138,.2), rgba(255,255,255,.95));border:1px solid rgba(185,152,97,.24);font-weight:800;color:var(--champagne-deep)
    }
    .mini-divider{height:1px;background:linear-gradient(90deg, rgba(185,152,97,.5), transparent);margin:10px 0 18px}
    .cta-strip{
      min-height:280px;border-radius:28px;margin-top:26px;padding:28px;display:flex;align-items:flex-end;
      background-image:linear-gradient(180deg, rgba(26,18,14,.08), rgba(26,18,14,.58)), url('')
    }
    .cta-strip-content{position:relative;z-index:1;max-width:600px;color:#fff}
    .cta-strip-content p{color:rgba(255,255,255,.88)}

    /* faq */
    .faq-list{display:grid;gap:12px;margin-top:18px}
    .faq-item{
      border-radius:22px;background:rgba(255,255,255,.82);border:1px solid rgba(34,28,24,.08);box-shadow:var(--shadow);overflow:hidden
    }
    .faq-question{
      width:100%;background:none;border:none;padding:18px 20px;text-align:left;display:flex;align-items:center;justify-content:space-between;
      gap:16px;font-weight:800;color:var(--ink);cursor:pointer
    }
    .faq-icon{
      flex:0 0 auto;width:32px;height:32px;border-radius:50%;display:grid;place-items:center;background:rgba(212,187,138,.18);color:var(--champagne-deep);
      transition:transform .3s var(--ease), background .3s var(--ease)
    }
    .faq-item.open .faq-icon{transform:rotate(180deg);background:rgba(212,187,138,.28)}
    .faq-answer{max-height:0;overflow:hidden;transition:max-height .4s var(--ease), padding .35s var(--ease);padding:0 20px}
    .faq-item.open .faq-answer{max-height:240px;padding:0 20px 20px}

    .parallax-band{
      min-height:340px;border-radius:32px;overflow:hidden;position:relative;background-attachment:scroll;
      
      background-position:center;background-size:cover;display:flex;align-items:flex-end;padding:28px;box-shadow:var(--shadow-hover)
    }
    .parallax-band-content{position:relative;z-index:1;color:#fff;max-width:620px}
    .parallax-band-content p{color:rgba(255,255,255,.88)}

    /* signature experiences */
    .experience-grid{grid-template-columns:1fr;gap:18px}
    .experience-card{
      min-height:360px;border-radius:30px;padding:24px;display:flex;align-items:flex-end;position:relative;overflow:hidden;box-shadow:var(--shadow-hover)
    }
    .experience-card::after{content:'';position:absolute;inset:0;background:linear-gradient(180deg, rgba(25,17,12,.08), rgba(25,17,12,.68))}
   .experience-card > div{
  position: relative;
  z-index: 2; /* 🔥 KLUCZ */
  color: #fff;
  max-width: 430px;
}
    .experience-card p{color:rgba(255,255,255,.86)}
    .experience-card .price-tag{background:rgba(255,255,255,.16);border-color:rgba(255,255,255,.24);color:#fff}
    

    /* placeholders */
    .map-box{
      min-height:280px;border-radius:28px;border:1px dashed rgba(185,152,97,.42);display:grid;place-items:center;text-align:center;padding:24px;
      background:linear-gradient(180deg, rgba(255,255,255,.85), rgba(244,236,223,.8));box-shadow:var(--shadow)
    }
    .map-box{min-height:360px}
    .placeholder-inner strong{display:block;font-size:1.1rem;margin-bottom:8px}

    /* previews */
    .gallery-preview-grid,.space-grid,.work-grid,.insight-grid,.quick-bar,.home-areas,.how-grid,.why-grid,.benefit-grid,.consult-benefits,.consult-points,.team-grid{display:grid;gap:16px}
    .gallery-preview-grid{grid-template-columns:1fr}
    .preview-photo{min-height:340px;border-radius:28px;box-shadow:var(--shadow);transition:transform .35s var(--ease), box-shadow .35s var(--ease)}
    .preview-photo:hover,.gift-card-visual:hover{transform:translateY(-6px);box-shadow:var(--shadow-hover)}
    
    .gift-grid{grid-template-columns:1fr;align-items:center}
    
    .gift-card-visual .gift-chip{
      position:absolute;left:24px;top:24px;z-index:1;padding:12px 16px;border-radius:999px;background:rgba(255,255,255,.68);border:1px solid rgba(255,255,255,.78);font-weight:800
    }
    .gift-card-visual .gift-mock{
      position:absolute;right:24px;bottom:24px;z-index:1;width:min(86%, 370px);aspect-ratio:1.55/1;border-radius:24px;padding:22px;
      background:linear-gradient(135deg, rgba(255,255,255,.88), rgba(244,236,223,.96));border:1px solid rgba(255,255,255,.85);box-shadow:var(--shadow)
    }
    .gift-mock .mini{font-size:.75rem;letter-spacing:.18em;text-transform:uppercase;color:var(--champagne-deep);font-weight:800}
    .gift-mock .brand{font-family:'Cormorant Garamond',serif;font-size:2rem;font-weight:700;color:var(--ink)}

    .offer-strip,.home-offer-card,.consult-point,.quick-card,.area-pill,.step-card,.benefit-card,.team-info,.insight-card,.branch-details,.contact-pill{
      background:rgba(255,255,255,.82);border:1px solid rgba(34,28,24,.08);border-radius:24px;box-shadow:var(--shadow)
    }
    .offer-strip,.home-offer-card,.consult-point,.quick-card,.step-card,.benefit-card,.team-info,.insight-card,.branch-details{padding:22px}
    .offer-strip h3,.consult-point h3,.benefit-card h3,.team-info h3,.insight-card h3,.branch-details h3{margin-bottom:10px}
    .area-pill{padding:16px 18px;font-weight:700;text-align:center}
    .why-grid,.how-grid,.benefit-grid,.consult-benefits,.consult-points,.home-areas{grid-template-columns:1fr}

    .branches-teaser{display:grid;grid-template-columns:1fr;gap:16px}
    .branch-photo{min-height:360px;border-radius:30px;display:flex;align-items:flex-end;padding:18px;box-shadow:var(--shadow-hover)}
    .branch-photo h3,.branch-photo p{position:relative;z-index:1;color:#fff}
    

    /* about */
    .quick-bar{grid-template-columns:1fr}
    .icon-badge{
      width:52px;height:52px;border-radius:50%;display:grid;place-items:center;background:rgba(212,187,138,.18);color:var(--champagne-deep);font-size:1.2rem;margin-bottom:14px
    }
    .space-grid{grid-template-columns:1fr 1fr}
    .space-photo,.work-photo{min-height:220px;border-radius:26px;background-size:cover;background-position:center;box-shadow:var(--shadow)}
    .space-1{background-image:url('https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?auto=format&fit=crop&w=1000&q=80')}
    .space-2{background-image:url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=1000&q=80')}
    .space-3{background-image:url('https://images.unsplash.com/photo-1498843053639-170ff2122f35?auto=format&fit=crop&w=1000&q=80')}
    .space-4{background-image:url('https://images.unsplash.com/photo-1522337660859-02fbefca4702?auto=format&fit=crop&w=1000&q=80')}

    .team-grid{grid-template-columns:1fr;gap:18px}
    .team-card{border-radius:28px;overflow:hidden}
    
    .team-info{border-radius:0 0 28px 28px}
    .team-meta{display:grid;gap:6px;margin-bottom:12px;color:var(--ink-soft);font-size:.95rem}

    .work-grid{grid-template-columns:1fr 1fr;grid-auto-rows:220px}
    .work-photo{cursor:pointer;transition:transform .35s var(--ease), box-shadow .35s var(--ease)}
    .work-photo:hover{transform:translateY(-5px);box-shadow:var(--shadow-hover)}


    .lightbox{
      position:fixed;inset:0;background:rgba(12,9,7,.88);display:grid;place-items:center;padding:24px;opacity:0;visibility:hidden;transition:.3s var(--ease);z-index:1200
    }
    .lightbox.open{opacity:1;visibility:visible}
    .lightbox-inner{position:relative;width:min(100%, 1020px)}
    .lightbox-image{
  width:100%;
  height:80vh;

  border-radius:28px;

  background-size:contain; /* 🔥 KLUCZ */
  background-position:center;
  background-repeat:no-repeat;
}
    .lightbox-close,.lightbox-arrow{
      position:absolute;border:none;cursor:pointer;width:52px;height:52px;border-radius:50%;display:grid;place-items:center;
      background:rgba(255,255,255,.18);color:#fff;border:1px solid rgba(255,255,255,.24);backdrop-filter:blur(10px)
    }
    .lightbox-close{top:-18px;right:-8px}
    .lightbox-arrow.prev{left:-12px;top:50%;transform:translateY(-50%)}
    .lightbox-arrow.next{right:-12px;top:50%;transform:translateY(-50%)}

    /* insights */
    .insight-grid{grid-template-columns:1fr;gap:18px}
    .insight-card{display:block;transition:transform .35s var(--ease), box-shadow .35s var(--ease)}
    .insight-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-hover)}
    .insight-thumb{height:210px;border-radius:18px;margin-bottom:18px;background-size:cover;background-position:center}
    .insight-thumb-1{background-image:url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=1000&q=80')}
    .insight-thumb-2{background-image:url('https://images.unsplash.com/photo-1519823551278-64ac92734fb1?auto=format&fit=crop&w=1000&q=80')}
    .insight-empty{min-height:360px;border-radius:24px;border:1px dashed rgba(185,152,97,.34);background:rgba(255,255,255,.44)}
    .article-hero{height:300px;border-radius:30px;background-size:cover;background-position:center;box-shadow:var(--shadow-hover);margin-bottom:26px}
    .article-1{background-image:linear-gradient(180deg, rgba(26,18,14,.12), rgba(26,18,14,.24)), url('https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=1600&q=80')}
    .article-2{background-image:linear-gradient(180deg, rgba(26,18,14,.12), rgba(26,18,14,.24)), url('https://images.unsplash.com/photo-1512496015851-a90fb38ba796?auto=format&fit=crop&w=1600&q=80')}
    .article-body{display:grid;gap:16px;max-width:920px}

    /* branches */
    .branch-grid,.contact-grid{grid-template-columns:1fr}
    .branch-details{align-self:stretch}
    .contact-list{display:grid;gap:12px;margin-top:18px}
    .contact-pill{padding:14px 16px;display:flex;align-items:flex-start;gap:12px}
    .contact-pill strong{display:block;color:var(--ink)}
    .social-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px;justify-content: center;}

    /* footer */
    .site-footer{background:linear-gradient(180deg, #1d1714, #140f0c);color:rgba(255,255,255,.78);padding:70px 0 36px;margin-top:0}
    .footer-grid{grid-template-columns:1fr;gap:30px}
    .footer-brand{color:#fff}
    .footer-brand p,.footer-col p{color:rgba(255,255,255,.68)}
    .footer-title{font-family:'Cormorant Garamond',serif;font-size:1.8rem;color:#fff;margin-bottom:10px}
    .footer-links{display:grid;gap:10px}
    .footer-links a{color:rgba(255,255,255,.72)}
    .footer-links a:hover{color:#fff}
    .footer-bottom{margin-top:34px;padding-top:24px;border-top:1px solid rgba(255,255,255,.1);display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap}

    /* reveal */
    [data-reveal]{opacity:0;transform:translateY(26px);transition:opacity .8s var(--ease), transform .8s var(--ease)}
    [data-reveal].revealed{opacity:1;transform:translateY(0)}

    .menu-close{
  position:absolute;
  top:20px;
  right:20px;

  width:44px;
  height:44px;
  border-radius:50%;

  color:#000;

  display:grid;
  place-items:center;

  font-size:20px;
  font-weight:bold;

  background:rgba(255,255,255,.8);
  border:1px solid rgba(0,0,0,.1);

  cursor:pointer;
  z-index:10001;
}



    /* desktop layouts */
    @media (min-width: 880px){
      .section{padding:70px 0}
      .hero-grid{grid-template-columns:1.05fr .95fr;gap:42px}
      .two-col,.gift-grid,.contact-grid,.branch-grid,.about-story,.consult-grid{grid-template-columns:1fr 1fr}
      .service-category-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

@media (min-width: 880px){
  .service-category-grid{
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:18px;
  }
}

@media (min-width: 880px) and (max-width: 1180px){
  .service-category-grid{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }
}

@media (min-width: 880px){
  .service-copy{
    margin-left: auto;
    transform: translateX(-160px);
  }
}






@media (min-width: 880px){

  /* NORMAL (zdjęcie po prawej) */
  .service-row:not(.reverse) .service-copy{
    margin-left: auto;
    transform: translateX(-160px);
  }

  .service-row:not(.reverse) .service-image{
    transform: translateX(-225px);
  }

  /* REVERSE (zdjęcie po lewej) */
  .service-row.reverse .service-copy{
    margin-right: auto;
    margin-left: 0;
    transform: translateX(160px);
  }

  .service-row.reverse .service-image{
    transform: translateX(27px);
  }

}


      .category-card{min-height:220px}
      .service-row{grid-template-columns:auto .6fr;gap:24px}
      .service-row.reverse .service-copy{order:2}
      .service-row.reverse .service-image{order:1}
      .experience-grid{grid-template-columns:1fr 1fr}
      .gallery-preview-grid{grid-template-columns:1fr 1fr}
      .branches-teaser{grid-template-columns:1fr 1fr}
      .quick-bar{grid-template-columns:repeat(4,1fr)}
      .team-grid{grid-template-columns:1fr 1fr}
      .work-grid{grid-template-columns:repeat(3,1fr);grid-auto-rows:260px}
      .work-grid .work-photo:nth-child(2){grid-row:span 2}
      .work-grid .work-photo:nth-child(5){grid-row:span 2}
      .insight-grid{grid-template-columns:repeat(3,1fr)}
      .why-grid,.how-grid,.benefit-grid,.consult-benefits,.consult-points,.home-areas{grid-template-columns:repeat(3,1fr)}
      .space-grid{grid-template-columns:1fr 1fr}
      .footer-grid{grid-template-columns:1.4fr 1fr 1fr .8fr}
      .parallax-band{background-attachment:fixed}
    }

    .service-copy{
  max-width: 435px;
}


    /* MOBILE */
.brand-logo img {
  height: 42px;
}

/* DESKTOP */
@media (min-width: 880px){
  .brand-logo img {
    height: 48px; /* desktop trochę większe */
  }
}

.map-box {
  position: relative;   /* 🔥 KLUCZ */
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
}

.map-box iframe {
  position: absolute;   /* 🔥 KLUCZ */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.branch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch; /* 🔥 KLUCZ */
}

.branch-details {
  height: 100%;
}

.map-box {
  height: 100%;
  min-height: unset; /* 🔥 usuwa te 360px które psuły layout */
  border-radius: 28px;
  overflow: hidden;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-pill {
  display: flex;
  align-items: center; /* 🔥 TO CIĘ RATUJE */
  gap: 12px;
}

.top-pill{
  min-height:44px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,.26);
  border:1px solid rgba(255,255,255,.34);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:700;

  /* 🔥 DODAJ */
  transition:.3s var(--ease);
}

.top-pill:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.5);
  box-shadow:0 10px 25px rgba(0,0,0,.1);
}

.services-dropdown .dropdown{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:6px 12px;
  min-width:420px;
}

.dropdown{
  border:1px solid rgba(34,28,24,.12); /* 🔥 ramka */
  border-radius:20px; /* miękkie rogi */
  background:rgba(255,255,255,.96);
  box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.dropdown a{
  padding:10px 14px;
  border-radius:12px;
  border:1px solid transparent;
  transition:.25s var(--ease);
}

.dropdown a:hover{
  border:1px solid rgba(212,187,138,.6); /* champagne */
  background:rgba(212,187,138,.12);
}

.dropdown a{
  padding:10px 14px;
  border-radius:12px;

  border:1px solid rgba(212,187,138,.25);
  background:rgba(255,255,255,.7);

  transition:.3s var(--ease);
}

.dropdown a:hover{
  border:1px solid var(--champagne);
  background:linear-gradient(
    135deg,
    rgba(212,187,138,.18),
    rgba(255,255,255,.4)
  );
  box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.discover-media{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  box-shadow:var(--shadow);

  width:100%;
  
  min-height:unset;
}



.discover-media picture{
  display:block;
  width:100%;
  height:100%;
}

.discover-media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

@media (max-width: 880px){
  .discover-media{
    aspect-ratio: 3 / 4;   /* 🔥 tylko mobile */
    max-width: 360px;
    margin: 24px auto 0;
  }
}

@media (min-width: 881px){
  .discover-media{
    aspect-ratio: unset;   /* 🔥 usuwa pion */
    height: 100%;
    min-height: 420px;     /* 🔥 kontrola wysokości */
  }
}


.category-card{
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 1 / 1;
}

.category-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card span{
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
}

.category-card::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.05)
  );
}

.service-category-cta{
  margin-top: 42px;
  display: flex;
  justify-content: center;
}

.service-category-cta .btn{
  min-width: 220px;
  display: flex;        /* 🔥 nie inline */
  justify-content: center;
  align-items: center;
}

.service-section{
  padding-top: 0;
}

.full-bleed{
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.service-hero{
  position: relative; /* 🔥 KLUCZ */
  min-height: 480px !important;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  overflow: hidden;
}

/* obraz */
.hero-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* mobile off */
.hero-img.mobile{
  display: none;
}

/* mobile ON */
@media (max-width: 879px){
  .hero-img.desktop{
    display: none;
  }
  .hero-img.mobile{
    display: block;
  }
}


.service-hero{
  position: relative;
  overflow: hidden;
}

.hero-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 🔥 TYLKO DESKTOP */
@media (min-width: 880px){
  .nails-hero .hero-img.desktop{
    object-position: center 75%;
  }
}

@media (max-width: 879px){
  .service-hero{
    height: 45vh !important;
    min-height: 45vh !important;
    aspect-ratio: auto !important;
    padding: 0 !important;
  }

  .hero-img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .hero-img.desktop{
    display: none !important;
  }

  .hero-img.mobile{
    display: block !important;
  }

  .service-hero h2{
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 3;
    margin: 0;
  }
}

@media (max-width: 880px){
  .massage-hero .hero-img{
    object-position: center 20%;
  }
}

@media (max-width: 880px){
  .hair-hero .hero-img{
    object-position: center 20%;
  }
}

@media (max-width: 880px){
  .lashes-hero .hero-img{
    object-position: center 30%;
  }
}

@media (max-width: 880px){
  .facials-hero .hero-img{
    object-position: center 35%;
  }
}

@media (max-width: 880px){
  .skin-hero .hero-img{
    object-position: center 35%;
  }
}
@media (max-width: 880px){
  .waxing-hero .hero-img{
    object-position: center 35%;
  }
}

@media (max-width: 880px){
  .makeup-hero .hero-img{
    object-position: center 20%;
  }
}

@media (min-width: 881px){
  .makeup-hero .hero-img{
    object-position: center 20%;
  }
}

@media (min-width: 881px){
  .packages-hero .hero-img{
    object-position: center 20%;
  }
}

@media (max-width: 880px){
  .packages-hero .hero-img{
    object-position: center 20%;
  }
}

#insight-summer-skin{
  padding-top: 0;
}

#insight-retinol-ha{
  padding-top: 0;
}

#insight-retinol-ha{
  padding-top: 0;
}

@media (min-width: 881px){
  .insight1-hero .hero-img{
    object-position: center 20%;
  }
}

@media (max-width: 880px){
  .insight1-hero .hero-img{
    object-position: center 15%;
  }
}

.experience-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* desktop / mobile switch */
.experience-img.mobile{
  display: none;
}

@media (max-width: 879px){
  .experience-img.desktop{
    display: none;
  }
  .experience-img.mobile{
    display: block;
  }
}

@media (max-width: 879px){
  .se2-hero .experience-img.mobile{
    object-position: center 20%;
  }
}

.preview-photo{
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 340px;
}

.preview-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* mobile OFF */
.preview-img.mobile{
  display: none;
}

/* mobile ON */
@media (max-width: 880px){
  .preview-img.desktop{
    display: none;
  }

  .preview-img.mobile{
    display: block;
  }
}


@media (max-width: 880px){
  #home-services-preview .preview-photo{
    aspect-ratio: 3 / 4;
    max-width: 360px;
    margin: 40px auto 0;
  }
}

.gift-card-visual{
  border-radius: 30px;
  overflow: hidden; /* 🔥 KLUCZ */
}

.branch-photo{
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.branch-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* mobile OFF */
.branch-img.mobile{
  display: none;
}

/* mobile ON */
@media (max-width: 880px){
  .branch-img.desktop{
    display: none;
  }

  .branch-img.mobile{
    display: block;
  }
}


.parallax-band{
  position: relative;
  min-height: 340px;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

/* 🔥 obraz jak background */
.parallax-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 🔥 przyciemnienie */
.parallax-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(25,17,12,.18),
    rgba(25,17,12,.55)
  );
}

/* tekst nad obrazem */
.parallax-band-content{
  position: relative;
  z-index: 2;
  color: #fff;
}

.cta-strip{
  position: relative; /* 🔥 KLUCZ */
  overflow: hidden;
}

.cta-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,18,14,.08),
    rgba(26,18,14,.58)
  );
}

.cta-strip-content{
  position: relative;
  z-index: 2;
}


#service-categories .section-title-wrap{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#service-categories .eyebrow{
  justify-content: center;
}

#service-categories .section-desc{
  margin-left: auto;
  margin-right: auto;
}

#signature-experiences .section-title-wrap{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

#signature-experiences .eyebrow{
  justify-content: center;
}

#signature-experiences .section-desc{
  margin-left: auto;
  margin-right: auto;
}

/* 🔥 BUTTON NA ŚRODKU */
#signature-experiences .btn-row{
  justify-content: center;
}

.experience-card{
  display: flex;
  align-items: center;      /* 🔥 pion */
  justify-content: center;  /* 🔥 poziom */
  text-align: center;       /* 🔥 tekst */
}

.experience-card > div{
  display: flex;
  flex-direction: column;
  align-items: center;      /* 🔥 wszystko do środka */
  justify-content: center;
  text-align: center;
  max-width: 420px;
}

.experience-card h3{
  text-align: center;
}

.experience-card p{
  text-align: center;
}

.experience-card .price-tag{
  display: inline-flex;
  justify-content: center;
  align-items: center;

  margin-top: 12px;

  /* 🔥 TO ROBI ŚRODEK */
  align-self: center;
}

.experience-card > div{
  display: flex;
  flex-direction: column;
  align-items: center;   /* poziom */
  justify-content: center;
  text-align: center;
  width: 100%;
}

#consultation-preview .section-title-wrap{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

#consultation-preview .eyebrow{
  justify-content: center;
}

#consultation-preview .section-desc{
  margin-left: auto;
  margin-right: auto;
}

/* 🔥 kafelki */
#consultation-preview .consult-points{
  justify-items: center; /* grid center */
}

#consultation-preview .consult-point{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 🔥 button */
#consultation-preview .btn-row{
  justify-content: center;
}

#reviews .section-title-wrap{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

#reviews .eyebrow{
  justify-content: center;
}

#reviews h2{
  text-align: center;
}

#reviews .section-desc{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* 🔥 iframe box też lekko bardziej premium */
#reviews .embed-placeholder{
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}

/* 🔥 button */
#reviews .btn-row{
  justify-content: center;
}

#final-cta-home .parallax-band-content{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* tytuł */
#final-cta-home h2{
  text-align: center;
}

/* opis */
#final-cta-home p{
  text-align: center;
}

/* buttony */
#final-cta-home .btn-row{
  justify-content: center;
}

#instagram .section-title-wrap{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

#instagram .eyebrow{
  justify-content: center;
}

#instagram h2{
  text-align: center;
}

#instagram .section-desc{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#instagram .section-title-wrap{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

#instagram .eyebrow{
  justify-content: center;
}

#instagram h2{
  text-align: center;
}

#instagram .section-desc{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* iframe */
#instagram .embed-placeholder{
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}

/* button */
#instagram .btn-row{
  justify-content: center;
}

/* button */
#instagram .btn-row{
  justify-content: center;
}

#gallery-preview .section-title-wrap{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

#gallery-preview .eyebrow{
  justify-content: center;
}

#gallery-preview h2{
  text-align: center;
}

#gallery-preview .section-desc{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* button */
#gallery-preview .btn-row{
  justify-content: center;
}

#branches-preview .section-title-wrap{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

#branches-preview .eyebrow{
  justify-content: center;
}

#branches-preview h2{
  text-align: center;
}

#branches-preview .section-desc{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.branch-photo{
  display: flex;
  align-items: flex-end;     /* 🔥 dół */
  justify-content: center;   /* 🔥 środek poziomo */
  text-align: center;
  padding: 18px; /* żeby nie kleiło do krawędzi */
}

/* wrapper tekstu */
.branch-photo > div{
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* tekst */
.branch-photo h3,
.branch-photo p{
  text-align: center;
}

#our-space .section-title-wrap{
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

#our-space .section-title-wrap .eyebrow{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#our-space .section-title-wrap h2{
  text-align: center;
}

#our-space .section-title-wrap .section-desc{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}

#our-space .btn-row{
  justify-content: center;
}

/* ABOUT US – wyśrodkowanie */
#about-us .section-title-wrap{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

/* eyebrow */
#about-us .eyebrow{
  display: flex;
  justify-content: center;
}

/* opis */
#about-us .section-desc{
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}

/* PHILOSOPHY CARD – idealny środek */
#philosophy .soft-card{
  display: flex;
  align-items: center;      /* pion */
  justify-content: center;  /* poziom */
  text-align: center;       /* tekst */
  padding: 40px;            /* trochę więcej powietrza */
}

/* tekst wewnątrz */
#philosophy .soft-card p{
  max-width: 480px;
  margin: 0 auto;
}

/* 🔥 GÓRA SEKcji */
#quick-trust-bar .section-title-wrap{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

/* eyebrow */
#quick-trust-bar .eyebrow{
  display: flex;
  justify-content: center;
}

/* opis */
#quick-trust-bar .section-desc{
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}


/* 🔥 KAFELKI */
#quick-trust-bar .quick-card{
  display: flex;
  flex-direction: column;
  align-items: center;     /* poziom */
  justify-content: center; /* pion */
  text-align: center;
  padding: 28px;
}

/* ikonka */
#quick-trust-bar .icon-badge{
  margin-bottom: 12px;
}

/* tytuł */
#quick-trust-bar .quick-card h3{
  text-align: center;
}

/* opis */
#quick-trust-bar .quick-card p{
  text-align: center;
  max-width: 260px;
}

/* 🔥 GÓRA SEKcji */
#team .section-title-wrap{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

/* eyebrow */
#team .eyebrow{
  display: flex;
  justify-content: center;
}

/* opis */
#team .section-desc{
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}


/* 🔥 BUTTON NA DOLE */
#team .btn-row{
  justify-content: center;
  display: flex;
}

/* 🔥 GÓRA SEKcji */
#gallery .section-title-wrap{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

/* eyebrow */
#gallery .eyebrow{
  display: flex;
  justify-content: center;
}

/* opis */
#gallery .section-desc{
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}


/* 🔥 BUTTON */
#gallery .btn-row{
  display: flex;
  justify-content: center;
}

/* SERVICE HERO – h2 na dole, ale wyśrodkowany */
.service-hero h2{
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

/* SERVICE INTRO – wyśrodkowanie paragrafu */
.service-intro{
  display: flex;
  justify-content: center;
}

.service-intro .lead{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}

/* 🔥 SERVICE COPY – total center */
.service-copy{
  display: flex;
  flex-direction: column;
  align-items: center;     /* poziom */
  justify-content: center; /* pion */
  text-align: center;
}

/* tytuł */
.service-copy h3{
  text-align: center;
}

/* divider (ta linia) */
.service-copy .mini-divider{
  margin-left: auto;
  margin-right: auto;
}

/* opis */
.service-copy p{
  text-align: center;
  max-width: 420px;
}

/* cena */
.service-copy .price-tag{
  margin-left: auto;
  margin-right: auto;
}

.service-copy h3{
  margin-bottom: 1px;
}

.service-copy .mini-divider{
  margin: 6px 0 1px;
}

.service-copy p{
  margin-top: 0;
}

.cta-strip-content{
  display: flex;
  flex-direction: column;
  align-items: center;     /* poziom */
  justify-content: center; /* pion */
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.cta-strip-content p{
  max-width: 520px;
}

.cta-strip-content .btn{
  margin-top: 10px;
}

/* FAQ – wyśrodkowanie */
.section-title-wrap{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-title-wrap .eyebrow{
  display: flex;
  justify-content: center;
}

.section-title-wrap .section-desc{
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}

/* HOW IT WORKS + BENEFITS – perfect center */
.how-grid .step-card,
.benefit-grid .benefit-card{
  display: flex;
  flex-direction: column;
  align-items: center;     /* poziom */
  justify-content: center; /* pion */
  text-align: center;
}

/* tytuły */
.how-grid h3,
.benefit-grid h3{
  text-align: center;
}

/* opisy */
.how-grid p,
.benefit-grid p{
  text-align: center;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 880px){
  #personal-consultation .consult-grid{
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* 🔥 CONSULTATION – wszystkie kafelki na środek */
.consult-point,
.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;     /* poziom */
  justify-content: center; /* pion */
  text-align: center;
}

/* tytuły */
.consult-point h3,
.benefit-card h3 {
  text-align: center;
}

/* opisy */
.consult-point p,
.benefit-card p {
  text-align: center;
  max-width: 420px;
}

#reviews-about .btn-row {
  display: flex;
  justify-content: center;
}

#reviews-about .parallax-band{
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

#reviews-about .parallax-band-content{
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  max-width: 700px !important;
  margin: 0 auto !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

#reviews-about .parallax-band-content h2,
#reviews-about .parallax-band-content p{
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#reviews-about .parallax-band-content .btn-row{
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}

#reviews-about > .container > .btn-row{
  display: flex !important;
  justify-content: center !important;
}

#insights .insight-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

#insights .insight-thumb{
  width:100%;   /* 🔥 TO NAPRAWIA */
}

#insights .insight-card p{
  max-width:420px;
}

#insights .insight-card .btn{
  margin-top:10px;
}

/* ===== INSIGHT ARTICLE FIX ===== */

/* 🔥 HEADER + TEKST */
#insight-summer-skin .section-title-wrap{
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

#insight-summer-skin .section-desc{
  max-width: 520px;
  margin: 0 auto;
}

#insight-summer-skin .article-body{
  max-width: 900px;
  margin: 40px auto 0;
  text-align: center;
}

#insight-summer-skin .article-body p{
  margin-bottom: 18px;
}

/* ===== CTA ===== */

/* 🔥 NIE RUSZAJ flexa globalnego — resetujemy */
#insight-summer-skin .parallax-band{
  display: block !important;
  position: relative;
  text-align: center;
}

/* 🔥 KLUCZ — absolute center */
#insight-summer-skin .parallax-band-content{
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);

  width: 100%;
  max-width: 640px;
  padding: 0 20px;

  text-align: center;
}

/* 🔥 tekst */
#insight-summer-skin .parallax-band-content h2,
#insight-summer-skin .parallax-band-content p{
  text-align: center;
}

/* 🔥 buttony */
#insight-summer-skin .parallax-band-content .btn-row{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== INSIGHT ARTICLE 2 FIX ===== */

/* 🔥 HEADER + TEKST */
#insight-retinol-ha .section-title-wrap{
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

#insight-retinol-ha .section-desc{
  max-width: 520px;
  margin: 0 auto;
}

#insight-retinol-ha .article-body{
  max-width: 900px;
  margin: 40px auto 0;
  text-align: center;
}

#insight-retinol-ha .article-body p{
  margin-bottom: 18px;
}

/* ===== CTA ===== */
#insight-retinol-ha .parallax-band{
  display: block !important;
  position: relative;
  text-align: center;
}

#insight-retinol-ha .parallax-band-content{
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);

  width: 100%;
  max-width: 640px;
  padding: 0 20px;

  text-align: center;
}

#insight-retinol-ha .parallax-band-content h2,
#insight-retinol-ha .parallax-band-content p{
  text-align: center;
}

#insight-retinol-ha .parallax-band-content .btn-row{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

#discover-us .btn-row{
  justify-content: center;
}

#home-services-preview .btn-row{
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

#gift-preview .btn-row{
  display: flex;
  justify-content: center;
}

.category-card span{
  position: absolute;
  bottom: 18px;

  left: 50%;
  transform: translateX(-50%);

  z-index: 2;
  color: #fff;

  text-align: center;
  width: 100%;
}

#about-us .story-copy{
  display: flex;
  flex-direction: column;
  align-items: center;     /* poziom */
  justify-content: center; /* pion */
  text-align: center;
}

#team .team-info{
  display: flex;
  flex-direction: column;
}

#team .team-info .btn{
  align-self: center;   /* 🔥 KLUCZ */
  margin-top: 14px;
}


.team-photo{
  position: relative;
  overflow: hidden;
  border-radius: 28px;

  height: 320px; /* możesz zmienić */
}

.team-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%; /* 🔥 pokaż twarz */
}

.team-photo img{
  transition: transform .5s ease;
}

.team-card:hover .team-photo img{
  transform: scale(1.05);
}

@media (max-width: 880px){
  .team-photo img{
    object-position: center 10%;
  }
}

@media (max-width: 880px){
  .team-photo{
    max-width: 360px;
    margin: 0 auto; /* 🔥 wyśrodkowanie */
  }
}

@media (min-width: 880px){
  .team-photo{
    height: 420px; /* 🔥 kontrola wysokości */
  }
}

.preview-photo{
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 340px;
}

.preview-photo img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-photo{
  position: relative;
  overflow: hidden;
  border-radius: 26px;
}

.work-photo img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-media{
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 420px;
}

/* obraz */
.story-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* mobile OFF */
.story-img.mobile{
  display: none;
}

/* mobile ON */
@media (max-width: 880px){
  .story-img.desktop{
    display: none;
  }

  .story-img.mobile{
    display: block;
  }

  .story-media{
    aspect-ratio: 3 / 4;
    max-width: 360px;
    margin: 0 auto;
  }
}

.card-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
}

.icon-badge {
  width: 100px;
  height: 100px;
  margin-bottom: 14px;
}

.icon-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.quick-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start; /* KLUCZ */
}

.quick-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.icon-badge {
  width: 90px;
  height: 90px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 8px 30px rgba(0,0,0,0.2);

  transition: all 0.25s ease;
}

.lightbox-arrow span {
  font-size: 26px;
  color: white;
  line-height: 1;
}

.lightbox-arrow.prev {
  left: 24px;
}

.lightbox-arrow.next {
  right: 24px;
}

/* 🔥 HOVER PREMIUM */
.lightbox-arrow:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-50%) scale(1.08);
}

/* 🔥 ACTIVE */
.lightbox-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

@media (max-width: 880px){

  .lightbox-inner{
    width: 100%;
    max-width: 92vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .lightbox-image{
    order: 1;
    width: 100%;
    height: 60vh;
    margin-bottom: 18px;
  }

  .lightbox-close{
    top: 12px;
    right: 12px;
  }

  .lightbox-arrow{
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;
    margin: 0 !important;
  }

  #lightboxPrev{
    order: 2;
  }

  #lightboxNext{
    order: 3;
  }

  #lightboxPrev,
  #lightboxNext{
    flex: 0 0 54px;
  }

  #lightboxPrev{
    margin-right: 12px !important;
  }

}

@media (max-width: 880px){
  .lightbox-close{
    top: -55px !important;
  }
}

/* ===== FAQ LUXURY ARROW ===== */

.faq-question{
  position: relative;
  padding-right: 70px;
}

/* kółko */
.faq-question::after{
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);

  width: 36px;
  height: 36px;
  border-radius: 50%;

  background: linear-gradient(
    135deg,
    rgba(212,187,138,0.25),
    rgba(255,255,255,0.9)
  );

  border: 1px solid rgba(212,187,138,0.35);

  backdrop-filter: blur(6px);
}

/* STRZAŁKA (perfekcyjna, nie font!) */
.faq-question::before{
  content: '';
  position: absolute;

  right: 18px;
  top: 50%;

  width: 8px;
  height: 8px;

  border-right: 2px solid var(--champagne-deep);
  border-bottom: 2px solid var(--champagne-deep);

  transform: translate(-14px, -50%) rotate(45deg);

  z-index: 2;

  transition: transform 0.3s var(--ease);
}

/* OTWARTE */
.faq-item.open .faq-question::before{
  transform: translate(-14px, -50%) rotate(-135deg);
}

/* HOVER */
.faq-question:hover::after{
  background: linear-gradient(
    135deg,
    rgba(212,187,138,0.5),
    rgba(255,255,255,1)
  );
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.page-shell{
  position: relative;
  isolation: isolate;
  overflow: hidden;
}






.hero-video{
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* VIDEO */
.hero-video-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DARK OVERLAY (premium vibe) */
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.55)
  );
}

/* CONTENT */
.hero-content{
  position: relative;
  z-index: 2;

  height: 100%;
  max-width: 700px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  color: #fff;
  padding: 0 20px;
}

/* EYEBROW */
.hero-eyebrow{
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.7);
}

/* TITLE */
.hero-content h1{
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-bottom: 18px;
}

/* TEXT */
.hero-content p{
  max-width: 520px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

/* BUTTONS */
.hero-buttons{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* MOBILE FIX */
@media (max-width: 880px){
  .hero-video{
    height: 85vh;
  }
}

#gift-preview .section-title-wrap{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#gift-preview .section-desc{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 520px;
}

#gift-preview .lead{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 520px;
}

#gift-preview .btn-row{
  justify-content: center;
}

@media (max-width: 880px){
  #home-services-preview .two-col{
    display: flex;
    flex-direction: column;
  }

  #home-services-preview .two-col > div:first-child{
    display: contents;
  }

  #home-services-preview .section-title-wrap{
    order: 1;
  }

  #home-services-preview .preview-photo{
    order: 2;
    margin-top: 24px;
  }

  #home-services-preview .btn-row{
    order: 3;
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }
}

#home-services{
  padding-bottom: 30px;
}

#home-services-page{
  padding-top: 30px;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-strip-content {
  max-width: 600px;
  margin: 0 auto;
}


.cta-strip-content p,
.parallax-band-content p {
  font-weight: 500;
  text-shadow: 
    0 1px 2px rgba(0,0,0,0.25),
    0 4px 12px rgba(0,0,0,0.15);
}

.experience-card p {
  font-weight: 500;
  text-shadow: 
    0 1px 2px rgba(0,0,0,0.25),
    0 4px 12px rgba(0,0,0,0.15);
}

.hero-content p {
  font-weight: 500;
  line-height: 1.6;
  text-shadow: 
    0 2px 6px rgba(0,0,0,0.35),
    0 8px 30px rgba(0,0,0,0.25);
}








/* =========================
   FLOATING BUTTONS – FINAL
   ========================= */

/* kontener NIE ROZCIĄGA SIĘ NA CAŁOŚĆ */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 9999; /* 🔥 NAJWAŻNIEJSZE */
  pointer-events: none;
}

/* bazowy styl */
.fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed; /* 🔥 ZAMIANA absolute → fixed */
  bottom: 20px;
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}



/* CALL – LEWA STRONA */
.fab-call {
  left: 20px;
}

/* WHATSAPP – PRAWA STRONA */
.fab-wa {
  right: 20px;
}

/* CALL tylko mobile */
@media (min-width: 768px) {
  .fab-call {
    display: none;
  }
}

/* =========================
   POPUP (CENTER)
   ========================= */

.fab-popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9998;
}

/* overlay */
.fab-popup::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

/* box */
.fab-box {
  position: relative;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  width: 90%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}

#instagram .embed-placeholder{
  display:block;
}

#instagram .placeholder-inner{
  width:100%;
}

#instagram .embed-placeholder{
  display:block;
  max-width: 1200px; /* 🔥 zwiększ */
  margin-left:auto;
  margin-right:auto;
}

/* ===== REVIEWS – FULL WIDTH FIX ===== */

#reviews .embed-placeholder{
  max-width: none;
  width: 100%;
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

#reviews .placeholder-inner{
  width: 100%;
}

/* 🔥 rozszerz tylko tę sekcję */
#reviews .container{
  max-width: 1400px;
}

/* 🔥 wymuś pełną szerokość widgetu */
#reviews .elfsight-app-f76df00a-ae93-42c5-bfa9-bac8fa8b658d{
  width: 100% !important;
  max-width: none !important;
}

.menu-top{
  position:absolute;
  top:20px;
  left:16px;
  right:16px;

  display:flex;
  align-items:center;
  justify-content:space-between;
}

.menu-logo{
  height:40px;
  width:auto;
}

/* X zostaje po prawej */
.menu-close{
  position:static;
}


.submenu-content{
  display:grid;
  gap:5px;

  max-height:0;
  opacity:0;
  transform:translateY(-8px);

  overflow:hidden;

  transition:
    max-height .45s var(--ease),
    opacity .35s var(--ease),
    transform .35s var(--ease);
}

/* OTWARTE */
.mobile-submenu.active .submenu-content{
  max-height:500px; /* 🔥 wystarczająco duże */
  opacity:1;
  transform:translateY(0);
  margin-top:10px;
}





.mobile-submenu.active .submenu-content{
  max-height:9999px;
}

.submenu-toggle{
  
  cursor: pointer;
}

/* 🔥 FIX WIDTH + ALIGN */
.mobile-nav-link.submenu-toggle{
  display:flex;
  align-items:center;
  justify-content:space-between;

  width:100%;
  box-sizing:border-box; /* 🔥 KLUCZ */

  padding:16px 18px;
  border-radius:16px;

  border:1px solid var(--champagne);

  background:linear-gradient(
    135deg,
    rgba(212,187,138,.18),
    rgba(255,255,255,.4)
  );

  box-shadow:0 8px 25px rgba(0,0,0,.08);

  font-family:'Manrope',sans-serif;
  font-weight:700;
  color:var(--ink);

  margin:0; /* 🔥 reset */
}

.mobile-submenu{
  width:100%;
}

.arrow{
  font-size:18px;
  transition:transform 0.3s ease;
}

.mobile-submenu.active .arrow{
  transform:rotate(45deg); /* + zmienia się w X vibe */
}

/* ===== MOBILE MENU – STATIC PREMIUM (NO HOVER) ===== */

.mobile-nav-link,
.mobile-sub-link{
  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:16px 18px;
  border-radius:16px;

  /* 🔥 STAŁY LOOK */
  border:1px solid var(--champagne);

  background:linear-gradient(
    135deg,
    rgba(212,187,138,.18),
    rgba(255,255,255,.4)
  );

  box-shadow:0 8px 25px rgba(0,0,0,.08);

  /* 🔥 WYŁĄCZAMY WSZYSTKIE EFEKTY */
  transition:none;
}

/* 🔥 TOTALNIE WYŁĄCZ HOVER */
.mobile-nav-link:hover,
.mobile-sub-link:hover{
  transform:none;
  box-shadow:0 8px 25px rgba(0,0,0,.08);
  background:linear-gradient(
    135deg,
    rgba(212,187,138,.18),
    rgba(255,255,255,.4)
  );
  border:1px solid var(--champagne);
}

/* 🔥 ACTIVE = też identyczny (zero zmiany) */
.mobile-submenu.active > .mobile-nav-link{
  background:linear-gradient(
    135deg,
    rgba(212,187,138,.18),
    rgba(255,255,255,.4)
  );
  box-shadow:0 8px 25px rgba(0,0,0,.08);
  border:1px solid var(--champagne);
}

.mobile-submenu{
  padding:0;   /* 🔥 usuwa offset */
  margin:0;    /* 🔥 pewność */
}

.mobile-nav-link.submenu-toggle{
  position:relative;
  padding-right:60px; /* miejsce na ikonę */
}

/* KÓŁKO */
.mobile-nav-link.submenu-toggle::after{
  content:'';
  position:absolute;
  right:16px;
  top:50%;
  transform:translateY(-50%);

  width:34px;
  height:34px;
  border-radius:50%;

  background:linear-gradient(
    135deg,
    rgba(212,187,138,0.25),
    rgba(255,255,255,0.9)
  );

  border:1px solid rgba(212,187,138,0.35);

  backdrop-filter:blur(6px);
}

/* STRZAŁKA */
.mobile-nav-link.submenu-toggle::before{
  content:'';
  position:absolute;

  right:16px;
  top:50%;

  width:8px;
  height:8px;

  border-right:2px solid var(--champagne-deep);
  border-bottom:2px solid var(--champagne-deep);

  transform:translate(-13px,-50%) rotate(45deg);

  z-index:2;

  transition:transform .3s var(--ease);
}

/* OTWARTE = obrót */
.mobile-submenu.active .mobile-nav-link.submenu-toggle::before{
  transform:translate(-13px,-50%) rotate(-135deg);
}

.submenu-content{
  display:grid;
  gap:13px; /* 🔥 dokładnie to co chcesz */
}

.mobile-sub-link{
  display:flex;
  align-items:center;
  justify-content:center; /* 🔥 środek */

  text-align:center;

  padding:12px 16px; /* trochę mniejszy niż parent */
}

.submenu-content{
  padding-left:14px;
  padding-right:14px; /* 🔥 subtelne odróżnienie */
}

.floating-buttons{
  transition: opacity .25s ease;
}

@media (min-width: 880px){
  .footer-col:last-child{
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* 🔥 lewo */
  }

  .footer-col:last-child .social-row{
    justify-content: flex-start; /* 🔥 pod napisem */
    margin-top: 10px;
  }
}

#reviews .section-title-wrap{
  margin-bottom: 0px; /* albo nawet 8px */
}
#reviews .embed-placeholder{
  margin-top: 0;
  padding-top: 0;
}
#reviews .review-grid{
  gap: 0px; /* mniej powietrza */
}

@media (max-width: 768px){

  .site-footer {
    text-align: center;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .footer-col {
    width: 100%;
    max-width: 320px;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-title {
    text-align: center;
    margin-bottom: 12px;
  }

  .footer-brand p {
    text-align: center;
  }

  .brand-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
  }

  .social-row {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
    flex-direction: column;
    gap: 6px;
  }
}


@media (max-width: 768px){
  .brand-logo img {
    transform: translateX(15px);
  }
}

@media (max-width: 880px){

  .story-media{
    position: static;
    min-height: unset;
    height: auto;
    aspect-ratio: unset;

    max-width: 360px;
    margin: 0 auto;

    background: transparent;
    box-shadow: none;
  }

  .story-media::after{
    display: none;
  }

  .story-img{
    position: static;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .story-img.desktop{
    display: none;
  }

  .story-img.mobile{
    display: block;
  }

}

@media (max-width: 880px){
  .quick-bar{
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 🔥 2x2 */
    gap: 16px;
  }
}

@media (max-width: 880px){

  #quick-trust-bar .quick-card{
    padding-left: 12px;
    padding-right: 12px;
  }

  #quick-trust-bar .quick-card p{
    max-width: none;
  }

}

@media (max-width: 880px){

  .service-row,
  .service-row.reverse{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .service-row .service-image,
  .service-row.reverse .service-image{
    order: 1 !important;
    transform: none !important;
    margin: 0 auto !important;
  }

  .service-row .service-copy,
  .service-row.reverse .service-copy{
    order: 2 !important;
    transform: none !important;
    margin: 0 auto !important;
  }

}

/* TABLET + MOBILE FIX (do 1100px) */
@media (max-width: 1100px){

  .service-row,
  .service-row.reverse{
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    gap: 20px;
  }

  /* ZAWSZE OBRAZEK NA GÓRZE */
  .service-image{
    order: 1 !important;
    width: 100%;
    max-width: 520px;
  }

  /* ZAWSZE TEKST POD SPODem */
  .service-copy{
    order: 2 !important;
    width: 100%;
    max-width: 520px;
    text-align: center;
  }

  /* 🔥 USUWA WSZYSTKIE PRZESUNIĘCIA KTÓRE PSUJĄ UKŁAD */
  .service-copy,
  .service-image{
    transform: none !important;
    margin: 0 auto !important;
  }

  /* 🔥 NAPRAWA CENY */
  .price-tag{
    display: inline-block;
    margin-top: 10px;
  }

}

@media (max-width: 880px){

  .branch-grid{
    display: flex !important;
    flex-direction: column !important;
    gap: 24px;
  }

  /* dane NAJPIERW */
  .branch-details{
    order: 1;
  }

  /* mapa POD SPODem */
  .map-box{
    order: 2;
    width: 100%;
  }

  /* żeby mapa była responsywna */
  .map-box iframe{
    width: 100%;
    height: 320px;
    border-radius: 16px;
  }

}

@media (max-width: 880px){

  .contact-pill{
    flex-direction: column;        /* 🔥 ZMIANA UKŁADU */
    align-items: center;           /* środek poziomo */
    text-align: center;            /* tekst środek */
    gap: 0px;
  }

 

}

@media (max-width: 880px){

  .branch-details h3{
    text-align: center;
    width: 100%;
  }

}

@media (max-width: 880px){

  .branch-grid{
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  .branch-details{
    order: 1 !important;
  }

  .map-box{
    order: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 320px !important;
    height: 320px !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    border-radius: 24px !important;
  }

  .map-box iframe{
    position: static !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    border-radius: 24px !important;
  }

}

@media (max-width: 880px){
  #discover-us .two-col{
    display: flex;
    flex-direction: column;
  }

  #discover-us .discover-copy{
    display: contents;
  }

  #discover-us .section-title-wrap{
    order: 1;
  }

  #discover-us .discover-media{
    order: 2;
    margin-top: 0px;
  }

  #discover-us .btn-row{
    order: 3;
    margin-top: 0px;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 880px){
  #gift-preview .gift-grid{
    display: flex;
    flex-direction: column;
  }

  #gift-preview .gift-grid > div:first-child{
    display: contents;
  }

  #gift-preview .section-title-wrap{
    order: 1;
  }

  #gift-preview .lead{
    order: 2;
  }

  #gift-preview .gift-card-visual{
    order: 3;
    margin-top: 0px;
  }

  #gift-preview .btn-row{
    order: 4;
    margin-top: 0px;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 880px){
  #home-services-preview .two-col{
    display: flex;
    flex-direction: column;
  }

  #home-services-preview .two-col > div:first-child{
    display: contents;
  }

  #home-services-preview .section-title-wrap{
    order: 1;
  }

  #home-services-preview .preview-photo{
    order: 2;
    margin-top: 0px;
  }

  #home-services-preview .btn-row{
    order: 3;
    margin-top: 0px;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 880px){

  /* zmniejsza odstęp opis -> zdjęcie */
  #home-services-preview .section-title-wrap{
    margin-bottom: 0px; /* daj 8px / 6px jak chcesz jeszcze ciaśniej */
  }

  /* usuwa dodatkowy margines z ostatniego paragrafu */
  #home-services-preview .section-title-wrap p:last-child{
    margin-bottom: 0;
  }

}

@media (max-width: 880px){

  /* zmniejsza odstęp opis -> zdjęcie */
  #discover-us .section-title-wrap{
    margin-bottom: 0px; /* możesz dać 6px dla ciaśniej */
  }

  /* usuwa margines z ostatniego paragrafu */
  #discover-us .section-title-wrap p:last-child{
    margin-bottom: 0;
  }

}

@media (max-width: 880px){

  /* opis -> zdjęcie */
  #gift-preview .section-title-wrap{
    margin-bottom: 0px; /* 6px jeśli chcesz bardziej tight */
  }

  /* usuwa margines z ostatniego paragrafu */
  #gift-preview .section-title-wrap p:last-child{
    margin-bottom: 0;
  }

}

@media (min-width: 880px){
  #personal-consultation .consult-grid{
    align-items: start;
  }
}

#personal-consultation .section-title-wrap{
  margin-bottom: 0px;
}

#personal-consultation .section-title-wrap p:last-child{
  margin-bottom: 0;
}

@media (min-width: 880px){
  #gift-cards .gift-grid{
    align-items: start;
  }
}

#gift-cards .section-title-wrap{
  margin-bottom: 0px;
}

#gift-cards .section-title-wrap p:last-child{
  margin-bottom: 0;
}



.service-copy .price-tag{
  display: flex;              /* 🔥 zamiast inline-flex */
  justify-content: center;    /* 🔥 idealny środek */
  align-items: center;

  width: fit-content;         /* 🔥 szerokość dopasowana */
  margin: 12px auto 0;        /* 🔥 perfekcyjne wycentrowanie */
}