  /* --- ZMIENNE GLOBALNE --- */
    :root {
      --color-bg: #ede9dc;
      --color-text: #121212;
      --color-text-muted: rgba(18, 18, 18, 0.65);
      --color-border: rgba(18, 18, 18, 0.12);
      --color-border-heavy: rgba(18, 18, 18, 0.8);
      
      --font-serif: 'Cormorant Garamond', serif;
      --font-sans: 'Inter', sans-serif;
      --font-script: 'Great Vibes', cursive;
      --font-v: 'Playfair Display', serif;
      --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    *, *::before, *::after { 
      box-sizing: border-box; 
      margin: 0; 
      padding: 0; 
    }

    html {
      scroll-behavior: smooth;
      text-size-adjust: 100%;
    }

    body {
      background-color: var(--color-bg);
      color: var(--color-text);
      font-family: var(--font-serif);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* Typografia - Skalowalna na mobile */
    h1, h2, h3, h4 {
      font-weight: 300;
      line-height: 1.2;
    }

    h2 { font-size: clamp(1.8rem, 5vw, 2.4rem); }
    
    p {
      font-family: var(--font-sans);
      font-weight: 300;
      font-size: clamp(0.9rem, 2vw, 0.95rem);
      color: var(--color-text-muted);
      line-height: 1.7;
    }

    a { 
      color: inherit; 
      text-decoration: none; 
      transition: var(--transition-smooth); 
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Komponenty Wspólne */
    .container {
      width: 100%;
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 20px;
    }

    @media (min-width: 768px) {
      .container { padding: 0 32px; }
    }

    .section-tag {
      font-family: var(--font-sans);
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.35em;
      color: var(--color-text-muted);
      margin-bottom: 20px;
      display: block;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-sans);
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      padding: 14px 28px;
      border: 1px solid var(--color-text);
      background: transparent;
      color: var(--color-text);
      cursor: pointer;
      text-align: center;
      transition: var(--transition-smooth);
    }

    .btn-solid {
      background: var(--color-text);
      color: var(--color-bg);
    }

    .btn-solid:hover {
      background: transparent;
      color: var(--color-text);
    }

    .btn-outline:hover {
      background: var(--color-text);
      color: var(--color-bg);
    }

    /* --- NAGŁÓWEK --- */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: rgba(237, 233, 220, 0.9);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--color-border);
      z-index: 1000;
    }

    .header-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
      position: relative;
    }

    @media (min-width: 768px) {
      .header-container { height: 80px; }
    }

    .brand { display: flex; align-items: center; gap: 14px; }
    .brand-text h2 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.25em; font-weight: 700; font-family: var(--font-v); }
    .brand-text p { font-size: 0.5rem; text-transform: uppercase; letter-spacing: 0.25em; margin: 0; }
    
    .nav-menu { display: none; }
    
    .mobile-menu-btn {
      display: block;
      font-size: 1.5rem;
      background: none;
      border: none;
      color: var(--color-text);
      cursor: pointer;
      padding: 8px;
    }

    @media (min-width: 1024px) {
      .nav-menu { display: flex; align-items: center; gap: 32px; }
      .mobile-menu-btn { display: none; }
      .brand-text h2 { font-size: 1rem; }
      .brand-text p { font-size: 0.55rem; }
    }

    @media (max-width: 1023px) {
      .nav-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-bg);
        border-bottom: 1px solid var(--color-border);
        padding: 24px 0;
        gap: 20px;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition-smooth);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      }
      .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }
    }

    .nav-link { font-family: var(--font-sans); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.25em; opacity: 0.8; }
    .nav-link:hover { opacity: 0.5; }
    .nav-cta { border: 1px solid var(--color-text); padding: 6px 14px; font-weight: 500; }

    /* --- HERO OFERTY --- */
    .offer-hero {
      padding: 140px 0 60px 0;
      text-align: center;
      border-bottom: 1px solid var(--color-border);
    }

    @media (min-width: 768px) {
      .offer-hero { padding: 180px 0 80px 0; }
    }

    .offer-main-title {
      font-family: var(--font-v);
      font-size: clamp(2rem, 6vw, 4rem);
      font-weight: 400;
      margin-bottom: 20px;
      letter-spacing: -0.01em;
      padding: 0 10px;
    }

    .offer-subtitle {
      max-width: 600px;
      margin: 0 auto 40px auto;
      padding: 0 15px;
    }

    .category-nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 30px;
      padding: 0 10px;
    }

    .nav-chip {
      font-family: var(--font-sans);
      padding: 10px 18px;
      border: 1px solid var(--color-border-heavy);
      font-size: 0.6rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      background: transparent;
      color: var(--color-text);
      border-radius: 40px;
    }

    .nav-chip:hover {
      background: var(--color-text);
      color: var(--color-bg);
    }

    @media (min-width: 768px) {
      .category-nav { gap: 16px; margin-top: 40px; }
      .nav-chip { padding: 12px 24px; font-size: 0.65rem; letter-spacing: 0.2em; border-radius: 0; }
    }

    /* --- SEKCJE KATEGORII --- */
    .category-section {
      padding: 60px 0;
      border-bottom: 1px solid var(--color-border);
    }

    @media (min-width: 768px) {
      .category-section { padding: 100px 0; }
    }

    .category-section:nth-child(even) {
      background-color: rgba(18, 18, 18, 0.02);
    }

    .category-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
    }

    @media (min-width: 1024px) {
      .category-grid {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 80px;
        align-items: flex-start;
      }
    }

    .category-meta .num {
      font-family: var(--font-sans);
      font-size: 0.7rem;
      letter-spacing: 0.35em;
      color: var(--color-text-muted);
      display: block;
      margin-bottom: 16px;
    }

    .features-list {
      list-style: none;
      margin-top: 20px;
    }

    .features-list li {
      padding: 14px 0;
      border-bottom: 1px solid var(--color-border);
      display: flex;
      align-items: center;
      gap: 16px;
      font-family: var(--font-sans);
      font-size: 0.85rem;
      color: var(--color-text-muted);
    }

    @media (min-width: 768px) {
      .features-list { margin-top: 30px; }
      .features-list li { padding: 16px 0; font-size: 0.9rem; }
    }

    .features-list li:first-child {
      border-top: 1px solid var(--color-border);
    }

    .features-list li i {
      color: var(--color-text);
      font-size: 1.2rem;
      min-width: 24px;
    }

    /* --- REALIZACJE / PORTFOLIO --- */
    .portfolio-header {
      text-align: center;
      margin-bottom: 50px;
    }
    
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 20px;
    }

    @media (min-width: 600px) {
      .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    }
    @media (min-width: 1024px) {
      .portfolio-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
    }

    .portfolio-card {
      background: rgba(255, 255, 255, 0.45);
      border: 1px solid var(--color-border);
      text-align: center;
      display: flex;
      flex-direction: column;
      transition: var(--transition-smooth);
      height: 100%;
      overflow: hidden; 
    }

    .portfolio-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.04);
      background: rgba(255, 255, 255, 0.8);
      border-color: var(--color-border-heavy);
    }

    .template-img-wrapper {
      width: 100%;
      height: 240px; 
      background-color: rgba(18, 18, 18, 0.04);
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--color-border);
      flex-shrink: 0;
    }

    .template-img-wrapper::after {
      content: 'MIEJSCE NA ZDJĘCIE\A Proporcje 4:3 (np. 800x600px)';
      white-space: pre-wrap;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--font-sans);
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--color-text-muted);
      text-align: center;
      line-height: 1.8;
      z-index: 1;
    }

    .template-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover; 
      position: relative;
      z-index: 2;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .portfolio-card:hover .template-img-wrapper img {
      transform: scale(1.04);
    }

    .card-body {
      padding: 32px 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      justify-content: space-between;
    }

    .card-body h3 {
      font-family: var(--font-v);
      font-size: 1.6rem;
      margin-bottom: 12px;
      letter-spacing: 0.02em;
    }

    .card-body p {
      font-family: var(--font-sans);
      font-size: 0.85rem;
      margin-bottom: 24px;
      line-height: 1.6;
      color: var(--color-text-muted);
    }

    .card-body .price {
      font-weight: 500;
      font-family: var(--font-sans);
      color: var(--color-text);
      font-size: 0.85rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 28px;
      border-top: 1px solid var(--color-border);
      border-bottom: 1px solid var(--color-border);
      padding: 12px 0;
      display: inline-block;
      width: 100%;
    }

    .btn-full {
      width: 100%;
    }

    /* --- PAKIETY I LISTY (KARTY MOBILNE) --- */
    .pricing-cards-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      width: 100%;
    }

    @media (min-width: 768px) {
      .pricing-cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .pricing-card {
      background: rgba(255, 255, 255, 0.4);
      border: 1px solid var(--color-border);
      padding: 24px;
      display: flex;
      flex-direction: column;
      transition: var(--transition-smooth);
    }

    .pricing-card:hover {
      background: rgba(255, 255, 255, 0.8);
      border-color: var(--color-border-heavy);
      transform: translateY(-4px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    }

    .pricing-card-header {
      margin-bottom: 16px;
      border-bottom: 1px solid var(--color-border);
      padding-bottom: 16px;
    }

    .package-name {
      font-family: var(--font-serif);
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--color-text);
      display: block;
    }

    .package-desc {
      font-family: var(--font-sans);
      font-size: 0.85rem;
      color: var(--color-text-muted);
      line-height: 1.6;
      display: block;
      margin-top: 6px;
    }

    .pricing-card-body {
      margin-bottom: 24px;
      flex-grow: 1;
    }

    .pricing-card-body b {
      font-family: var(--font-sans);
      font-size: 0.85rem;
      color: var(--color-text);
      display: block;
      margin-bottom: 4px;
    }

    .price-tag {
      font-family: var(--font-sans);
      font-size: 1.2rem;
      color: var(--color-text);
      font-weight: 600;
      margin-top: auto;
      padding-top: 16px;
      border-top: 1px solid var(--color-border);
    }

    /* Listy jedno/dwukolumnowe (Sekcje i Dodatki) */
    .list-cards-grid {
      display: flex;
      flex-direction: column;
      gap: 12px;
      width: 100%;
    }

    .list-card {
      background: rgba(255, 255, 255, 0.4);
      border: 1px solid var(--color-border);
      padding: 16px 20px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      transition: var(--transition-smooth);
    }

    .list-card:hover {
      background: rgba(255, 255, 255, 0.8);
      border-color: rgba(18, 18, 18, 0.3);
    }

    @media (min-width: 600px) {
      .list-card {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
      }
      .list-card-content {
        flex: 1;
        padding-right: 20px;
      }
      .list-card-price {
        text-align: right;
        min-width: 120px;
      }
    }

    .list-card .package-name {
      font-size: 1.1rem;
    }
    
    .list-card .price-tag {
      border-top: none;
      padding-top: 0;
      font-size: 1.1rem !important;
      margin-top: 0;
    }

    /* --- STANDARDY PREMIUM --- */
    .premium-standards {
      background-color: var(--color-text);
      color: var(--color-bg);
      padding: 80px 0;
      text-align: center;
    }

    .standards-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-top: 40px;
      justify-items: center; 
    }

    @media (min-width: 600px) {
      .standards-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 32px; 
      }
    }

    @media (min-width: 1024px) {
      .standards-grid { 
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
        margin-top: 60px;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
      }
    }

    .standard-card {
      padding: 30px 20px;
      border: 1px solid rgba(237, 233, 220, 0.15);
      background: transparent;
      transition: var(--transition-smooth);
      width: 100%; 
      max-width: 350px; 
    }

    @media (min-width: 768px) {
      .premium-standards { padding: 100px 0; }
    }

    .premium-standards .section-tag {
      color: rgba(237, 233, 220, 0.6);
    }
 
    .standard-card:hover {
      background: rgba(237, 233, 220, 0.05);
      transform: translateY(-5px);
    }

    .standard-card i {
      font-size: 2rem;
      color: var(--color-bg);
      display: block;
      margin-bottom: 20px;
    }

    .standard-card h4 {
      font-family: var(--font-serif);
      font-size: 1.3rem;
      margin-bottom: 12px;
    }

    .standard-card p {
      font-size: 0.85rem;
      color: rgba(237, 233, 220, 0.6);
    }

    /* --- CTA --- */
    .offer-cta {
      padding: 80px 0;
      text-align: center;
      background-color: var(--color-bg);
      border-bottom: 1px solid var(--color-border);
    }

    @media (min-width: 768px) {
      .offer-cta { padding: 100px 0; }
    }

    .offer-cta h3 {
      font-family: var(--font-v);
      font-size: clamp(1.8rem, 4vw, 3rem);
      margin-bottom: 24px;
    }

    .offer-cta p {
      margin: 0 auto 40px auto;
      max-width: 500px;
    }

    /* --- STOPKA --- */
    .site-footer {
      background-color: var(--color-text);
      color: var(--color-bg);
      padding: 60px 0 30px 0;
      font-family: var(--font-sans);
    }

    @media (min-width: 768px) {
      .site-footer { padding: 80px 0 40px 0; }
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    @media (min-width: 600px) {
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (min-width: 1024px) {
      .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 48px; margin-bottom: 60px; }
    }

    .footer-brand h3 { font-family: var(--font-v); font-size: 1.6rem; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 8px; }
    .footer-brand p { color: rgba(237, 233, 220, 0.5); font-size: 0.75rem; }
    .footer-title { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 20px; color: rgba(237, 233, 220, 0.4); font-weight: 500; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 12px; }
    .footer-links a { font-size: 0.85rem; color: rgba(237, 233, 220, 0.8); }
    .footer-links a:hover { color: var(--color-bg); padding-left: 4px; }
    .footer-email { font-size: 1rem; color: var(--color-bg); font-weight: 400; word-break: break-all; }
    
    .footer-socials { display: flex; gap: 16px; margin-top: 16px; }
    .social-icon-link { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid rgba(237, 233, 220, 0.2); color: var(--color-bg); transition: var(--transition-smooth); }
    .social-icon-link:hover { border-color: var(--color-bg); background-color: var(--color-bg); color: var(--color-text); }
    .social-icon-link svg { width: 16px; height: 16px; fill: currentColor; }