:root {
      --pink: #f3d6d8;
      --pink-soft: #f9e8e9;
      --cream: #f7f3ef;
      --cream-2: #fffaf7;
      --gold: #c8a96a;
      --gold-soft: rgba(200, 169, 106, 0.18);
      --brown: #3a2e2a;
      --brown-soft: #6f5d56;
      --white: #ffffff;
      --line: rgba(58, 46, 42, 0.11);
      --glass: rgba(255, 255, 255, 0.68);
      --shadow: 0 24px 70px rgba(58, 46, 42, 0.12);
      --shadow-soft: 0 16px 42px rgba(58, 46, 42, 0.09);
      --radius: 28px;
      --radius-lg: 38px;
      --container: min(1120px, calc(100% - 32px));
      --serif: "Cormorant Garamond", serif;
      --sans: "Inter", sans-serif;
      --header-h: 95px;
    }

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

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 0px;
    }

    body {
      font-family: var(--sans);
      color: var(--brown);
      background:
        radial-gradient(circle at 8% 4%, rgba(243, 214, 216, 0.86), transparent 32%),
        radial-gradient(circle at 92% 12%, rgba(200, 169, 106, 0.16), transparent 28%),
        linear-gradient(135deg, var(--cream-2), var(--cream));
      overflow-x: hidden;
    }

    body.no-scroll {
      overflow: hidden;
    }

    img,
    picture {
      display: block;
      width: 100%;
    }

    img {
      object-fit: cover;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font: inherit;
      border: 0;
      background: transparent;
      cursor: pointer;
      color: inherit;
    }

    section {
      position: relative;
      padding: 60px 0;
      overflow: hidden;
    }

    .container {
      width: var(--container);
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .section-soft {
      background:
        linear-gradient(135deg, rgba(255, 250, 247, 0.94), rgba(247, 243, 239, 0.94)),
        radial-gradient(circle at top left, rgba(243, 214, 216, 0.55), transparent 30%);
    }

    .section-pink {
      background:
        linear-gradient(135deg, rgba(243, 214, 216, 0.55), rgba(255, 250, 247, 0.92)),
        radial-gradient(circle at 80% 20%, rgba(200, 169, 106, 0.18), transparent 32%);
    }

    .section-cream {
      background:
        linear-gradient(135deg, rgba(247, 243, 239, 0.9), rgba(255, 250, 247, 0.96));
    }

    .texture::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.4;
      background-image:
        linear-gradient(rgba(58, 46, 42, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(58, 46, 42, 0.035) 1px, transparent 1px);
      background-size: 34px 34px;
      mask-image: radial-gradient(circle at center, black 0%, transparent 78%);
    }

    .organic-shape {
      position: absolute;
      width: 220px;
      height: 220px;
      border-radius: 42% 58% 62% 38% / 52% 36% 64% 48%;
      background: linear-gradient(135deg, rgba(243, 214, 216, 0.46), rgba(200, 169, 106, 0.14));
      filter: blur(1px);
      opacity: 0.68;
      pointer-events: none;
    }

  .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 6px 16px;

  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: var(--gold);

  border: 1px solid rgba(200, 169, 106, 0.5);

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.4); /* 🔥 lekki premium glass */

  backdrop-filter: blur(6px);

  box-shadow:
    0 4px 12px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.6);

  margin-bottom: 16px;
}

 .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  

  background: var(--gold);

  display: inline-block;

  transform: rotate(45deg) translateY(-0.5px);

  position: relative;
  top: +1px; /* 🔥 micro adjust */

  box-shadow: 0 0 6px rgba(200,169,106,0.6);
}

