:root{
          --bg:#fffaf6;
          --accent:#c47b7b;
          --accent-2:#6b8f8f;
          --muted:#6b6b6b;
          --card:#ffffff;
          --glass: rgba(255,255,255,0.65);
          --max-width:1100px;
        }
        *{box-sizing:border-box}
        html,body{height:100%}
        body{
          margin:0;
          background: linear-gradient(180deg, #fffaf6 0%, #f7f7ff 100%);
          font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
          color:#222;
          -webkit-font-smoothing:antialiased;
          -moz-osx-font-smoothing:grayscale;
          line-height:1.45;
        }

        .container{
          max-width:var(--max-width);
          margin:0 auto;
          padding:24px;
        }

        header{
          display:flex;
          align-items:center;
          justify-content:space-between;
          gap:16px;
          padding:18px 0;
        }
        .logo{
          display:flex;
          gap:12px;
          align-items:center;
        }
        .logo .crest{
          width:56px;height:56px;border-radius:50%;
          background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.6), rgba(255,255,255,0.1)), linear-gradient(135deg,#f7a6a6,#c5dfe0);
          display:flex;align-items:center;justify-content:center;
          font-family:'Playfair Display', serif;
          font-weight:700;color:#fff;font-size:20px;box-shadow:0 6px 18px rgba(0,0,0,0.08);
        }
        nav a{margin-left:14px;text-decoration:none;color:var(--muted);font-weight:600}
        nav a:hover{color:var(--accent)}

        /* --- MENU HAMBURGER --- */
        nav.navbar {
          position: relative;
        }

        .menu-toggle {
          display: none;
          font-size: 26px;
          cursor: pointer;
          user-select: none;
          padding: 6px 10px;
          border-radius: 6px;
          transition: background 0.3s;
        }
        .menu-toggle:hover {
          background: rgba(0,0,0,0.05);
        }

        .menu {
          list-style: none;
          display: flex;
          gap: 14px;
          margin: 0;
          padding: 0;
        }
        .menu li a {
          text-decoration: none;
          color: var(--muted);
          font-weight: 600;
        }
        .menu li a:hover {
          color: var(--accent);
        }

        /* Widok mobilny */
        @media (max-width: 800px) {
          .menu-toggle {
            display: block;
          }

          .menu {
            display: none;
            flex-direction: column;
            background: white;
            position: absolute;
            top: 40px;
            right: 0;
            width: 180px;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            padding: 10px 0;
            z-index: 1000;
          }

          .menu.show {
            display: flex;
          }

          .menu li {
            padding: 8px 16px;
          }

          .menu li a {
            display: block;
            width: 100%;
          }
        }

        /* Hero */
        .hero{
          display:grid;
          grid-template-columns: 1fr 380px;
          gap:28px;
          align-items:center;
          margin:18px 0 36px;
        }
        @media(max-width:900px){ .hero{grid-template-columns:1fr;}}
        .hero-card{
          background:linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0.95));
          border-radius:20px;padding:28px;
          box-shadow: 0 10px 40px rgba(80,70,100,0.06);
          backdrop-filter: blur(6px);
        }
        .couple{
          font-family:'Playfair Display', serif;
          font-size:40px;
          margin:0 0 6px;color:#3c3c3c;
        }
        .date{
          color:var(--accent-2); font-weight:600;margin-bottom:14px;
        }
        .lead{color:var(--muted);margin-bottom:18px}
        .cta{display:flex;gap:12px;flex-wrap:wrap}
        .btn{
          background:var(--accent);color:white;padding:10px 16px;border-radius:10px;text-decoration:none;font-weight:700;
          box-shadow: 0 6px 18px rgba(196,123,123,0.18);
          display: inline-block;
          cursor: pointer;
          border: none;
          transition: all 0.2s ease;
        }
        .btn:hover{
          transform: translateY(-2px);
          box-shadow: 0 8px 24px rgba(196,123,123,0.24);
        }
        .btn.secondary{background:transparent;color:var(--accent);border:2px solid rgba(196,123,123,0.12)}
        .btn.secondary:hover{
          background:rgba(196,123,123,0.06);
        }
        .card-side{
          border-radius:16px;padding:18px;
          background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9));
          box-shadow:0 8px 30px rgba(60,60,80,0.05);
        }
        .when{font-weight:700;margin-bottom:8px}
        .where{color:var(--muted);font-size:14px;margin-bottom:8px}
        .map{
          height:180px;border-radius:12px;overflow:hidden;background:#eee;
          display:flex;align-items:center;justify-content:center;color:#999;font-weight:700;
        }

        /* Sections */
        section{margin:28px 0;padding:18px 0;border-top:1px dashed rgba(0,0,0,0.04)}
        h2{font-family:'Playfair Display', serif;margin:6px 0 12px;font-size:22px}
        p{margin:0 0 10px;color:var(--muted)}

        .grid{
          display:grid;grid-template-columns:repeat(3,1fr);gap:16px;
        }
        @media(max-width:900px){ .grid{grid-template-columns:repeat(1,1fr)}}

        .info-card{
          background:var(--card);padding:16px;border-radius:12px;box-shadow:0 6px 20px rgba(0,0,0,0.03);
        }
        .timeline{
          list-style:none;padding:0;margin:0;
        }
        .timeline li{padding:12px 0;border-bottom:1px dashed rgba(0,0,0,0.04);display:flex;align-items:center;gap:12px}
        .time-badge{min-width:72px;font-weight:700;color:var(--accent-2)}

        /* Gallery */
        .gallery{
          display:grid;grid-template-columns:repeat(4,1fr);gap:8px;
        }
        @media(max-width:1100px){.gallery{grid-template-columns:repeat(2,1fr)}}
        .gallery img{width:100%;height:160px;object-fit:cover;border-radius:8px;cursor:pointer;display:block}

        /* RSVP */
        .rsvp-form{
          display:grid;grid-template-columns:1fr 1fr;gap:12px;
        }
        @media(max-width:700px){.rsvp-form{grid-template-columns:1fr}}
        label{display:block;font-size:13px;color:var(--muted);margin-bottom:6px}
        input,textarea,select{
          width:100%;padding:10px;border-radius:8px;border:1px solid rgba(0,0,0,0.08);
          font-size:14px;font-family:inherit;
        }
        .rsvp-footer{display:flex;gap:12px;align-items:center;margin-top:8px}
        .note{font-size:13px;color:#666}

        /* Lightbox overlay */
        .lightbox{
          position:fixed;inset:0;display:none;align-items:center;justify-content:center;background:rgba(0,0,0,0.7);z-index:1200;
        }
        .lightbox img{max-width:90%;max-height:85%;border-radius:6px;box-shadow:0 12px 60px rgba(0,0,0,0.6)}

        footer{padding:20px 0;color:#666;text-align:center;font-size:14px}

        /* small helpers */
        .muted{color:var(--muted)}
        .center{text-align:center}
        .small{font-size:13px;color:#777}