:root {
    --forest: #2d4a3e;
    --forest-deep: #1f3329;
    --forest-soft: #4a6b5a;
    --navy: #1a2942;
    --navy-soft: #2a3f5f;
    --sand: #d9c5a0;
    --sand-warm: #e8d6b3;
    --sand-light: #f4ead5;
    --cream: #faf6ed;
    --white: #ffffff;
    --text: #1f2826;
    --text-muted: #5a6b66;
    --line: #e8e0cf;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  .logo-mark-svg { width: 100%; height: 100%; }

  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(250, 246, 237, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 74, 62, 0.08);
  }
  .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
  }
  .logo-mark {
    width: 44px; height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .logo-text { display: flex; flex-direction: column; line-height: 1.1; }
  .logo-name { font-size: 16px; font-weight: 700; color: var(--forest-deep); letter-spacing: -0.01em; }
  .logo-sub { font-size: 10px; font-weight: 500; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; margin-top: 2px; }
  .nav-menu { display: flex; gap: 28px; list-style: none; }
  .nav-menu a { text-decoration: none; color: var(--text); font-size: 14px; font-weight: 500; transition: color 0.2s ease; }
  .nav-menu a:hover { color: var(--forest); }
  .nav-cta {
    background: var(--forest);
    color: var(--cream);
    padding: 12px 22px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  .nav-cta:hover { background: var(--forest-deep); transform: translateY(-1px); }

  .hero {
    padding: 140px 40px 80px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--sand-light) 100%);
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: 100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(217, 197, 160, 0.4) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
    position: relative;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(45, 74, 62, 0.08);
    color: var(--forest);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 28px;
  }
  .hero-eyebrow-dot {
    width: 6px; height: 6px;
    background: var(--forest);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
  }
  .hero h1 {
    font-family: 'Lora', serif;
    font-size: clamp(40px, 5.2vw, 68px);
    font-weight: 500;
    line-height: 1.08;
    color: var(--forest-deep);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
  }
  .hero h1 em { font-style: italic; color: var(--forest); }
  .hero-lead {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 540px;
  }
  .hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
  .btn-primary {
    background: var(--forest);
    color: var(--cream);
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .btn-primary:hover {
    background: var(--forest-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -8px rgba(45, 74, 62, 0.4);
  }
  .btn-primary svg { transition: transform 0.3s ease; }
  .btn-primary:hover svg { transform: translateX(4px); }
  .btn-ghost {
    background: transparent;
    color: var(--forest-deep);
    padding: 16px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border: 1.5px solid var(--forest-deep);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
  }
  .btn-ghost:hover { background: var(--forest-deep); color: var(--cream); }
  .hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
  }
  .hero-trust-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-deep);
    flex-shrink: 0;
  }
  .hero-trust strong { color: var(--forest-deep); font-weight: 600; }

  .hero-visual {
    position: relative;
    display: block;
    aspect-ratio: 4/5;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 80px -30px rgba(45, 74, 62, 0.4);
    text-decoration: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  a.hero-visual:hover {
    transform: translateY(-4px);
    box-shadow: 0 48px 90px -30px rgba(45, 74, 62, 0.5);
  }
  .hero-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  a.hero-visual:hover img { transform: scale(1.04); }
  .hero-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(20, 35, 28, 0.55) 78%, rgba(20, 35, 28, 0.92) 100%);
    pointer-events: none;
  }
  .hero-visual-tag {
    position: absolute;
    top: 24px; left: 24px;
    background: var(--cream);
    color: var(--forest-deep);
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .hero-visual-caption {
    position: absolute;
    bottom: 28px; left: 28px; right: 28px;
    color: #fff;
    z-index: 2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.7);
  }
  .hero-visual-caption h3 {
    font-family: 'Lora', serif;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
    color: #fff;
  }
  .hero-visual-caption p { font-size: 14px; color: #fff; opacity: 0.95; }

  .why { padding: 120px 40px; background: var(--cream); }
  .why-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
  .section-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .section-eyebrow::before, .section-eyebrow::after {
    content: '';
    width: 32px; height: 1px;
    background: var(--forest);
    opacity: 0.4;
  }
  .why h2 {
    font-family: 'Lora', serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--forest-deep);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
  }
  .why h2 em { font-style: italic; color: var(--forest); }
  .why-lead {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 80px;
  }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: left;
  }
  .why-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid var(--line);
    transition: all 0.3s ease;
  }
  .why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(45, 74, 62, 0.2);
    border-color: var(--forest-soft);
  }
  .why-card-icon {
    width: 56px; height: 56px;
    background: var(--sand-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest);
    margin-bottom: 24px;
  }
  .why-card h3 {
    font-family: 'Lora', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--forest-deep);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
  }
  .why-card p { font-size: 15px; line-height: 1.7; color: var(--text-muted); }

  .audience {
    padding: 120px 40px;
    background: var(--forest-deep);
    color: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .audience::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sand), transparent);
  }
  .audience-inner { max-width: 1280px; margin: 0 auto; }
  .audience-header { max-width: 720px; margin-bottom: 64px; }
  .audience .section-eyebrow { color: var(--sand); }
  .audience .section-eyebrow::before, .audience .section-eyebrow::after {
    background: var(--sand);
    opacity: 0.5;
  }
  .audience h2 {
    font-family: 'Lora', serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
  }
  .audience h2 em { font-style: italic; color: var(--sand); }
  .audience-lead { font-size: 18px; line-height: 1.7; color: rgba(250, 246, 237, 0.75); }
  .audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .aud-card {
    background: rgba(250, 246, 237, 0.04);
    border: 1px solid rgba(250, 246, 237, 0.12);
    padding: 36px;
    border-radius: 24px;
    transition: all 0.4s ease;
  }
  .aud-card:hover {
    background: rgba(250, 246, 237, 0.08);
    transform: translateY(-4px);
    border-color: var(--sand);
  }
  .aud-card-num {
    font-family: 'Lora', serif;
    font-size: 14px;
    font-style: italic;
    color: var(--sand);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .aud-card-num::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(217, 197, 160, 0.3);
  }
  .aud-card h3 {
    font-family: 'Lora', serif;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
  }
  .aud-card-quote {
    font-family: 'Lora', serif;
    font-size: 17px;
    font-style: italic;
    color: var(--sand);
    margin-bottom: 20px;
    padding-left: 14px;
    border-left: 2px solid var(--sand);
    line-height: 1.5;
  }
  .aud-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(250, 246, 237, 0.75);
    margin-bottom: 24px;
  }
  .aud-card-list { list-style: none; }
  .aud-card-list li {
    font-size: 14px;
    color: rgba(250, 246, 237, 0.85);
    padding: 8px 0;
    border-top: 1px solid rgba(250, 246, 237, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .aud-card-list li::before {
    content: '';
    width: 4px; height: 4px;
    background: var(--sand);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .outdoor { padding: 120px 40px; background: var(--sand-light); }
  .outdoor-inner { max-width: 1200px; margin: 0 auto; }
  .outdoor-header { text-align: center; margin-bottom: 64px; }
  .outdoor h2 {
    font-family: 'Lora', serif;
    font-size: clamp(32px, 3.8vw, 48px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--forest-deep);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
  }
  .outdoor h2 em { font-style: italic; color: var(--forest); }
  .outdoor-lead {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
  }
  .outdoor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .outdoor-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
  }
  .outdoor-card-num {
    font-family: 'Lora', serif;
    font-size: 36px;
    font-style: italic;
    color: var(--forest);
    margin-bottom: 12px;
    line-height: 1;
  }
  .outdoor-card h4 {
    font-family: 'Lora', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--forest-deep);
    margin-bottom: 8px;
  }
  .outdoor-card p { font-size: 13px; line-height: 1.6; color: var(--text-muted); }

  .products { padding: 120px 40px; background: var(--cream); }
  .products-inner { max-width: 1280px; margin: 0 auto; }
  .products-header { text-align: center; margin-bottom: 80px; }
  .products h2 {
    font-family: 'Lora', serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--forest-deep);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
  }
  .products h2 em { font-style: italic; color: var(--forest); }
  .products-lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
  }
  /* --- Siatka 4 kafli produktów --- */
  .product-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .product-tile {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }
  .product-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -24px rgba(45, 74, 62, 0.28);
    border-color: var(--forest-soft);
  }
  .product-tile-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--sand-light);
  }
  .product-tile-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  .product-tile:hover .product-tile-media img { transform: scale(1.05); }
  .product-tile-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 100px;
  }
  .product-tile-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 26px 24px 28px;
    flex: 1;
  }
  .product-tile-body h3 {
    font-family: 'Lora', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--forest-deep);
    letter-spacing: -0.01em;
  }
  .product-tile-body p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text-muted);
    flex: 1;
  }
  .product-tile-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--forest);
  }
  .product-tile:hover .product-tile-link { gap: 12px; }
  @media (max-width: 980px) {
    .product-tiles { grid-template-columns: 1fr 1fr; gap: 20px; }
  }
  @media (max-width: 560px) {
    .product-tiles { grid-template-columns: 1fr; }
  }
  .product-card {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
    background: var(--white);
    border-radius: 32px;
    padding: 48px;
    border: 1px solid var(--line);
  }
  .product-card.reverse { grid-template-columns: 1.1fr 1fr; }
  .product-card.reverse .product-visual { order: 2; }
  .product-card.reverse .product-info { order: 1; }
  .product-info-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sand-light);
    color: var(--forest-deep);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .product-info h3 {
    font-family: 'Lora', serif;
    font-size: 38px;
    font-weight: 500;
    color: var(--forest-deep);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }
  .product-tagline {
    font-family: 'Lora', serif;
    font-size: 19px;
    font-style: italic;
    color: var(--forest);
    margin-bottom: 24px;
  }
  .product-info p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 28px;
  }
  .product-features { list-style: none; margin-bottom: 32px; }
  .product-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text);
    border-top: 1px solid var(--line);
  }
  .product-features li:last-child { border-bottom: 1px solid var(--line); }
  .product-features-icon {
    width: 22px; height: 22px;
    background: var(--forest);
    color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .product-features-icon svg { width: 12px; height: 12px; }
  .product-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-product {
    background: var(--forest);
    color: var(--cream);
    padding: 14px 26px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-product:hover { background: var(--forest-deep); transform: translateY(-2px); }
  .btn-product-ghost {
    background: transparent;
    color: var(--forest-deep);
    padding: 14px 22px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1.5px solid var(--forest-deep);
    border-radius: 0;
  }
  .btn-product-ghost:hover { color: var(--forest); border-color: var(--forest); }

  .product-visual {
    position: relative;
    aspect-ratio: 1.05/1;
    border-radius: 24px;
    overflow: hidden;
    background: var(--sand-light);
    box-shadow: 0 20px 40px -20px rgba(45, 74, 62, 0.25);
  }
  .product-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .product-visual-tag {
    position: absolute;
    top: 20px; left: 20px;
    background: var(--cream);
    color: var(--forest-deep);
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 2;
  }

  /* ---- Przewodnik CTA (Nie wiesz, co wybrać) ---- */
  .guide-cta { padding: 80px 40px; background: var(--cream); }
  .guide-cta-wrap { max-width: 1100px; margin: 0 auto; }
  .guide-cta-card {
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--sand-warm) 100%);
    border-radius: 28px;
    padding: 56px 48px;
    text-align: center;
  }
  .guide-cta-text { max-width: 640px; margin: 0 auto; }
  .guide-cta-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--forest); margin-bottom: 16px; }
  .guide-cta-text h2 { font-family: 'Lora', serif; font-size: clamp(28px, 3.2vw, 40px); font-weight: 500; line-height: 1.15; color: var(--forest-deep); margin-bottom: 16px; letter-spacing: -0.02em; }
  .guide-cta-text h2 em { font-style: italic; color: var(--forest); }
  .guide-cta-text p { font-size: 16px; line-height: 1.7; color: var(--text-muted); margin-bottom: 28px; }
  .guide-cta-btn { background: var(--forest); color: var(--cream); padding: 16px 32px; border-radius: 100px; text-decoration: none; font-size: 15px; font-weight: 600; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 10px; }
  .guide-cta-btn:hover { background: var(--forest-deep); transform: translateY(-2px); }

  .process { padding: 120px 40px; background: var(--white); }
  .process-inner { max-width: 1100px; margin: 0 auto; }
  .process-header { text-align: center; margin-bottom: 64px; }
  .process h2 {
    font-family: 'Lora', serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--forest-deep);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
  }
  .process h2 em { font-style: italic; color: var(--forest); }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .process-step {
    background: var(--cream);
    padding: 32px 28px;
    border-radius: 20px;
    border: 1px solid var(--line);
  }
  .process-step-num {
    width: 44px; height: 44px;
    background: var(--forest);
    color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lora', serif;
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 20px;
  }
  .process-step h4 {
    font-family: 'Lora', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--forest-deep);
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .process-step p { font-size: 14px; line-height: 1.6; color: var(--text-muted); }

  .contact { padding: 120px 40px; background: var(--cream); }
  .contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
  }
  .contact-left h2 {
    font-family: 'Lora', serif;
    font-size: clamp(32px, 3.5vw, 46px);
    font-weight: 500;
    line-height: 1.15;
    color: var(--forest-deep);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
  }
  .contact-left h2 em { font-style: italic; color: var(--forest); }
  .contact-left > p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 40px;
  }
  .contact-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
  }
  .contact-option {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 18px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .contact-option:hover { border-color: var(--forest); background: var(--sand-light); }
  .contact-option-icon {
    width: 44px; height: 44px;
    background: var(--forest);
    color: var(--cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .contact-option-text { flex: 1; }
  .contact-option-text strong {
    display: block;
    color: var(--forest-deep);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
  }
  .contact-option-text span { color: var(--text-muted); font-size: 13px; }
  .contact-option-arrow { color: var(--forest); transition: transform 0.3s ease; }
  .contact-option:hover .contact-option-arrow { transform: translateX(4px); }
  .contact-trust {
    background: var(--forest-deep);
    color: var(--cream);
    padding: 28px;
    border-radius: 20px;
  }
  .contact-trust-quote {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 16px;
    color: var(--sand);
  }
  .contact-trust-meta { font-size: 13px; color: rgba(250, 246, 237, 0.7); }

  .contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--line);
  }
  .contact-form[hidden] { display: none; }
  /* ---- Podziękowanie po wysłaniu formularza ---- */
  .form-success {
    background: var(--white);
    padding: 48px 40px;
    border-radius: 24px;
    border: 1px solid var(--line);
    text-align: center;
  }
  .form-success[hidden] { display: none; }
  .form-success-icon {
    width: 72px; height: 72px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--forest);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
  }
  .form-success h3 {
    font-family: 'Lora', serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--forest-deep);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
  }
  .form-success p {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 420px;
    margin: 0 auto 10px;
  }
  .form-success-contact { font-size: 14px; }
  .form-success-contact a { color: var(--forest); font-weight: 600; text-decoration: none; }
  .form-success-contact a:hover { color: var(--gold); }
  .form-row { margin-bottom: 18px; }
  .form-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
  }
  .form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--forest-deep);
    margin-bottom: 6px;
  }
  .form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 13px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: var(--cream);
    border: 1.5px solid var(--line);
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--forest);
    background: var(--white);
  }
  .form-textarea { resize: vertical; min-height: 100px; }
  .form-radios {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .form-radio { position: relative; }
  .form-radio input { position: absolute; opacity: 0; }
  .form-radio label {
    display: block;
    padding: 12px 14px;
    background: var(--cream);
    border: 1.5px solid var(--line);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    transition: all 0.3s ease;
  }
  .form-radio input:checked + label {
    background: var(--forest);
    color: var(--cream);
    border-color: var(--forest);
  }
  .form-submit {
    width: 100%;
    background: var(--forest);
    color: var(--cream);
    padding: 18px;
    border: none;
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .form-submit:hover { background: var(--forest-deep); transform: translateY(-2px); }
  .form-note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 14px;
    line-height: 1.5;
  }

  .footer {
    padding: 64px 40px 32px;
    background: var(--forest-deep);
    color: rgba(250, 246, 237, 0.7);
  }
  .footer-inner { max-width: 1280px; margin: 0 auto; }
  .footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(250, 246, 237, 0.1);
  }
  .footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 20px;
    max-width: 320px;
  }
  .footer-col h5 {
    color: var(--cream);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    color: rgba(250, 246, 237, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
  }
  .footer-col a:hover { color: var(--sand); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
  }
  .footer-bottom a { color: rgba(250, 246, 237, 0.7); text-decoration: none; }
  .footer-bottom a:hover { color: var(--sand); }
  .footer-divider { color: rgba(250, 246, 237, 0.3); }

  @media (max-width: 980px) {
    .hero-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero { padding: 110px 24px 60px; }
    .why, .audience, .outdoor, .products, .process, .contact { padding: 80px 24px; }
    .why-grid, .audience-grid { grid-template-columns: 1fr; gap: 16px; }
    .outdoor-grid { grid-template-columns: 1fr 1fr; }
    .product-card, .product-card.reverse { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
    .product-card.reverse .product-visual { order: -1; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .guide-cta { padding: 64px 24px; }
    .guide-cta-card { padding: 36px 28px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .nav-menu { display: none; }
    .nav-inner { padding: 14px 20px; }
    .footer { padding: 48px 24px 24px; }
  }
  @media (max-width: 560px) {
    .process-steps, .outdoor-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .form-row-grid { grid-template-columns: 1fr; }
    .hero-cta-group { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-ghost { justify-content: center; }

    /* Karty: ikona po lewej, tekst po prawej (jak sekcja o pedagogach) */
    .why-card {
      display: grid;
      grid-template-columns: auto 1fr;
      column-gap: 18px;
      align-items: start;
      padding: 28px 24px;
    }
    .why-card-icon { margin-bottom: 0; grid-row: span 2; }
    .why-card h3, .why-card p, .why-card .why-card-badge { grid-column: 2; }
    .process-step {
      display: grid;
      grid-template-columns: auto 1fr;
      column-gap: 18px;
      align-items: start;
    }
    .process-step-num { margin-bottom: 0; grid-row: span 2; }
    .process-step h4, .process-step p { grid-column: 2; }
    .outdoor-card {
      display: grid;
      grid-template-columns: auto 1fr;
      column-gap: 18px;
      align-items: start;
      text-align: left;
    }
    .outdoor-card-num { margin-bottom: 0; grid-row: span 2; min-width: 44px; }
    .outdoor-card h4, .outdoor-card p { grid-column: 2; }
  }

  /* === LOGO — replaced with new lockup SVG === */
  .logo { display: flex; align-items: center; text-decoration: none; }
  .logo-img { height: 64px; width: auto; display: block; }
  .footer .logo-img { height: 80px; }
  @media (max-width: 980px) {
    .logo-img { height: 52px; }
  }
  @media (max-width: 560px) {
    .logo-img { height: 44px; }
    .footer .logo-img { height: 56px; }
  }
