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

  :root {
    --sand:   #E8DCC8;
    --ochre:  #C9933A;
    --rust:   #A04A2A;
    --moss:   #3A5A3C;
    --dark:   #1A1A16;
    --mid:    #2E2E28;
    --light:  #F4F0E6;
    --white:  #FDFAF4;
    --ink:    #0E0E0A;
    --muted:  #7A7268;
    --inoni:  #1D4A6B;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--dark);
    color: var(--light);
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.75;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(26,26,22,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,147,58,0.2);
    padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
  }

  .nav-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    color: var(--ochre);
    text-decoration: none;
  }
  .nav-logo span { color: var(--light); }

  nav ul {
    list-style: none;
    display: flex; gap: 2rem;
  }
  nav ul a {
    color: var(--sand);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.8;
    transition: opacity 0.2s, color 0.2s;
  }
  nav ul a:hover { opacity: 1; color: var(--ochre); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex; align-items: flex-end;
    position: relative;
    overflow: hidden;
    padding: 0 2rem 6rem;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background: 
      radial-gradient(ellipse 60% 40% at 70% 30%, rgba(58,90,60,0.35) 0%, transparent 70%),
      radial-gradient(ellipse 80% 60% at 20% 80%, rgba(160,74,42,0.2) 0%, transparent 60%),
      linear-gradient(165deg, #0E0E0A 0%, #1E2018 40%, #151510 100%);
  }

  .hero-grid {
    position: absolute; inset: 0;
    background-image: 
      linear-gradient(rgba(201,147,58,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,147,58,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  .hero-accent {
    position: absolute;
    top: 12%;
    right: 6%;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(201,147,58,0.12);
    border-radius: 50%;
    animation: rotate 40s linear infinite;
  }
  .hero-accent::after {
    content: '';
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(201,147,58,0.07);
    border-radius: 50%;
  }

  @keyframes rotate { to { transform: rotate(360deg); } }

  .hero-tag {
    position: absolute;
    top: 15%;
    right: 9%;
    text-align: center;
    z-index: 2;
  }
  .hero-tag-inner {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ochre);
    opacity: 0.7;
    line-height: 2;
  }

  .hero-content { position: relative; z-index: 2; max-width: 860px; }

  .hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ochre);
    margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 1rem;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px; height: 1px;
    background: var(--ochre);
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--ochre);
  }

  .hero-desc {
    font-size: 1.15rem;
    color: var(--sand);
    opacity: 0.85;
    max-width: 520px;
    margin-bottom: 3rem;
    line-height: 1.7;
  }

  .hero-cta {
    display: flex; gap: 1rem; flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--ochre);
    color: var(--dark);
    padding: 0.85rem 2.2rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover { background: #D9A348; transform: translateY(-2px); }

  .btn-outline {
    background: transparent;
    color: var(--sand);
    padding: 0.85rem 2.2rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(201,147,58,0.4);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-outline:hover { border-color: var(--ochre); color: var(--ochre); }

  .scroll-hint {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  .scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--ochre), transparent);
    animation: scrollLine 2s ease-in-out infinite;
  }
  @keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }

  /* SECTIONS */
  section { padding: 6rem 2rem; }

  .container { max-width: 1100px; margin: 0 auto; }

  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ochre);
    margin-bottom: 1rem;
    display: flex; align-items: center; gap: 1rem;
  }
  .section-label::after {
    content: '';
    flex: 1; max-width: 60px; height: 1px;
    background: var(--ochre); opacity: 0.5;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
  }
  .section-title em { font-style: italic; color: var(--ochre); }

  .section-intro {
    font-size: 1.05rem;
    color: var(--sand);
    opacity: 0.8;
    max-width: 640px;
    line-height: 1.8;
  }

  /* PAKOWANIE */
  #pakowanie { background: var(--mid); }

  .pack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2px;
    margin-top: 3.5rem;
  }

  .pack-card {
    background: var(--dark);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.25s;
  }
  .pack-card:hover { background: #222218; }
  .pack-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--ochre);
    transition: height 0.3s;
  }
  .pack-card:hover::before { height: 100%; }

  .pack-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    color: rgba(201,147,58,0.12);
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: color 0.25s;
  }
  .pack-card:hover .pack-num { color: rgba(201,147,58,0.25); }

  .pack-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 0.75rem;
  }

  .pack-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
  }

  .pack-card .tag {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.2rem 0.7rem;
    background: rgba(201,147,58,0.1);
    color: var(--ochre);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* CIEKAWOSTKI */
  #ciekawostki {
    background: var(--dark);
    position: relative;
  }
  #ciekawostki::before {
    content: '15';
    position: absolute;
    top: 4rem; right: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(6rem, 15vw, 14rem);
    color: rgba(201,147,58,0.04);
    line-height: 1;
    pointer-events: none;
  }

  .facts-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    margin-top: 3.5rem;
    background: rgba(201,147,58,0.08);
  }

  .fact-item {
    background: var(--dark);
    padding: 2rem 2.5rem;
    display: flex; gap: 1.5rem;
    transition: background 0.2s;
  }
  .fact-item:hover { background: var(--mid); }

  .fact-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--ochre);
    opacity: 0.5;
    min-width: 2.5rem;
    line-height: 1;
    padding-top: 0.2rem;
  }

  .fact-content h4 {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--sand);
    margin-bottom: 0.4rem;
    line-height: 1.4;
  }

  .fact-content p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.65;
  }

  /* IMPREZY */
  #imprezy { background: var(--mid); }

  .events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
  }

  .event-card {
    background: var(--dark);
    border: 1px solid rgba(201,147,58,0.1);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.2s;
  }
  .event-card:hover { border-color: rgba(201,147,58,0.4); transform: translateY(-4px); }

  .event-country {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ochre);
    margin-bottom: 0.5rem;
  }

  .event-card h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }

  .event-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 1rem;
  }

  .event-meta {
    display: flex; flex-wrap: wrap; gap: 0.75rem;
  }
  .event-badge {
    padding: 0.25rem 0.75rem;
    background: rgba(201,147,58,0.08);
    border: 1px solid rgba(201,147,58,0.2);
    color: var(--sand);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
  }
  .event-badge.hard { background: rgba(160,74,42,0.15); border-color: rgba(160,74,42,0.3); color: #D08060; }

  /* SPANIE */
  #spanie { background: var(--dark); }

  .sleep-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3.5rem;
  }

  .sleep-block {
    padding: 2.5rem;
    border: 1px solid rgba(201,147,58,0.1);
    position: relative;
  }
  .sleep-block::before {
    content: '';
    position: absolute;
    top: -1px; left: 2rem;
    width: 40px; height: 3px;
    background: var(--ochre);
  }

  .sleep-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .sleep-block h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 0.5rem;
  }
  .sleep-block .subtitle {
    font-size: 0.82rem;
    color: var(--ochre);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }

  .sleep-block ul {
    list-style: none;
    display: flex; flex-direction: column; gap: 0.75rem;
  }
  .sleep-block li {
    font-size: 0.9rem;
    color: var(--sand);
    opacity: 0.85;
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.6;
  }
  .sleep-block li::before {
    content: '→';
    position: absolute; left: 0;
    color: var(--ochre);
    font-size: 0.8rem;
  }

  .sleep-tip {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(201,147,58,0.06);
    border-left: 2px solid var(--ochre);
    font-size: 0.85rem;
    color: var(--sand);
    line-height: 1.65;
    font-style: italic;
  }

  /* ODZIEŻ */
  #odziez { background: var(--mid); }

  .clothing-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3.5rem;
  }

  .clothing-system {
    margin-top: 3.5rem;
  }
  .layer-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 0;
    margin-bottom: 2px;
  }
  .layer-num {
    background: var(--ochre);
    color: var(--dark);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    padding: 1.5rem;
    text-align: center;
  }
  .layer-num span:first-child {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1;
  }
  .layer-num span:last-child {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.25rem;
    opacity: 0.7;
  }
  .layer-content {
    background: var(--dark);
    padding: 1.5rem 2rem;
  }
  .layer-content h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 0.4rem;
  }
  .layer-content p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
  }

  .clothing-checklist {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2px;
  }
  .checklist-group {
    background: var(--dark);
    padding: 1.75rem;
  }
  .checklist-group h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ochre);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(201,147,58,0.15);
  }
  .checklist-group ul { list-style: none; }
  .checklist-group li {
    font-size: 0.85rem;
    color: var(--sand);
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    display: flex; align-items: center; gap: 0.5rem;
  }
  .checklist-group li::before {
    content: '✓';
    color: var(--moss);
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
  }

  /* INONI */
  #inoni {
    background: var(--inoni);
    position: relative;
    overflow: hidden;
  }
  #inoni::before {
    content: '';
    position: absolute; inset: 0;
    background: 
      radial-gradient(ellipse 50% 70% at 0% 50%, rgba(0,0,0,0.4) 0%, transparent 60%),
      radial-gradient(ellipse 40% 60% at 100% 30%, rgba(29,74,107,0.6) 0%, transparent 60%);
  }
  .inoni-grid-bg {
    position: absolute; inset: 0;
    background-image: 
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
  }

  .inoni-inner {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .inoni-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
  }

  .inoni-inner h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #fff;
    line-height: 1.05;
    margin-bottom: 1.5rem;
  }
  .inoni-inner h2 em {
    font-style: italic;
    color: #A8D4F0;
  }

  .inoni-inner p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
  }

  .inoni-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .inoni-feat {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem;
    transition: background 0.2s;
  }
  .inoni-feat:hover { background: rgba(255,255,255,0.12); }

  .inoni-feat h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #A8D4F0;
    margin-bottom: 0.4rem;
  }
  .inoni-feat p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
    margin: 0;
  }

  .inoni-cta-block {
    display: flex; flex-direction: column; align-items: flex-start; gap: 1rem;
    margin-top: 2rem;
  }

  .btn-inoni {
    background: #fff;
    color: var(--inoni);
    padding: 1rem 2.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-inoni:hover { background: #A8D4F0; transform: translateY(-2px); }

  .inoni-trust {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
  }

  .inoni-visual {
    display: flex; flex-direction: column; gap: 1px;
  }

  .inoni-product-row {
    background: rgba(255,255,255,0.07);
    padding: 1.25rem 1.75rem;
    display: flex; justify-content: space-between; align-items: center;
    border: 1px solid rgba(255,255,255,0.06);
    transition: background 0.2s;
    cursor: default;
  }
  .inoni-product-row:hover { background: rgba(255,255,255,0.12); }

  .inoni-product-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
  }
  .inoni-product-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    margin-top: 0.15rem;
  }
  .inoni-product-tag {
    padding: 0.2rem 0.7rem;
    background: rgba(168,212,240,0.2);
    color: #A8D4F0;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .inoni-product-row.featured {
    background: rgba(168,212,240,0.1);
    border-color: rgba(168,212,240,0.2);
  }

  /* FOOTER */
  footer {
    background: var(--ink);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(201,147,58,0.15);
  }
  .footer-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--ochre);
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
  }
  .footer-logo span { color: var(--muted); }
  footer p {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
  }
  footer a {
    color: var(--ochre);
    text-decoration: none;
  }
  footer a:hover { text-decoration: underline; }

  /* DIVIDER */
  .divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,147,58,0.3), transparent);
    margin: 0;
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav ul { display: none; }
    .sleep-grid, .clothing-intro, .inoni-inner { grid-template-columns: 1fr; gap: 2rem; }
    .facts-layout { grid-template-columns: 1fr; }
    .layer-row { grid-template-columns: 80px 1fr; }
  }
  @media (max-width: 600px) {
    section { padding: 4rem 1.25rem; }
    nav { padding: 0 1.25rem; }
    .hero { padding: 0 1.25rem 4rem; }
    .pack-grid { grid-template-columns: 1fr; }
    .inoni-features { grid-template-columns: 1fr; }
  }

  /* ANIMATIONS */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s, transform 0.6s; }
  .reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════
   HERO — WIDEO W TLE
   ══════════════════════════════════════════════════════ */