.contact-brand .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center; /* 🔥 KLUCZ */
}

    .section-heading {
      display: grid;
      gap: 14px;
      margin-bottom: 34px;
    }

    .section-heading.center {
      text-align: center;
      justify-items: center;
      max-width: 760px;
      margin-left: auto;
      margin-right: auto;
    }

    h1,
    h2,
    h3 {
      font-family: var(--serif);
      font-weight: 700;
      color: var(--brown);
      letter-spacing: -0.035em;
    }

    h1 {
      font-size: clamp(3.1rem, 17vw, 5.35rem);
      line-height: 0.88;
    }

    h2 {
      font-size: clamp(2.4rem, 12vw, 4.2rem);
      line-height: 0.95;
    }

    h3 {
      font-size: 1.58rem;
      line-height: 1.05;
    }

    p {
      color: var(--brown-soft);
      line-height: 1.72;
      font-size: 0.98rem;
    }

    .lead {
      font-size: 1.05rem;
      max-width: 660px;
    }

    .btn-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      justify-content: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 14px 22px;
      border-radius: 999px;
      font-size: 0.84rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
      position: relative;
      overflow: hidden;
    }

    .btn::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, transparent, rgba(255,255,255,0.42), transparent);
      transform: translateX(-120%);
      transition: transform 0.65s ease;
    }

    .btn:hover::after {
      transform: translateX(120%);
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
  color: #fff;

  background: linear-gradient(
    135deg,
    #e3a5b4 0%,
    #c97f91 50%,
    #b76a7e 100%
  );

  box-shadow:
    0 10px 30px rgba(200, 120, 140, 0.35),
    0 4px 10px rgba(200, 120, 140, 0.2);

  border: none;
}

    .btn-secondary {
      color: var(--brown);
      background: rgba(255, 255, 255, 0.64);
      border: 1px solid rgba(200, 169, 106, 0.38);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(16px);
    }

    .btn-gold {
      color: var(--brown);
      background: linear-gradient(135deg, #f1ddab, var(--gold));
      box-shadow: 0 16px 34px rgba(200, 169, 106, 0.24);
    }

    .glass-card {
      border: 1px solid rgba(255, 255, 255, 0.65);
      background: var(--glass);
      backdrop-filter: blur(18px);
      box-shadow: var(--shadow-soft);
      border-radius: var(--radius);
    }

    .fade-up,
    .image-reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .fade-up.in-view,
    .image-reveal.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    .image-frame {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      border: 1px solid rgba(255, 255, 255, 0.72);
      background: var(--pink-soft);
      max-width: 420px;
      margin: 0 auto;
    }

    .image-frame img {
      height: 100%;
      min-height: 320px;
      transition: transform 0.7s ease, filter 0.7s ease;
    }

    .image-frame:hover img {
      transform: scale(1.045);
      filter: saturate(1.04) contrast(1.02);
    }

    .image-frame::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 46%, rgba(58, 46, 42, 0.18));
      pointer-events: none;
    }

   

    /* =========================
       GLOBAL END
    ========================= */

    /* =========================
       HEADER START
    ========================= */
    .site-header {
      position: sticky;
      top: 0px;
      left: 0;
      right: 0;
      z-index: 1000;
      transition: transform 0.28s ease, opacity 0.28s ease;
      pointer-events: none;
    }

    .site-header.is-hidden {
      transform: translateY(-125%);
      opacity: 0;
    }

    .header-inner {
      width: 100%;
      min-height: var(--header-h);
      margin: 0;
      padding: 12px 14px;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 16px;
      
    background: linear-gradient(
  to right,
  rgba(201,127,145,1) 0%,       /* 🔥 pełny róż */
  rgba(201,127,145,0.9) 35%,    /* 🔥 długo trzyma moc */
  rgba(243,214,216,0.75) 65%,   /* przejście */
  rgba(247,243,239,0.9) 85%,    /* lekki cream */
  rgba(255,250,247,0.98) 100%   /* końcówka */
);

backdrop-filter: blur(14px);
      box-shadow: 0 18px 50px rgba(58, 46, 42, 0.12);
      pointer-events: auto;
    }



    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
    }

    .brand-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

    


    .brand-name {
      font-family: var(--serif);
      font-weight: 700;
      font-size: 1.18rem;
      letter-spacing: -0.03em;
      white-space: nowrap;
    }

    .brand-sub {
      font-size: 0.66rem;
      color: var(--gold);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 800;
      white-space: nowrap;
    }

    .desktop-nav,
    .desktop-actions {
      display: none;
    }

    .hamburger {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: #bf8e98;
      box-shadow: 0 14px 32px rgba(58, 46, 42, 0.18);
      position: relative;
      z-index: 1002;
    }

    .hamburger span {
      width: 19px;
      height: 2px;
      background: var(--cream-2);
      border-radius: 99px;
      position: relative;
      transition: background 0.2s ease;
    }

    .hamburger span::before,
    .hamburger span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 19px;
      height: 2px;
      background: var(--cream-2);
      border-radius: 99px;
      transition: transform 0.24s ease, top 0.24s ease;
    }

    .hamburger span::before {
      top: -7px;
    }

    .hamburger span::after {
      top: 7px;
    }

    .hamburger.is-active span {
      background: transparent;
    }

    .hamburger.is-active span::before,
    .hamburger.is-active span::after {
      top: 0;
    }

    .hamburger.is-active span::before {
      transform: rotate(45deg);
    }

    .hamburger.is-active span::after {
      transform: rotate(-45deg);
    }

    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 999;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.28s ease;
    }

    .mobile-menu.is-open {
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-menu-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(58, 46, 42, 0.3);
      backdrop-filter: blur(6px);
    }

    .mobile-panel {
      position: absolute;
      top: 100px;
      left: 16px;
      right: 16px;
      padding: 20px;
      border-radius: 34px;
      background:
        linear-gradient(135deg, rgba(255,250,247,0.94), rgba(249,232,233,0.92)),
        radial-gradient(circle at top right, rgba(200,169,106,0.18), transparent 34%);
      border: 1px solid rgba(255,255,255,0.78);
      box-shadow: 0 26px 80px rgba(58, 46, 42, 0.22);
      transform: translateY(-12px) scale(0.98);
      transition: transform 0.28s ease;
      overflow: hidden;
    }

    .mobile-menu.is-open .mobile-panel {
      transform: translateY(0) scale(1);
    }

    .mobile-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image: radial-gradient(rgba(200,169,106,0.18) 1px, transparent 1px);
      background-size: 18px 18px;
      opacity: 0.42;
    }

    .mobile-nav {
      display: grid;
      gap: 10px;
      position: relative;
      z-index: 2;
    }

    .mobile-nav a,
    .nav-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 12px 16px;
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--brown);
      background: rgba(255,255,255,0.58);
      border: 1px solid rgba(200,169,106,0.25);
      transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
    }

    .mobile-nav a:last-child {
  background: linear-gradient(135deg, #e3a5b4, #c97f91);
  color: #fff;
  border: none;
  box-shadow: 0 10px 25px rgba(200,120,140,0.35);
}



    .mobile-nav a:hover {
  box-shadow: 0 6px 18px rgba(200,169,106,0.18);
}
    .nav-link:hover {
      transform: translateY(-2px);
      background: rgba(255,255,255,0.92);
      box-shadow: 0 12px 28px rgba(58,46,42,0.09);
      
    }

    .mobile-social-row {
      margin-top: 18px;
      padding-top: 18px;
      border-top: 1px solid rgba(58,46,42,0.1);
      position: relative;
      z-index: 2;
      display: grid;
      gap: 14px;
    }

    .mobile-social-row p {
      font-family: var(--serif);
      font-size: 1.28rem;
      line-height: 1.1;
      color: var(--brown);
      text-align: center;
    }

    .social-icons {
      display: flex;
      align-items: center;
      gap: 18px;
      justify-content: center;
    }

    .social-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: inline-grid;
      place-items: center;
      color: var(--brown);
      background: rgba(255,255,255,0.6);
      border: 1px solid rgba(200,169,106,0.28);
      transition: transform 0.22s ease, background 0.22s ease;
    }

    .social-icon:hover {
      transform: translateY(-2px) rotate(-3deg);
      background: var(--white);
    }

    .social-icon svg {
      width: 17px;
      height: 17px;
      fill: currentColor;
    }
    /* =========================
       HEADER END
    ========================= */

    /* =========================
       HERO START
    ========================= */
    .hero {
      min-height: 90svh;
      padding: 0;
      display: grid;
      align-items: stretch;
      background: var(--brown);
    }

    .hero-slider {
      position: relative;
      min-height: 90svh;
      overflow: hidden;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.9s ease;
    }

    .hero-slide.is-active {
      opacity: 1;
      z-index: 1;
    }

    .hero-slide picture,
    .hero-slide img {
      height: 100%;
    }

    .hero-slide.is-active img {
      animation: heroZoom 4s linear forwards;
    }

    @keyframes heroZoom {
      from { transform: scale(1); }
      to { transform: scale(1.075); }
    }

    .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;

  background:
    linear-gradient(180deg, rgba(58,46,42,0.34), rgba(58,46,42,0.13) 34%, rgba(58,46,42,0.52)),
    radial-gradient(circle at 10% 80%, rgba(243,214,216,0.2), transparent 34%);

  display: flex;
  align-items: flex-start;

  /* 🔥 KLUCZ - OD HEADERA + 30% */
  padding-top: calc(var(--header-h) + 0vh);
}

