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

    :root {
      --cream:     #FDF8F3;
      --sage:      #7B9E87;
      --sage-light:#EEF4F0;
      --terra:     #C4714A;
      --terra-light:#F7EDE6;
      --sand:      #E8D5B7;
      --sand-light:#FAF5EE;
      --charcoal:  #2C2C2C;
      --gray:      #6B6B6B;
      --gray-light:#F5F3F0;
      --white:     #fff;
      --serif: 'Cormorant Garamond', Georgia, serif;
      --sans:  'Inter', sans-serif;
      --radius: 20px;
    }

    html { scroll-behavior: smooth; }
    body { font-family: var(--sans); background: var(--cream); color: var(--charcoal); overflow-x: hidden; }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 48px;
      background: rgba(253,248,243,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .nav-brand { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--charcoal); letter-spacing: 0.3px; text-decoration: none; }
    .nav-brand span { color: var(--terra); }
    .nav-links { display: flex; gap: 32px; list-style: none; }
    .nav-links a { font-size: 14px; font-weight: 500; color: var(--gray); text-decoration: none; transition: color 150ms; }
    .nav-links a:hover { color: var(--charcoal); }
    .nav-cta {
      background: var(--terra); color: var(--white); font-family: var(--sans);
      font-size: 14px; font-weight: 600; padding: 10px 24px; border-radius: 100px;
      border: none; cursor: pointer; text-decoration: none; transition: opacity 150ms;
    }
    .nav-cta:hover { opacity: 0.85; }

    /* ── NAV DROPDOWN (Rekrutacja) ── */
    .nav-dropdown { position: relative; display: flex; align-items: center; }
    .nav-dropdown-toggle {
      font-size: 14px; font-weight: 500; color: var(--gray);
      cursor: pointer; display: flex; align-items: center; gap: 4px;
      transition: color 150ms; user-select: none;
    }
    .nav-dropdown-toggle::after {
      content: '▾'; font-size: 10px; transition: transform 150ms;
    }
    .nav-dropdown:hover .nav-dropdown-toggle,
    .nav-dropdown-toggle:focus { color: var(--charcoal); }
    .nav-dropdown:hover .nav-dropdown-toggle::after { transform: rotate(180deg); }
    .nav-dropdown-menu {
      position: absolute; top: 100%; left: 50%;
      transform: translateX(-50%) translateY(4px);
      background: var(--white); border-radius: 14px;
      box-shadow: 0 12px 32px rgba(0,0,0,0.12);
      list-style: none; min-width: 220px; padding: 8px;
      opacity: 0; visibility: hidden; pointer-events: none;
      transition: opacity 150ms, transform 150ms;
    }
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
      opacity: 1; visibility: visible; pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }
    .nav-dropdown-menu li a {
      display: block; padding: 10px 14px; border-radius: 8px;
      font-size: 14px; font-weight: 500; color: var(--charcoal);
      white-space: nowrap; text-decoration: none; transition: background 150ms, color 150ms;
    }
    .nav-dropdown-menu li a:hover { background: var(--gray-light); color: var(--terra); }

    /* ── NAV MOBILE DROPDOWN (Oferta) ── */
    .nav-mobile-dropdown { list-style: none; width: 100%; text-align: center; }
    .nav-mobile-dropdown-btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      background: none; border: none; cursor: pointer; padding: 16px 0;
      font-family: var(--serif); font-size: 32px; font-weight: 600;
      color: var(--charcoal); transition: color 150ms;
    }
    .nav-mobile-dropdown-btn:hover { color: var(--terra); }
    .nav-mobile-chevron { transition: transform 200ms ease; flex-shrink: 0; }
    .nav-mobile-dropdown[data-open="true"] .nav-mobile-chevron { transform: rotate(180deg); }
    .nav-mobile-dropdown[data-open="true"] .nav-mobile-dropdown-btn { color: var(--terra); }

    .nav-mobile-submenu {
      list-style: none; padding: 0; margin: 0;
      max-height: 0; overflow: hidden;
      transition: max-height 250ms ease;
    }
    .nav-mobile-dropdown[data-open="true"] .nav-mobile-submenu { max-height: 220px; }
    .nav-mobile-sublink {
      font-size: 20px !important; font-weight: 500 !important;
      padding: 10px 0 !important;
    }

    /* ── HERO ── */
    .hero {
      min-height: 100dvh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 0;
      padding-top: 80px;
      overflow: hidden;
    }
    .hero-left {
      padding: 80px 64px 80px 80px;
      display: flex; flex-direction: column; gap: 32px;
    }
    .hero-tag {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--terra-light); color: var(--terra);
      font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
      text-transform: uppercase; padding: 8px 16px; border-radius: 100px;
      width: fit-content;
    }
    .hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--terra); }
    .hero-h1 {
      font-family: var(--serif); font-size: clamp(48px, 5vw, 76px);
      font-weight: 600; line-height: 1.1; letter-spacing: -0.5px;
      color: var(--charcoal);
    }
    .hero-h1 em { font-style: italic; color: var(--terra); }
    .hero-desc {
      font-size: 18px; font-weight: 400; line-height: 1.7;
      color: var(--gray); max-width: 480px;
    }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-primary {
      background: var(--terra); color: var(--white); font-family: var(--sans);
      font-size: 16px; font-weight: 600; padding: 16px 36px; border-radius: 100px;
      border: none; cursor: pointer; text-decoration: none; display: inline-block;
      transition: transform 150ms, opacity 150ms;
    }
    .btn-primary:hover { transform: scale(1.02); opacity: 0.9; }
    .btn-outline {
      background: transparent; color: var(--charcoal); font-family: var(--sans);
      font-size: 16px; font-weight: 600; padding: 16px 36px; border-radius: 100px;
      border: 2px solid rgba(0,0,0,0.15); cursor: pointer; text-decoration: none;
      display: inline-block; transition: border-color 150ms, background 150ms;
    }
    .btn-outline:hover { border-color: var(--charcoal); background: rgba(0,0,0,0.04); }

    .hero-trust {
      display: flex; gap: 24px; flex-wrap: wrap;
    }
    .trust-item { font-size: 13px; color: var(--gray); display: flex; align-items: center; gap: 6px; }
    .trust-item::before { content: '✓'; color: var(--sage); font-weight: 700; }

    .hero-right {
      position: relative; height: 100vh;
      background: var(--sand-light);
      overflow: hidden;
    }
    .hero-img-grid {
      position: absolute; inset: 40px 40px 40px 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 12px;
      border-radius: var(--radius) 0 0 var(--radius);
      overflow: hidden;
    }
    .hero-img {
      background: var(--sand);
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .hero-img img { width: 100%; height: 100%; object-fit: cover; }
    .hero-img.tall { grid-row: span 2; }

    /* placeholder when no image */
    .img-placeholder {
      width: 100%; height: 100%;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 8px; color: rgba(0,0,0,0.25); font-size: 13px;
    }

    /* ── STRIP ── */
    .philosophy-strip {
      background: var(--charcoal); color: var(--white);
      padding: 48px 80px;
      display: flex; align-items: center; justify-content: space-between; gap: 48px;
    }
    .philosophy-quote {
      font-family: var(--serif); font-size: clamp(22px, 2.5vw, 32px);
      font-weight: 500; font-style: italic; line-height: 1.4;
      max-width: 640px;
    }
    .philosophy-quote em { color: var(--sand); font-style: normal; }
    .philosophy-meta { font-size: 13px; color: rgba(255,255,255,0.5); white-space: nowrap; }

    /* ── SECTIONS BASE ── */
    section { padding: 100px 80px; }
    .section-label {
      font-size: 12px; font-weight: 600; letter-spacing: 2px;
      text-transform: uppercase; color: var(--terra); margin-bottom: 16px;
    }
    .section-title {
      font-family: var(--serif); font-size: clamp(36px, 4vw, 56px);
      font-weight: 600; line-height: 1.15; letter-spacing: -0.5px;
      margin-bottom: 20px;
    }
    .section-title em { font-style: italic; color: var(--terra); }
    .section-body { font-size: 17px; color: var(--gray); line-height: 1.75; max-width: 560px; }

    /* ── PILLARS ── */
    .pillars-section { background: var(--white); }
    .pillars-header { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 64px; }
    .pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .pillar-card {
      border-radius: var(--radius); padding: 48px 36px;
      position: relative; overflow: hidden;
    }
    .pillar-card.p1 { background: var(--terra-light); }
    .pillar-card.p2 { background: var(--sage-light); }
    .pillar-card.p3 { background: var(--sand-light); }
    .pillar-card.p4 { background: var(--gray-light); }
    .pillar-num {
      font-family: var(--serif); font-size: 80px; font-weight: 600;
      line-height: 1; opacity: 0.12; position: absolute;
      top: 16px; right: 24px;
    }
    .pillar-icon { font-size: 32px; margin-bottom: 20px; }
    .pillar-card h3 { font-family: var(--serif); font-size: 28px; font-weight: 600; margin-bottom: 12px; }
    .pillar-card p { font-size: 15px; color: var(--gray); line-height: 1.65; }

    /* ── FEATURES ── */
    .features-section { background: var(--cream); }
    .features-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .features-visual {
      background: var(--sand-light); border-radius: var(--radius);
      height: 560px; position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .features-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
    .feature-badge {
      position: absolute; bottom: 32px; left: 32px;
      background: var(--white); border-radius: 16px; padding: 16px 20px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    }
    .feature-badge-num { font-family: var(--serif); font-size: 36px; font-weight: 700; color: var(--terra); line-height: 1; }
    .feature-badge-text { font-size: 13px; color: var(--gray); }
    .features-list { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
    .feature-item {
      display: flex; gap: 16px; align-items: flex-start;
      padding: 20px 24px; border-radius: 14px;
      background: var(--white); border: 1px solid rgba(0,0,0,0.05);
      transition: box-shadow 200ms;
    }
    .feature-item:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
    .feature-dot {
      width: 10px; height: 10px; border-radius: 50%;
      flex-shrink: 0; margin-top: 5px;
    }
    .feature-item h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
    .feature-item p { font-size: 14px; color: var(--gray); line-height: 1.55; }

    /* ── ACTIVITIES ── */
    .activities-section { background: var(--gray-light); }
    .activities-header { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 56px; }
    .activities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .activity-card {
      background: var(--white); border-radius: 16px; padding: 28px 24px;
      border: 1px solid rgba(0,0,0,0.05);
      transition: transform 200ms, box-shadow 200ms;
    }
    .activity-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.07); }
    .activity-tag {
      display: inline-block; font-size: 11px; font-weight: 600;
      letter-spacing: 1px; text-transform: uppercase;
      padding: 4px 10px; border-radius: 100px; margin-bottom: 14px;
    }
    .tag-included { background: var(--sage-light); color: var(--sage); }
    .tag-extra    { background: var(--terra-light); color: var(--terra); }
    .activity-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
    .activity-card p  { font-size: 14px; color: var(--gray); line-height: 1.5; }

    /* ── TEAM ── */
    .team-section { background: var(--white); }
    .team-header { margin-bottom: 56px; }
    .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .team-grid--wide { grid-template-columns: repeat(4, 1fr); }
    .team-row2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 75%; margin-top: 24px; }
    .team-card {
      border-radius: var(--radius); overflow: hidden;
      background: var(--cream); border: 1px solid rgba(0,0,0,0.05);
      transition: transform 200ms;
    }
    .team-card:hover { transform: translateY(-4px); }
    .team-photo {
      height: 220px; background: var(--sand);
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .team-photo img { width: 100%; height: 100%; object-fit: cover; }
    .team-info { padding: 20px; }
    .team-info h4 { font-family: var(--serif); font-size: 20px; font-weight: 600; margin-bottom: 4px; }
    .team-info .role { font-size: 12px; font-weight: 600; color: var(--terra); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
    .team-info p { font-size: 13px; color: var(--gray); line-height: 1.55; }

    /* ── TESTIMONIALS ── */
    .testimonials-section { background: var(--cream); }
    .testimonials-header { margin-bottom: 56px; }
    .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .testimonial-card {
      background: var(--white); border-radius: var(--radius);
      padding: 36px 32px; border: 1px solid rgba(0,0,0,0.05);
    }
    .testimonial-stars { color: var(--terra); font-size: 16px; margin-bottom: 16px; }
    .testimonial-text {
      font-family: var(--serif); font-size: 18px; font-weight: 500;
      line-height: 1.6; color: var(--charcoal); margin-bottom: 24px;
      font-style: italic;
    }
    .testimonial-author { display: flex; align-items: center; gap: 12px; }
    .author-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--sand); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--terra);
    }
    .author-name { font-size: 14px; font-weight: 600; }
    .author-meta { font-size: 12px; color: var(--gray); }

    /* ── FACEBOOK ── */
    .facebook-section {
      background: var(--white);
      padding: 100px 80px;
    }
    .facebook-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .facebook-left .section-body {
      max-width: 100%;
      margin-bottom: 32px;
    }
    .facebook-link-btn {
      display: inline-flex; align-items: center; gap: 10px;
      background: #1877F2; color: var(--white);
      font-family: var(--sans); font-size: 15px; font-weight: 600;
      padding: 14px 28px; border-radius: 100px; text-decoration: none;
      transition: opacity 150ms;
    }
    .facebook-link-btn:hover { opacity: 0.85; }
    .facebook-embed-wrap {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 8px 48px rgba(0,0,0,0.08);
      display: flex;
      justify-content: center;
    }
    .facebook-embed-wrap iframe {
      border: none;
      border-radius: var(--radius);
      max-width: 100%;
    }

    /* ── CONTACT / FORM ── */
    .contact-section {
      background: var(--charcoal); color: var(--white); padding: 100px 80px;
    }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .contact-left .section-title { color: var(--white); }
    .contact-left .section-label { color: var(--terra); }
    .contact-body { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 40px; }
    .contact-details { display: flex; flex-direction: column; gap: 16px; }
    .contact-detail {
      display: flex; gap: 14px; align-items: center;
      font-size: 15px; color: rgba(255,255,255,0.75);
    }
    .contact-detail svg { flex-shrink: 0; }
    .contact-detail strong { color: var(--white); font-weight: 600; }
    .contact-directions-btn {
      display: inline-flex; align-items: center; gap: 8px;
      margin-top: 48px;
      background: rgba(255,255,255,0.1); color: var(--white);
      font-family: var(--sans); font-size: 14px; font-weight: 600;
      padding: 12px 22px; border-radius: 100px; text-decoration: none;
      border: 1.5px solid rgba(255,255,255,0.2);
      transition: background 150ms, border-color 150ms;
      width: fit-content;
    }
    .contact-directions-btn:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.4); }

    .form-wrap {
      background: var(--white); border-radius: 24px; padding: 48px 40px;
      color: var(--charcoal);
    }
    .form-wrap h3, .rekr-form-wrap h3 {
      font-family: var(--serif); font-size: 28px; font-weight: 600;
      margin-bottom: 8px;
    }
    .form-wrap > p, .rekr-form-wrap > p { font-size: 14px; color: var(--gray); margin-bottom: 28px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
    .form-group label { font-size: 12px; font-weight: 600; letter-spacing: 0.3px; }
    .form-group label .req { color: var(--terra); }
    .form-group input, .form-group textarea, .form-group select {
      font-family: var(--sans); font-size: 15px; color: var(--charcoal);
      background: var(--gray-light); border: 1.5px solid rgba(0,0,0,0.08);
      border-radius: 12px; padding: 13px 16px; outline: none;
      transition: border-color 150ms; width: 100%; resize: none;
      -webkit-appearance: none;
    }
    .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
      border-color: var(--terra); background: var(--white);
    }
    .form-group input::placeholder, .form-group textarea::placeholder { color: #bbb; }
    .form-submit {
      width: 100%; background: var(--terra); color: var(--white);
      font-family: var(--sans); font-size: 16px; font-weight: 600;
      padding: 16px; border-radius: 100px; border: none; cursor: pointer;
      transition: opacity 150ms, transform 150ms; margin-top: 8px;
    }
    .form-submit:hover { opacity: 0.88; transform: scale(1.01); }
    .form-note { font-size: 12px; color: var(--gray); text-align: center; margin-top: 12px; line-height: 1.5; }

    /* ── MAP ── */
    .map-section {
      width: 100%;
      height: 480px;
    }
    .map-section iframe { width: 100%; height: 100%; border: 0; display: block; }

    /* ── FOOTER ── */
    footer {
      background: #1a1a1a; color: rgba(255,255,255,0.4);
      padding: 32px 80px; font-size: 13px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .footer-brand { font-family: var(--serif); font-size: 18px; color: var(--white); font-weight: 600; }
    .footer-brand span { color: var(--terra); }

    /* ── FADE IN ── */
    .fade-in { opacity: 0; transform: translateY(24px); transition: opacity 600ms ease, transform 600ms ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ── */
    /* ── HAMBURGER ── */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px; height: 40px;
      background: none; border: none; cursor: pointer;
      padding: 4px;
    }
    .nav-hamburger span {
      display: block; width: 24px; height: 2px;
      background: var(--charcoal); border-radius: 2px;
      transition: transform 300ms ease, opacity 300ms ease;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .nav-mobile-overlay {
      display: none;
      position: fixed; inset: 0; z-index: 99;
      background: rgba(253,248,243,0.98);
      backdrop-filter: blur(16px);
      flex-direction: column;
      align-items: center; justify-content: center;
      gap: 0;
    }
    .nav-mobile-overlay.open { display: flex; }
    .nav-mobile-overlay ul {
      list-style: none;
      display: flex; flex-direction: column;
      align-items: center; gap: 0;
      width: 100%;
    }
    .nav-mobile-overlay ul li a {
      display: block;
      font-family: var(--serif); font-size: 32px; font-weight: 600;
      color: var(--charcoal); text-decoration: none;
      padding: 16px 0; text-align: center;
      transition: color 150ms;
    }
    .nav-mobile-overlay ul li a:hover { color: var(--terra); }
    .nav-mobile-cta {
      margin-top: 32px;
      background: var(--terra); color: var(--white);
      font-size: 16px; font-weight: 600; padding: 14px 40px;
      border-radius: 100px; text-decoration: none;
    }

    @media (max-width: 1024px) {
      nav { padding: 16px 32px; }
      .nav-links { display: none; }
      .nav-cta { display: none; }
      .nav-hamburger { display: flex; }
      section { padding: 80px 32px; }
      .contact-section { padding: 80px 32px; }
      .philosophy-strip { padding: 48px 32px; flex-direction: column; gap: 24px; }
      .hero { grid-template-columns: 1fr; }
      .hero-left { padding: 60px 32px; }
      .hero-right { height: 400px; }
      .hero-img-grid { inset: 0; border-radius: 0; }
      .pillars-header, .features-layout, .activities-header, .contact-grid, .facebook-layout { grid-template-columns: 1fr; gap: 40px; }
      .map-section { height: 320px; }
      .pillars-grid { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: repeat(2, 1fr); max-width: 100% !important; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .activities-grid { grid-template-columns: repeat(2, 1fr); }
      footer { flex-direction: column; gap: 8px; text-align: center; padding: 24px 32px; }
    }
    @media (max-width: 600px) {
      .form-row { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: 1fr; }
      .activities-grid { grid-template-columns: 1fr; }
      .hero-actions { flex-direction: column; }
      .contact-section { padding: 64px 20px; }
    }
    @media (prefers-reduced-motion: reduce) {
      .fade-in { opacity: 1; transform: none; transition: none; }
    }
    /* ══════════════════════════════════════════════
       PAGE HERO (galeria, rekrutacja)
    ══════════════════════════════════════════════ */
    .page-hero {
      background: var(--sand-light);
      padding: 100px 80px 80px;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .page-hero-inner { max-width: 680px; }
    .page-hero .section-title { margin-bottom: 20px; }

    /* ══════════════════════════════════════════════
       GALERIA — sekcje
    ══════════════════════════════════════════════ */
    .gallery-section {
      padding: 80px 80px;
      scroll-margin-top: 160px;
    }

    .gallery-section-header {
      max-width: 680px;
      margin-bottom: 48px;
    }
    .gallery-section-header .section-title { margin-bottom: 12px; }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .gallery-item {
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .gallery-img-wrap {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      background: var(--sand);
      aspect-ratio: 4 / 3;
      cursor: pointer;
    }

    .gallery-img-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 400ms ease;
    }
    .gallery-img-wrap:hover img { transform: scale(1.04); }

    .gallery-overlay {
      position: absolute; inset: 0;
      background: rgba(44,44,44,0);
      display: flex; align-items: center; justify-content: center;
      transition: background 300ms;
    }
    .gallery-img-wrap:hover .gallery-overlay { background: rgba(44,44,44,0.18); }

    .gallery-zoom {
      font-size: 28px; color: var(--white);
      opacity: 0; transform: scale(0.8);
      transition: opacity 250ms, transform 250ms;
    }
    .gallery-img-wrap:hover .gallery-zoom { opacity: 1; transform: scale(1); }

    .gallery-placeholder {
      width: 100%; height: 100%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 10px;
      background: var(--terra-light);
      border: 1.5px dashed rgba(196,113,74,0.25);
      border-radius: 16px;
    }
    .gallery-placeholder span:first-child {
      font-size: 28px;
      opacity: 0.35;
    }
    .gallery-placeholder span:last-child {
      font-size: 12px;
      font-weight: 500;
      color: var(--terra);
      opacity: 0.6;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .gallery-caption {
      padding: 10px 4px 0;
      font-size: 13px;
      color: var(--gray);
      line-height: 1.5;
      font-style: italic;
    }

    /* ══════════════════════════════════════════════
       LIGHTBOX
    ══════════════════════════════════════════════ */
    .lightbox {
      position: fixed; inset: 0; z-index: 1000;
      background: rgba(0,0,0,0.92);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none;
      transition: opacity 250ms;
    }
    .lightbox.active { opacity: 1; pointer-events: all; }

    .lightbox-inner {
      max-width: min(90vw, 1100px);
      max-height: 90vh;
      display: flex; flex-direction: column;
      align-items: center; gap: 16px;
    }
    .lightbox-inner img {
      max-width: 100%; max-height: 80vh;
      border-radius: 12px;
      object-fit: contain;
      display: block;
    }
    .lightbox-caption {
      color: rgba(255,255,255,0.7);
      font-size: 14px; font-style: italic;
      text-align: center; max-width: 640px;
    }

    .lightbox-close {
      position: fixed; top: 24px; right: 32px;
      background: none; border: none; color: var(--white);
      font-size: 40px; cursor: pointer; line-height: 1;
      opacity: 0.7; transition: opacity 150ms;
    }
    .lightbox-close:hover { opacity: 1; }

    .lightbox-prev,
    .lightbox-next {
      position: fixed; top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,0.1);
      border: 1.5px solid rgba(255,255,255,0.2);
      color: var(--white); font-size: 22px;
      width: 52px; height: 52px; border-radius: 50%;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background 150ms;
    }
    .lightbox-prev { left: 24px; }
    .lightbox-next { right: 24px; }
    .lightbox-prev:hover,
    .lightbox-next:hover { background: rgba(255,255,255,0.22); }

    /* ══════════════════════════════════════════════
       REKRUTACJA — kroki
    ══════════════════════════════════════════════ */
    .rekr-steps-section { padding: 60px 80px; }
    .rekr-steps-header { max-width: 560px; margin-bottom: 56px; }
    .rekr-steps-header .section-title { margin-bottom: 0; }

    .rekr-steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .rekr-step {
      background: var(--cream);
      border-radius: 20px;
      padding: 36px 28px;
      border: 1px solid rgba(0,0,0,0.05);
      position: relative;
    }

    .rekr-step-num {
      font-family: var(--serif);
      font-size: 56px; font-weight: 700;
      color: var(--terra); opacity: 0.15;
      line-height: 1; margin-bottom: 16px;
    }

    .rekr-step h3 {
      font-family: var(--serif); font-size: 20px; font-weight: 600;
      margin-bottom: 10px;
    }
    .rekr-step p { font-size: 14px; color: var(--gray); line-height: 1.65; }

    /* ══════════════════════════════════════════════
       REKRUTACJA — główna siatka
    ══════════════════════════════════════════════ */
    .rekr-main-section { padding: 80px 80px; }

    .rekr-main-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .rekr-info .section-title { margin-bottom: 32px; }
    .rekr-faq-left .section-title,
    .rekr-faq-right .section-title { margin-bottom: 0; }

    .rekr-info-cards {
      display: flex; flex-direction: column; gap: 16px;
      margin-top: 28px;
    }

    .rekr-faq-right .section-body { color: var(--gray); }
    .rekr-faq-list { display: flex; flex-direction: column; gap: 12px; }

    .rekr-info-card {
      display: flex; gap: 16px; align-items: flex-start;
      background: var(--white); border-radius: 16px;
      padding: 20px 24px;
      border: 1px solid rgba(0,0,0,0.05);
    }
    .rekr-info-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
    .rekr-info-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
    .rekr-info-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }
    .rekr-info-card a { color: var(--terra); text-decoration: none; font-weight: 500; }
    .rekr-info-card a:hover { text-decoration: underline; }

    .rekr-tuition-box {
      background: var(--terra-light);
      border-radius: 16px; padding: 24px 28px;
      border-left: 4px solid var(--terra);
    }

    .rekr-form-wrap {
      background: var(--white);
      border-radius: 24px; padding: 48px 40px;
      border: 1px solid rgba(0,0,0,0.05);
      box-shadow: 0 8px 48px rgba(0,0,0,0.06);
    }

    /* ══════════════════════════════════════════════
       REKRUTACJA — FAQ
    ══════════════════════════════════════════════ */
    .rekr-faq-section { padding: 80px 80px; }

    .rekr-faq-header { max-width: 560px; margin-bottom: 48px; }
    .rekr-faq-header .section-title { margin-bottom: 0; }

    .rekr-faq-list { max-width: 820px; display: flex; flex-direction: column; gap: 12px; }

    .faq-item {
      background: var(--cream);
      border-radius: 16px;
      border: 1px solid rgba(0,0,0,0.06);
      overflow: hidden;
    }

    .faq-item summary {
      padding: 22px 28px;
      font-size: 16px; font-weight: 600;
      cursor: pointer;
      list-style: none;
      display: flex; justify-content: space-between; align-items: center;
      gap: 16px;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '+';
      font-size: 24px; font-weight: 300;
      color: var(--terra); flex-shrink: 0;
      transition: transform 250ms;
    }
    .faq-item[open] summary::after { transform: rotate(45deg); }
    .faq-item[open] summary { color: var(--terra); }

    .faq-item p {
      padding: 0 28px 22px;
      font-size: 15px; color: var(--gray); line-height: 1.7;
    }

    /* ── PRICING ── */
    .rekr-pricing-section { padding: 80px 80px; }
    .rekr-pricing-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
    .rekr-pricing-header .section-title { margin-bottom: 0; }

    .rekr-pricing-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 24px;
      align-items: start;
    }

    .rekr-price-card {
      background: var(--white);
      border-radius: var(--radius);
      border: 1.5px solid rgba(0,0,0,0.06);
      overflow: hidden;
      transition: transform 200ms, box-shadow 200ms;
    }
    .rekr-price-card:hover { transform: translateY(-4px); box-shadow: 0 12px 48px rgba(0,0,0,0.08); }

    .rekr-price-card--featured {
      border-color: var(--terra);
      box-shadow: 0 8px 40px rgba(196,113,74,0.12);
    }

    .rekr-price-card-top {
      padding: 36px 32px 28px;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .rekr-price-card--featured .rekr-price-card-top {
      background: var(--terra);
      border-bottom: none;
    }

    .rekr-price-card-label {
      font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--terra); margin-bottom: 8px;
    }
    .rekr-price-card--featured .rekr-price-card-label { color: rgba(255,255,255,0.7); }

    .rekr-price-card-name {
      font-family: var(--serif); font-size: 26px; font-weight: 600; margin-bottom: 16px;
    }
    .rekr-price-card--featured .rekr-price-card-name { color: var(--white); }

    .rekr-price-amount { display: flex; align-items: baseline; gap: 6px; }

    .rekr-price-number {
      font-family: var(--serif); font-size: 52px; font-weight: 700; line-height: 1;
      color: var(--charcoal);
    }
    .rekr-price-card--featured .rekr-price-number { color: var(--white); }
    .rekr-price-number--sm { font-size: 32px; }

    .rekr-price-unit { font-size: 14px; color: var(--gray); }
    .rekr-price-card--featured .rekr-price-unit { color: rgba(255,255,255,0.7); }

    .rekr-price-card-body { padding: 28px 32px 36px; }

    .rekr-price-note { font-size: 13px; color: var(--gray); margin-bottom: 24px; line-height: 1.5; }

    .rekr-price-features {
      list-style: none; display: flex; flex-direction: column; gap: 10px;
    }
    .rekr-price-features li {
      font-size: 14px; color: var(--gray); display: flex; gap: 10px; align-items: flex-start;
    }
    .rekr-price-features li::before {
      content: '✓'; color: var(--sage); font-weight: 700; flex-shrink: 0; margin-top: 1px;
    }
    .rekr-price-features li.rekr-price-extra::before { content: '+'; color: var(--terra); }

    .rekr-pricing-note {
      margin-top: 40px;
      background: var(--sage-light);
      border-radius: 16px;
      padding: 28px 32px;
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
    }
    .rekr-pricing-note p { font-size: 15px; color: var(--charcoal); line-height: 1.65; }

    /* ── QUOTE ── */
    .rekr-quote-section {
      background: var(--charcoal);
      color: var(--white);
      text-align: center;
      padding: 80px;
    }

    .rekr-quote-text {
      font-family: var(--serif);
      font-size: clamp(22px, 3vw, 38px);
      font-weight: 500;
      font-style: italic;
      line-height: 1.45;
      max-width: 820px;
      margin: 0 auto 24px;
    }
    .rekr-quote-text em { color: var(--sand); font-style: normal; }

    .rekr-quote-text--nowrap {
      max-width: none;
      white-space: nowrap;
      font-size: clamp(18px, 2.4vw, 32px);
    }

    .rekr-quote-author { font-size: 14px; color: rgba(255,255,255,0.4); }

    /* ── FAQ 2-column ── */
    .rekr-faq-layout {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 80px;
      align-items: start;
    }

    .rekr-faq-contact {
      margin-top: 32px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .rekr-faq-contact a {
      font-size: 15px; font-weight: 600; color: var(--charcoal); text-decoration: none;
    }
    .rekr-faq-contact a:last-child { font-weight: 400; color: var(--gray); }

    .rekr-faq-facts {
      margin-top: 28px;
      display: flex; flex-direction: column; gap: 12px;
    }
    .rekr-faq-fact {
      font-size: 14px; color: var(--gray); line-height: 1.5;
    }
    .rekr-faq-fact strong { color: var(--charcoal); }

    /* ── CTA ── */
    .rekr-cta-section {
      padding: 100px 80px;
      text-align: center;
    }
    .rekr-cta-section .section-title { margin-bottom: 20px; }
    .rekr-cta-section .section-body { max-width: 480px; margin: 0 auto 40px; }

    .rekr-cta-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .rekr-btn-primary {
      background: var(--terra); color: var(--white);
      font-size: 16px; font-weight: 600; padding: 16px 40px; border-radius: 100px;
      text-decoration: none; display: inline-block;
      transition: transform 150ms, opacity 150ms;
    }
    .rekr-btn-primary:hover { transform: scale(1.02); opacity: 0.9; }

    .rekr-btn-outline {
      background: transparent; color: var(--charcoal);
      font-size: 16px; font-weight: 600; padding: 16px 40px; border-radius: 100px;
      border: 2px solid rgba(0,0,0,0.18); text-decoration: none; display: inline-block;
      transition: border-color 150ms, background 150ms;
    }
    .rekr-btn-outline:hover { border-color: var(--charcoal); background: rgba(0,0,0,0.04); }

    .rekr-cta-lub { font-size: 14px; color: var(--gray); align-self: center; }

    /* ══════════════════════════════════════════════
       RESPONSIVE — nowe strony
    ══════════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .page-hero { padding: 80px 32px 60px; }
      .gallery-section { padding: 60px 32px; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
      .rekr-steps-section,
      .rekr-main-section,
      .rekr-faq-section,
      .rekr-pricing-section,
      .rekr-cta-section { padding: 60px 32px; }
      .rekr-quote-section { padding: 60px 32px; }
      .rekr-steps-grid { grid-template-columns: repeat(2, 1fr); }
      .rekr-main-grid { grid-template-columns: 1fr; gap: 40px; }
      .rekr-form-wrap { padding: 36px 28px; }
      .rekr-pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
      .rekr-faq-layout { grid-template-columns: 1fr; gap: 40px; }
    }
    @media (max-width: 600px) {
      .gallery-grid { grid-template-columns: 1fr; }
      .rekr-steps-grid { grid-template-columns: 1fr; }
      .lightbox-prev { left: 8px; }
      .lightbox-next { right: 8px; }
      .rekr-cta-actions { flex-direction: column; align-items: center; }
      .rekr-quote-text--nowrap { white-space: normal; max-width: 820px; }
    }

/* ── Gallery filter bar ────────────────────────────────────────────────────── */
.gallery-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 24px 80px;
  background: var(--white);
  border-bottom: 2px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 84px;
  z-index: 50;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.filter-btn {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  border: 1.5px solid rgba(0,0,0,0.14);
  background: transparent;
  color: var(--gray);
  cursor: pointer;
  transition: all 180ms ease;
  white-space: nowrap;
  line-height: 1;
}
.filter-btn:hover {
  border-color: var(--terra);
  color: var(--terra);
  background: var(--terra-light);
}
.filter-btn.active {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(196,113,74,0.3);
}

@media (max-width: 1024px) {
  .gallery-filter-bar { padding: 18px 40px; }
}
@media (max-width: 768px) {
  .gallery-filter-bar { padding: 16px 24px; top: 60px; gap: 8px; }
  .filter-btn { font-size: 12px; padding: 8px 16px; }
}

/* ── Rekrutacja hero ───────────────────────────────────────────────────────── */
.rekr-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
  padding: 0 !important;
  margin-top: 0;
}
.rekr-hero-inner {
  padding: 100px 64px 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rekr-hero .section-label {
  color: var(--terra);
  margin-bottom: 20px;
}
.rekr-hero-title {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}
.rekr-hero-title em {
  font-style: italic;
  color: var(--sand);
}
.rekr-hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}
.rekr-hero-photo {
  position: relative;
  overflow: hidden;
  align-self: stretch;
}
.rekr-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  inset: 0;
}
.rekr-hero-photo::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, var(--charcoal) 0%, transparent 30%);
}