.hero--video {
  /* Gdy jest wideo: ciemne tło jako fallback podczas ładowania */
  background: #0A0A08;
}

/* Kontener wideo — rozciąga się za całym hero */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

/* Sam element video — cover jak background-size: cover */
.hero-video-el {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  /* Lekkie rozmycie opcjonalne — usuń jeśli chcesz ostre wideo */
  /* filter: blur(1px) scale(1.02); */
}

/* Ciemna półprzezroczysta nakładka — wartość opacity sterowana z Customizera */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: #0A0A08;
  /* opacity ustawiana inline z PHP na podstawie ustawień Customizera */
  pointer-events: none;
}

/* Winietka na krawędziach — delikatna, nie zasłania środka */
.hero-video-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 100% 100% at 50% 50%,
    transparent 40%,
    rgba(0,0,0,0.55) 100%
  );
  pointer-events: none;
}

/* Gdy wideo — wyłącz stare tło gradientowe */
.hero--video .hero-bg,
.hero--video .hero-grid {
  display: none;
}

/* Wszystkie elementy hero muszą być nad wideo (z-index > 0) */
.hero--video .hero-accent,
.hero--video .hero-tag,
.hero--video .hero-content,
.hero--video .scroll-hint {
  position: relative;
  z-index: 2;
}