.hero-content {
  width: var(--container);
  margin: 0 auto;

  max-width: 500px; /* 🔥 było 820 - ZA SZEROKO */

  justify-self: center;
  text-align: center;
  color: var(--white);
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem); /* było za duże */
  line-height: 1.05;
  letter-spacing: -0.025em;
}

    .hero-content .eyebrow {
      color: #f2dba0;
    }

    .hero h1,
    .hero p {
      color: var(--white);
    }

    .hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);

  line-height: 1.02; /* 🔥 KLUCZ - zbija tekst */
  letter-spacing: -0.03em;

  margin-bottom: 12px;
}

    .hero img {
  object-fit: cover;
  object-position: center 38%;
}

.hero p {
  max-width: 480px;
  margin: 10px auto 0;

  font-size: 0.95rem;
  line-height: 1.5;

  font-weight: 500; /* 🔥 to robi premium vibe */

  letter-spacing: 0.01em;

  color: rgba(255,255,255,0.82);
}

    .hero .btn-row {
      margin-top: 26px;
      justify-content: center;
    }
    /* =========================
       HERO END
    ========================= */

    /* =========================
       ABOUT START
    ========================= */
    .about-grid {
      display: grid;
      gap: 26px;
      align-items: center;
    }

    .about-copy {
      padding: 26px;
      position: relative;
      text-align: center;
    }



    /* =========================
       ABOUT END
    ========================= */

    /* =========================
       TRUST BAR START
    ========================= */
    .trust-grid {
      display: grid;
      gap: 14px;
    }

    .trust-card {
      padding: 22px;
      display: grid;
      gap: 12px;
      min-height: 210px;
      text-align: center;
      justify-items: center;
    }

    .trust-icon {
      width: 52px;
      height: 52px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      color: var(--brown);
      background: linear-gradient(135deg, rgba(243,214,216,0.95), rgba(255,255,255,0.8));
      border: 1px solid rgba(200,169,106,0.28);
    }

    .trust-icon svg {
      width: 23px;
      height: 23px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    /* =========================
       TRUST BAR END
    ========================= */

    /* =========================
       SERVICE CATEGORIES START
    ========================= */
    .services-shell {
      display: grid;
      gap: 22px;
    }

    .service-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 4px 0 10px;
  margin: 0 auto;
}

  
    .service-tab {
      flex: 0 0 auto;
      padding: 13px 17px;
      border-radius: 999px;
      background: rgba(255,255,255,0.58);
      border: 1px solid rgba(200,169,106,0.25);
      color: var(--brown);
      font-size: 0.76rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
    }

    .service-tab:hover,