@media (max-width: 768px) {
  .rekr-hero { grid-template-columns: 1fr; }
  .rekr-hero-photo { height: 280px; }
  .rekr-hero-inner { padding: 140px 24px 40px; }
}

/* ── Gallery page header ───────────────────────────────────────────────────── */
.gallery-page-header {
  padding: 160px 80px 60px;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.gallery-page-title {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.gallery-page-title em { font-style: italic; color: var(--terra); }
.gallery-page-desc {
  font-size: 17px;
  color: var(--gray);
  max-width: 540px;
  line-height: 1.7;
}

/* ── Gallery flat masonry ──────────────────────────────────────────────────── */
.gallery-flat-section { padding: 60px 80px 100px; }

.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}
.gallery-masonry .gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--sand-light);
  display: block;
}
.gallery-masonry .gallery-item img {
  width: 100%;
  display: block;
  transition: transform 400ms ease, opacity 200ms;
}
.gallery-masonry .gallery-item:hover img { transform: scale(1.04); }

.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(44,44,44,0);
  transition: background 250ms;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
}
.gallery-masonry .gallery-item:hover .gallery-item-overlay { background: rgba(44,44,44,0.25); }

.overlay-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.8);
  transition: opacity 250ms, transform 250ms;
}
.gallery-masonry .gallery-item:hover .overlay-icon { opacity: 1; transform: scale(1); }
.gallery-item.hidden { display: none; }