/* Na mobile: wideo wyłączone — przeglądarka mobilna blokuje autoplay z dźwiękiem,
   ale "muted" powinno działać; na bardzo słabych urządzeniach możemy wyłączyć */
@media (max-width: 600px) {
  .hero-video-el {
    /* na małych ekranach upewnij się że wideo jest naprawdę duże */
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Animacja: wideo pojawia się płynnie po załadowaniu */
.hero-video-el {
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-video-el.loaded {
  opacity: 1;
}

/* ══════════════════════════════════════════════════════
   LOGO OŁÓWKOWE
   ══════════════════════════════════════════════════════ */
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  line-height: 1;
}
.logo-svg {
  height: 42px;
  width: auto;
  display: block;
  /* Lekkie drżenie przy hover — efekt ołówka */
  transition: transform 0.3s ease, filter 0.3s ease;
}
.nav-logo:hover .logo-svg {
  transform: rotate(-0.8deg) translateY(-1px);
  filter: brightness(1.15);
}

/* ══════════════════════════════════════════════════════
   PODSTRONA ODZIEŻ
   ══════════════════════════════════════════════════════ */
.odziez-hero {
  background: linear-gradient(150deg, #1a1a16 0%, #1e2218 50%, #151510 100%);
  padding: 10rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.odziez-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,147,58,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,147,58,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.odziez-hero .container { position: relative; z-index: 2; }

.weather-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.weather-card {
  border: 1px solid rgba(201,147,58,0.12);
  background: var(--dark);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.2s;
}
.weather-card:hover { border-color: rgba(201,147,58,0.35); transform: translateY(-3px); }

.weather-card-header {
  padding: 1.5rem 2rem 1rem;
  display: flex; align-items: flex-start; gap: 1rem;
  border-bottom: 1px solid rgba(201,147,58,0.08);
}
.weather-icon { font-size: 2.2rem; line-height: 1; flex-shrink: 0; }
.weather-temp {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--ochre);
  line-height: 1;
}
.weather-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.weather-card-body { padding: 1.25rem 2rem 1.75rem; }
.weather-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.weather-layers { display: flex; flex-direction: column; gap: 0.6rem; }
.layer-pill {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.85rem; color: var(--sand); line-height: 1.55;
}
.layer-pill .lnum {
  background: rgba(201,147,58,0.15);
  color: var(--ochre);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.inoni-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: #A8D4F0;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.inoni-link:hover { opacity: 1; }

/* Listy pakowania */
.pack-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 3rem;
  background: rgba(201,147,58,0.06);
}
.pack-col {
  background: var(--dark);
  padding: 2rem 2.5rem;
}
.pack-col-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201,147,58,0.12);
}
.pack-col-days {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--ochre);
  line-height: 1;
}
.pack-col-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  line-height: 1.5;
}