.service-tab.is-active {
  transform: translateY(-2px);

  background: linear-gradient(
    135deg,
    #e3a5b4,
    #c97f91,
    #b76a7e
  );

  color: #fff;
  border: none;

  box-shadow:
    0 8px 20px rgba(200, 120, 140, 0.3),
    0 3px 8px rgba(200, 120, 140, 0.15);
}

    .service-content-grid {
      display: grid;
      gap: 20px;
      align-items: stretch;
    }

    .service-carousel {
      position: relative;
      min-height: 390px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow);
      background: var(--pink-soft);
    }

    .service-carousel-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.55s ease;
    }

    .service-carousel-slide.is-active {
      opacity: 1;
    }

    .service-carousel-slide picture,
    .service-carousel-slide img {
      height: 100%;
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 5;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,0.76);
      border: 1px solid rgba(255,255,255,0.78);
      box-shadow: var(--shadow-soft);
      color: var(--brown);
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .carousel-btn:hover {
      background: var(--white);
      transform: translateY(-50%) scale(1.05);
    }

    .carousel-btn.prev {
      left: 14px;
    }

    .carousel-btn.next {
      right: 14px;
    }

    .service-panel {
      padding: 20px;
      display: none;
    }

    .service-panel.is-active {
      display: block;
    }

    .service-panel-head {
      margin-bottom: 16px;
      display: grid;
      gap: 8px;
      text-align: center;
    }

    .price-list {
      display: grid;
      gap: 10px;
    }

    .price-item {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 14px;
      padding: 16px;
      border-radius: 20px;
      background: rgba(255,255,255,0.58);
      border: 1px solid rgba(58,46,42,0.08);
      transition: transform 0.22s ease, background 0.22s ease;
    }

    .price-item:hover {
      transform: translateY(-2px);
      background: rgba(255,255,255,0.86);
    }

    .price-item strong {
      display: block;
      font-size: 0.98rem;
      margin-bottom: 4px;
    }

    .price-item span {
      color: var(--brown-soft);
      font-size: 0.88rem;
      line-height: 1.5;
    }

    .price {
      color: var(--gold);
      font-weight: 900;
      white-space: nowrap;
    }

    .service-panel .btn-row {
      margin-top: 18px;
    }
    /* =========================
       SERVICE CATEGORIES END
    ========================= */

    /* =========================
       SIGNATURE SERVICE START
    ========================= */
    .signature-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(58,46,42,0.18);
  background: var(--brown);
  width: 100%;
  max-width: 420px;   /* 🔥 KLUCZ */
  margin: 0 auto;     /* 🔥 centruje */

  aspect-ratio: 16 / 5.5; /* 🔥 niższe = bardziej premium */
}