/* ── Gallery CTA ───────────────────────────────────────────────────────────── */
.gallery-cta {
  text-align: center;
  margin-top: 64px;
}
.gallery-cta-text {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gray);
  margin-bottom: 24px;
  font-style: italic;
}
.gallery-fb-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 150ms;
}
.gallery-fb-btn:hover { opacity: 0.8; }

/* ── Gallery lightbox (new) ────────────────────────────────────────────────── */
.gallery-lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 250ms;
}
.gallery-lightbox.open { opacity: 1; pointer-events: all; }
.gallery-lightbox .lightbox-inner {
  position: relative;
  max-width: 90vw; max-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
.gallery-lightbox .lightbox-img {
  max-width: 85vw; max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
  transform: scale(0.95);
  transition: transform 250ms;
}
.gallery-lightbox.open .lightbox-img { transform: scale(1); }
.gallery-lightbox .lightbox-close {
  position: fixed; top: 24px; right: 32px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: background 150ms;
}
.gallery-lightbox .lightbox-close:hover { background: rgba(255,255,255,0.3); }
.gallery-lightbox .lightbox-prev,
.gallery-lightbox .lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: background 150ms;
}
.gallery-lightbox .lightbox-prev { left: 24px; }
.gallery-lightbox .lightbox-next { right: 24px; }
.gallery-lightbox .lightbox-prev:hover,
.gallery-lightbox .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.gallery-lightbox .lightbox-counter {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 13px; color: rgba(255,255,255,0.5);
}

