 <style>
    :root{
      /* Domináns, meleg neutrálok */
      --bg: #F6F1EA;        /* tört bézs */
      --panel: #FFFFFF;
      --sand: #E9DDCF;      /* cappuccino */
      --latte: #D8C6B5;     /* halvány kávé */
      --text: #2B2420;
      --muted: #6B5E55;

      /* Accentek csak finoman (a logóhoz) */
      --mint: #77C9C5;
      --blush: #F2A9B6;

      --radius: 18px;
      --shadow: 0 10px 30px rgba(43,36,32,.08);
      --shadow2: 0 8px 20px rgba(43,36,32,.06);
    }

    *{ box-sizing: border-box; }
    body{
      margin:0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color: var(--text);
      background: radial-gradient(1200px 600px at 20% 0%, #FFFFFF 0%, var(--bg) 45%, var(--bg) 100%);
    }

    a{ color: inherit; text-decoration: none; }
    .wrap{ max-width: 1080px; margin: 0 auto; padding: 28px 18px 46px; }

    /* Header */
    header{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding: 14px 16px;
      background: rgba(255,255,255,.65);
      border: 1px solid rgba(216,198,181,.45);
      border-radius: var(--radius);
      box-shadow: var(--shadow2);
      backdrop-filter: blur(6px);
    }
    .brand{
      display:flex;
      align-items:center;
      gap:14px;
      min-width: 220px;
    }
    .brand img{
      height: 44px;
      width: auto;
      display:block;
    }
    .brand small{
      display:block;
      color: var(--muted);
      line-height: 1.2;
      font-size: 13px;
    }

    nav{
      display:flex;
      gap:10px;
      flex-wrap: wrap;
      justify-content:flex-end;
    }
    .pill{
      padding: 10px 12px;
      border-radius: 999px;
      background: rgba(233,221,207,.55);
      border: 1px solid rgba(216,198,181,.55);
      color: var(--text);
      font-size: 14px;
      transition: transform .12s ease, background .12s ease;
      white-space: nowrap;
    }
    .pill:hover{ transform: translateY(-1px); background: rgba(233,221,207,.8); }

    /* Hero */
    .hero{
      margin-top: 18px;
      padding: 34px 22px;
      background: linear-gradient(180deg, rgba(233,221,207,.55) 0%, rgba(255,255,255,.8) 55%, rgba(255,255,255,.92) 100%);
      border: 1px solid rgba(216,198,181,.55);
      border-radius: calc(var(--radius) + 8px);
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:-80px -120px auto auto;
      width: 280px; height: 280px;
      background: radial-gradient(circle at 30% 30%, rgba(119,201,197,.25), transparent 60%),
                  radial-gradient(circle at 70% 70%, rgba(242,169,182,.18), transparent 60%);
      filter: blur(2px);
      transform: rotate(12deg);
    }
    .hero h1{
      margin:0 0 10px;
      font-size: clamp(26px, 3vw, 40px);
      letter-spacing: .2px;
    }
    .hero p{
      margin:0 0 18px;
      color: var(--muted);
      font-size: 16px;
      max-width: 720px;
      line-height: 1.55;
    }
    .ctaRow{
      display:flex;
      gap:12px;
      flex-wrap: wrap;
      align-items:center;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding: 12px 16px;
      border-radius: 14px;
      border: 1px solid rgba(216,198,181,.8);
      background: #fff;
      box-shadow: var(--shadow2);
      font-weight: 600;
      transition: transform .12s ease, box-shadow .12s ease;
    }
    .btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }
    .btn.primary{
      background: linear-gradient(180deg, #fff 0%, rgba(233,221,207,.35) 100%);
    }
    .note{
      font-size: 13px;
      color: var(--muted);
    }

    /* Cards */
    .grid{
      margin-top: 18px;
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 14px;
    }
    .card{
      grid-column: span 6;
      background: rgba(255,255,255,.9);
      border: 1px solid rgba(216,198,181,.55);
      border-radius: calc(var(--radius) + 4px);
      box-shadow: var(--shadow2);
      padding: 18px;
      position: relative;
      overflow:hidden;
    }
    .card h2{
      margin: 0 0 8px;
      font-size: 18px;
    }
    .card p{
      margin:0 0 14px;
      color: var(--muted);
      line-height: 1.5;
      font-size: 14.5px;
    }
    .card .go{
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-weight: 700;
      padding: 10px 12px;
      border-radius: 12px;
      background: rgba(233,221,207,.55);
      border: 1px solid rgba(216,198,181,.65);
    }
    .card .go:hover{ background: rgba(233,221,207,.8); }
    .badge{
      position:absolute;
      top: 14px;
      right: 14px;
      font-size: 12px;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid rgba(216,198,181,.6);
      background: rgba(255,255,255,.65);
      color: var(--muted);
    }

    /* Brand story */
    .story{
      margin-top: 14px;
      padding: 18px;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(216,198,181,.55);
      border-radius: calc(var(--radius) + 4px);
      box-shadow: var(--shadow2);
    }
    .story h3{ margin:0 0 8px; font-size: 16px; }
    .story p{ margin:0; color: var(--muted); line-height: 1.6; }

    /* Footer */
    footer{
      margin-top: 22px;
      padding: 16px;
      border-radius: var(--radius);
      border: 1px solid rgba(216,198,181,.55);
      background: rgba(255,255,255,.65);
      color: var(--muted);
      display:flex;
      justify-content:space-between;
      gap:10px;
      flex-wrap: wrap;
    }
    footer a{ text-decoration: underline; }

    /* Responsive */
    @media (max-width: 820px){
      .card{ grid-column: span 12; }
      header{ flex-direction: column; align-items:flex-start; }
      nav{ justify-content:flex-start; }
    }

.shop-logo{
  height:32px;
  width:auto;
  margin-bottom:8px;
  opacity:0.85;
  filter: grayscale(20%);
}
.card{
  position: relative; /* kell az abszolút logóhoz */
}

.shop-logo{
  position: absolute;
  right: 16px;
  bottom: 14px;
  pointer-events: none; /* ne kattintható legyen */
}
  </style>