.pack-group { margin-bottom: 1.5rem; }
.pack-group-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 0.6rem;
  opacity: 0.8;
}
.pack-group ul { list-style: none; }
.pack-group li {
  font-size: 0.85rem;
  color: var(--sand);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: flex-start; gap: 0.5rem;
  line-height: 1.5;
}
.pack-group li::before {
  content: '✓';
  color: var(--moss);
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.pack-group li.extra::before { content: '+'; color: var(--ochre); }
.pack-group li.note {
  color: var(--muted);
  font-style: italic;
  font-size: 0.8rem;
  border: none;
}
.pack-group li.note::before { content: '→'; color: var(--muted); }

.tip-box {
  background: rgba(201,147,58,0.06);
  border-left: 3px solid var(--ochre);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--sand);
  line-height: 1.7;
  font-style: italic;
}
.tip-box strong { color: var(--ochre); font-style: normal; }

@media (max-width: 760px) {
  .pack-compare { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   NAWIGACJA — RESPONSYWNA
   ══════════════════════════════════════════════════════ */

/* ── Reset domyślnego stylu WP dla menu ── */
.nav-menu { list-style: none; display: flex; align-items: center; gap: 2rem; margin: 0; padding: 0; }
.nav-menu li { margin: 0; padding: 0; }
.nav-menu li a {
  color: var(--sand);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
  display: block;
  padding: 0.25rem 0;
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item > a,
.nav-menu li.current_page_item > a {
  opacity: 1;
  color: var(--ochre);
}
/* Przycisk CTA w menu (ostatnia pozycja) */
.nav-menu li a.nav-cta,
.nav-menu li:last-child > a {
  background: rgba(201,147,58,0.15);
  border: 1px solid rgba(201,147,58,0.3);
  color: var(--ochre);
  padding: 0.4rem 1rem;
  opacity: 1;
}
.nav-menu li a.nav-cta:hover,
.nav-menu li:last-child > a:hover {
  background: rgba(201,147,58,0.28);
}

/* ── Dropdown / Sub-menu ── */
.nav-menu li.menu-item-has-children {
  position: relative;
}
.nav-menu li.menu-item-has-children > a::after {
  content: ' ▾';
  font-size: 0.65em;
  opacity: 0.7;
  margin-left: 2px;
}
/* Hidden by default */
.nav-menu ul.sub-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #111111;
  border: 1px solid rgba(201,147,58,0.3);
  min-width: 190px;
  padding: 0.5rem 0;
  z-index: 9999;
  gap: 0;
  box-shadow: 0 12px 32px rgba(0,0,0,0.7);
  /* Bridge: transparent padding-top prevents hover gap */
  margin-top: 0;
  border-top: 3px solid transparent;
}
/* Show on hover — use padding inside parent to create bridge */
.nav-menu li.menu-item-has-children > a {
  padding-bottom: 1rem;
  margin-bottom: -0.75rem;
}
.nav-menu li.menu-item-has-children:hover > ul.sub-menu,
.nav-menu li.menu-item-has-children:focus-within > ul.sub-menu {
  display: flex;
}
.nav-menu ul.sub-menu li {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu ul.sub-menu li a {
  display: block;
  padding: 0.6rem 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.85;
  color: var(--sand);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, opacity 0.15s;
  /* Override last-child CTA rule */
  background: transparent !important;
  border: none !important;
}
.nav-menu ul.sub-menu li a:hover {
  opacity: 1;
  color: var(--ochre) !important;
  background: rgba(201,147,58,0.1) !important;
}

/* ── Logo z obrazka ── */
.logo-image {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-logo:hover .logo-image {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ── Hamburger ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid rgba(201,147,58,0.3);
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.nav-hamburger:hover { border-color: var(--ochre); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--sand);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
/* Animacja X przy otwartym menu */
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Overlay (ciemne tło pod menu mobile) ── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 98;
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-overlay.is-visible {
  display: block;
  opacity: 1;
}

/* ══════════════════════════════════════════════════════
   RESPONSYWNOŚĆ — MOBILE
   ══════════════════════════════════════════════════════ */
@media (max-width: 900px) {

  /* Pokaż hamburger */
  .nav-hamburger { display: flex; }

  /* Menu chowane – wyjeżdża z prawej strony */
  .nav-menu-wrap {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--mid);
    border-left: 1px solid rgba(201,147,58,0.15);
    z-index: 99;
    padding: 80px 2rem 2rem;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -8px 0 32px rgba(0,0,0,0.4);
  }
  .nav-menu-wrap.is-open { right: 0; }

  /* Menu pionowe */
  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  .nav-menu li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-menu li:last-child { border-bottom: none; }
  .nav-menu li a {
    font-size: 1rem;
    letter-spacing: 0.08em;
    padding: 1rem 0.25rem;
    opacity: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .nav-menu li a::before { content: '→'; color: var(--ochre); opacity: 0; transition: opacity 0.2s; font-size: 0.8rem; }
  .nav-menu li a:hover::before,
  .nav-menu li.current-menu-item > a::before { opacity: 1; }
  .nav-menu li a.nav-cta,
  .nav-menu li:last-child > a {
    background: rgba(201,147,58,0.12);
    border: 1px solid rgba(201,147,58,0.25);
    padding: 0.75rem 1rem;
    margin-top: 1rem;
    justify-content: center;
  }

  /* Zamknij (×) widoczny w prawym górnym rogu panelu */
  .nav-menu-wrap::before {
    content: '×';
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-size: 1.8rem;
    color: var(--muted);
    cursor: pointer;
    line-height: 1;
    pointer-events: none; /* zamykanie obsługuje JS przez overlay i hamburger */
  }
}

/* ══════════════════════════════════════════════════════
   WORDPRESS ADMIN BAR — fix dla zalogowanych
   ══════════════════════════════════════════════════════ */
body.admin-bar #szuter-nav {
  top: 32px !important;
}
body.admin-bar .nav-menu-wrap {
  top: 32px !important;
}
@media screen and (max-width: 782px) {
  body.admin-bar #szuter-nav {
    top: 46px !important;
  }
  body.admin-bar .nav-menu-wrap {
    top: 46px !important;
  }
}

/* ══════════════════════════════════════════════════════
   MOBILE — kompleksowe poprawki (max-width: 480px)
   ══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Nav */
  nav { padding: 0 1rem; height: 54px; }
  .logo-svg { height: 30px; width: auto; }
  .logo-image { height: 28px; width: auto; }

  /* Hero */
  .hero-content { padding: 0 1rem; }
  .hero-content h1 { font-size: clamp(2.2rem, 11vw, 3.5rem); line-height: 1.1; }
  .hero-desc { font-size: 0.95rem; }
  .hero-cta { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
  .hero-cta a { width: 100%; text-align: center; font-size: 0.8rem; padding: 0.85rem 1rem; }

  /* Sekcje ogólne */
  section { padding: 3rem 1rem; }
  .container { padding: 0 1rem; }
  .section-title { font-size: clamp(1.8rem, 8vw, 2.6rem); }

  /* Pakowanie */
  .pack-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Imprezy */
  .events-grid { grid-template-columns: 1fr; gap: 1rem; }
  .event-card { padding: 1.25rem; }

  /* Inoni */
  .inoni-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .inoni-visual { display: none; }
  .inoni-product-row { flex-direction: row; flex-wrap: wrap; }
  .inoni-cta-block { margin-top: 1rem; }
  .btn-inoni { width: 100%; text-align: center; font-size: 0.85rem; padding: 1rem; }

  /* Spanie i odzież */
  .sleep-grid { grid-template-columns: 1fr; }
  .clothing-intro { grid-template-columns: 1fr; }

  /* Ciekawostki */
  .facts-layout { grid-template-columns: 1fr; gap: 0; }
}