@media (max-width: 1024px) {
  .gallery-page-header { padding: 120px 32px 48px; }
  .gallery-flat-section { padding: 40px 32px 80px; }
  .gallery-masonry { columns: 2; }
}
@media (max-width: 600px) {
  .gallery-masonry { columns: 1; }
  .gallery-lightbox .lightbox-prev { left: 8px; }
  .gallery-lightbox .lightbox-next { right: 8px; }
}

/* ══════════════════════════════════════════════
   FILOZOFIA — Pięć Atelier
══════════════════════════════════════════════ */
.atelier-block { padding: 80px; }
.atelier-block-inner { max-width: 760px; margin: 0 auto; }

.atelier-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--terra-light); color: var(--terra);
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 8px 16px; border-radius: 100px;
  width: fit-content; margin-bottom: 16px;
}
.atelier-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--terra); }
.atelier-block h3.atelier-title {
  font-family: var(--serif); font-size: 32px; font-weight: 600;
  color: var(--charcoal); line-height: 1.15; margin: 0 0 20px;
}
.atelier-block h3.atelier-title em { font-style: italic; color: var(--terra); }

.atelier-quote {
  font-family: var(--serif); font-style: italic; font-size: 20px;
  color: var(--charcoal); border-left: 3px solid var(--terra);
  padding-left: 20px; margin: 24px 0; line-height: 1.5;
}
.atelier-block p.section-body { max-width: none; margin-bottom: 16px; }
.atelier-block p.section-body:last-child { margin-bottom: 0; }