/* IMAGE */
.signature-card picture,
.signature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  object-position: center 93%; /* 🔥 PRZESUNIĘCIE W DÓŁ (pokazuje stopy) */
}

/* OVERLAY */
.signature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(58,46,42,0.05), rgba(58,46,42,0.65));
}

.signature-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  z-index: 2;
  text-align: center;
  width: min(520px, calc(100% - 40px));
  justify-items: center;

  display: grid;
  gap: 10px;
}

.signature-content h2 {
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 25px rgba(0,0,0,0.45);
}

.signature-content p {
  color: rgba(255,255,255,0.9);
}

.signature-price {
  margin-top: 12px;
  padding: 10px 22px;
  border-radius: 999px;

  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  color: #fff;
  display: inline-block;

  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.35);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.5);
}
    /* =========================
       SIGNATURE SERVICE END
    ========================= */

    /* =========================
       PACKAGE OFFERS START
    ========================= */
/* GRID */
.package-grid {
  display: grid;
  gap: 18px;
}

/* CARD */
.package-card {
  position: relative;
  min-height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--pink-soft);
}

/* IMAGE */
.package-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
  transition: transform 0.7s ease, filter 0.7s ease;
}

/* HOVER */
.package-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.88);
}

/* OVERLAY */
.package-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.65)
  );
}

/* CONTENT */
.package-content {
  position: absolute;
  bottom: 24px;
  left: 20px;
  right: 20px;

  z-index: 2;

  text-align: center;
  color: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* 🔥 TITLE BIGGER */
.package-content h3 {
  color: #fff !important;
  font-size: 2rem;
  line-height: 1.05;
  margin: 0;
}

/* DESCRIPTION */
.package-content p {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  max-width: 260px;
  margin: 0;
}

/* 🔥 GLOSSY TILE (REAL ONE) */
.package-price {
  margin-top: 10px;

  padding: 8px 18px;
  border-radius: 999px;

  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: #fff;

  position: relative;
  display: inline-block;

  /* 🔥 PRAKTYCZNIE ZERO MLECZNOŚCI */
  background: rgba(255,255,255,0.05);

  backdrop-filter: none; /* 🚫 WYŁĄCZONE = koniec mleka */

  border: 1px solid rgba(255,255,255,0.15);

  box-shadow:
    0 4px 12px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

/* 🔥 SHINE */
.package-price::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.6),
    rgba(255,255,255,0.05)
  );

  opacity: 0.6;
}
    /* =========================
       PACKAGE OFFERS END
    ========================= */

    /* =========================
       GALLERY START
    ========================= */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    .gallery-item {
      border-radius: 20px;
      overflow: hidden;
      background: var(--pink-soft);
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(255,255,255,0.7);
      aspect-ratio: 1 / 1.18;
      cursor: zoom-in;
    }

    .gallery-item picture,
    .gallery-item img {
      height: 100%;
    }

    .gallery-item img {
      transition: transform 0.45s ease, filter 0.45s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.06);
      filter: saturate(1.06);
    }

    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 1400;
      display: none;
      place-items: center;
      background: rgba(58,46,42,0.72);
      backdrop-filter: blur(12px);
      padding: 22px;
    }

    .lightbox.is-open {
      display: grid;
    }

    .lightbox-stage {
      position: relative;
      width: min(920px, 100%);
      max-height: 86svh;
    }

    .lightbox-img {
      width: 100%;
      max-height: 86svh;
      object-fit: contain;
      border-radius: 28px;
      
      
    }

    .lightbox-close,
    .lightbox-arrow {
      position: absolute;
      z-index: 3;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,0.82);
      color: var(--brown);
      border: 1px solid rgba(255,255,255,0.8);
      box-shadow: var(--shadow-soft);
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .lightbox-close:hover,
    .lightbox-arrow:hover {
      transform: scale(1.05);
      background: var(--white);
    }

    .lightbox-close {
      top: -14px;
      right: -10px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      font-size: 1.2rem;
    }

    .lightbox-arrow {
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 54px;
      border-radius: 999px;
      font-size: 1.55rem;
    }

    .lightbox-arrow:hover {
      transform: translateY(-50%) scale(1.05);
    }

    .lightbox-arrow.prev {
      left: -12px;
    }

    .lightbox-arrow.next {
      right: -12px;
    }
    /* =========================
       GALLERY END
    ========================= */

    /* =========================
       REVIEWS START
    ========================= */
    .embed-box {
      min-height: 360px;
      padding: 22px;
      display: grid;
      place-items: center;
      text-align: center;
      border: 1px dashed rgba(200,169,106,0.48);
      color: var(--brown-soft);
    }

    .embed-box span {
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 800;
      color: var(--gold);
    }

    .reviews-cta,
    .instagram-cta {
      margin-top: 22px;
      justify-content: center;
    }
    /* =========================
       REVIEWS END
    ========================= */

    /* =========================
       INSTAGRAM START
    ========================= */
    .instagram-section .embed-box {
      min-height: 430px;
    }
    /* =========================
       INSTAGRAM END
    ========================= */

    /* =========================
       CTA STRIP START
    ========================= */
 .cta-strip {
  padding: 52px 0;
}

