    :root{
      --green:#195c3b; /* selmeci zöld */
      --gold:#c9a227;  /* arany */
      --black:#111;
      --offwhite:#f7f5ef;
      --muted:#6b7280;
      --radius:18px;
      --shadow:0 10px 30px rgba(0,0,0,.12);
    }
    
    .mauticform-checkboxgrp-checkbox { width: auto; }
    
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,'Noto Sans',Helvetica,Arial,'Apple Color Emoji','Segoe UI Emoji';color:var(--black);background:var(--offwhite);line-height:1.6}
    a{color:var(--green);text-decoration:none}
    a:hover{text-decoration:underline}
    .container{width:min(1100px,92%);margin:0 auto}

    /* Header */
    header{position:sticky;top:0;z-index:1000;background:linear-gradient(90deg,var(--green),#0e3b26);color:#fff;border-bottom:3px solid var(--gold)}
    nav{display:flex;align-items:center;justify-content:space-between;padding:.7rem 0}
    .brand{display:flex;gap:.75rem;align-items:center;font-weight:800;letter-spacing:.4px;max-width:350px;}
    .brand svg{width:36px;height:36px}
    .navlinks{display:flex;gap:1rem;flex-wrap:wrap}
    .navlinks a{color:#fff;padding:.4rem .7rem;border-radius:999px}
    .navlinks a:hover{background:rgba(255,255,255,.12)}
    .cta{background:var(--gold);color:#111;padding:.45rem .9rem;border-radius:999px;font-weight:700;box-shadow:var(--shadow)}

    /* Hero */
    .hero{background:
      radial-gradient(1000px 400px at 10% -10%, rgba(201,162,39,.25), transparent 60%),
      radial-gradient(900px 300px at 90% -20%, rgba(25,92,59,.22), transparent 60%),
      linear-gradient(180deg,#0f2f20 0%, #173f2a 40%, #1c4a31 100%);
      color:#fff;
      padding:5.5rem 0 4rem;
      border-bottom:4px solid var(--gold);
    }
    .hero .wrap{display:grid;grid-template-columns:1.2fr .8fr;gap:2rem;align-items:center}
    .hero h1{margin:0;font-size:clamp(2rem,5vw,3.2rem);line-height:1.1}
    .subtitle{color:#dbe7df;font-size:1.1rem;margin:.8rem 0 1.2rem}
    .buttons{display:flex;gap:.8rem;flex-wrap:wrap}
    .btn{display:inline-block;padding:.9rem 1.1rem;border-radius:12px;border:2px solid #fff;color:#fff;font-weight:700}
    .btn.fill{background:var(--gold);color:#111;border-color:var(--gold)}
    .crest{background:#0f2f20aa;border:1px solid rgba(255,255,255,.18);border-radius:var(--radius);padding:1rem;backdrop-filter: blur(6px);box-shadow:var(--shadow)}

    /* Sections */
    section{padding:4rem 0}
    h2.section-title{font-size:clamp(1.6rem,4vw,2.2rem);margin:0 0 1rem;position:relative}
    h2.section-title:after{content:"";display:block;width:72px;height:4px;background:var(--gold);border-radius:3px;margin:.4rem 0}
    .grid{display:grid;gap:1.2rem}
    @media(min-width:800px){.grid.cols-2{grid-template-columns:1fr 1fr}.grid.cols-3{grid-template-columns:repeat(3,1fr)}}

    .card{background:#fff;border-radius:var(--radius);padding:1.2rem;border:1px solid #ece8da;box-shadow:var(--shadow)}
    .card h3{margin:.2rem 0 .6rem}
    .badge{display:inline-flex;gap:.4rem;align-items:center;background:#10281e;color:#e7f1eb;border:1px solid #1a3b2b;padding:.25rem .5rem;border-radius:999px;font-size:.8rem}

    .muted{color:var(--muted)}

    /* Gallery */
    .gallery{display:grid;grid-template-columns:repeat(6,1fr);gap:.6rem}
    .gallery .ph{aspect-ratio:4/3;background:linear-gradient(135deg,#203f30,#10281e);border-radius:12px;position:relative;overflow:hidden;border:2px solid #1e3a2a}
    .gallery .ph svg{position:absolute;inset:0;margin:auto;opacity:.9;width:60%}

    /* Support */
    .support{background:linear-gradient(180deg,#fff, #faf7ee)}
    .support .donate{display:flex;gap:1rem;flex-wrap:wrap}
    .support .donate .opt{flex:1;min-width:240px}

    /* Footer */
    footer{background:#0e3b26;color:#e6edde;border-top:3px solid var(--gold)}
    .foot{display:grid;gap:1rem;padding:2rem 0}
    @media(min-width:800px){.foot{grid-template-columns:1.3fr 1fr 1fr}}
    .foot a{color:#e6edde}
    .copyright{border-top:1px solid rgba(255,255,255,.12);padding:1rem 0;color:#cfe0d5;font-size:.9rem;text-align:center;}

    /* Small helpers */
    .icon{width:26px;height:26px}
    .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
    form label{font-weight:600}
    input, textarea{width:100%;padding:.7rem .8rem;border-radius:10px;border:1px solid #d6d3c2;background:#fff}
    button[type="submit"]{background:var(--green);color:#fff;border:0;padding:.8rem 1rem;border-radius:12px;font-weight:700;cursor:pointer}
    button[type="submit"]:hover{filter:brightness(1.05)}
      /* Responsive tweaks */
    /* Mobile-first nav: hidden menu, toggle button */
    .menu-toggle{background:transparent;border:2px solid #fff;color:#fff;padding:.4rem .7rem;border-radius:10px;font-weight:700}
    @media(min-width:800px){.menu-toggle{display:none}}
    
    .navlinks{display:none;gap:1rem;flex-wrap:wrap}
    .navlinks.open{display:flex}
    @media(min-width:800px){.navlinks{display:flex}}

    /* Hero grid stacks on small screens */
    @media(max-width:900px){
      .hero .wrap{grid-template-columns:1fr}
      .crest{order:2}
    }

    /* Section grids */
    @media(max-width:799px){
      .grid{grid-template-columns:1fr}
    }

    /* Gallery becomes auto-fit grid */
    .gallery{grid-template-columns:repeat(auto-fit, minmax(140px, 1fr))}

    /* Footer grid stacks */
    @media(max-width:799px){
      .foot{grid-template-columns:1fr}
    }

    /* Improve tap targets on mobile */
    @media(max-width:600px){
      nav{flex-wrap:wrap;gap:.6rem}
      .btn{padding:.8rem 1rem}
      .cta{margin-left:auto}
    }

    .cookie-banner{position:fixed; inset:auto 0 0 0; display:none; background:var(--bg); color:var(--fg); border-top:1px solid var(--border); box-shadow:var(--shadow); z-index:9999;}
    .cookie-wrap{max-width:1100px; margin:auto; padding:16px; display:grid; grid-template-columns:1fr; gap:12px;}
    .cookie-title{font-weight:700; font-size:1.1rem}
    .cookie-desc{color:var(--muted); line-height:1.5}
    .cookie-actions{display:flex; gap:8px; flex-wrap:wrap}
    .btn{appearance:none; border:1px solid var(--border); background:#0e3b26; color:white; padding:10px 14px; border-radius:10px; cursor:pointer; font-weight:600}
    .btn:hover{filter:brightness(1.1)}
    .btn.primary{background:var(--accent); color:#06130a; border-color:transparent}
    .btn.secondary{background:#0b1225}
    .btn.link{border:none; background:transparent; color:var(--accent-2); text-decoration:underline; padding:0}
    
    /* Modal beállítások */
    .cookie-modal-backdrop{position:fixed; inset:0; background:rgba(0,0,0,.55); display:none; z-index:10000}
    .cookie-modal{position:fixed; inset:0; display:none; place-items:center; z-index:10001}
    .cookie-card{width:min(720px, 92vw); background:var(--card); border:1px solid var(--border); border-radius:16px; box-shadow:var(--shadow);background:#c9a227;}
    .cookie-card header{display:flex; justify-content:space-between; align-items:center; padding:16px 20px; border-bottom:1px solid var(--border)}
    .cookie-card h2{margin:0; font-size:1.2rem}
    .cookie-card .content{padding:12px 20px 6px 20px}
    .cookie-card .row{display:flex; justify-content:space-between; align-items:flex-start; gap:16px; padding:12px 0; border-bottom:1px dashed var(--border)}
    .cookie-card .row:last-child{border-bottom:none}
    .cookie-card .row label{font-weight:600}
    .cookie-card .row p{margin:6px 0 0 0; color:var(--muted)}
    .switch{position:relative; display:inline-block; width:46px; height:26px}
    .switch input{opacity:0; width:0; height:0}
    .slider{position:absolute; cursor:pointer; inset:0; background:#243045; border:1px solid var(--border); transition:.2s; border-radius:999px}
    .slider:before{content:""; position:absolute; height:20px; width:20px; left:3px; top:50%; transform:translateY(-50%); background:white; border-radius:50%; transition:.2s}
    .switch input:checked + .slider{background:var(--accent)}
    .switch input:checked + .slider:before{transform:translate(20px,-50%)}
    .switch input:disabled + .slider{filter:grayscale(1); opacity:.6; cursor:not-allowed}
    .cookie-card footer{display:flex; justify-content:flex-end; gap:8px; padding:16px 20px; border-top:1px solid var(--border)}

    /* Reopen trigger */
    .cookie-manage{position:fixed; right:16px; bottom:16px; z-index:9998;}
    .cookie-manage .btn{opacity:.85}

    @media (min-width:780px){
      .cookie-wrap{grid-template-columns:1fr auto; align-items:center}
    }