.zone-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 32px;
}
.zone-grid .pillar-card { padding: 32px 24px; border: 1px solid rgba(0,0,0,0.05); }
.zone-grid .pillar-card h3 { font-size: 19px; margin-bottom: 10px; }
.zone-grid .pillar-card p { font-size: 14px; }

.rekr-steps-grid--3col { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1024px) {
  .atelier-block { padding: 64px 32px; }
  .zone-grid { grid-template-columns: repeat(2, 1fr); }
  .rekr-steps-grid--3col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .atelier-block { padding: 48px 20px; }
  .atelier-quote { font-size: 18px; }
  .atelier-block h3.atelier-title { font-size: 26px; }
  .zone-grid { grid-template-columns: 1fr; }
  .rekr-steps-grid--3col { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════════ */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
  background: var(--charcoal); color: var(--white);
  padding: 20px 32px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
  transform: translateY(100%);
  transition: transform 300ms ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cookie-banner-text {
  font-size: 14px; color: rgba(255,255,255,0.85);
  max-width: 720px; line-height: 1.55; margin: 0;
}
.cookie-banner-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  padding: 10px 22px; border-radius: 100px; cursor: pointer;
  border: none; transition: opacity 150ms, background 150ms; white-space: nowrap;
}
.cookie-btn-primary { background: var(--terra); color: var(--white); }
.cookie-btn-primary:hover { opacity: 0.85; }
.cookie-btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.cookie-btn-outline:hover { background: rgba(255,255,255,0.08); }

@media (max-width: 700px) {
  .cookie-banner { padding: 18px 20px; }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-banner-actions { flex-direction: column; }
  .cookie-btn { width: 100%; text-align: center; }
}

/* ── Cookie-gated embeds (Facebook, Google Maps) ── */
.cookie-gate {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-light); border-radius: inherit; overflow: hidden;
  min-height: 200px;
}
.cookie-gate iframe { display: none; width: 100%; height: 100%; }
.cookie-gate.cookie-gate-loaded iframe { display: block; }
.cookie-gate.cookie-gate-loaded .cookie-gate-content { display: none; }
.cookie-gate-content { text-align: center; padding: 24px; }
.cookie-gate-content p {
  font-size: 14px; color: var(--gray); margin: 0 auto 14px;
  max-width: 280px; line-height: 1.5;
}
.cookie-gate-btn {
  background: var(--terra); color: var(--white); border: none; border-radius: 100px;
  padding: 10px 22px; font-family: var(--sans); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: opacity 150ms;
}
.cookie-gate-btn:hover { opacity: 0.85; }