.cta-image-card {
  position: relative;
  aspect-ratio: 16 / 5.5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--brown);
}

.cta-image-card picture,
.cta-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.cta-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(58,46,42,0.72), rgba(58,46,42,0.08)),
    radial-gradient(circle at 20% 20%, rgba(243,214,216,0.18), transparent 34%);
}

/* 🔥 CTA CONTENT - CLEAN & PREMIUM */
.cta-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 26px;

  display: grid;
  align-content: center;
  justify-items: center;

  text-align: center;
  gap: 11px; /* mniej luzu = bardziej premium */
}

/* 🔥 HEADLINE */
.cta-content h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  max-width: 520px;
}

/* 🔥 DESCRIPTION - PREMIUM FEEL */
.cta-content p {
  color: rgba(255,255,255,0.88);

  font-family: var(--sans);
  font-weight: 500;              /* 🔥 premium */
  font-size: 0.95rem;
  line-height: 1.5;

  letter-spacing: 0.01em;

  text-shadow: 0 4px 14px rgba(0,0,0,0.25); /* 🔥 depth */

  max-width: 420px;
  margin: 0;
}

    /* =========================
       CONTACT START
    ========================= */
    .contact-grid {
      display: grid;
      gap: 20px;
      align-items: stretch;
    }

    .contact-card {
      padding: 24px;
      text-align: center;
    }

    .contact-brand {
      margin-bottom: 22px;
    }

    .contact-brand h2 {
      font-size: clamp(2.1rem, 11vw, 3.5rem);
    }

    .contact-brand span {
      display: inline-block;
      margin-top: 6px;
      color: var(--gold);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: 0.72rem;
    }

    .contact-list {
      display: grid;
      gap: 14px;
      justify-items: center;
    }

    .contact-item {
  display: grid;
  gap: 5px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.54);
  border: 1px solid rgba(58,46,42,0.08);

  max-width: 420px;       /* <-- DODAJ */
  width: 100%;            /* <-- DODAJ */
}

    .contact-item strong {
      color: var(--brown);
      font-size: 0.86rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .contact-item span,
    .contact-item a {
      color: var(--brown-soft);
      line-height: 1.55;
    }

    .contact-social {
      margin-top: 18px;
    }

    .map-box {
  min-height: 430px;
  overflow: hidden;
  display: block; /* było grid */
  text-align: center;
  border: 1px solid rgba(255,255,255,0.65); /* opcjonalnie ładniejszy */
  padding: 0; /* było 24px */
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  display: block;
}
    /* =========================
       CONTACT END
    ========================= */

    /* =========================
       FAQ START
    ========================= */
    .faq-list {
      display: grid;
      gap: 12px;
      max-width: 860px;
      margin: 0 auto;
    }

    .faq-item {
      border-radius: 24px;
      background: rgba(255,255,255,0.62);
      border: 1px solid rgba(200,169,106,0.2);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 20px;
      text-align: left;
      font-weight: 800;
      color: var(--brown);
    }

    .faq-arrow {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--pink-soft);
      color: var(--gold);
      transition: transform 0.24s ease;
    }

    .faq-item.is-open .faq-arrow {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.28s ease;
    }

    .faq-answer p {
      padding: 0 20px 20px;
    }
    /* =========================
       FAQ END
    ========================= */

    /* =========================
       FOOTER START
    ========================= */
    .site-footer {
      padding: 30px 0;
      background: linear-gradient(
  to right,
  rgba(201,127,145,1) 0%,
  rgba(201,127,145,0.98) 40%,
  rgba(201,127,145,0.92) 70%,
  rgba(201,127,145,0.85) 100%
);
      color: var(--cream-2);
    }

    .footer-inner {
  width: var(--container);
  margin: 0 auto;

  display: grid;
  grid-template-columns: auto 1fr auto; /* KLUCZ */

  align-items: center;
}

