    :root {
      --bg: #090909;
      --bg-2: #111111;
      --card: rgba(255,255,255,0.05);
      --card-strong: rgba(255,255,255,0.08);
      --text: #f4efe6;
      --muted: #c7b9a4;
      --line: rgba(255,255,255,0.1);
      --gold: #c89c5a;
      --gold-2: #e5bf84;
      --shadow: 0 24px 80px rgba(0,0,0,0.45);
      --radius: 24px;
      --max: 1400px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
    }
    body {
      font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background: linear-gradient(180deg, #131313 0%, #090909 100%);
      line-height: 1.6;
      overflow-x: hidden;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }

    img,
    video {
      max-width: 100%;
      display: block;
    }
    a { color: inherit; text-decoration: none; }

    .container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

    .nav-wrap {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(14px);
      background: rgba(9,9,9,0.72);
      border-bottom: 1px solid var(--line);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      min-height: 80px;
      position: relative;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 800;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-size: 0.95rem;
    }

    .brand-name {
      color: #f4efe6;
      line-height: 1;
    }

    .brand-mark {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      border: 1px solid rgba(200,156,90,0.42);
      color: var(--gold-2);
      background: radial-gradient(circle at top, rgba(229,191,132,0.16), rgba(255,255,255,0.02));
      box-shadow: inset 0 0 24px rgba(200,156,90,0.08);
      font-size: 0.95rem;
      overflow: hidden;
      flex: 0 0 auto;
    }

    .brand-mark img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
      object-position: center;
      display: block;
      filter: drop-shadow(0 2px 8px rgba(0,0,0,0.45));
    }

    .nav-links {
      display: flex;
      gap: 12px;
      align-items: center;
      flex-wrap: nowrap;
      justify-content: flex-end;
    }

    .nav-links a {
      color: var(--muted);
      transition: color 180ms ease, opacity 180ms ease;
      font-size: 0.9rem;
      white-space: nowrap;
    }

    .nav-links a:hover { color: var(--text); }

    .nav-links a.is-active:not(.btn) {
      color: #fff2dd;
      text-shadow: 0 0 18px rgba(229,191,132,0.35);
    }

    .pickup-nav-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid rgba(229,191,132,0.42);
      background: rgba(229,191,132,0.1);
      font-weight: 700;
      color: #ffe2b7;
      font-variant-numeric: tabular-nums;
      letter-spacing: 0.01em;
    }

    .nav-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,0.16);
      background: rgba(255,255,255,0.04);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      flex: 0 0 auto;
    }

    .nav-toggle-line {
      width: 20px;
      height: 2px;
      border-radius: 2px;
      background: #efe5d6;
      transition: transform 180ms ease, opacity 180ms ease;
    }

    .menu-open .nav-toggle-line:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .menu-open .nav-toggle-line:nth-child(2) {
      opacity: 0;
    }

    .menu-open .nav-toggle-line:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 0 20px;
      border-radius: 999px;
      border: 1px solid rgba(200,156,90,0.4);
      background: linear-gradient(180deg, rgba(229,191,132,0.18), rgba(200,156,90,0.08));
      color: #fff7ea;
      font-weight: 700;
      box-shadow: 0 12px 35px rgba(0,0,0,0.28);
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
    }

    .btn:hover {
      transform: translateY(-2px);
      border-color: rgba(229,191,132,0.7);
      background: linear-gradient(180deg, rgba(229,191,132,0.26), rgba(200,156,90,0.14));
    }

    .btn.secondary {
      background: rgba(255,255,255,0.03);
      border-color: var(--line);
      color: var(--text);
    }

    .hero {
      position: relative;
      min-height: calc(100svh - 80px);
      display: grid;
      place-items: center;
      isolation: isolate;
      overflow: hidden;
      background: #090909;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        url('../assets/tlo-czarny-wol-hero.webp') center top / cover no-repeat,
        url('../tlo czarny wol.jpg') center top / cover no-repeat,
        url('../assets/tlo-czarny-wol.jpg') center top / cover no-repeat;
      opacity: 1;
      z-index: -4;
      transform: scale(1.06) translate3d(0, 0, 0);
      will-change: transform;
      animation: heroBgFloat 24s ease-in-out infinite alternate;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(0,0,0,0.42), rgba(0,0,0,0.58)),
        linear-gradient(180deg, rgba(9,9,9,0), rgba(9,9,9,0.92) 85%);
      z-index: -3;
    }

    @keyframes heroBgFloat {
      0% {
        transform: scale(1.06) translate3d(0, 0, 0);
      }
      50% {
        transform: scale(1.1) translate3d(-1.2%, -1%, 0);
      }
      100% {
        transform: scale(1.08) translate3d(1.1%, 1%, 0);
      }
    }

    .hero-glow {
      position: absolute;
      width: 760px;
      height: 760px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(200,156,90,0.16), transparent 64%);
      filter: blur(30px);
      z-index: -2;
      top: 8%;
      left: 50%;
      transform: translateX(-50%);
      pointer-events: none;
    }

    .hero-kebab {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      z-index: -1;
      pointer-events: none;
    }

    .hero-kebab img {
      width: min(700px, 82vw);
      aspect-ratio: 1 / 1;
      border-radius: 50%;
      object-fit: cover;
      object-position: center;
      opacity: 0.2;
      filter: contrast(1.08) saturate(1.08) drop-shadow(0 32px 90px rgba(0,0,0,0.7));
      transform: translateY(26px);
    }

    .hero-content {
      text-align: center;
      max-width: 1040px;
      padding: 8px 0 16px;
    }

    .hero-logo-combo {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(10px, 2.2vw, 26px);
      margin: 0 auto 36px;
      width: 100%;
      flex-wrap: nowrap;
    }

    .hero-side-word {
      width: clamp(120px, 16vw, 230px);
      height: auto;
      opacity: 0.94;
      filter: drop-shadow(0 6px 18px rgba(0,0,0,0.45));
      user-select: none;
      pointer-events: none;
    }

    .hero-logo {
      width: min(158px, 24vw);
      aspect-ratio: 1 / 1;
      height: auto;
      object-fit: cover;
      object-position: center;
      border-radius: 50%;
      margin: 0;
      padding: 0;
      display: block;
      filter: drop-shadow(0 20px 50px rgba(0,0,0,0.6));
    }

    .eyebrow {
      color: var(--gold-2);
      text-transform: uppercase;
      letter-spacing: 0.24em;
      font-size: 0.74rem;
      margin: 16px 0 8px;
    }

    h1 {
      font-size: clamp(2.4rem, 5.4vw, 4.9rem);
      line-height: 0.94;
      letter-spacing: -0.045em;
      margin-bottom: 10px;
    }

    .hero-google-proof {
      display: grid;
      gap: 2px;
      justify-items: center;
      margin: 0 auto 10px;
      color: #fff2dd;
      line-height: 1.05;
    }

    .hero-google-proof strong {
      font-size: clamp(1.42rem, 2.4vw, 1.86rem);
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .hero-google-proof span {
      color: #ffd17c;
      font-size: clamp(1rem, 1.8vw, 1.24rem);
      letter-spacing: 0.06em;
      font-weight: 800;
    }

    .hero-google-proof small {
      font-size: clamp(0.82rem, 1.1vw, 0.95rem);
      color: #ead8be;
      font-weight: 700;
    }

    .lead {
      max-width: 850px;
      margin: 0 auto;
      color: #e1d6c8;
      font-size: clamp(0.98rem, 1.28vw, 1.08rem);
      line-height: 1.55;
    }

    .hero-reviews {
      width: min(980px, 100%);
      margin: 12px auto 0;
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
      -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
      border-top: 1px solid rgba(255,255,255,0.08);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      padding: 8px 0;
    }

    .hero-reviews-track {
      display: flex;
      align-items: stretch;
      gap: 10px;
      width: max-content;
      animation: heroReviewsScroll var(--hero-reviews-duration, 220s) linear infinite;
      will-change: transform;
    }

    .hero-review-card {
      width: min(320px, 78vw);
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(8,8,8,0.7);
      padding: 10px 12px;
      display: grid;
      gap: 5px;
      text-align: left;
      flex: 0 0 auto;
    }

    .hero-review-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      font-size: 0.8rem;
      color: #f4dfbf;
      line-height: 1;
    }

    .hero-review-text {
      color: #e7dacc;
      font-size: 0.82rem;
      line-height: 1.35;
      min-height: 2.7em;
    }

    .hero-review-author {
      color: #c8b89f;
      font-size: 0.73rem;
      letter-spacing: 0.02em;
      font-weight: 700;
    }

    @keyframes heroReviewsScroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .hero-reviews:hover .hero-reviews-track {
      animation-play-state: paused;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 14px;
    }

    .hero-tags {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 10px;
      flex-wrap: wrap;
    }

    .tag {
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.04);
      color: #e7dccf;
      font-size: 0.86rem;
    }

    section { padding: clamp(72px, 8vw, 100px) 0; }
    main > section {
      content-visibility: auto;
      contain-intrinsic-size: 1px 900px;
    }
    section[id] { scroll-margin-top: 100px; }

    .section-head { margin-bottom: 28px; }
    .section-head span {
      display: inline-block;
      color: var(--gold-2);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 0.76rem;
      margin-bottom: 12px;
    }
    .section-head h2 {
      font-size: clamp(1.9rem, 4vw, 3.2rem);
      line-height: 1;
      margin-bottom: 14px;
    }
    .section-head p { color: var(--muted); max-width: 820px; line-height: 1.72; }

    .google-reviews-section {
      padding-top: clamp(60px, 6vw, 84px);
      padding-bottom: clamp(64px, 7vw, 94px);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
        radial-gradient(circle at 12% 0%, rgba(200,156,90,0.15), rgba(200,156,90,0));
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .google-summary {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 20px;
      align-items: center;
      padding: 20px;
      border-radius: 24px;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
      box-shadow: var(--shadow);
      margin-bottom: 18px;
    }

    .google-rating-block {
      display: flex;
      align-items: baseline;
      gap: 14px;
      flex-wrap: wrap;
    }

    .google-rating-value {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      line-height: 1;
      color: #fff7ea;
      letter-spacing: -0.03em;
    }

    .google-rating-stars {
      color: #ffd17c;
      font-size: 1.35rem;
      letter-spacing: 0.04em;
      line-height: 1;
      transform: translateY(-2px);
    }

    .google-rating-count {
      color: #e7dccf;
      font-size: 1rem;
      margin: 0;
    }

    .google-rating-count strong {
      color: #fff7ea;
      font-size: 1.08em;
    }

    .google-rating-meta {
      display: grid;
      gap: 10px;
      justify-items: end;
      text-align: right;
    }

    .google-rating-meta p {
      color: #d9ccbb;
      font-size: 0.9rem;
    }

    .google-reviews-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .google-review-card {
      border: 1px solid var(--line);
      border-radius: 20px;
      background: rgba(14,14,14,0.92);
      padding: 16px;
      display: grid;
      gap: 10px;
      min-height: 220px;
      box-shadow: var(--shadow);
    }

    .google-review-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .google-review-top strong {
      font-size: 0.94rem;
      line-height: 1.2;
      color: #fff0dd;
    }

    .google-review-stars {
      color: #ffca70;
      font-size: 0.9rem;
      letter-spacing: 0.08em;
      flex: 0 0 auto;
    }

    .google-review-text {
      color: #f1e5d6;
      line-height: 1.5;
      font-size: 0.92rem;
    }

    .google-review-time {
      margin-top: auto;
      color: #c0b29d;
      font-size: 0.82rem;
      letter-spacing: 0.02em;
    }

    .grid-3, .grid-4 {
      display: grid;
      gap: 18px;
    }
    .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

    .card {
      background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow);
    }

    .card h3 {
      font-size: 1.08rem;
      margin-bottom: 10px;
    }

    .card p { color: var(--muted); }

    .about {
      display: grid;
      grid-template-columns: 0.78fr 1.22fr;
      gap: 18px;
      align-items: start;
    }

    .about-visual {
      height: clamp(520px, 60vw, 720px);
      border-radius: 30px;
      overflow: hidden;
      border: 1px solid var(--line);
      background: #111;
      box-shadow: var(--shadow);
      position: relative;
    }

    .about-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.62));
      z-index: 1;
      pointer-events: none;
    }

    .about-visual picture,
    .about-visual video,
    .about-visual img {
      width: 100%;
      height: 100%;
      display: block;
    }

    .about-visual video,
    .about-visual img {
      object-fit: cover;
    }

    .about-video {
      object-position: left top;
      transform: scale(1.2) translateZ(0);
      transform-origin: top left;
      filter: blur(0.25px) saturate(1.05) contrast(1.03);
      backface-visibility: hidden;
      will-change: transform;
    }

    .about-badge {
      position: absolute;
      left: 18px;
      bottom: 18px;
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(9,9,9,0.76);
      border: 1px solid rgba(255,255,255,0.1);
      max-width: 280px;
      z-index: 2;
    }

    .about-badge strong {
      display: block;
      color: var(--gold-2);
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 8px;
    }

    .details {
      display: grid;
      gap: 12px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      align-content: start;
    }

    .detail {
      padding: 18px;
      border-radius: 22px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.04);
      height: fit-content;
    }

    .detail strong {
      display: block;
      color: var(--gold-2);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 0.88rem;
      margin-bottom: 8px;
    }

    .detail p { color: var(--text); }

    #o-nas .section-head {
      margin-bottom: 20px;
    }

    .menu-grid {
      display: grid;
      gap: 18px;
      grid-template-columns: 1fr;
      max-width: 920px;
      margin: 0 auto;
    }

    .menu-logo {
      width: min(180px, 42vw);
      margin: 0 auto 18px;
      opacity: 0.95;
      filter: drop-shadow(0 10px 24px rgba(0,0,0,0.42));
    }

    .pickup-banner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      border: 1px solid rgba(200,156,90,0.42);
      border-radius: 18px;
      padding: 12px 14px;
      margin: 2px auto 16px;
      max-width: 920px;
      background: linear-gradient(135deg, rgba(229,191,132,0.14), rgba(255,255,255,0.03));
    }

    .pickup-banner p {
      color: #f3e6d4;
      font-weight: 600;
      letter-spacing: 0.01em;
      display: grid;
      gap: 2px;
      line-height: 1.2;
    }

    .pickup-banner p strong {
      font-size: clamp(1.02rem, 1.3vw, 1.14rem);
      color: #fff0d5;
      font-weight: 800;
    }

    .pickup-banner p small {
      color: #d8c1a0;
      font-size: 0.82rem;
      letter-spacing: 0.02em;
    }

    .pickup-phone {
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 999px;
      padding: 10px 16px;
      color: #fff4df;
      font-weight: 800;
      letter-spacing: 0.06em;
      font-size: clamp(1rem, 1.4vw, 1.12rem);
      font-variant-numeric: tabular-nums;
      background: linear-gradient(180deg, rgba(229,191,132,0.22), rgba(200,156,90,0.11));
      transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
      white-space: nowrap;
      box-shadow: 0 10px 28px rgba(0,0,0,0.35);
    }

    .pickup-phone::before {
      content: "ODBIÓR TANIEJ";
      font-size: 0.62rem;
      font-weight: 900;
      letter-spacing: 0.12em;
      margin-right: 8px;
      opacity: 0.88;
      vertical-align: middle;
    }

    .pickup-phone:hover {
      border-color: rgba(229,191,132,0.7);
      background: rgba(229,191,132,0.16);
      transform: translateY(-1px);
    }

    .phone-cta {
      font-variant-numeric: tabular-nums;
      letter-spacing: 0.01em;
    }

    .menu-card {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      border: 0;
      background: transparent;
      box-shadow:
        -42px 0 54px -42px rgba(0,0,0,0.85),
        42px 0 54px -42px rgba(0,0,0,0.85);
      cursor: zoom-in;
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .menu-card:hover,
    .menu-card:focus-visible {
      transform: translateY(-2px);
      box-shadow:
        -56px 0 68px -48px rgba(0,0,0,0.95),
        56px 0 68px -48px rgba(0,0,0,0.95);
      outline: none;
    }

    .menu-card picture {
      display: block;
      border-radius: 24px;
      overflow: hidden;
      position: relative;
    }

    .menu-card img {
      width: 100%;
      height: auto;
      aspect-ratio: auto;
      object-fit: contain;
      display: block;
    }

    .menu-card picture::before,
    .menu-card picture::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 28px;
      pointer-events: none;
      z-index: 1;
    }

    .menu-card picture::before {
      left: 0;
      background: linear-gradient(90deg, rgba(0,0,0,0.42), rgba(0,0,0,0));
    }

    .menu-card picture::after {
      right: 0;
      background: linear-gradient(270deg, rgba(0,0,0,0.42), rgba(0,0,0,0));
    }

    .menu-card figcaption {
      padding: 14px 16px;
      color: #e7dccf;
      font-weight: 700;
      letter-spacing: 0.01em;
    }

    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .no-scroll { overflow: hidden; }
    .menu-open { overflow: hidden; }

    .lightbox {
      position: fixed;
      inset: 0;
      display: none;
      z-index: 120;
    }

    .lightbox.open { display: block; }

    .lightbox-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.78);
      backdrop-filter: blur(3px);
    }

    .lightbox-content {
      position: relative;
      width: min(1080px, calc(100% - 28px));
      margin: 18px auto;
      border-radius: 20px;
      background: #0f0f0f;
      border: 1px solid rgba(255,255,255,0.1);
      box-shadow: 0 30px 90px rgba(0,0,0,0.62);
      padding: 58px 12px 14px;
      max-height: calc(100svh - 36px);
      display: grid;
      grid-template-columns: auto 1fr auto;
      grid-template-rows: auto auto auto;
      align-items: center;
      gap: 10px;
      overflow: hidden;
    }

    #lightbox-image {
      grid-column: 2;
      grid-row: 1;
      max-width: 100%;
      max-height: calc(100svh - 180px);
      width: auto;
      height: auto;
      margin: 0 auto;
      border-radius: 14px;
      box-shadow:
        -40px 0 45px -40px rgba(0,0,0,0.92),
        40px 0 45px -40px rgba(0,0,0,0.92);
    }

    .lightbox-close {
      position: absolute;
      top: 10px;
      right: 10px;
      border: 1px solid rgba(255,255,255,0.2);
      background: rgba(255,255,255,0.06);
      color: #fff;
      border-radius: 999px;
      min-height: 40px;
      padding: 0 14px;
      cursor: pointer;
      font-weight: 700;
    }

    .lightbox-close:hover,
    .lightbox-close-bottom:hover,
    .lightbox-nav:hover {
      border-color: rgba(229,191,132,0.7);
      background: rgba(229,191,132,0.15);
    }

    .lightbox-nav {
      border: 1px solid rgba(255,255,255,0.22);
      background: rgba(255,255,255,0.06);
      color: #fff;
      width: 46px;
      height: 46px;
      border-radius: 999px;
      font-size: 1.8rem;
      line-height: 1;
      display: grid;
      place-items: center;
      cursor: pointer;
      user-select: none;
    }

    .lightbox-nav.prev { grid-column: 1; grid-row: 1; }
    .lightbox-nav.next { grid-column: 3; grid-row: 1; }

    .lightbox-footer {
      grid-column: 1 / -1;
      grid-row: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: #e7dccf;
      font-weight: 700;
    }

    .lightbox-close-bottom {
      border: 1px solid rgba(255,255,255,0.22);
      background: rgba(255,255,255,0.06);
      color: #fff;
      border-radius: 999px;
      min-height: 38px;
      padding: 0 14px;
      cursor: pointer;
      font-weight: 700;
    }

    .lightbox-hint {
      grid-column: 1 / -1;
      grid-row: 3;
      text-align: center;
      font-size: 0.88rem;
      color: #b8ac99;
      margin-bottom: 4px;
    }

    .social-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .social-card {
      min-height: 0;
      border-radius: 24px;
      border: 1px solid var(--line);
      background: rgba(16, 15, 14, 0.95);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .social-link {
      display: flex;
      flex-direction: column;
      height: 100%;
      color: inherit;
    }

    .social-post-head {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 10px;
      padding: 12px 14px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    }

    .social-avatar {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.2);
      background: rgba(255,255,255,0.06);
      display: grid;
      place-items: center;
      overflow: hidden;
      flex: 0 0 auto;
    }

    .social-avatar img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .social-meta {
      display: grid;
      line-height: 1.1;
      gap: 2px;
      margin-right: auto;
    }

    .social-meta strong {
      font-size: 0.88rem;
      color: #f2e8da;
      font-weight: 700;
    }

    .social-meta span {
      font-size: 0.77rem;
      color: #bfae96;
    }

    .social-platform {
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 800;
      line-height: 1;
      border-radius: 999px;
      padding: 7px 10px;
      border: 1px solid transparent;
    }

    .social-platform-ig {
      color: #ffe0c8;
      border-color: rgba(255, 146, 68, 0.5);
      background: rgba(255, 146, 68, 0.16);
    }

    .social-platform-fb {
      color: #d3e4ff;
      border-color: rgba(103, 164, 255, 0.55);
      background: rgba(103, 164, 255, 0.14);
    }

    .social-handle {
      color: #c8bbab;
      font-size: 0.86rem;
      font-weight: 600;
    }

    .social-media {
      display: block;
      width: 100%;
      aspect-ratio: 1414 / 2000;
      background: #0e0e0e;
      overflow: hidden;
    }

    .social-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transform: scale(1.001);
      transition: transform 260ms ease;
    }

    .social-body {
      padding: 13px 14px 15px;
      border-top: 1px solid rgba(255,255,255,0.06);
      background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.005));
    }

    .social-body h3 {
      font-size: 1.02rem;
      margin-bottom: 6px;
      line-height: 1.24;
    }

    .social-caption {
      color: #d9ccbb;
      font-size: 0.91rem;
      line-height: 1.4;
      margin-bottom: 9px;
    }

    .social-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 8px;
      font-size: 0.79rem;
      color: #c9baa7;
    }

    .social-open {
      color: #f2d2a3;
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    .social-stats {
      opacity: 0.92;
    }

    .social-card:hover .social-media img,
    .social-card:focus-within .social-media img {
      transform: scale(1.04);
    }

    .blog-list {
      display: grid;
      gap: 18px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-post {
      padding: 26px;
      border-radius: 24px;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
      box-shadow: var(--shadow);
      height: 100%;
    }

    .blog-post h3 {
      font-size: clamp(1.2rem, 2vw, 1.5rem);
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .blog-post p {
      color: var(--muted);
      margin-bottom: 12px;
    }

    .blog-post ul {
      margin-left: 18px;
      color: #e7dccf;
      display: grid;
      gap: 8px;
    }

    .blog-post li::marker { color: var(--gold-2); }

    .faq {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      border-radius: 20px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.04);
      overflow: hidden;
    }

    .faq-item button {
      width: 100%;
      background: transparent;
      color: var(--text);
      border: 0;
      text-align: left;
      padding: 18px 20px;
      font: inherit;
      font-weight: 700;
      cursor: pointer;
    }

    .faq-item .answer {
      display: none;
      padding: 0 20px 20px;
      color: var(--muted);
    }

    .faq-item.open .answer { display: block; }

    .cta-box {
      border-radius: 34px;
      padding: 38px;
      text-align: center;
      border: 1px solid rgba(200,156,90,0.18);
      background: linear-gradient(135deg, rgba(229,191,132,0.09), rgba(255,255,255,0.04));
      box-shadow: var(--shadow);
    }

    .cta-box h2 {
      font-size: clamp(2rem, 4vw, 3.3rem);
      line-height: 1;
      margin-bottom: 12px;
    }

    .cta-box p { color: var(--muted); max-width: 720px; margin: 0 auto 22px; }

    #wspolpraca {
      margin: 10px auto 18px;
      max-width: 720px;
    }

    #wspolpraca h3 {
      color: #fff7ea;
      font-size: clamp(1.1rem, 2.1vw, 1.4rem);
      margin-bottom: 8px;
    }

    #wspolpraca p {
      margin-bottom: 12px;
    }

    .inline-phone-link {
      color: #f2d2a3;
      font-weight: 800;
      letter-spacing: 0.03em;
      font-variant-numeric: tabular-nums;
      white-space: nowrap;
    }

    .inline-phone-link:hover {
      color: #ffe7c5;
    }

    footer {
      padding: 26px 0 40px;
      color: #b8ac99;
    }

    .mobile-sticky-cta {
      display: none;
    }

    .footer-row {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      border-top: 1px solid var(--line);
      padding-top: 24px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 700ms ease, transform 700ms ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (min-width: 1600px) {
      :root { --max: 1540px; }
      .hero-content { max-width: 1180px; }
      .hero-logo { width: min(168px, 14vw); }
      .menu-grid { max-width: 1040px; }
      .social-grid, .grid-4 { gap: 22px; }
      .google-reviews-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    }

    @media (min-width: 1920px) {
      :root { --max: 1680px; }
      .hero-content { max-width: 1260px; }
      h1 { font-size: clamp(3rem, 4.6vw, 5.2rem); }
      .lead { max-width: 940px; }
      .hero-kebab img { width: min(840px, 56vw); }
    }

    @media (min-width: 2560px) {
      :root { --max: 1860px; }
      .hero-content { max-width: 1420px; }
      h1 { font-size: clamp(3.2rem, 3.7vw, 5.5rem); }
      .lead { font-size: clamp(1.04rem, 1vw, 1.22rem); }
      .hero-logo { width: min(196px, 10vw); }
      .hero-kebab img { width: min(1020px, 52vw); }
    }

    @media (min-width: 3840px) {
      :root { --max: 2200px; }
      .hero-content { max-width: 1660px; }
      .hero-logo { width: min(220px, 9vw); }
      h1 { font-size: clamp(3.8rem, 3.1vw, 6rem); }
    }

    @media (max-width: 1300px) {
      .details { grid-template-columns: 1fr; }
      .blog-list { grid-template-columns: 1fr; }
      .google-reviews-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .social-grid, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .hero-kebab img { width: min(630px, 82vw); }
    }

    @media (max-width: 1180px) {
      .hero-side-word {
        width: clamp(88px, 12vw, 132px);
      }
      .hero-logo-combo {
        gap: clamp(6px, 1.2vw, 14px);
      }
      .nav-links {
        gap: 8px;
      }
      .nav-links a {
        font-size: 0.84rem;
      }
    }

    @media (max-width: 1040px) {
      .nav {
        min-height: 74px;
        padding: 10px 0;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
      }

      .nav-toggle { display: inline-flex; }

      .nav-links {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 6px);
        z-index: 55;
        padding: 12px;
        border: 1px solid rgba(255,255,255,0.14);
        border-radius: 16px;
        background: rgba(10,10,10,0.96);
        box-shadow: 0 24px 60px rgba(0,0,0,0.45);
        gap: 8px;
        flex-direction: column;
        align-items: stretch;
      }

      .nav-links.open { display: flex; }

      .pickup-nav-link {
        display: flex;
        min-height: 42px;
      }

      .nav-links a:not(.btn),
      .nav-links .btn {
        width: 100%;
        justify-content: center;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 12px;
        min-height: 42px;
        padding: 10px 12px;
        font-size: 0.95rem;
      }

      .nav-links a.is-active:not(.btn) {
        background: rgba(229,191,132,0.14);
        border-color: rgba(229,191,132,0.45);
        color: #fff5e4;
      }

      .hero { min-height: calc(100svh - 88px); }
      .hero-logo-combo { margin: 0 auto 24px; }
      .hero-side-word { display: none; }
      .hero-reviews { margin-top: 10px; }
      .hero-review-card { width: min(280px, 84vw); }
      .hero-tags { gap: 8px; }
      .tag { font-size: 0.84rem; padding: 7px 11px; }
    }

    @media (max-width: 960px) {
      .google-summary { grid-template-columns: 1fr; }
      .google-rating-meta { justify-items: start; text-align: left; }
      .google-reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .about, .grid-3, .blog-list { grid-template-columns: 1fr; }
      .details { grid-template-columns: 1fr; }
      .about-visual { height: clamp(320px, 72vw, 460px); }
      .container { width: min(calc(100% - 30px), var(--max)); }
    }

    @media (min-width: 768px) and (max-width: 900px) {
      .hero {
        min-height: calc(100svh - 92px);
      }
      .hero-content {
        max-width: 720px;
        padding: 6px 0 12px;
      }
      .hero-logo {
        width: min(132px, 24vw);
      }
      .eyebrow {
        font-size: 0.7rem;
        letter-spacing: 0.2em;
      }
      h1 {
        font-size: clamp(2.05rem, 5.8vw, 3rem);
      }
      .lead {
        max-width: 690px;
        font-size: 0.95rem;
      }
      .hero-reviews {
        margin-top: 8px;
      }
      .hero-review-card {
        width: min(260px, 72vw);
      }
      .hero-actions {
        width: min(100%, 560px);
        margin-left: auto;
        margin-right: auto;
      }
      .hero-tags {
        width: min(100%, 560px);
        margin-left: auto;
        margin-right: auto;
      }
      .about-visual {
        height: clamp(330px, 56vw, 430px);
      }
      .about-badge {
        max-width: 260px;
      }
    }

    @media (max-width: 860px) {
      .hero-content { max-width: 680px; }
      .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: min(100%, 520px);
        margin: 12px auto 0;
      }
      .hero-actions .btn {
        width: 100%;
        min-height: 48px;
      }
      .hero-tags {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(100%, 560px);
        margin: 10px auto 0;
        gap: 8px;
      }
      .tag { text-align: center; }
    }

    @media (max-width: 700px) {
      body {
        padding-bottom: calc(76px + env(safe-area-inset-bottom));
      }
      .container { width: min(calc(100% - 22px), var(--max)); }
      .nav-wrap {
        backdrop-filter: none;
        background: rgba(9,9,9,0.96);
      }
      .hero {
        min-height: calc(100svh - 120px);
        padding: 8px 0 18px;
      }
      .hero-logo-combo { margin: 0 auto 20px; }
      .hero-logo { width: min(116px, 34vw); margin: 0 auto; padding: 0; }
      .hero-content { padding: 4px 0 calc(78px + env(safe-area-inset-bottom)); }
      .eyebrow { margin: 10px 0 6px; font-size: 0.68rem; }
      h1 { line-height: 0.95; font-size: clamp(1.92rem, 8.2vw, 2.7rem); margin-bottom: 8px; }
      .hero-google-proof { margin-bottom: 8px; }
      .lead { font-size: 0.93rem; line-height: 1.45; }
      .hero-reviews { display: none; }
      .hero-actions { margin-top: 12px; gap: 8px; }
      section { padding: 68px 0; }
      .google-reviews-grid { grid-template-columns: 1fr; }
      .google-summary { padding: 16px; border-radius: 18px; }
      .google-rating-value { font-size: 2.2rem; }
      .google-rating-stars { font-size: 1.18rem; }
      .google-review-card { min-height: 0; border-radius: 16px; }
      .social-grid, .grid-4 { grid-template-columns: 1fr; }
      .cta-box { padding: 26px 18px; }
      .menu-logo { width: min(150px, 46vw); margin-bottom: 14px; }
      .pickup-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
      }
      .pickup-phone {
        text-align: center;
      }
      .menu-card { border-radius: 16px; }
      .menu-card picture { border-radius: 16px; }
      .menu-card picture::before,
      .menu-card picture::after { width: 14px; }
      .menu-card:hover,
      .menu-card:focus-visible { transform: none; }
      .hero-actions .btn { min-height: 46px; }
      .hero-actions .btn.secondary:not(.phone-cta) { display: none; }
      .cta-box .hero-actions .btn { width: 100%; }

      .hero-tags .tag:nth-child(n + 5) {
        display: none;
      }

      .lightbox-content {
        width: calc(100% - 16px);
        margin: 8px auto;
        border-radius: 16px;
        padding: 54px 8px 10px;
        gap: 8px;
      }

      #lightbox-image {
        max-height: calc(100svh - 205px);
        border-radius: 10px;
      }

      .lightbox-nav {
        width: 38px;
        height: 38px;
        font-size: 1.4rem;
      }

      .lightbox-close {
        min-height: 34px;
        padding: 0 12px;
        font-size: 0.88rem;
      }

      .lightbox-footer {
        gap: 8px;
        font-size: 0.95rem;
      }

      .mobile-sticky-cta {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: calc(10px + env(safe-area-inset-bottom));
        z-index: 90;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 10px 14px;
        min-height: 54px;
        border-radius: 14px;
        border: 1px solid rgba(229,191,132,0.56);
        background: linear-gradient(180deg, rgba(28,24,18,0.96), rgba(13,11,8,0.98));
        box-shadow: 0 14px 34px rgba(0,0,0,0.5);
        color: #fff6e8;
        opacity: 0;
        pointer-events: none;
        transform: translateY(130%);
        transition: transform 240ms ease, opacity 240ms ease;
      }

      .scrolled-for-sticky .mobile-sticky-cta {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .mobile-sticky-cta span {
        font-size: 0.82rem;
        letter-spacing: 0.02em;
        color: #f0dcc0;
      }

      .mobile-sticky-cta strong {
        font-size: 1rem;
        letter-spacing: 0.06em;
        font-variant-numeric: tabular-nums;
      }

      .menu-open .mobile-sticky-cta,
      .no-scroll .mobile-sticky-cta {
        opacity: 0;
        pointer-events: none;
        transform: translateY(120%);
      }
    }

    @media (max-width: 480px) {
      .nav-links a:not(.btn) { font-size: 0.84rem; padding: 7px 11px; }
      .brand { font-size: 0.86rem; gap: 10px; }
      .brand-mark { width: 40px; height: 40px; font-size: 0.84rem; }
      .brand-mark img { width: 100%; height: 100%; }
      .hero-tags {
        grid-template-columns: 1fr;
        max-width: 360px;
      }
      .section-head h2 { font-size: clamp(1.58rem, 8vw, 2.12rem); }
      .blog-post, .card, .detail { padding: 18px; border-radius: 18px; }
      .faq-item button { padding: 16px 16px; }
      .faq-item .answer { padding: 0 16px 16px; }
      .footer-row { font-size: 0.9rem; }
      .lightbox-hint { font-size: 0.82rem; }
    }

    @media (max-width: 390px) {
      .container { width: min(calc(100% - 18px), var(--max)); }
      .hero-logo { width: min(104px, 32vw); }
      .eyebrow { letter-spacing: 0.14em; font-size: 0.64rem; }
      h1 { font-size: clamp(1.72rem, 9vw, 2.3rem); }
      .lead { font-size: 0.88rem; line-height: 1.4; }
      .hero-review-card { width: min(230px, 90vw); }
      .about-visual { min-height: 300px; }
    }

    @media (max-height: 520px) and (orientation: landscape) and (max-width: 1040px) {
      .hero {
        min-height: calc(100svh - 88px);
        padding: 12px 0 20px;
      }
      .hero-reviews { display: none; }
      .hero-tags { margin-top: 8px; }
    }

    @media (hover: none) and (pointer: coarse) {
      .btn:hover,
      .menu-card:hover,
      .social-card:hover {
        transform: none;
      }
      .social-card:hover .social-media img,
      .social-card:focus-within .social-media img {
        transform: none;
      }
    }

    @media (prefers-reduced-data: reduce) {
      .hero-glow,
      .hero-kebab {
        display: none;
      }
      .hero::before { transform: none; }
      .about-visual {
        background:
          #111
          url('assets/tlo-czarny-wol-hero.webp') center / cover no-repeat,
          #111
          url('assets/tlo-czarny-wol.jpg') center / cover no-repeat;
      }
      .about-video { display: none; }
      .hero-reviews-track {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero::before {
        animation: none;
        transform: scale(1.06);
      }
      .hero-reviews-track {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
      }
    }