.footer-inner .brand {
  justify-self: center;
}

    .site-footer .brand-mark {
      background: linear-gradient(135deg, var(--pink), #fff2ef);
      color: var(--brown);
    }

    .site-footer .brand-name,
    .site-footer .brand-sub {
      color: var(--cream-2);
    }

    .footer-line {
      color: rgba(255,255,255,0.72);
      line-height: 1.6;
      font-size: 0.94rem;
      text-align: center;
      justify-self: center;
    }
    /* =========================
       FOOTER END
    ========================= */

    /* =========================
   FLOATING BUTTONS BASE
   ========================= */

.floating-btn {
  position: fixed;
  bottom: 20px;
  z-index: 9999;
}

.floating-btn img {
  width: 60px;
  height: auto;
  display: block;
}

/* =========================
   WHATSAPP (prawa strona)
   ========================= */

.floating-btn.whatsapp {
  right: 20px;
}

/* =========================
   CALL BUTTON (lewa strona)
   ========================= */

/* domyślnie ukryty */
.call-button-mobile {
  display: none;
  left: 20px;
}

.trust-img {
  width: 100%;
  max-width: 120px; /* zmień np. na 100px / 140px jak chcesz */
  aspect-ratio: 1 / 1; /* zachowuje proporcje */
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto 12px; /* wyśrodkowanie */
}

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

.faq-arrow {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(243, 214, 216, 0.65);
  border: 1px solid rgba(200, 169, 106, 0.32);
  box-shadow: 0 8px 20px rgba(58, 46, 42, 0.06);
  transition: background 0.25s ease, box-shadow 0.25s ease, rotate 0.25s ease;
  transform: none !important;
}

.faq-arrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid #6f5d56;
  border-bottom: 2px solid #6f5d56;
  transform: rotate(45deg) translate(-1px, -1px);
}

.faq-item.is-open .faq-arrow {
  rotate: 180deg;
  background: rgba(243, 214, 216, 0.9);
}

.faq-question:hover .faq-arrow {
  box-shadow: 0 10px 24px rgba(58, 46, 42, 0.1);
}

/* WAŻNE - usuwa podskakiwanie pytania */
.faq-question:hover,
.faq-question:hover .faq-arrow {
  transform: none !important;
}

.hero-box {
  padding: 20px 22px;
  border-radius: 28px;
  justify-items: center;

  /* 🔥 KONIEC MLEKA */
  background: linear-gradient(
    135deg,
    rgba(20,20,20,0.35),
    rgba(20,20,20,0.18)
  );

  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(8px);

  border: 1px solid rgba(255,255,255,0.12);

  box-shadow:
    0 25px 60px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.12);

  display: grid;
  gap: 6px;

  text-align: center;
}

.signature-cta {
  margin-top: 20px;
 }

 .footer-inner {
  width: var(--container);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

/* widoczny tylko na mobile */
@media (max-width: 767px) {
  .call-button-mobile {
    display: block;
  }
  
  .hero-box {
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
  }

   .site-footer {
    padding-bottom: 90px;
  }

   .services-shell {
    display: flex;
    flex-direction: column;
  }

  .service-content-grid {
    display: contents; /* 🔥 KLUCZ */
  }

  .service-carousel {
    order: 1;
  }

  .service-tabs {
    order: 2;
  }

  .service-tables {
    order: 3;
  }

   .signature-card {
     aspect-ratio: 3 / 3.2;
     
  }
  .cta-image-card {
    aspect-ratio: 3 / 2.9; /* 🔥 więcej wysokości */
    max-width: 580px;       /* 🔥 LIMIT szerokości */
  width: 100%;            /* żeby było responsive */

  margin: 0 auto;         /* 🔥 centruje */
  }
   .service-carousel {
    width: 100%;
    max-width: 360px;   /* 🔥 LIMIT */
    margin: 0 auto;     /* 🔥 CENTER */
  }

  .service-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 4px 0 10px;
  margin: 0 auto;
}

.service-tab {
  width: 100%;
  text-align: center;
}
}

.floating-btn {
  transition: opacity 0.3s ease;
}




    /* =========================
       BREAKPOINT 768 START
    ========================= */
    @media (min-width: 768px) {
      :root {
        --container: min(1120px, calc(100% - 56px));
      }

      section {
        padding: 70px 0;
      }

      .header-inner {
        grid-template-columns: auto 1fr auto;
        padding: 12px 37px;
      }

      

       .header-inner,
  .footer-inner {
    padding-left: 80px;
    padding-right: 80px;
  }

     .signature-card {
     aspect-ratio: 3 / 2;
     max-width: 700px;
     
  }
 
   .service-carousel {
    width: 100%;
    max-width: 320px;   /* 🔥 LIMIT */
    margin: 0 auto;     /* 🔥 CENTER */
  }

  

      

      .desktop-nav,
      .desktop-actions {
        display: flex;
        align-items: center;
        
      }

      .desktop-nav {
        justify-content: center;
        gap: 6px;
        
      }

      

      .desktop-actions {
        gap: 18px;
        justify-content: end;
      }

      .hamburger {
        display: none;
      }

      .nav-link {
        min-height: 38px;
        padding: 10px 12px;
        font-size: 0.68rem;
        background: transparent;
      }

      .desktop-actions .btn {
        min-height: 42px;
        padding: 12px 16px;
        font-size: 0.8rem;
      }

      .desktop-actions .social-icon {
        width: 38px;
        height: 38px;
      }

      

      

      .about-grid,
      .service-content-grid,
      .contact-grid {
        grid-template-columns: 1fr 1fr;
      }

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

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

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

      .gallery-item {
        border-radius: 24px;
      }

    .nav-link {
    border: 2px solid var(--gold);
  }

      .mobile-social-row {
        grid-template-columns: 1fr auto;
        align-items: center;
      }

      .footer-inner {
  grid-template-columns: auto 1fr auto;
  width: 100%;
    margin: 0;
    
}

      .footer-line {
        justify-self: center;
        text-align: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
      }
    }
    /* =========================
       BREAKPOINT 768 END
    ========================= */

    /* =========================
       BREAKPOINT 1024 START
    ========================= */
    @media (min-width: 1024px) {
      .brand-mark {
        width: 46px;
        height: 46px;
      }

      .brand-name {
        font-size: 1.28rem;
      }

      .nav-link {
        padding: 10px 14px;
        font-size: 0.80rem;
      }

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

      .trust-card {
        min-height: 240px;
      }

      .services-shell {
        gap: 28px;
      }

      .signature-card {
     aspect-ratio: 3 / 1.1;
     max-width: 1000px;
     
  }

      

      
  .service-content-grid {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .service-carousel {
    max-width: 420px;
    margin: 0 auto;
  }


      .service-carousel {
  height: auto;
  aspect-ratio: 3 / 4;
}

      .service-panel {
        padding: 26px;
      }

       .signature-content {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    width: min(520px, calc(100% - 68px));
  }

      .cta-content {
        align-content: center;
        padding: 54px;
      }

      .lightbox-arrow.prev {
        left: -68px;
      }

      .lightbox-arrow.next {
        right: -68px;
      }

      .service-carousel {
    width: 100%;
    max-width: 290px;   /* 🔥 LIMIT */
    margin: 0 auto;     /* 🔥 CENTER */
  }
    }
    /* =========================
       BREAKPOINT 1024 END
    ========================= */

    /* =========================
       BREAKPOINT 1280 START
    ========================= */
    @media (min-width: 1280px) {
      :root {
        --container: 1180px;
      }

      section {
        padding: 70px 0;
      }

      .desktop-nav {
        gap: 8px;
      }

      

      .nav-link {
        padding: 11px 16px;
      }

      .hero-content {
        max-width: 620px;
      }

      .signature-card {
     aspect-ratio: 3 / 1;
     max-width: 1200px;
     
  }

      .service-carousel {
        min-height: 660px;
      }

      .service-carousel {
    width: 100%;
    max-width: 400px;   /* 🔥 LIMIT */
    margin: 0 auto;     /* 🔥 CENTER */
  }
    }
    /* =========================
       BREAKPOINT 1280 END
    ========================= */


@media (max-width: 768px) {
  .service-carousel {
    height: 560px;
    min-height: unset;
  }
}

@media (max-width: 1023px) {
  .desktop-nav,
  .desktop-actions {
    display: none !important;
  }

  .hamburger {
    display: grid !important;
  }

   .header-inner {
    grid-template-columns: auto 1fr auto !important;
  }

  .brand {
    grid-column: 1;
  }

  .hamburger {
    grid-column: 3;
    justify-self: end;
  }
}

@media (min-width: 1024px) {
  .desktop-nav,
  .desktop-actions {
    display: flex !important;
  }

  .hamburger {
    display: none !important;
  }

  
}

@media (max-width: 400px) {
  .service-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
}